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
+40
View File
@@ -0,0 +1,40 @@
import { buildProps, definePropType } from "../../../utils/vue/props/runtime.mjs";
//#region ../../packages/components/skeleton/src/skeleton.ts
/**
* @deprecated Removed after 3.0.0, Use `SkeletonProps` instead.
*/
const skeletonProps = buildProps({
/**
* @description whether showing the animation
*/
animated: Boolean,
/**
* @description how many fake items to render to the DOM
*/
count: {
type: Number,
default: 1
},
/**
* @description numbers of the row, only useful when no template slot were given
*/
rows: {
type: Number,
default: 3
},
/**
* @description whether showing the real DOM
*/
loading: {
type: Boolean,
default: true
},
/**
* @description rendering delay in milliseconds
*/
throttle: { type: definePropType([Number, Object]) }
});
//#endregion
export { skeletonProps };
//# sourceMappingURL=skeleton.mjs.map