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,27 @@
import { EpPropFinalized } from "../../../utils/vue/props/types.js";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/carousel/src/carousel-item.d.ts
interface CarouselItemProps {
/**
* @description name of the item, can be used in `setActiveItem`
*/
name?: string;
/**
* @description text content for the corresponding indicator
*/
label?: string | number;
}
/**
* @deprecated Removed after 3.0.0, Use `CarouselItemProps` instead.
*/
declare const carouselItemProps: {
readonly name: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
readonly label: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
};
/**
* @deprecated Removed after 3.0.0, Use `CarouselItemProps` instead.
*/
type CarouselItemPropsPublic = ExtractPublicPropTypes<typeof carouselItemProps>;
//#endregion
export { CarouselItemProps, CarouselItemPropsPublic, carouselItemProps };