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,52 @@
import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
import { ButtonProps } from "./button.js";
import * as _$vue from "vue";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/button/src/button-group.d.ts
interface ButtonGroupProps {
/**
* @description control the size of buttons in this button-group
*/
size?: ButtonProps['size'];
/**
* @description control the type of buttons in this button-group
*/
type?: ButtonProps['type'];
/**
* @description display direction
*/
direction?: 'horizontal' | 'vertical';
}
/**
* @deprecated Removed after 3.0.0, Use `ButtonGroupProps` instead.
*/
declare const buttonGroupProps: {
/**
* @description control the size of buttons in this button-group
*/
readonly size: {
readonly type: _$vue.PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
/**
* @description control the type of buttons in this button-group
*/
readonly type: EpPropFinalized<StringConstructor, "" | "default" | "info" | "primary" | "success" | "warning" | "text" | "danger", unknown, "", boolean>;
/**
* @description display direction
*/
readonly direction: {
readonly type: _$vue.PropType<"horizontal" | "vertical">;
readonly values: readonly ["horizontal", "vertical"];
readonly default: "horizontal";
};
};
/**
* @deprecated Removed after 3.0.0, Use `ButtonGroupProps` instead.
*/
type ButtonGroupPropsPublic = ExtractPublicPropTypes<typeof buttonGroupProps>;
//#endregion
export { ButtonGroupProps, ButtonGroupPropsPublic, buttonGroupProps };