beeple-toolkit 1.0.6 → 1.0.8
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;
|
|
@@ -103,6 +104,8 @@ export interface DropDownProps {
|
|
|
103
104
|
errorMessage?: string;
|
|
104
105
|
selectAllText?: string;
|
|
105
106
|
clearAllText?: string;
|
|
107
|
+
groupBy?: string;
|
|
108
|
+
groupLabel?: Record<string, string>;
|
|
106
109
|
}
|
|
107
110
|
export interface AvatarProps {
|
|
108
111
|
user?: {
|
|
@@ -172,6 +175,7 @@ export interface DatePickerTranslations {
|
|
|
172
175
|
time?: string;
|
|
173
176
|
startTime?: string;
|
|
174
177
|
endTime?: string;
|
|
178
|
+
back?: string;
|
|
175
179
|
}
|
|
176
180
|
export interface DatePickerProps {
|
|
177
181
|
variant?: DatePickerVariant;
|
|
@@ -249,6 +253,8 @@ export interface ModalProps {
|
|
|
249
253
|
size?: 'ultra-small' | 'small' | 'medium' | 'large';
|
|
250
254
|
showCloseButton?: boolean;
|
|
251
255
|
titleAlign?: 'left' | 'center';
|
|
256
|
+
overlay?: boolean;
|
|
257
|
+
closeButtonTooltip?: string;
|
|
252
258
|
}
|
|
253
259
|
export type TeamCardColor = 'orange' | 'red' | 'olive-green' | 'leaf-green' | 'forest-green' | 'yellow' | 'teal' | 'turquoise' | 'blue' | 'lagoon' | 'violet' | 'old-rose' | 'petal-rose' | 'azalea-rose';
|
|
254
260
|
export interface TeamCardRole {
|