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
+35
View File
@@ -0,0 +1,35 @@
import { EpPropFinalized } from "../../../utils/vue/props/types.js";
import _default from "./arrow.vue.js";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/popper/src/arrow.d.ts
interface PopperArrowProps {
/**
* @description arrow offset
*/
arrowOffset?: number;
}
/**
* @deprecated Removed after 3.0.0, Use `PopperArrowProps` instead.
*/
declare const popperArrowProps: {
readonly arrowOffset: EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
};
/**
* @deprecated Removed after 3.0.0, Use `PopperArrowProps` instead.
*/
type PopperArrowPropsPublic = ExtractPublicPropTypes<typeof popperArrowProps>;
declare const popperArrowPropsDefaults: {
readonly arrowOffset: 5;
};
type PopperArrowInstance = InstanceType<typeof _default> & unknown;
/** @deprecated use `popperArrowProps` instead, and it will be deprecated in the next major version */
declare const usePopperArrowProps: {
readonly arrowOffset: EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
};
/** @deprecated use `PopperArrowProps` instead, and it will be deprecated in the next major version */
type UsePopperArrowProps = PopperArrowProps;
/** @deprecated use `PopperArrowInstance` instead, and it will be deprecated in the next major version */
type ElPopperArrowInstance = PopperArrowInstance;
//#endregion
export { ElPopperArrowInstance, PopperArrowInstance, PopperArrowProps, PopperArrowPropsPublic, UsePopperArrowProps, popperArrowProps, popperArrowPropsDefaults, usePopperArrowProps };