fix(api): use bcrypt directly instead of passlib for compatibility

This commit is contained in:
bwstudio
2026-05-21 22:18:36 +08:00
parent 7f51d200f1
commit 4651781bc3
23511 changed files with 2587254 additions and 8 deletions
+39
View File
@@ -0,0 +1,39 @@
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const require_runtime = require("../../../utils/vue/props/runtime.js");
//#region ../../packages/components/divider/src/divider.ts
/**
* @deprecated Removed after 3.0.0, Use `DividerProps` instead.
*/
const dividerProps = require_runtime.buildProps({
/**
* @description Set divider's direction
*/
direction: {
type: String,
values: ["horizontal", "vertical"],
default: "horizontal"
},
/**
* @description Set the style of divider
*/
contentPosition: {
type: String,
values: [
"left",
"center",
"right"
],
default: "center"
},
/**
* @description the position of the customized content on the divider line
*/
borderStyle: {
type: require_runtime.definePropType(String),
default: "solid"
}
});
//#endregion
exports.dividerProps = dividerProps;
//# sourceMappingURL=divider.js.map