dist directory

This commit is contained in:
2024-03-12 05:28:28 +01:00
parent a385e96520
commit a27c84b7a9
283 changed files with 24264 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
import type { ModalSize } from './types';
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
size: {
type: import("vue").PropType<ModalSize>;
default: string;
};
notEscapable: {
type: import("vue").PropType<boolean>;
default: boolean;
};
persistent: {
type: import("vue").PropType<boolean>;
default: boolean;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "click:outside")[], "close" | "click:outside", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
size: {
type: import("vue").PropType<ModalSize>;
default: string;
};
notEscapable: {
type: import("vue").PropType<boolean>;
default: boolean;
};
persistent: {
type: import("vue").PropType<boolean>;
default: boolean;
};
}>> & {
onClose?: ((...args: any[]) => any) | undefined;
"onClick:outside"?: ((...args: any[]) => any) | undefined;
}, {
size: ModalSize;
notEscapable: boolean;
persistent: boolean;
}, {}>, {
header?(_: {}): any;
"close-icon"?(_: {}): any;
body?(_: {}): any;
footer?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};

2
dist/components/FwbModal/types.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
export type ModalPosition = 'bottom-left' | 'bottom-right' | 'bottom-center' | 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center' | 'center-right';
export type ModalSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl';