@zeturn/watercolor-vue 1.2.2 → 1.2.4
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.
- package/dist/LocaleVUE.d.ts +56 -0
- package/dist/LocaleVUE.d.ts.map +1 -0
- package/dist/components/Alert/Alert.vue.d.ts.map +1 -1
- package/dist/components/Autocomplete/Autocomplete.vue.d.ts +13 -7
- package/dist/components/Autocomplete/Autocomplete.vue.d.ts.map +1 -1
- package/dist/components/Banner/Banner.vue.d.ts.map +1 -1
- package/dist/components/Button/Button.vue.d.ts +5 -5
- package/dist/components/Button/Fab.vue.d.ts +2 -2
- package/dist/components/Button/IconButton.vue.d.ts +2 -2
- package/dist/components/Checkbox/Checkbox.vue.d.ts +5 -3
- package/dist/components/Checkbox/Checkbox.vue.d.ts.map +1 -1
- package/dist/components/Chip/Chip.vue.d.ts +3 -3
- package/dist/components/CircularProgress/CircularProgress.vue.d.ts.map +1 -1
- package/dist/components/ColorPicker/ColorPicker.vue.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.vue.d.ts.map +1 -1
- package/dist/components/Copy/Copy.vue.d.ts +1 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts +4 -3
- package/dist/components/DatePicker/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/Form/FormControl.vue.d.ts +4 -4
- package/dist/components/Form/FormHelperText.vue.d.ts +4 -4
- package/dist/components/HoverCard/HoverCard.vue.d.ts +3 -1
- package/dist/components/HoverCard/HoverCard.vue.d.ts.map +1 -1
- package/dist/components/Icon/Icon.vue.d.ts +2 -2
- package/dist/components/ImageGallery/ImageGallery.vue.d.ts +2 -1
- package/dist/components/ImageGallery/ImageGallery.vue.d.ts.map +1 -1
- package/dist/components/Input/Input.vue.d.ts +5 -5
- package/dist/components/Input/VerificationCodeInput.vue.d.ts.map +1 -1
- package/dist/components/Menu/Menu.vue.d.ts.map +1 -1
- package/dist/components/Modal/Modal.vue.d.ts +4 -4
- package/dist/components/Modal/Modal.vue.d.ts.map +1 -1
- package/dist/components/NumberAnimation/NumberAnimation.vue.d.ts +2 -2
- package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
- package/dist/components/Popover/Popover.vue.d.ts +3 -1
- package/dist/components/Popover/Popover.vue.d.ts.map +1 -1
- package/dist/components/Progress/Progress.vue.d.ts +2 -2
- package/dist/components/Radio/Radio.vue.d.ts +7 -5
- package/dist/components/Radio/Radio.vue.d.ts.map +1 -1
- package/dist/components/Radio/RadioGroup.vue.d.ts +7 -7
- package/dist/components/Rating/Rating.vue.d.ts +11 -1
- package/dist/components/Select/Select.vue.d.ts +9 -6
- package/dist/components/Select/Select.vue.d.ts.map +1 -1
- package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
- package/dist/components/Skeleton/Skeleton.vue.d.ts.map +1 -1
- package/dist/components/SlideOver/SlideOver.vue.d.ts +2 -2
- package/dist/components/SlideOver/SlideOver.vue.d.ts.map +1 -1
- package/dist/components/Slider/Slider.vue.d.ts +1 -1
- package/dist/components/Snackbar/Snackbar.vue.d.ts.map +1 -1
- package/dist/components/Status/Status.vue.d.ts.map +1 -1
- package/dist/components/Switch/Switch.vue.d.ts +3 -3
- package/dist/components/Switch/Switch.vue.d.ts.map +1 -1
- package/dist/components/Tabs/Tabs.vue.d.ts +1 -1
- package/dist/components/Tabs/Tabs.vue.d.ts.map +1 -1
- package/dist/components/TextField/TextField.vue.d.ts +5 -5
- package/dist/components/Tooltip/Tooltip.vue.d.ts +8 -2
- package/dist/components/Tooltip/Tooltip.vue.d.ts.map +1 -1
- package/dist/components/TypingText/TypingText.vue.d.ts +1 -1
- package/dist/components/VideoPlayer/VideoPlayer.vue.d.ts +1 -0
- package/dist/components/VideoPlayer/VideoPlayer.vue.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/interactions.d.ts +31 -0
- package/dist/interactions.d.ts.map +1 -0
- package/dist/watercolor-vue.css +1 -1
- package/dist/watercolor-vue.es.js +1520 -1267
- package/package.json +7 -7
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { ComputedRef, PropType } from 'vue';
|
|
2
|
+
export interface WatercolorLocaleMessages {
|
|
3
|
+
breadcrumb: string;
|
|
4
|
+
closePopover: string;
|
|
5
|
+
close: string;
|
|
6
|
+
closeDialog: string;
|
|
7
|
+
closeLightbox: string;
|
|
8
|
+
downloadImage: (index: number) => string;
|
|
9
|
+
colorPicker: string;
|
|
10
|
+
circularProgress: string;
|
|
11
|
+
enterFullscreen: string;
|
|
12
|
+
loading: string;
|
|
13
|
+
muteVideo: string;
|
|
14
|
+
nextImage: string;
|
|
15
|
+
nextMonth: string;
|
|
16
|
+
nextPage: string;
|
|
17
|
+
openCalendar: string;
|
|
18
|
+
openImageInLightbox: (index: number) => string;
|
|
19
|
+
page: (page: number) => string;
|
|
20
|
+
pagination: string;
|
|
21
|
+
pauseVideo: string;
|
|
22
|
+
playVideo: string;
|
|
23
|
+
previousMonth: string;
|
|
24
|
+
previousPage: string;
|
|
25
|
+
previousImage: string;
|
|
26
|
+
progress: string;
|
|
27
|
+
rating: string;
|
|
28
|
+
ratingValue: (value: number, max: number) => string;
|
|
29
|
+
remove: string;
|
|
30
|
+
removeItem: (label?: string) => string;
|
|
31
|
+
rowsPerPage: string;
|
|
32
|
+
switchControl: string;
|
|
33
|
+
tabList: string;
|
|
34
|
+
unmuteVideo: string;
|
|
35
|
+
jumpToPage: string;
|
|
36
|
+
verificationCodeDigit: (index: number) => string;
|
|
37
|
+
viewImage: (index: number, description?: string) => string;
|
|
38
|
+
volume: string;
|
|
39
|
+
videoProgress: string;
|
|
40
|
+
}
|
|
41
|
+
export interface LocaleStore {
|
|
42
|
+
locale: ComputedRef<string | undefined>;
|
|
43
|
+
messages: ComputedRef<WatercolorLocaleMessages>;
|
|
44
|
+
}
|
|
45
|
+
export declare const defaultLocaleMessages: WatercolorLocaleMessages;
|
|
46
|
+
export declare function useLocale(): LocaleStore;
|
|
47
|
+
export declare const LocaleProvider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
48
|
+
locale: StringConstructor;
|
|
49
|
+
messages: PropType<Partial<WatercolorLocaleMessages>>;
|
|
50
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
53
|
+
locale: StringConstructor;
|
|
54
|
+
messages: PropType<Partial<WatercolorLocaleMessages>>;
|
|
55
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
56
|
+
//# sourceMappingURL=LocaleVUE.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LocaleVUE.d.ts","sourceRoot":"","sources":["../src/LocaleVUE.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,WAAW,EAChB,KAAK,QAAQ,EACd,MAAM,KAAK,CAAA;AAEZ,MAAM,WAAW,wBAAwB;IACvC,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;IACxC,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,CAAA;IACxB,eAAe,EAAE,MAAM,CAAA;IACvB,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAA;IAChB,YAAY,EAAE,MAAM,CAAA;IACpB,mBAAmB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;IAC9C,IAAI,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAA;IAC9B,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,EAAE,MAAM,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,MAAM,CAAA;IACnD,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACtC,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,MAAM,CAAA;IACrB,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,qBAAqB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;IAChD,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IAC1D,MAAM,EAAE,MAAM,CAAA;IACd,aAAa,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAA;IACvC,QAAQ,EAAE,WAAW,CAAC,wBAAwB,CAAC,CAAA;CAChD;AAED,eAAO,MAAM,qBAAqB,EAAE,wBAsCnC,CAAA;AAQD,wBAAgB,SAAS,IAAK,WAAW,CAExC;AAED,eAAO,MAAM,cAAc;;cAIH,QAAQ,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC;;;;;cAA3C,QAAQ,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC;iGAUjE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/Alert.vue"],"names":[],"mappings":"AAmDA;
|
|
1
|
+
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/Alert.vue"],"names":[],"mappings":"AAmDA;wBA6RqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;2OAQG"}
|
|
@@ -4,19 +4,19 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "blur" | "change" | "focus" | "update:modelValue" | "input-change", ...args: any[]) => void;
|
|
8
8
|
multiple: boolean;
|
|
9
9
|
variant: string;
|
|
10
10
|
required: boolean;
|
|
11
|
+
size: string;
|
|
12
|
+
error: string;
|
|
11
13
|
modelValue: string | number | Record<string, any> | unknown[];
|
|
12
14
|
options: unknown[];
|
|
13
15
|
label: string;
|
|
14
16
|
placeholder: string;
|
|
15
17
|
disabled: boolean;
|
|
16
18
|
readonly: boolean;
|
|
17
|
-
error: string;
|
|
18
19
|
helperText: string;
|
|
19
|
-
size: string;
|
|
20
20
|
clearable: boolean;
|
|
21
21
|
freeSolo: boolean;
|
|
22
22
|
valueKey: string;
|
|
@@ -28,15 +28,15 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
28
28
|
readonly multiple?: boolean | undefined;
|
|
29
29
|
readonly variant?: string | undefined;
|
|
30
30
|
readonly required?: boolean | undefined;
|
|
31
|
+
readonly size?: string | undefined;
|
|
32
|
+
readonly error?: string | undefined;
|
|
31
33
|
readonly modelValue?: string | number | Record<string, any> | unknown[] | undefined;
|
|
32
34
|
readonly options?: unknown[] | undefined;
|
|
33
35
|
readonly label?: string | undefined;
|
|
34
36
|
readonly placeholder?: string | undefined;
|
|
35
37
|
readonly disabled?: boolean | undefined;
|
|
36
38
|
readonly readonly?: boolean | undefined;
|
|
37
|
-
readonly error?: string | undefined;
|
|
38
39
|
readonly helperText?: string | undefined;
|
|
39
|
-
readonly size?: string | undefined;
|
|
40
40
|
readonly clearable?: boolean | undefined;
|
|
41
41
|
readonly freeSolo?: boolean | undefined;
|
|
42
42
|
readonly valueKey?: string | undefined;
|
|
@@ -45,7 +45,10 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
45
45
|
readonly noOptionsText?: string | undefined;
|
|
46
46
|
readonly minSearchLength?: number | undefined;
|
|
47
47
|
};
|
|
48
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
48
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
49
|
+
autocompleteRef: HTMLDivElement;
|
|
50
|
+
dropdownRef: HTMLDivElement;
|
|
51
|
+
}, HTMLDivElement>;
|
|
49
52
|
type __VLS_TemplateResult = {
|
|
50
53
|
attrs: Partial<{}>;
|
|
51
54
|
slots: {
|
|
@@ -54,7 +57,10 @@ type __VLS_TemplateResult = {
|
|
|
54
57
|
}): any;
|
|
55
58
|
'no-options'?(_: {}): any;
|
|
56
59
|
};
|
|
57
|
-
refs: {
|
|
60
|
+
refs: {
|
|
61
|
+
autocompleteRef: HTMLDivElement;
|
|
62
|
+
dropdownRef: HTMLDivElement;
|
|
63
|
+
};
|
|
58
64
|
rootEl: HTMLDivElement;
|
|
59
65
|
};
|
|
60
66
|
//# sourceMappingURL=Autocomplete.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Autocomplete.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Autocomplete/Autocomplete.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Autocomplete.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Autocomplete/Autocomplete.vue"],"names":[],"mappings":"AAoIA;wBA09BqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Banner/Banner.vue"],"names":[],"mappings":"AAsEA;
|
|
1
|
+
{"version":3,"file":"Banner.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Banner/Banner.vue"],"names":[],"mappings":"AAsEA;wBA+XqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;;;;;;;;2OAQG"}
|
|
@@ -4,14 +4,14 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "blur" | "click" | "focus" | "mouseout" | "mouseover", ...args: any[]) => void;
|
|
8
8
|
variant: string;
|
|
9
9
|
type: string;
|
|
10
|
-
|
|
10
|
+
loading: boolean;
|
|
11
11
|
size: string;
|
|
12
|
+
disabled: boolean;
|
|
12
13
|
rounded: string | boolean;
|
|
13
14
|
buttonStyle: string;
|
|
14
|
-
loading: boolean;
|
|
15
15
|
fullWidth: boolean;
|
|
16
16
|
href: string;
|
|
17
17
|
target: string;
|
|
@@ -22,11 +22,11 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
22
22
|
$props: {
|
|
23
23
|
readonly variant?: string | undefined;
|
|
24
24
|
readonly type?: string | undefined;
|
|
25
|
-
readonly
|
|
25
|
+
readonly loading?: boolean | undefined;
|
|
26
26
|
readonly size?: string | undefined;
|
|
27
|
+
readonly disabled?: boolean | undefined;
|
|
27
28
|
readonly rounded?: string | boolean | undefined;
|
|
28
29
|
readonly buttonStyle?: string | undefined;
|
|
29
|
-
readonly loading?: boolean | undefined;
|
|
30
30
|
readonly fullWidth?: boolean | undefined;
|
|
31
31
|
readonly href?: string | undefined;
|
|
32
32
|
readonly target?: string | undefined;
|
|
@@ -7,16 +7,16 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
7
7
|
$emit: (event: "click", ...args: any[]) => void;
|
|
8
8
|
variant: string;
|
|
9
9
|
color: string;
|
|
10
|
+
size: string;
|
|
10
11
|
label: string;
|
|
11
12
|
disabled: boolean;
|
|
12
|
-
size: string;
|
|
13
13
|
icon: string;
|
|
14
14
|
$props: {
|
|
15
15
|
readonly variant?: string | undefined;
|
|
16
16
|
readonly color?: string | undefined;
|
|
17
|
+
readonly size?: string | undefined;
|
|
17
18
|
readonly label?: string | undefined;
|
|
18
19
|
readonly disabled?: boolean | undefined;
|
|
19
|
-
readonly size?: string | undefined;
|
|
20
20
|
readonly icon?: string | undefined;
|
|
21
21
|
};
|
|
22
22
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
@@ -6,14 +6,14 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "click", ...args: any[]) => void;
|
|
8
8
|
color: string;
|
|
9
|
-
disabled: boolean;
|
|
10
9
|
size: string;
|
|
10
|
+
disabled: boolean;
|
|
11
11
|
icon: string;
|
|
12
12
|
edge: string;
|
|
13
13
|
$props: {
|
|
14
14
|
readonly color?: string | undefined;
|
|
15
|
-
readonly disabled?: boolean | undefined;
|
|
16
15
|
readonly size?: string | undefined;
|
|
16
|
+
readonly disabled?: boolean | undefined;
|
|
17
17
|
readonly icon?: string | undefined;
|
|
18
18
|
readonly edge?: string | undefined;
|
|
19
19
|
};
|
|
@@ -4,20 +4,22 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
8
|
+
ariaLabel: string;
|
|
8
9
|
color: string;
|
|
10
|
+
size: string;
|
|
9
11
|
modelValue: boolean | unknown[];
|
|
10
12
|
label: string;
|
|
11
13
|
disabled: boolean;
|
|
12
|
-
size: string;
|
|
13
14
|
value: string | number | boolean;
|
|
14
15
|
indeterminate: boolean;
|
|
15
16
|
$props: {
|
|
17
|
+
readonly ariaLabel?: string | undefined;
|
|
16
18
|
readonly color?: string | undefined;
|
|
19
|
+
readonly size?: string | undefined;
|
|
17
20
|
readonly modelValue?: boolean | unknown[] | undefined;
|
|
18
21
|
readonly label?: string | undefined;
|
|
19
22
|
readonly disabled?: boolean | undefined;
|
|
20
|
-
readonly size?: string | undefined;
|
|
21
23
|
readonly value?: string | number | boolean | undefined;
|
|
22
24
|
readonly indeterminate?: boolean | undefined;
|
|
23
25
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Checkbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.vue"],"names":[],"mappings":"AAoCA;wBAqXqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;wPASG"}
|
|
@@ -4,12 +4,12 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "delete" | "click", ...args: any[]) => void;
|
|
8
8
|
variant: string;
|
|
9
9
|
color: string;
|
|
10
|
+
size: string;
|
|
10
11
|
label: string;
|
|
11
12
|
disabled: boolean;
|
|
12
|
-
size: string;
|
|
13
13
|
avatar: string;
|
|
14
14
|
deletable: boolean;
|
|
15
15
|
clickable: boolean;
|
|
@@ -17,9 +17,9 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
17
17
|
$props: {
|
|
18
18
|
readonly variant?: string | undefined;
|
|
19
19
|
readonly color?: string | undefined;
|
|
20
|
+
readonly size?: string | undefined;
|
|
20
21
|
readonly label?: string | undefined;
|
|
21
22
|
readonly disabled?: boolean | undefined;
|
|
22
|
-
readonly size?: string | undefined;
|
|
23
23
|
readonly avatar?: string | undefined;
|
|
24
24
|
readonly deletable?: boolean | undefined;
|
|
25
25
|
readonly clickable?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CircularProgress.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CircularProgress/CircularProgress.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CircularProgress.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CircularProgress/CircularProgress.vue"],"names":[],"mappings":"AAkDA;"}
|
|
@@ -10,9 +10,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
11
11
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
+
size: "sm" | "md" | "lg";
|
|
13
14
|
modelValue: string;
|
|
14
15
|
disabled: boolean;
|
|
15
|
-
size: "sm" | "md" | "lg";
|
|
16
16
|
className: string;
|
|
17
17
|
shape: "circle" | "square" | "rounded";
|
|
18
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColorPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ColorPicker/ColorPicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ColorPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ColorPicker/ColorPicker.vue"],"names":[],"mappings":"AAgBA;AAsEA,OAAO,aAAa,CAAA;AAIpB,UAAU,KAAK;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;IACzB,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;;;;;;UAJQ,IAAI,GAAG,IAAI,GAAG,IAAI;gBADZ,MAAM;cAGR,OAAO;eACN,MAAM;WAFV,QAAQ,GAAG,QAAQ,GAAG,SAAS;;AAqGzC,wBASG"}
|
|
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "copy" | "error", ...args: any[]) => void;
|
|
8
8
|
variant: string;
|
|
9
9
|
size: string;
|
|
10
10
|
text: string;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
$emit: (event: "
|
|
2
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
3
3
|
variant: string;
|
|
4
|
+
size: string;
|
|
4
5
|
modelValue: string | Date;
|
|
5
6
|
placeholder: string;
|
|
6
7
|
disabled: boolean;
|
|
7
|
-
size: string;
|
|
8
8
|
format: string;
|
|
9
9
|
showToday: boolean;
|
|
10
10
|
minDate: string | Date;
|
|
11
11
|
maxDate: string | Date;
|
|
12
12
|
$props: {
|
|
13
13
|
readonly variant?: string | undefined;
|
|
14
|
+
readonly size?: string | undefined;
|
|
14
15
|
readonly modelValue?: string | Date | undefined;
|
|
15
16
|
readonly placeholder?: string | undefined;
|
|
16
17
|
readonly disabled?: boolean | undefined;
|
|
17
|
-
readonly size?: string | undefined;
|
|
18
18
|
readonly format?: string | undefined;
|
|
19
19
|
readonly showToday?: boolean | undefined;
|
|
20
20
|
readonly minDate?: string | Date | undefined;
|
|
@@ -23,6 +23,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
23
23
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
24
24
|
datePickerRef: HTMLDivElement;
|
|
25
25
|
inputRef: HTMLInputElement;
|
|
26
|
+
dropdownRef: HTMLDivElement;
|
|
26
27
|
}, HTMLDivElement>;
|
|
27
28
|
export default _default;
|
|
28
29
|
//# sourceMappingURL=DatePicker.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.vue"],"names":[],"mappings":"AA2GA;"}
|
|
@@ -6,17 +6,17 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
variant: string;
|
|
8
8
|
required: boolean;
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
error: boolean;
|
|
11
9
|
size: string;
|
|
10
|
+
error: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
12
|
fullWidth: boolean;
|
|
13
13
|
margin: string;
|
|
14
14
|
$props: {
|
|
15
15
|
readonly variant?: string | undefined;
|
|
16
16
|
readonly required?: boolean | undefined;
|
|
17
|
-
readonly disabled?: boolean | undefined;
|
|
18
|
-
readonly error?: boolean | undefined;
|
|
19
17
|
readonly size?: string | undefined;
|
|
18
|
+
readonly error?: boolean | undefined;
|
|
19
|
+
readonly disabled?: boolean | undefined;
|
|
20
20
|
readonly fullWidth?: boolean | undefined;
|
|
21
21
|
readonly margin?: string | undefined;
|
|
22
22
|
};
|
|
@@ -7,9 +7,9 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
7
7
|
filled: boolean;
|
|
8
8
|
variant: string;
|
|
9
9
|
required: boolean;
|
|
10
|
-
disabled: boolean;
|
|
11
|
-
error: boolean;
|
|
12
10
|
size: string;
|
|
11
|
+
error: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
13
|
margin: string;
|
|
14
14
|
focused: boolean;
|
|
15
15
|
id?: string | undefined;
|
|
@@ -17,9 +17,9 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
17
17
|
readonly filled?: boolean | undefined;
|
|
18
18
|
readonly variant?: string | undefined;
|
|
19
19
|
readonly required?: boolean | undefined;
|
|
20
|
-
readonly disabled?: boolean | undefined;
|
|
21
|
-
readonly error?: boolean | undefined;
|
|
22
20
|
readonly size?: string | undefined;
|
|
21
|
+
readonly error?: boolean | undefined;
|
|
22
|
+
readonly disabled?: boolean | undefined;
|
|
23
23
|
readonly margin?: string | undefined;
|
|
24
24
|
readonly focused?: boolean | undefined;
|
|
25
25
|
readonly id?: string | undefined;
|
|
@@ -53,6 +53,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
53
53
|
}>, {
|
|
54
54
|
isVisible: import('vue').Ref<boolean, boolean>;
|
|
55
55
|
cardRef: import('vue').Ref<null, null>;
|
|
56
|
+
triggerRef: import('vue').Ref<null, null>;
|
|
57
|
+
resolvedPlacement: import('vue').Ref<import('@zeturn/watercolor-core').WatercolorPlacement, import('@zeturn/watercolor-core').WatercolorPlacement>;
|
|
56
58
|
triggerId: string;
|
|
57
59
|
cardId: string;
|
|
58
60
|
showCard: () => void;
|
|
@@ -117,8 +119,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
117
119
|
}>, {
|
|
118
120
|
variant: string;
|
|
119
121
|
position: string;
|
|
120
|
-
disabled: boolean;
|
|
121
122
|
size: string;
|
|
123
|
+
disabled: boolean;
|
|
122
124
|
triggerText: string;
|
|
123
125
|
cardData: Record<string, any>;
|
|
124
126
|
cardSize: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HoverCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/HoverCard/HoverCard.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HoverCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/HoverCard/HoverCard.vue"],"names":[],"mappings":"AAwHA;"}
|
|
@@ -5,20 +5,20 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
variant: string;
|
|
8
|
+
name: string;
|
|
8
9
|
color: string;
|
|
9
10
|
size: string | number;
|
|
10
11
|
className: string;
|
|
11
12
|
html: string;
|
|
12
|
-
name: string;
|
|
13
13
|
library: string;
|
|
14
14
|
strokeWidth: string | number;
|
|
15
15
|
$props: {
|
|
16
16
|
readonly variant?: string | undefined;
|
|
17
|
+
readonly name?: string | undefined;
|
|
17
18
|
readonly color?: string | undefined;
|
|
18
19
|
readonly size?: string | number | undefined;
|
|
19
20
|
readonly className?: string | undefined;
|
|
20
21
|
readonly html?: string | undefined;
|
|
21
|
-
readonly name?: string | undefined;
|
|
22
22
|
readonly library?: string | undefined;
|
|
23
23
|
readonly strokeWidth?: string | number | undefined;
|
|
24
24
|
};
|
|
@@ -75,6 +75,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
75
|
goToPage: (page: any) => void;
|
|
76
76
|
onImageLoad: (index: any) => void;
|
|
77
77
|
onImageError: (index: any) => void;
|
|
78
|
+
messages: import('vue').ComputedRef<import('../..').WatercolorLocaleMessages>;
|
|
78
79
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "download" | "lightbox-open" | "lightbox-close")[], "select" | "download" | "lightbox-open" | "lightbox-close", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
79
80
|
images: {
|
|
80
81
|
type: ArrayConstructor;
|
|
@@ -136,10 +137,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
136
137
|
"onLightbox-open"?: ((...args: any[]) => any) | undefined;
|
|
137
138
|
"onLightbox-close"?: ((...args: any[]) => any) | undefined;
|
|
138
139
|
}>, {
|
|
140
|
+
loading: boolean;
|
|
139
141
|
title: string;
|
|
140
142
|
size: string;
|
|
141
143
|
gap: number;
|
|
142
|
-
loading: boolean;
|
|
143
144
|
images: unknown[];
|
|
144
145
|
layout: string;
|
|
145
146
|
columns: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageGallery.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ImageGallery/ImageGallery.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ImageGallery.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ImageGallery/ImageGallery.vue"],"names":[],"mappings":"AAuMA;"}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
$emit: (event: "
|
|
2
|
+
$emit: (event: "blur" | "focus" | "update:modelValue", ...args: any[]) => void;
|
|
3
3
|
type: string;
|
|
4
4
|
required: boolean;
|
|
5
|
+
size: string;
|
|
6
|
+
error: string;
|
|
5
7
|
modelValue: string | number;
|
|
6
8
|
label: string;
|
|
7
9
|
placeholder: string;
|
|
8
10
|
disabled: boolean;
|
|
9
11
|
readonly: boolean;
|
|
10
|
-
error: string;
|
|
11
|
-
size: string;
|
|
12
12
|
helpText: string;
|
|
13
13
|
$props: {
|
|
14
14
|
readonly type?: string | undefined;
|
|
15
15
|
readonly required?: boolean | undefined;
|
|
16
|
+
readonly size?: string | undefined;
|
|
17
|
+
readonly error?: string | undefined;
|
|
16
18
|
readonly modelValue?: string | number | undefined;
|
|
17
19
|
readonly label?: string | undefined;
|
|
18
20
|
readonly placeholder?: string | undefined;
|
|
19
21
|
readonly disabled?: boolean | undefined;
|
|
20
22
|
readonly readonly?: boolean | undefined;
|
|
21
|
-
readonly error?: string | undefined;
|
|
22
|
-
readonly size?: string | undefined;
|
|
23
23
|
readonly helpText?: string | undefined;
|
|
24
24
|
};
|
|
25
25
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerificationCodeInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/VerificationCodeInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VerificationCodeInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/VerificationCodeInput.vue"],"names":[],"mappings":"AAuBA;AAwHA,OAAO,8BAA8B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8KrC,wBAsBG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Menu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Menu/Menu.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Menu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Menu/Menu.vue"],"names":[],"mappings":"AA0GA;wBA0uBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAUG"}
|
|
@@ -9,6 +9,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
9
9
|
closable: boolean;
|
|
10
10
|
position: string;
|
|
11
11
|
size: string;
|
|
12
|
+
scroll: string;
|
|
12
13
|
zIndex: number;
|
|
13
14
|
maxWidth: string;
|
|
14
15
|
fullWidth: boolean;
|
|
@@ -19,17 +20,17 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
19
20
|
disableBackdropClick: boolean;
|
|
20
21
|
disableEscapeKeyDown: boolean;
|
|
21
22
|
fullScreen: boolean;
|
|
22
|
-
scroll: string;
|
|
23
23
|
lockScroll: boolean;
|
|
24
24
|
showOverlay: boolean;
|
|
25
|
-
modelValue?: boolean | undefined;
|
|
26
25
|
open?: boolean | undefined;
|
|
26
|
+
modelValue?: boolean | undefined;
|
|
27
27
|
visible?: boolean | undefined;
|
|
28
28
|
$props: {
|
|
29
29
|
readonly title?: string | undefined;
|
|
30
30
|
readonly closable?: boolean | undefined;
|
|
31
31
|
readonly position?: string | undefined;
|
|
32
32
|
readonly size?: string | undefined;
|
|
33
|
+
readonly scroll?: string | undefined;
|
|
33
34
|
readonly zIndex?: number | undefined;
|
|
34
35
|
readonly maxWidth?: string | undefined;
|
|
35
36
|
readonly fullWidth?: boolean | undefined;
|
|
@@ -40,11 +41,10 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
40
41
|
readonly disableBackdropClick?: boolean | undefined;
|
|
41
42
|
readonly disableEscapeKeyDown?: boolean | undefined;
|
|
42
43
|
readonly fullScreen?: boolean | undefined;
|
|
43
|
-
readonly scroll?: string | undefined;
|
|
44
44
|
readonly lockScroll?: boolean | undefined;
|
|
45
45
|
readonly showOverlay?: boolean | undefined;
|
|
46
|
-
readonly modelValue?: boolean | undefined;
|
|
47
46
|
readonly open?: boolean | undefined;
|
|
47
|
+
readonly modelValue?: boolean | undefined;
|
|
48
48
|
readonly visible?: boolean | undefined;
|
|
49
49
|
};
|
|
50
50
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Modal/Modal.vue"],"names":[],"mappings":"AA4EA;
|
|
1
|
+
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Modal/Modal.vue"],"names":[],"mappings":"AA4EA;wBA4qBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAUG"}
|
|
@@ -3,6 +3,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
3
3
|
stop: () => void;
|
|
4
4
|
$emit: (event: "complete", ...args: any[]) => void;
|
|
5
5
|
from: number;
|
|
6
|
+
locale: string;
|
|
6
7
|
separator: string;
|
|
7
8
|
duration: number;
|
|
8
9
|
decimals: number;
|
|
@@ -12,13 +13,13 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
12
13
|
easing: string;
|
|
13
14
|
autoPlay: boolean;
|
|
14
15
|
showSeparator: boolean;
|
|
15
|
-
locale: string;
|
|
16
16
|
value?: number | undefined;
|
|
17
17
|
to?: number | undefined;
|
|
18
18
|
active?: boolean | undefined;
|
|
19
19
|
precision?: number | undefined;
|
|
20
20
|
$props: {
|
|
21
21
|
readonly from?: number | undefined;
|
|
22
|
+
readonly locale?: string | undefined;
|
|
22
23
|
readonly separator?: string | undefined;
|
|
23
24
|
readonly duration?: number | undefined;
|
|
24
25
|
readonly decimals?: number | undefined;
|
|
@@ -28,7 +29,6 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
28
29
|
readonly easing?: string | undefined;
|
|
29
30
|
readonly autoPlay?: boolean | undefined;
|
|
30
31
|
readonly showSeparator?: boolean | undefined;
|
|
31
|
-
readonly locale?: string | undefined;
|
|
32
32
|
readonly value?: number | undefined;
|
|
33
33
|
readonly to?: number | undefined;
|
|
34
34
|
readonly active?: boolean | undefined;
|
|
@@ -59,7 +59,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
59
59
|
paginationClasses: import('vue').ComputedRef<string[]>;
|
|
60
60
|
handleSizeChange: (event: any) => void;
|
|
61
61
|
handleQuickJump: (event: any) => void;
|
|
62
|
-
|
|
62
|
+
messages: import('vue').ComputedRef<import('../..').WatercolorLocaleMessages>;
|
|
63
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("change" | "update:modelValue" | "page-change" | "size-change")[], "change" | "update:modelValue" | "page-change" | "size-change", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
63
64
|
modelValue: {
|
|
64
65
|
type: NumberConstructor;
|
|
65
66
|
default: number;
|
|
@@ -107,8 +108,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
107
108
|
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
108
109
|
"onSize-change"?: ((...args: any[]) => any) | undefined;
|
|
109
110
|
}>, {
|
|
110
|
-
modelValue: number;
|
|
111
111
|
size: string;
|
|
112
|
+
modelValue: number;
|
|
112
113
|
currentPage: number;
|
|
113
114
|
pageSize: number;
|
|
114
115
|
siblingCount: number;
|
|
@@ -24,7 +24,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
24
|
triggerWrapper: import('vue').Ref<null, null>;
|
|
25
25
|
popoverRef: import('vue').Ref<null, null>;
|
|
26
26
|
popoverId: string;
|
|
27
|
-
|
|
27
|
+
resolvedPlacement: import('vue').Ref<import('@zeturn/watercolor-core').WatercolorPlacement, import('@zeturn/watercolor-core').WatercolorPlacement>;
|
|
28
|
+
messages: import('vue').ComputedRef<import('../..').WatercolorLocaleMessages>;
|
|
29
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("close" | "open" | "update:modelValue")[], "close" | "open" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
30
|
modelValue: {
|
|
29
31
|
type: BooleanConstructor;
|
|
30
32
|
default: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Popover/Popover.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Popover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Popover/Popover.vue"],"names":[],"mappings":"AA0CA;"}
|