@zeturn/watercolor-vue 1.1.45 → 1.2.0
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/src/ThemeVUE.d.ts +38 -10
- package/dist/src/ThemeVUE.d.ts.map +1 -1
- package/dist/src/components/Accordion/Accordion.vue.d.ts.map +1 -1
- package/dist/src/components/Alert/Alert.vue.d.ts.map +1 -1
- package/dist/src/components/AppBar/AppBar.vue.d.ts.map +1 -1
- package/dist/src/components/Autocomplete/Autocomplete.vue.d.ts.map +1 -1
- package/dist/src/components/Banner/Banner.vue.d.ts.map +1 -1
- package/dist/src/components/Button/Button.vue.d.ts.map +1 -1
- package/dist/src/components/Button/IconButton.vue.d.ts.map +1 -1
- package/dist/src/components/Card/Card.vue.d.ts.map +1 -1
- package/dist/src/components/Chip/Chip.vue.d.ts.map +1 -1
- package/dist/src/components/Copy/Copy.vue.d.ts.map +1 -1
- package/dist/src/components/DatePicker/DatePicker.vue.d.ts.map +1 -1
- package/dist/src/components/Feature/Feature.vue.d.ts +0 -9
- package/dist/src/components/Feature/Feature.vue.d.ts.map +1 -1
- package/dist/src/components/FileInput/FileInput.vue.d.ts +24 -4
- package/dist/src/components/FileInput/FileInput.vue.d.ts.map +1 -1
- package/dist/src/components/Form/FormControl.vue.d.ts.map +1 -1
- package/dist/src/components/Form/FormControlLabel.vue.d.ts.map +1 -1
- package/dist/src/components/Form/FormGroup.vue.d.ts.map +1 -1
- package/dist/src/components/Form/FormHelperText.vue.d.ts.map +1 -1
- package/dist/src/components/Grid/Grid.vue.d.ts +10 -10
- package/dist/src/components/Grid/Grid.vue.d.ts.map +1 -1
- package/dist/src/components/HoverCard/HoverCard.vue.d.ts +2 -6
- package/dist/src/components/HoverCard/HoverCard.vue.d.ts.map +1 -1
- package/dist/src/components/Icon/Icon.vue.d.ts.map +1 -1
- package/dist/src/components/Inline/Inline.vue.d.ts +74 -0
- package/dist/src/components/Inline/Inline.vue.d.ts.map +1 -0
- package/dist/src/components/Menu/Menu.vue.d.ts +0 -2
- package/dist/src/components/Menu/Menu.vue.d.ts.map +1 -1
- package/dist/src/components/Modal/Modal.vue.d.ts.map +1 -1
- package/dist/src/components/Page/Page.vue.d.ts +54 -0
- package/dist/src/components/Page/Page.vue.d.ts.map +1 -0
- package/dist/src/components/Pagination/Pagination.vue.d.ts.map +1 -1
- package/dist/src/components/Paper/Paper.vue.d.ts +21 -2
- package/dist/src/components/Paper/Paper.vue.d.ts.map +1 -1
- package/dist/src/components/Popover/Popover.vue.d.ts +2 -6
- package/dist/src/components/Popover/Popover.vue.d.ts.map +1 -1
- package/dist/src/components/Progress/Progress.vue.d.ts.map +1 -1
- package/dist/src/components/Radio/Radio.vue.d.ts.map +1 -1
- package/dist/src/components/Radio/RadioGroup.vue.d.ts.map +1 -1
- package/dist/src/components/Rating/Rating.vue.d.ts +2 -2
- package/dist/src/components/Select/Select.vue.d.ts.map +1 -1
- package/dist/src/components/Skeleton/Skeleton.vue.d.ts.map +1 -1
- package/dist/src/components/SlideOver/SlideOver.vue.d.ts +2 -0
- package/dist/src/components/SlideOver/SlideOver.vue.d.ts.map +1 -1
- package/dist/src/components/Slider/Slider.vue.d.ts +1 -3
- package/dist/src/components/Slider/Slider.vue.d.ts.map +1 -1
- package/dist/src/components/Snackbar/Snackbar.vue.d.ts.map +1 -1
- package/dist/src/components/Split/Split.vue.d.ts +76 -0
- package/dist/src/components/Split/Split.vue.d.ts.map +1 -0
- package/dist/src/components/Stack/Stack.vue.d.ts +54 -0
- package/dist/src/components/Stack/Stack.vue.d.ts.map +1 -0
- package/dist/src/components/Switch/Switch.vue.d.ts.map +1 -1
- package/dist/src/components/Tabs/Tabs.vue.d.ts.map +1 -1
- package/dist/src/components/TextField/TextField.vue.d.ts.map +1 -1
- package/dist/src/components/Tooltip/Tooltip.vue.d.ts.map +1 -1
- package/dist/src/components/VideoPlayer/VideoPlayer.vue.d.ts.map +1 -1
- package/dist/src/composition.d.ts +9 -0
- package/dist/src/composition.d.ts.map +1 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/utils/theme.d.ts +2 -166
- package/dist/src/utils/theme.d.ts.map +1 -1
- package/dist/watercolor-vue.css +1 -1
- package/dist/watercolor-vue.es.js +1990 -2654
- package/dist/watercolor-vue.umd.js +8 -21
- package/package.json +7 -2
- package/dist/src/utils/themeManager.d.ts +0 -23
- package/dist/src/utils/themeManager.d.ts.map +0 -1
package/dist/src/ThemeVUE.d.ts
CHANGED
|
@@ -1,16 +1,44 @@
|
|
|
1
|
-
import { Ref } from 'vue';
|
|
2
|
-
import {
|
|
3
|
-
type _ColorTheme = keyof typeof themes;
|
|
1
|
+
import { PropType, Ref } from 'vue';
|
|
2
|
+
import { ResolvedThemeMode, ThemeMode, ThemeStorage } from '@zeturn/watercolor-core';
|
|
4
3
|
export interface ThemeStore {
|
|
5
|
-
|
|
4
|
+
mode: Ref<ThemeMode>;
|
|
5
|
+
resolvedMode: Ref<ResolvedThemeMode>;
|
|
6
6
|
dark: Ref<boolean>;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
setMode: (mode: ThemeMode) => void;
|
|
8
|
+
toggleMode: () => void;
|
|
9
9
|
}
|
|
10
|
-
export declare function provideTheme(): void;
|
|
11
10
|
export declare function useTheme(): ThemeStore;
|
|
12
|
-
export declare const ThemeProvider: import('vue').DefineComponent<
|
|
11
|
+
export declare const ThemeProvider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
12
|
+
defaultMode: {
|
|
13
|
+
type: PropType<ThemeMode>;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
mode: {
|
|
18
|
+
type: PropType<ThemeMode>;
|
|
19
|
+
validator: (value: string | undefined) => boolean;
|
|
20
|
+
};
|
|
21
|
+
storageKey: StringConstructor;
|
|
22
|
+
storage: PropType<ThemeStorage | null>;
|
|
23
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
13
24
|
[key: string]: any;
|
|
14
|
-
}>[] |
|
|
15
|
-
|
|
25
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:mode" | "mode-change" | "resolved-mode-change")[], "update:mode" | "mode-change" | "resolved-mode-change", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
defaultMode: {
|
|
27
|
+
type: PropType<ThemeMode>;
|
|
28
|
+
default: string;
|
|
29
|
+
validator: (value: string) => boolean;
|
|
30
|
+
};
|
|
31
|
+
mode: {
|
|
32
|
+
type: PropType<ThemeMode>;
|
|
33
|
+
validator: (value: string | undefined) => boolean;
|
|
34
|
+
};
|
|
35
|
+
storageKey: StringConstructor;
|
|
36
|
+
storage: PropType<ThemeStorage | null>;
|
|
37
|
+
}>> & Readonly<{
|
|
38
|
+
"onUpdate:mode"?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
"onMode-change"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
"onResolved-mode-change"?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
}>, {
|
|
42
|
+
defaultMode: ThemeMode;
|
|
43
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
44
|
//# sourceMappingURL=ThemeVUE.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeVUE.d.ts","sourceRoot":"","sources":["../../src/ThemeVUE.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"ThemeVUE.d.ts","sourceRoot":"","sources":["../../src/ThemeVUE.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,KAAK,QAAQ,EACb,KAAK,GAAG,EACT,MAAM,KAAK,CAAA;AACZ,OAAO,EAGL,KAAK,iBAAiB,EAEtB,KAAK,SAAS,EACd,KAAK,YAAY,EAClB,MAAM,yBAAyB,CAAA;AAEhC,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,GAAG,CAAC,SAAS,CAAC,CAAA;IACpB,YAAY,EAAE,GAAG,CAAC,iBAAiB,CAAC,CAAA;IACpC,IAAI,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IAClB,OAAO,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAA;IAClC,UAAU,EAAE,MAAM,IAAI,CAAA;CACvB;AAID,wBAAgB,QAAQ,IAAK,UAAU,CAItC;AAED,eAAO,MAAM,aAAa;;cAIJ,QAAQ,CAAC,SAAS,CAAC;;2BAEhB,MAAM;;;cAGT,QAAQ,CAAC,SAAS,CAAC;2BAChB,MAAM,GAAG,SAAS;;;aAGpB,QAAQ,CAAC,YAAY,GAAG,IAAI,CAAC;;;;;cAT9B,QAAQ,CAAC,SAAS,CAAC;;2BAEhB,MAAM;;;cAGT,QAAQ,CAAC,SAAS,CAAC;2BAChB,MAAM,GAAG,SAAS;;;aAGpB,QAAQ,CAAC,YAAY,GAAG,IAAI,CAAC;;;;;;;4EA2ClD,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Accordion/Accordion.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Accordion.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Accordion/Accordion.vue"],"names":[],"mappings":"AAgDA;wBA0PqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;sPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Alert/Alert.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Alert/Alert.vue"],"names":[],"mappings":"AAmDA;wBAwRqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;2OAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppBar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/AppBar/AppBar.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"AppBar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/AppBar/AppBar.vue"],"names":[],"mappings":"AAKA;wBA2HqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;sPAQG"}
|
|
@@ -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":"AAkIA;wBAo8BqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Banner/Banner.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Banner.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Banner/Banner.vue"],"names":[],"mappings":"AAsEA;wBA0XqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;;;;;;;;2OAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.vue"],"names":[],"mappings":"AAwDA;
|
|
1
|
+
{"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.vue"],"names":[],"mappings":"AAwDA;wBAsYqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/IconButton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IconButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/IconButton.vue"],"names":[],"mappings":"AAiBA;wBAgLqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;yPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Card/Card.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Card/Card.vue"],"names":[],"mappings":"AAiCA;wBA8NqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;sPAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chip.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Chip/Chip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Chip.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Chip/Chip.vue"],"names":[],"mappings":"AAsDA;wBAuRqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;sPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Copy.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Copy/Copy.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Copy.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Copy/Copy.vue"],"names":[],"mappings":"AA6CA;wBAkcqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;;;sPASG"}
|
|
@@ -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":"AA0GA;"}
|
|
@@ -40,10 +40,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
40
40
|
default: string;
|
|
41
41
|
validator: (v: unknown) => boolean;
|
|
42
42
|
};
|
|
43
|
-
isDarkMode: {
|
|
44
|
-
type: BooleanConstructor;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
43
|
}>, {}, {}, {
|
|
48
44
|
cardClasses(): string[];
|
|
49
45
|
cardStyle(): {
|
|
@@ -96,10 +92,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
96
92
|
default: string;
|
|
97
93
|
validator: (v: unknown) => boolean;
|
|
98
94
|
};
|
|
99
|
-
isDarkMode: {
|
|
100
|
-
type: BooleanConstructor;
|
|
101
|
-
default: boolean;
|
|
102
|
-
};
|
|
103
95
|
}>> & Readonly<{
|
|
104
96
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
105
97
|
"onCta-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -114,7 +106,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
106
|
bgColor: string;
|
|
115
107
|
ctaLabel: string;
|
|
116
108
|
ctaHref: string;
|
|
117
|
-
isDarkMode: boolean;
|
|
118
109
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
119
110
|
export default _default;
|
|
120
111
|
//# sourceMappingURL=Feature.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Feature.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Feature/Feature.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Feature.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Feature/Feature.vue"],"names":[],"mappings":"AAgCA;"}
|
|
@@ -15,12 +15,22 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
description: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
disabled: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}>, {}, {
|
|
27
|
+
dragActive: boolean;
|
|
28
|
+
}, {
|
|
29
|
+
wrapperClasses(): (string | false)[];
|
|
20
30
|
}, {
|
|
21
31
|
validateFiles(files: any): boolean;
|
|
22
|
-
onChange(
|
|
23
|
-
onDrop(
|
|
32
|
+
onChange(event: any): void;
|
|
33
|
+
onDrop(event: any): void;
|
|
24
34
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("change" | "invalid")[], "change" | "invalid", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
35
|
multiple: {
|
|
26
36
|
type: BooleanConstructor;
|
|
@@ -38,6 +48,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
38
48
|
type: StringConstructor;
|
|
39
49
|
default: string;
|
|
40
50
|
};
|
|
51
|
+
description: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
disabled: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
41
59
|
}>> & Readonly<{
|
|
42
60
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
43
61
|
onInvalid?: ((...args: any[]) => any) | undefined;
|
|
@@ -45,6 +63,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
63
|
multiple: boolean;
|
|
46
64
|
variant: string;
|
|
47
65
|
label: string;
|
|
66
|
+
disabled: boolean;
|
|
67
|
+
description: string;
|
|
48
68
|
accept: string;
|
|
49
69
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
50
70
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FileInput/FileInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FileInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FileInput/FileInput.vue"],"names":[],"mappings":"AAqCA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormControl.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControl.vue"],"names":[],"mappings":"AAQA;
|
|
1
|
+
{"version":3,"file":"FormControl.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControl.vue"],"names":[],"mappings":"AAQA;wBAsMqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;sPAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormControlLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControlLabel.vue"],"names":[],"mappings":"AAmCA;
|
|
1
|
+
{"version":3,"file":"FormControlLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControlLabel.vue"],"names":[],"mappings":"AAmCA;wBAyQqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;wPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormGroup.vue"],"names":[],"mappings":"AAQA;
|
|
1
|
+
{"version":3,"file":"FormGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormGroup.vue"],"names":[],"mappings":"AAQA;wBA8HqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;sPAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormHelperText.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormHelperText.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormHelperText.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormHelperText.vue"],"names":[],"mappings":"AAUA;wBAqOqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;;;;;4PAQG"}
|
|
@@ -10,11 +10,11 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
10
10
|
spacing: string | number;
|
|
11
11
|
container: boolean;
|
|
12
12
|
direction: string;
|
|
13
|
-
|
|
14
|
-
sm?: string | number | undefined;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
xl?: string | number | undefined;
|
|
13
|
+
xs?: string | number | boolean | undefined;
|
|
14
|
+
sm?: string | number | boolean | undefined;
|
|
15
|
+
md?: string | number | boolean | undefined;
|
|
16
|
+
lg?: string | number | boolean | undefined;
|
|
17
|
+
xl?: string | number | boolean | undefined;
|
|
18
18
|
$props: {
|
|
19
19
|
readonly justifyContent?: string | undefined;
|
|
20
20
|
readonly alignItems?: string | undefined;
|
|
@@ -22,11 +22,11 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
22
22
|
readonly spacing?: string | number | undefined;
|
|
23
23
|
readonly container?: boolean | undefined;
|
|
24
24
|
readonly direction?: string | undefined;
|
|
25
|
-
readonly
|
|
26
|
-
readonly sm?: string | number | undefined;
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
readonly xl?: string | number | undefined;
|
|
25
|
+
readonly xs?: string | number | boolean | undefined;
|
|
26
|
+
readonly sm?: string | number | boolean | undefined;
|
|
27
|
+
readonly md?: string | number | boolean | undefined;
|
|
28
|
+
readonly lg?: string | number | boolean | undefined;
|
|
29
|
+
readonly xl?: string | number | boolean | undefined;
|
|
30
30
|
};
|
|
31
31
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
32
32
|
type __VLS_TemplateResult = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Grid.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Grid/Grid.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"Grid.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Grid/Grid.vue"],"names":[],"mappings":"AAKA;wBAiJqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAXjC;;;;;;;;;;;;;;;;;;;;;;;;;sPAQG"}
|
|
@@ -53,14 +53,10 @@ 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
|
-
triggerId:
|
|
57
|
-
|
|
58
|
-
zIndex: number;
|
|
59
|
-
}>;
|
|
56
|
+
triggerId: string;
|
|
57
|
+
cardId: string;
|
|
60
58
|
showCard: () => void;
|
|
61
59
|
hideCard: () => void;
|
|
62
|
-
onEnter: (el: any) => void;
|
|
63
|
-
onLeave: (el: any) => void;
|
|
64
60
|
handleAction: (action: any) => void;
|
|
65
61
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("action" | "show" | "hide")[], "action" | "show" | "hide", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
66
62
|
triggerText: {
|
|
@@ -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":"AAmHA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/Icon.vue"],"names":[],"mappings":"AA4BA;
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/Icon.vue"],"names":[],"mappings":"AA4BA;wBA2jBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAVjC;;;;;;;;;;;;;;;;;;;2OAOG"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { CompositionAlign, CompositionGap, InlineJustify } from '@zeturn/watercolor-core';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: any;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
as: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
gap: {
|
|
18
|
+
type: PropType<CompositionGap>;
|
|
19
|
+
default: string;
|
|
20
|
+
validator: (value: string) => boolean;
|
|
21
|
+
};
|
|
22
|
+
align: {
|
|
23
|
+
type: PropType<CompositionAlign>;
|
|
24
|
+
default: string;
|
|
25
|
+
validator: (value: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
justify: {
|
|
28
|
+
type: PropType<InlineJustify>;
|
|
29
|
+
default: string;
|
|
30
|
+
validator: (value: string) => boolean;
|
|
31
|
+
};
|
|
32
|
+
wrap: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
+
as: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
gap: {
|
|
42
|
+
type: PropType<CompositionGap>;
|
|
43
|
+
default: string;
|
|
44
|
+
validator: (value: string) => boolean;
|
|
45
|
+
};
|
|
46
|
+
align: {
|
|
47
|
+
type: PropType<CompositionAlign>;
|
|
48
|
+
default: string;
|
|
49
|
+
validator: (value: string) => boolean;
|
|
50
|
+
};
|
|
51
|
+
justify: {
|
|
52
|
+
type: PropType<InlineJustify>;
|
|
53
|
+
default: string;
|
|
54
|
+
validator: (value: string) => boolean;
|
|
55
|
+
};
|
|
56
|
+
wrap: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
}>> & Readonly<{}>, {
|
|
61
|
+
gap: "none" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
|
|
62
|
+
align: "stretch" | "start" | "center" | "end";
|
|
63
|
+
as: string;
|
|
64
|
+
justify: "start" | "center" | "end" | "between" | "around";
|
|
65
|
+
wrap: boolean;
|
|
66
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
67
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
68
|
+
export default _default;
|
|
69
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
70
|
+
new (): {
|
|
71
|
+
$slots: S;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
//# sourceMappingURL=Inline.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Inline.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Inline/Inline.vue"],"names":[],"mappings":"AAaA;AAoDA,OAAO,KAAK,EAAE,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AAC9F,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,aAAa,CAAA;AAyBpB,iBAAS,cAAc;WAwCT,OAAO,IAA6B;;yBAXrB,GAAG;;;;EAgB/B;AA0BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;cAQD,QAAQ,CAAC,cAAc,CAAC;;2BAErB,MAAM;;;cAGT,QAAQ,CAAC,gBAAgB,CAAC;;2BAEvB,MAAM;;;cAGT,QAAQ,CAAC,aAAa,CAAC;;2BAEpB,MAAM;;;;;;;;;;;;cAZT,QAAQ,CAAC,cAAc,CAAC;;2BAErB,MAAM;;;cAGT,QAAQ,CAAC,gBAAgB,CAAC;;2BAEvB,MAAM;;;cAGT,QAAQ,CAAC,aAAa,CAAC;;2BAEpB,MAAM;;;;;;;;;;;;4EAI3B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -8,7 +8,6 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
8
8
|
items: unknown[];
|
|
9
9
|
variant: string;
|
|
10
10
|
disabled: boolean;
|
|
11
|
-
isDarkMode: boolean;
|
|
12
11
|
triggerText: string;
|
|
13
12
|
placement: string;
|
|
14
13
|
trigger: string;
|
|
@@ -20,7 +19,6 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
20
19
|
readonly items?: unknown[] | undefined;
|
|
21
20
|
readonly variant?: string | undefined;
|
|
22
21
|
readonly disabled?: boolean | undefined;
|
|
23
|
-
readonly isDarkMode?: boolean | undefined;
|
|
24
22
|
readonly triggerText?: string | undefined;
|
|
25
23
|
readonly placement?: string | undefined;
|
|
26
24
|
readonly trigger?: string | undefined;
|
|
@@ -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":"AAwGA;wBAwkBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Modal.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Modal.vue"],"names":[],"mappings":"AA4EA;wBA+3BqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAUG"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { PageGutter, PageSize } from '@zeturn/watercolor-core';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: any;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
as: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: PropType<PageSize>;
|
|
19
|
+
default: string;
|
|
20
|
+
validator: (value: string) => boolean;
|
|
21
|
+
};
|
|
22
|
+
gutter: {
|
|
23
|
+
type: PropType<PageGutter>;
|
|
24
|
+
default: string;
|
|
25
|
+
validator: (value: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
as: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
size: {
|
|
33
|
+
type: PropType<PageSize>;
|
|
34
|
+
default: string;
|
|
35
|
+
validator: (value: string) => boolean;
|
|
36
|
+
};
|
|
37
|
+
gutter: {
|
|
38
|
+
type: PropType<PageGutter>;
|
|
39
|
+
default: string;
|
|
40
|
+
validator: (value: string) => boolean;
|
|
41
|
+
};
|
|
42
|
+
}>> & Readonly<{}>, {
|
|
43
|
+
size: "sm" | "md" | "lg" | "xl" | "full";
|
|
44
|
+
as: string;
|
|
45
|
+
gutter: "none" | "sm" | "md" | "lg";
|
|
46
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
48
|
+
export default _default;
|
|
49
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
50
|
+
new (): {
|
|
51
|
+
$slots: S;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
//# sourceMappingURL=Page.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Page.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Page/Page.vue"],"names":[],"mappings":"AAWA;AAoCA,OAAO,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AACnE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,aAAa,CAAA;AAmBpB,iBAAS,cAAc;WAoCT,OAAO,IAA6B;;yBAXrB,GAAG;;;;EAgB/B;AAoBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;cAQD,QAAQ,CAAC,QAAQ,CAAC;;2BAEf,MAAM;;;cAGT,QAAQ,CAAC,UAAU,CAAC;;2BAEjB,MAAM;;;;;;;;cAPT,QAAQ,CAAC,QAAQ,CAAC;;2BAEf,MAAM;;;cAGT,QAAQ,CAAC,UAAU,CAAC;;2BAEjB,MAAM;;;;;;4EAG3B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Pagination.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.vue"],"names":[],"mappings":"AAoFA;"}
|
|
@@ -4,17 +4,36 @@ 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: "click", ...args: any[]) => void;
|
|
7
8
|
variant: string;
|
|
8
|
-
|
|
9
|
+
color: string;
|
|
10
|
+
elevation: string | number;
|
|
11
|
+
size: string;
|
|
12
|
+
className: string;
|
|
9
13
|
component: string;
|
|
10
14
|
rounded: boolean;
|
|
15
|
+
clickable: boolean;
|
|
11
16
|
square: boolean;
|
|
17
|
+
shape: string;
|
|
18
|
+
hoverable: boolean;
|
|
19
|
+
gradient: boolean;
|
|
20
|
+
frosted: boolean;
|
|
21
|
+
textured: boolean;
|
|
12
22
|
$props: {
|
|
13
23
|
readonly variant?: string | undefined;
|
|
14
|
-
readonly
|
|
24
|
+
readonly color?: string | undefined;
|
|
25
|
+
readonly elevation?: string | number | undefined;
|
|
26
|
+
readonly size?: string | undefined;
|
|
27
|
+
readonly className?: string | undefined;
|
|
15
28
|
readonly component?: string | undefined;
|
|
16
29
|
readonly rounded?: boolean | undefined;
|
|
30
|
+
readonly clickable?: boolean | undefined;
|
|
17
31
|
readonly square?: boolean | undefined;
|
|
32
|
+
readonly shape?: string | undefined;
|
|
33
|
+
readonly hoverable?: boolean | undefined;
|
|
34
|
+
readonly gradient?: boolean | undefined;
|
|
35
|
+
readonly frosted?: boolean | undefined;
|
|
36
|
+
readonly textured?: boolean | undefined;
|
|
18
37
|
};
|
|
19
38
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
20
39
|
type __VLS_TemplateResult = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Paper.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Paper/Paper.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Paper.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Paper/Paper.vue"],"names":[],"mappings":"AAYA;wBAiOqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2OASG"}
|
|
@@ -23,6 +23,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
23
23
|
toggle: () => void;
|
|
24
24
|
triggerWrapper: import('vue').Ref<null, null>;
|
|
25
25
|
popoverRef: import('vue').Ref<null, null>;
|
|
26
|
+
popoverId: string;
|
|
26
27
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("close" | "update:modelValue" | "open")[], "close" | "update:modelValue" | "open", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
28
|
modelValue: {
|
|
28
29
|
type: BooleanConstructor;
|
|
@@ -50,11 +51,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
50
51
|
triggerText: string;
|
|
51
52
|
placement: string;
|
|
52
53
|
offset: number;
|
|
53
|
-
}, {}, {}, {
|
|
54
|
-
outside: {
|
|
55
|
-
beforeMount(el: any, binding: import('vue').DirectiveBinding<any, string, any>): void;
|
|
56
|
-
unmounted(el: any): void;
|
|
57
|
-
};
|
|
58
|
-
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
54
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
59
55
|
export default _default;
|
|
60
56
|
//# sourceMappingURL=Popover.vue.d.ts.map
|
|
@@ -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":"AA2CA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Progress/Progress.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Progress/Progress.vue"],"names":[],"mappings":"AAmCA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radio.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/Radio.vue"],"names":[],"mappings":"AA2BA;
|
|
1
|
+
{"version":3,"file":"Radio.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/Radio.vue"],"names":[],"mappings":"AA2BA;wBAuWqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;wPASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/RadioGroup.vue"],"names":[],"mappings":"AAoCA;
|
|
1
|
+
{"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/RadioGroup.vue"],"names":[],"mappings":"AAoCA;wBAoRqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAZjC;;;;;;;;;;;;;;;;;;;;;;;;sPASG"}
|
|
@@ -14,8 +14,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
14
14
|
}>, {
|
|
15
15
|
internalValue: import('vue').Ref<number, number>;
|
|
16
16
|
hovered: import('vue').Ref<number, number>;
|
|
17
|
-
select: (
|
|
18
|
-
hover: (
|
|
17
|
+
select: (value: any) => void;
|
|
18
|
+
hover: (value: any) => void;
|
|
19
19
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
20
|
modelValue: {
|
|
21
21
|
type: NumberConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/Select.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/Select.vue"],"names":[],"mappings":"AA8GA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Skeleton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeleton/Skeleton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Skeleton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeleton/Skeleton.vue"],"names":[],"mappings":"AAeA;AAwGA,OAAO,aAAa,CAAA;AAqFpB,iBAAS,cAAc;WA0CT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AA2CD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;IAMnB,eAAe;;;;;IAKf,4CAA4C;;;;2BAIvB,OAAO,GAAG,MAAM;;IAErC,YAAY;;;;;IAKZ,kCAAkC;;;;;IAKlC,kCAAkC;;;;;IAKlC,WAAW;;;;2BAIU,MAAM;;;IA9B3B,eAAe;;;;;IAKf,4CAA4C;;;;2BAIvB,OAAO,GAAG,MAAM;;IAErC,YAAY;;;;;IAKZ,kCAAkC;;;;;IAKlC,kCAAkC;;;;;IAKlC,WAAW;;;;2BAIU,MAAM;;;;;;;;;4EAG3B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -18,6 +18,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
18
18
|
panelStyle: import('vue').ComputedRef<{
|
|
19
19
|
width: string;
|
|
20
20
|
}>;
|
|
21
|
+
panelRef: import('vue').Ref<null, null>;
|
|
22
|
+
closeRef: import('vue').Ref<null, null>;
|
|
21
23
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("close" | "update:modelValue" | "open")[], "close" | "update:modelValue" | "open", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
22
24
|
modelValue: {
|
|
23
25
|
type: BooleanConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SlideOver.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/SlideOver/SlideOver.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SlideOver.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/SlideOver/SlideOver.vue"],"names":[],"mappings":"AAqDA;"}
|