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
+47
View File
@@ -0,0 +1,47 @@
import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
import _default from "./row.vue.js";
import * as _$vue from "vue";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/row/src/row.d.ts
declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"];
declare const RowAlign: readonly ["top", "middle", "bottom"];
interface RowProps {
/**
* @description custom element tag
*/
tag?: string;
/**
* @description grid spacing
*/
gutter?: number;
/**
* @description horizontal alignment of flex layout
*/
justify?: (typeof RowJustify)[number];
/**
* @description vertical alignment of flex layout
*/
align?: (typeof RowAlign)[number];
}
/**
* @deprecated Removed after 3.0.0, Use `RowProps` instead.
*/
declare const rowProps: {
readonly tag: EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
readonly gutter: EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
readonly justify: EpPropFinalized<StringConstructor, "center" | "space-around" | "space-between" | "space-evenly" | "end" | "start", unknown, "start", boolean>;
readonly align: {
readonly type: _$vue.PropType<EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
};
/**
* @deprecated Removed after 3.0.0, Use `RowProps` instead.
*/
type RowPropsPublic = ExtractPublicPropTypes<typeof rowProps>;
type RowInstance = InstanceType<typeof _default> & unknown;
//#endregion
export { RowAlign, RowInstance, RowJustify, RowProps, RowPropsPublic, rowProps };