@volverjs/ui-vue 0.0.9-beta.2 → 0.0.9-beta.20
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/README.md +3 -3
- package/auto-imports.d.ts +2 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +7 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +7 -0
- package/dist/components/VvAction/VvAction.es.js +9 -1
- package/dist/components/VvAction/VvAction.umd.js +1 -1
- package/dist/components/VvAction/VvAction.vue.d.ts +9 -0
- package/dist/components/VvAction/index.d.ts +4 -0
- package/dist/components/VvAlert/VvAlert.es.js +14 -6
- package/dist/components/VvAlert/VvAlert.umd.js +1 -1
- package/dist/components/VvAlert/VvAlert.vue.d.ts +6 -6
- package/dist/components/VvAlert/index.d.ts +3 -3
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +14 -6
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +3 -3
- package/dist/components/VvAlertGroup/index.d.ts +1 -1
- package/dist/components/VvAvatar/VvAvatar.es.js +7 -0
- package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +7 -0
- package/dist/components/VvBadge/VvBadge.es.js +7 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +7 -0
- package/dist/components/VvButton/VvButton.es.js +11 -2
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +9 -0
- package/dist/components/VvButton/index.d.ts +4 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +7 -0
- package/dist/components/VvCard/VvCard.es.js +7 -0
- package/dist/components/VvCheckbox/VvCheckbox.es.js +91 -14
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +4 -4
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +97 -15
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
- package/dist/components/VvCombobox/VvCombobox.es.js +243 -179
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +323 -95
- package/dist/components/VvCombobox/index.d.ts +123 -35
- package/dist/components/VvDialog/VvDialog.es.js +42 -30
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +19 -6
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +291 -84
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +9 -0
- package/dist/components/VvDropdown/index.d.ts +96 -27
- package/dist/components/VvDropdownAction/VvDropdownAction.es.js +9 -1
- package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
- package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +7 -0
- package/dist/components/VvDropdownOption/VvDropdownOption.es.js +7 -0
- package/dist/components/VvInputText/VvInputText.es.js +271 -109
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +23 -41
- package/dist/components/VvInputText/index.d.ts +25 -35
- package/dist/components/VvNav/VvNav.es.js +10 -2
- package/dist/components/VvNav/VvNav.umd.js +1 -1
- package/dist/components/VvNav/index.d.ts +1 -1
- package/dist/components/VvProgress/VvProgress.es.js +7 -0
- package/dist/components/VvRadio/VvRadio.es.js +91 -14
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +4 -4
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +97 -15
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
- package/dist/components/VvSelect/VvSelect.es.js +87 -14
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +5 -5
- package/dist/components/VvTab/VvTab.es.js +10 -2
- package/dist/components/VvTab/VvTab.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +95 -19
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +4 -4
- package/dist/components/VvTooltip/VvTooltip.es.js +7 -0
- package/dist/components/common/HintSlot.d.ts +4 -3
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.es.js +1199 -614
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/alert/useAlert.d.ts +27 -0
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/index.es.js +81 -0
- package/dist/composables/index.umd.js +1 -0
- package/dist/constants.d.ts +10 -0
- package/dist/directives/index.es.js +7 -0
- package/dist/directives/v-tooltip.es.js +7 -0
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +103 -27
- package/dist/resolvers/unplugin.es.js +3 -0
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +2 -2
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +54 -269
- package/dist/stories/Alert/Alert.settings.d.ts +3 -7
- package/dist/stories/AlertGroup/AlertGroupSlots.stories.d.ts +2 -2
- package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +6 -0
- package/dist/stories/Button/Button.settings.d.ts +3 -13
- package/dist/stories/Combobox/Combobox.settings.d.ts +117 -19
- package/dist/stories/InputText/InputText.settings.d.ts +31 -9
- package/dist/stories/InputText/InputText.stories.d.ts +0 -1
- package/dist/stories/InputText/InputTextMask.stories.d.ts +12 -0
- package/dist/stories/Nav/Nav.settings.d.ts +3 -21
- package/package.json +75 -66
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAction/VvAction.vue +2 -1
- package/src/components/VvAlert/VvAlert.vue +5 -1
- package/src/components/VvAlert/index.ts +3 -3
- package/src/components/VvAlertGroup/VvAlertGroup.vue +2 -0
- package/src/components/VvButton/VvButton.vue +1 -0
- package/src/components/VvCheckbox/VvCheckbox.vue +8 -1
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +8 -1
- package/src/components/VvCombobox/VvCombobox.vue +43 -23
- package/src/components/VvCombobox/index.ts +24 -0
- package/src/components/VvDialog/VvDialog.vue +22 -19
- package/src/components/VvDropdown/VvDropdown.vue +14 -9
- package/src/components/VvInputText/VvInputText.vue +177 -55
- package/src/components/VvInputText/index.ts +32 -34
- package/src/components/VvNav/VvNav.vue +1 -1
- package/src/components/VvNav/index.ts +1 -1
- package/src/components/VvRadio/VvRadio.vue +8 -1
- package/src/components/VvRadioGroup/VvRadioGroup.vue +8 -1
- package/src/components/VvSelect/VvSelect.vue +8 -1
- package/src/components/VvTextarea/VvTextarea.vue +16 -6
- package/src/components/common/HintSlot.ts +26 -13
- package/src/components/index.ts +5 -0
- package/src/composables/alert/useAlert.ts +103 -0
- package/src/composables/index.ts +1 -0
- package/src/constants.ts +21 -0
- package/src/props/index.ts +7 -0
- package/src/resolvers/unplugin.ts +3 -0
- package/src/stories/Alert/Alert.settings.ts +3 -1
- package/src/stories/AlertGroup/AlertGroup.test.ts +13 -0
- package/src/stories/AlertGroup/AlertGroupSlots.stories.ts +3 -3
- package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +118 -0
- package/src/stories/Button/Button.settings.ts +5 -3
- package/src/stories/Combobox/Combobox.settings.ts +119 -2
- package/src/stories/Combobox/Combobox.test.ts +1 -1
- package/src/stories/InputText/InputText.settings.ts +36 -15
- package/src/stories/InputText/InputText.stories.ts +4 -12
- package/src/stories/InputText/InputText.test.ts +31 -15
- package/src/stories/InputText/InputTextMask.stories.ts +122 -0
- package/src/stories/Nav/Nav.settings.ts +3 -1
- package/src/stories/Tab/Tab.stories.ts +3 -3
- package/src/stories/Textarea/TextareaLength.stories.ts +1 -1
- package/src/types/alert.d.ts +20 -0
- /package/dist/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue.d.ts +0 -0
- /package/dist/components/{VvNavSeparator → VvNav}/VvNavSeparator.d.ts +0 -0
- /package/src/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue +0 -0
- /package/src/components/{VvNavSeparator → VvNav}/VvNavSeparator.ts +0 -0
|
@@ -32,33 +32,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
32
32
|
default: number;
|
|
33
33
|
};
|
|
34
34
|
shift: {
|
|
35
|
-
type: globalThis.PropType<boolean |
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
type: globalThis.PropType<boolean | {
|
|
36
|
+
mainAxis?: boolean | undefined;
|
|
37
|
+
crossAxis?: boolean | undefined;
|
|
38
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
39
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
40
|
+
altBoundary?: boolean | undefined;
|
|
41
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
42
|
+
limiter?: {
|
|
43
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
44
|
+
options?: any;
|
|
45
|
+
} | undefined;
|
|
46
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
47
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
48
|
+
mainAxis?: boolean | undefined;
|
|
49
|
+
crossAxis?: boolean | undefined;
|
|
50
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
51
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
52
|
+
altBoundary?: boolean | undefined;
|
|
53
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
54
|
+
limiter?: {
|
|
55
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
56
|
+
options?: any;
|
|
57
|
+
} | undefined;
|
|
58
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
41
59
|
}> | undefined>;
|
|
42
60
|
default: boolean;
|
|
43
61
|
};
|
|
44
62
|
flip: {
|
|
45
|
-
type: globalThis.PropType<boolean |
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
63
|
+
type: globalThis.PropType<boolean | {
|
|
64
|
+
mainAxis?: boolean | undefined;
|
|
65
|
+
crossAxis?: boolean | undefined;
|
|
66
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
67
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
68
|
+
altBoundary?: boolean | undefined;
|
|
69
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
70
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
71
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
72
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
73
|
+
flipAlignment?: boolean | undefined;
|
|
74
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
75
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
76
|
+
mainAxis?: boolean | undefined;
|
|
77
|
+
crossAxis?: boolean | undefined;
|
|
78
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
79
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
80
|
+
altBoundary?: boolean | undefined;
|
|
81
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
82
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
83
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
84
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
85
|
+
flipAlignment?: boolean | undefined;
|
|
86
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
51
87
|
}> | undefined>;
|
|
52
88
|
default: boolean;
|
|
53
89
|
};
|
|
54
90
|
size: {
|
|
55
|
-
type: globalThis.PropType<boolean |
|
|
56
|
-
|
|
91
|
+
type: globalThis.PropType<boolean | {
|
|
92
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
93
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
94
|
+
altBoundary?: boolean | undefined;
|
|
95
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
96
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
97
|
+
apply?: ((args: {
|
|
57
98
|
x: number;
|
|
58
99
|
y: number;
|
|
100
|
+
initialPlacement: import("@floating-ui/vue").Placement;
|
|
59
101
|
placement: import("@floating-ui/vue").Placement;
|
|
60
102
|
strategy: import("@floating-ui/vue").Strategy;
|
|
103
|
+
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
104
|
+
rects: import("@floating-ui/vue").ElementRects;
|
|
105
|
+
platform: import("@floating-ui/core").Platform;
|
|
106
|
+
elements: import("@floating-ui/vue").Elements;
|
|
107
|
+
} & {
|
|
108
|
+
availableWidth: number;
|
|
109
|
+
availableHeight: number;
|
|
110
|
+
}) => void | Promise<void>) | undefined;
|
|
111
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
112
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
113
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
114
|
+
altBoundary?: boolean | undefined;
|
|
115
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
116
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
117
|
+
apply?: ((args: {
|
|
118
|
+
x: number;
|
|
119
|
+
y: number;
|
|
61
120
|
initialPlacement: import("@floating-ui/vue").Placement;
|
|
121
|
+
placement: import("@floating-ui/vue").Placement;
|
|
122
|
+
strategy: import("@floating-ui/vue").Strategy;
|
|
62
123
|
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
63
124
|
rects: import("@floating-ui/vue").ElementRects;
|
|
64
125
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -66,25 +127,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
66
127
|
} & {
|
|
67
128
|
availableWidth: number;
|
|
68
129
|
availableHeight: number;
|
|
69
|
-
}) => void | Promise<void
|
|
70
|
-
} & {
|
|
71
|
-
rootBoundary: import("@floating-ui/vue").RootBoundary;
|
|
72
|
-
elementContext: import("@floating-ui/vue").ElementContext;
|
|
73
|
-
altBoundary: boolean;
|
|
74
|
-
padding: import("@floating-ui/vue").Padding;
|
|
75
|
-
boundary: import("@floating-ui/vue").Boundary;
|
|
130
|
+
}) => void | Promise<void>) | undefined;
|
|
76
131
|
}> | undefined>;
|
|
77
132
|
default: () => {
|
|
78
133
|
padding: number;
|
|
79
134
|
};
|
|
80
135
|
};
|
|
81
136
|
autoPlacement: {
|
|
82
|
-
type: globalThis.PropType<boolean |
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
137
|
+
type: globalThis.PropType<boolean | {
|
|
138
|
+
crossAxis?: boolean | undefined;
|
|
139
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
140
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
141
|
+
altBoundary?: boolean | undefined;
|
|
142
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
143
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
144
|
+
autoAlignment?: boolean | undefined;
|
|
145
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
146
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
147
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
148
|
+
crossAxis?: boolean | undefined;
|
|
149
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
150
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
151
|
+
altBoundary?: boolean | undefined;
|
|
152
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
153
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
154
|
+
autoAlignment?: boolean | undefined;
|
|
155
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
156
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
88
157
|
}> | undefined>;
|
|
89
158
|
default: boolean;
|
|
90
159
|
};
|
|
@@ -143,33 +212,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
143
212
|
default: number;
|
|
144
213
|
};
|
|
145
214
|
shift: {
|
|
146
|
-
type: globalThis.PropType<boolean |
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
215
|
+
type: globalThis.PropType<boolean | {
|
|
216
|
+
mainAxis?: boolean | undefined;
|
|
217
|
+
crossAxis?: boolean | undefined;
|
|
218
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
219
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
220
|
+
altBoundary?: boolean | undefined;
|
|
221
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
222
|
+
limiter?: {
|
|
223
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
224
|
+
options?: any;
|
|
225
|
+
} | undefined;
|
|
226
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
227
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
228
|
+
mainAxis?: boolean | undefined;
|
|
229
|
+
crossAxis?: boolean | undefined;
|
|
230
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
231
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
232
|
+
altBoundary?: boolean | undefined;
|
|
233
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
234
|
+
limiter?: {
|
|
235
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
236
|
+
options?: any;
|
|
237
|
+
} | undefined;
|
|
238
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
152
239
|
}> | undefined>;
|
|
153
240
|
default: boolean;
|
|
154
241
|
};
|
|
155
242
|
flip: {
|
|
156
|
-
type: globalThis.PropType<boolean |
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
243
|
+
type: globalThis.PropType<boolean | {
|
|
244
|
+
mainAxis?: boolean | undefined;
|
|
245
|
+
crossAxis?: boolean | undefined;
|
|
246
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
247
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
248
|
+
altBoundary?: boolean | undefined;
|
|
249
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
250
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
251
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
252
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
253
|
+
flipAlignment?: boolean | undefined;
|
|
254
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
255
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
256
|
+
mainAxis?: boolean | undefined;
|
|
257
|
+
crossAxis?: boolean | undefined;
|
|
258
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
259
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
260
|
+
altBoundary?: boolean | undefined;
|
|
261
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
262
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
263
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
264
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
265
|
+
flipAlignment?: boolean | undefined;
|
|
266
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
162
267
|
}> | undefined>;
|
|
163
268
|
default: boolean;
|
|
164
269
|
};
|
|
165
270
|
size: {
|
|
166
|
-
type: globalThis.PropType<boolean |
|
|
167
|
-
|
|
271
|
+
type: globalThis.PropType<boolean | {
|
|
272
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
273
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
274
|
+
altBoundary?: boolean | undefined;
|
|
275
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
276
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
277
|
+
apply?: ((args: {
|
|
168
278
|
x: number;
|
|
169
279
|
y: number;
|
|
280
|
+
initialPlacement: import("@floating-ui/vue").Placement;
|
|
170
281
|
placement: import("@floating-ui/vue").Placement;
|
|
171
282
|
strategy: import("@floating-ui/vue").Strategy;
|
|
283
|
+
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
284
|
+
rects: import("@floating-ui/vue").ElementRects;
|
|
285
|
+
platform: import("@floating-ui/core").Platform;
|
|
286
|
+
elements: import("@floating-ui/vue").Elements;
|
|
287
|
+
} & {
|
|
288
|
+
availableWidth: number;
|
|
289
|
+
availableHeight: number;
|
|
290
|
+
}) => void | Promise<void>) | undefined;
|
|
291
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
292
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
293
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
294
|
+
altBoundary?: boolean | undefined;
|
|
295
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
296
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
297
|
+
apply?: ((args: {
|
|
298
|
+
x: number;
|
|
299
|
+
y: number;
|
|
172
300
|
initialPlacement: import("@floating-ui/vue").Placement;
|
|
301
|
+
placement: import("@floating-ui/vue").Placement;
|
|
302
|
+
strategy: import("@floating-ui/vue").Strategy;
|
|
173
303
|
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
174
304
|
rects: import("@floating-ui/vue").ElementRects;
|
|
175
305
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -177,25 +307,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
177
307
|
} & {
|
|
178
308
|
availableWidth: number;
|
|
179
309
|
availableHeight: number;
|
|
180
|
-
}) => void | Promise<void
|
|
181
|
-
} & {
|
|
182
|
-
rootBoundary: import("@floating-ui/vue").RootBoundary;
|
|
183
|
-
elementContext: import("@floating-ui/vue").ElementContext;
|
|
184
|
-
altBoundary: boolean;
|
|
185
|
-
padding: import("@floating-ui/vue").Padding;
|
|
186
|
-
boundary: import("@floating-ui/vue").Boundary;
|
|
310
|
+
}) => void | Promise<void>) | undefined;
|
|
187
311
|
}> | undefined>;
|
|
188
312
|
default: () => {
|
|
189
313
|
padding: number;
|
|
190
314
|
};
|
|
191
315
|
};
|
|
192
316
|
autoPlacement: {
|
|
193
|
-
type: globalThis.PropType<boolean |
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
317
|
+
type: globalThis.PropType<boolean | {
|
|
318
|
+
crossAxis?: boolean | undefined;
|
|
319
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
320
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
321
|
+
altBoundary?: boolean | undefined;
|
|
322
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
323
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
324
|
+
autoAlignment?: boolean | undefined;
|
|
325
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
326
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
327
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
328
|
+
crossAxis?: boolean | undefined;
|
|
329
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
330
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
331
|
+
altBoundary?: boolean | undefined;
|
|
332
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
333
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
334
|
+
autoAlignment?: boolean | undefined;
|
|
335
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
336
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
199
337
|
}> | undefined>;
|
|
200
338
|
default: boolean;
|
|
201
339
|
};
|
|
@@ -230,30 +368,93 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
230
368
|
onAfterExpand?: ((...args: any[]) => any) | undefined;
|
|
231
369
|
onAfterCollapse?: ((...args: any[]) => any) | undefined;
|
|
232
370
|
}, {
|
|
233
|
-
shift: boolean | Partial<import("@floating-ui/vue").ShiftOptions & {
|
|
234
|
-
rootBoundary: import("@floating-ui/vue").RootBoundary;
|
|
235
|
-
elementContext: import("@floating-ui/vue").ElementContext;
|
|
236
|
-
altBoundary: boolean;
|
|
237
|
-
padding: import("@floating-ui/vue").Padding;
|
|
238
|
-
boundary: import("@floating-ui/vue").Boundary;
|
|
239
|
-
}> | undefined;
|
|
240
371
|
reference: HTMLElement | null;
|
|
372
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
373
|
+
strategy: "fixed" | "absolute";
|
|
241
374
|
modelValue: boolean;
|
|
375
|
+
shift: boolean | {
|
|
376
|
+
mainAxis?: boolean | undefined;
|
|
377
|
+
crossAxis?: boolean | undefined;
|
|
378
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
379
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
380
|
+
altBoundary?: boolean | undefined;
|
|
381
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
382
|
+
limiter?: {
|
|
383
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
384
|
+
options?: any;
|
|
385
|
+
} | undefined;
|
|
386
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
387
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
388
|
+
mainAxis?: boolean | undefined;
|
|
389
|
+
crossAxis?: boolean | undefined;
|
|
390
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
391
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
392
|
+
altBoundary?: boolean | undefined;
|
|
393
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
394
|
+
limiter?: {
|
|
395
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/vue").Coords;
|
|
396
|
+
options?: any;
|
|
397
|
+
} | undefined;
|
|
398
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
399
|
+
}> | undefined;
|
|
242
400
|
role: "listbox" | "menu";
|
|
243
|
-
flip: boolean |
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
401
|
+
flip: boolean | {
|
|
402
|
+
mainAxis?: boolean | undefined;
|
|
403
|
+
crossAxis?: boolean | undefined;
|
|
404
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
405
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
406
|
+
altBoundary?: boolean | undefined;
|
|
407
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
408
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
409
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
410
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
411
|
+
flipAlignment?: boolean | undefined;
|
|
412
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
413
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
414
|
+
mainAxis?: boolean | undefined;
|
|
415
|
+
crossAxis?: boolean | undefined;
|
|
416
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
417
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
418
|
+
altBoundary?: boolean | undefined;
|
|
419
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
420
|
+
fallbackPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
421
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
422
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
423
|
+
flipAlignment?: boolean | undefined;
|
|
424
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
249
425
|
}> | undefined;
|
|
250
|
-
size: boolean |
|
|
251
|
-
|
|
426
|
+
size: boolean | {
|
|
427
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
428
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
429
|
+
altBoundary?: boolean | undefined;
|
|
430
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
431
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
432
|
+
apply?: ((args: {
|
|
252
433
|
x: number;
|
|
253
434
|
y: number;
|
|
435
|
+
initialPlacement: import("@floating-ui/vue").Placement;
|
|
254
436
|
placement: import("@floating-ui/vue").Placement;
|
|
255
437
|
strategy: import("@floating-ui/vue").Strategy;
|
|
438
|
+
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
439
|
+
rects: import("@floating-ui/vue").ElementRects;
|
|
440
|
+
platform: import("@floating-ui/core").Platform;
|
|
441
|
+
elements: import("@floating-ui/vue").Elements;
|
|
442
|
+
} & {
|
|
443
|
+
availableWidth: number;
|
|
444
|
+
availableHeight: number;
|
|
445
|
+
}) => void | Promise<void>) | undefined;
|
|
446
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
447
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
448
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
449
|
+
altBoundary?: boolean | undefined;
|
|
450
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
451
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
452
|
+
apply?: ((args: {
|
|
453
|
+
x: number;
|
|
454
|
+
y: number;
|
|
256
455
|
initialPlacement: import("@floating-ui/vue").Placement;
|
|
456
|
+
placement: import("@floating-ui/vue").Placement;
|
|
457
|
+
strategy: import("@floating-ui/vue").Strategy;
|
|
257
458
|
middlewareData: import("@floating-ui/vue").MiddlewareData;
|
|
258
459
|
rects: import("@floating-ui/vue").ElementRects;
|
|
259
460
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -261,23 +462,29 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
261
462
|
} & {
|
|
262
463
|
availableWidth: number;
|
|
263
464
|
availableHeight: number;
|
|
264
|
-
}) => void | Promise<void
|
|
265
|
-
} & {
|
|
266
|
-
rootBoundary: import("@floating-ui/vue").RootBoundary;
|
|
267
|
-
elementContext: import("@floating-ui/vue").ElementContext;
|
|
268
|
-
altBoundary: boolean;
|
|
269
|
-
padding: import("@floating-ui/vue").Padding;
|
|
270
|
-
boundary: import("@floating-ui/vue").Boundary;
|
|
465
|
+
}) => void | Promise<void>) | undefined;
|
|
271
466
|
}> | undefined;
|
|
272
|
-
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
273
|
-
strategy: "fixed" | "absolute";
|
|
274
467
|
offset: string | import("@floating-ui/vue").OffsetOptions | undefined;
|
|
275
|
-
autoPlacement: boolean |
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
468
|
+
autoPlacement: boolean | {
|
|
469
|
+
crossAxis?: boolean | undefined;
|
|
470
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
471
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
472
|
+
altBoundary?: boolean | undefined;
|
|
473
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
474
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
475
|
+
autoAlignment?: boolean | undefined;
|
|
476
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
477
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
478
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
479
|
+
crossAxis?: boolean | undefined;
|
|
480
|
+
rootBoundary?: import("@floating-ui/vue").RootBoundary | undefined;
|
|
481
|
+
elementContext?: import("@floating-ui/vue").ElementContext | undefined;
|
|
482
|
+
altBoundary?: boolean | undefined;
|
|
483
|
+
padding?: import("@floating-ui/vue").Padding | undefined;
|
|
484
|
+
alignment?: import("@floating-ui/vue").Alignment | null | undefined;
|
|
485
|
+
autoAlignment?: boolean | undefined;
|
|
486
|
+
allowedPlacements?: import("@floating-ui/vue").Placement[] | undefined;
|
|
487
|
+
boundary?: import("@floating-ui/vue").Boundary | undefined;
|
|
281
488
|
}> | undefined;
|
|
282
489
|
arrow: boolean;
|
|
283
490
|
keepOpen: boolean;
|
|
@@ -5,6 +5,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
5
5
|
default: import("../../constants").ButtonType;
|
|
6
6
|
validator: (value: import("../../constants").ButtonType) => boolean;
|
|
7
7
|
};
|
|
8
|
+
ariaLabel: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
8
12
|
to: {
|
|
9
13
|
type: (ObjectConstructor | StringConstructor)[];
|
|
10
14
|
};
|
|
@@ -28,6 +32,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
28
32
|
default: import("../../constants").ButtonType;
|
|
29
33
|
validator: (value: import("../../constants").ButtonType) => boolean;
|
|
30
34
|
};
|
|
35
|
+
ariaLabel: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: undefined;
|
|
38
|
+
};
|
|
31
39
|
to: {
|
|
32
40
|
type: (ObjectConstructor | StringConstructor)[];
|
|
33
41
|
};
|
|
@@ -47,6 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
47
55
|
}>>, {
|
|
48
56
|
disabled: boolean;
|
|
49
57
|
type: "button" | "submit" | "reset";
|
|
58
|
+
ariaLabel: string;
|
|
50
59
|
rel: string;
|
|
51
60
|
active: boolean;
|
|
52
61
|
pressed: boolean;
|