beeple-toolkit 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import type { ModalProps } from '../types';
|
|
2
2
|
import './modal.css';
|
|
3
|
-
declare var
|
|
3
|
+
declare var __VLS_33: {}, __VLS_35: {}, __VLS_37: {}, __VLS_39: {};
|
|
4
4
|
type __VLS_Slots = {} & {
|
|
5
|
-
title?: (props: typeof
|
|
5
|
+
title?: (props: typeof __VLS_33) => any;
|
|
6
6
|
} & {
|
|
7
|
-
subtitle?: (props: typeof
|
|
7
|
+
subtitle?: (props: typeof __VLS_35) => any;
|
|
8
8
|
} & {
|
|
9
|
-
default?: (props: typeof
|
|
9
|
+
default?: (props: typeof __VLS_37) => any;
|
|
10
10
|
} & {
|
|
11
|
-
footer?: (props: typeof
|
|
11
|
+
footer?: (props: typeof __VLS_39) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -12,6 +12,7 @@ export interface ButtonProps {
|
|
|
12
12
|
isActive?: boolean;
|
|
13
13
|
href?: string;
|
|
14
14
|
target?: string;
|
|
15
|
+
fullWidth?: boolean;
|
|
15
16
|
}
|
|
16
17
|
export interface IconProps {
|
|
17
18
|
icon?: EvaIconName | string;
|
|
@@ -172,6 +173,7 @@ export interface DatePickerTranslations {
|
|
|
172
173
|
time?: string;
|
|
173
174
|
startTime?: string;
|
|
174
175
|
endTime?: string;
|
|
176
|
+
back?: string;
|
|
175
177
|
}
|
|
176
178
|
export interface DatePickerProps {
|
|
177
179
|
variant?: DatePickerVariant;
|
|
@@ -249,6 +251,8 @@ export interface ModalProps {
|
|
|
249
251
|
size?: 'ultra-small' | 'small' | 'medium' | 'large';
|
|
250
252
|
showCloseButton?: boolean;
|
|
251
253
|
titleAlign?: 'left' | 'center';
|
|
254
|
+
overlay?: boolean;
|
|
255
|
+
closeButtonTooltip?: string;
|
|
252
256
|
}
|
|
253
257
|
export type TeamCardColor = 'orange' | 'red' | 'olive-green' | 'leaf-green' | 'forest-green' | 'yellow' | 'teal' | 'turquoise' | 'blue' | 'lagoon' | 'violet' | 'old-rose' | 'petal-rose' | 'azalea-rose';
|
|
254
258
|
export interface TeamCardRole {
|