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
+37
View File
@@ -0,0 +1,37 @@
import { buildProps } from "../../../utils/vue/props/runtime.mjs";
//#region ../../packages/components/tabs/src/tab-pane.ts
/**
* @deprecated Removed after 3.0.0, Use `TabPaneProps` instead.
*/
const tabPaneProps = buildProps({
/**
* @description title of the tab
*/
label: {
type: String,
default: ""
},
/**
* @description identifier corresponding to the name of Tabs, representing the alias of the tab-pane, the default is ordinal number of the tab-pane in the sequence, e.g. the first tab-pane is '0'
*/
name: { type: [String, Number] },
/**
* @description whether Tab is closable
*/
closable: {
type: Boolean,
default: void 0
},
/**
* @description whether Tab is disabled
*/
disabled: Boolean,
/**
* @description whether Tab is lazily rendered
*/
lazy: Boolean
});
//#endregion
export { tabPaneProps };
//# sourceMappingURL=tab-pane.mjs.map