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,24 @@
import * as _$vue from "vue";
import { PropType } from "vue";
//#region ../../packages/components/tree-select/src/cache-options.d.ts
type CacheOption = {
value: string | number | boolean | object;
currentLabel: string | number;
isDisabled: boolean;
};
declare const _default: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
data: {
type: PropType<CacheOption[]>;
default: () => never[];
};
}>, () => undefined, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
data: {
type: PropType<CacheOption[]>;
default: () => never[];
};
}>> & Readonly<{}>, {
data: CacheOption[];
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
//#endregion
export { CacheOption, _default as default };