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
@@ -0,0 +1,73 @@
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const require_runtime = require("../../../utils/vue/props/runtime.js");
const require_icon = require("../../../utils/vue/icon.js");
//#region ../../packages/components/timeline/src/timeline-item.ts
/**
* @deprecated Removed after 3.0.0, Use `TimelineItemProps` instead.
*/
const timelineItemProps = require_runtime.buildProps({
/**
* @description timestamp content
*/
timestamp: {
type: String,
default: ""
},
/**
* @description whether to show timestamp
*/
hideTimestamp: Boolean,
/**
* @description whether vertically centered
*/
center: Boolean,
/**
* @description position of timestamp
*/
placement: {
type: String,
values: ["top", "bottom"],
default: "bottom"
},
/**
* @description node type
*/
type: {
type: String,
values: [
"primary",
"success",
"warning",
"danger",
"info"
],
default: ""
},
/**
* @description background color of node
*/
color: {
type: String,
default: ""
},
/**
* @description node size
*/
size: {
type: String,
values: ["normal", "large"],
default: "normal"
},
/**
* @description icon component
*/
icon: { type: require_icon.iconPropType },
/**
* @description icon is hollow
*/
hollow: Boolean
});
//#endregion
exports.timelineItemProps = timelineItemProps;
//# sourceMappingURL=timeline-item.js.map