@volverjs/ui-vue 0.0.9 → 0.0.10-beta.2
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 +64 -1
- package/auto-imports.d.ts +1 -1
- package/bin/icons.cjs +1 -1
- package/bin/icons.js +13 -5
- package/dist/components/VvAccordion/index.d.ts +1 -1
- package/dist/components/VvButton/VvButton.es.js +3 -3
- package/dist/components/VvCheckbox/VvCheckbox.es.js +3 -3
- package/dist/components/VvCheckbox/index.d.ts +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +5 -5
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +21 -32
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +66 -66
- package/dist/components/VvCombobox/index.d.ts +22 -22
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +156 -156
- package/dist/components/VvDropdown/index.d.ts +22 -22
- package/dist/components/VvRadio/VvRadio.es.js +3 -3
- package/dist/components/VvRadio/index.d.ts +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +5 -5
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +6 -6
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/index.es.js +21 -32
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/group/useInjectedGroupState.d.ts +1 -1
- package/dist/composables/useOptions.d.ts +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +22 -22
- package/dist/stories/Combobox/ComboboxOptions.stories.d.ts +1 -0
- package/dist/stories/InputText/InputTextMask.stories.d.ts +1 -1
- package/package.json +8 -7
- 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/VvCombobox/VvCombobox.vue +13 -25
- package/src/components/VvSelect/VvSelect.vue +4 -4
- package/src/composables/useOptions.ts +2 -2
- package/src/stories/Button/ButtonModifiers.stories.ts +4 -14
- package/src/stories/Combobox/ComboboxOptions.stories.ts +18 -0
- package/src/stories/InputText/InputTextMask.stories.ts +1 -1
- package/src/utils/ObjectUtilities.ts +3 -2
|
@@ -174,7 +174,7 @@ export declare const VvComboboxProps: {
|
|
|
174
174
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
175
175
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
176
176
|
altBoundary?: boolean | undefined;
|
|
177
|
-
padding?: import("@floating-ui/
|
|
177
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
178
178
|
limiter?: {
|
|
179
179
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
180
180
|
options?: any;
|
|
@@ -186,7 +186,7 @@ export declare const VvComboboxProps: {
|
|
|
186
186
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
187
187
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
188
188
|
altBoundary?: boolean | undefined;
|
|
189
|
-
padding?: import("@floating-ui/
|
|
189
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
190
190
|
limiter?: {
|
|
191
191
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
192
192
|
options?: any;
|
|
@@ -202,8 +202,8 @@ export declare const VvComboboxProps: {
|
|
|
202
202
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
203
203
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
204
204
|
altBoundary?: boolean | undefined;
|
|
205
|
-
padding?: import("@floating-ui/
|
|
206
|
-
fallbackPlacements?: import("@floating-ui/
|
|
205
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
206
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
207
207
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
208
208
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
209
209
|
flipAlignment?: boolean | undefined;
|
|
@@ -214,8 +214,8 @@ export declare const VvComboboxProps: {
|
|
|
214
214
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
215
215
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
216
216
|
altBoundary?: boolean | undefined;
|
|
217
|
-
padding?: import("@floating-ui/
|
|
218
|
-
fallbackPlacements?: import("@floating-ui/
|
|
217
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
218
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
219
219
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
220
220
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
221
221
|
flipAlignment?: boolean | undefined;
|
|
@@ -228,16 +228,16 @@ export declare const VvComboboxProps: {
|
|
|
228
228
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
229
229
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
230
230
|
altBoundary?: boolean | undefined;
|
|
231
|
-
padding?: import("@floating-ui/
|
|
231
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
232
232
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
233
233
|
apply?: ((args: {
|
|
234
234
|
x: number;
|
|
235
235
|
y: number;
|
|
236
|
-
initialPlacement: import("@floating-ui/
|
|
237
|
-
placement: import("@floating-ui/
|
|
238
|
-
strategy: import("@floating-ui/
|
|
236
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
237
|
+
placement: import("@floating-ui/utils").Placement;
|
|
238
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
239
239
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
240
|
-
rects: import("@floating-ui/
|
|
240
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
241
241
|
platform: import("@floating-ui/core").Platform;
|
|
242
242
|
elements: import("@floating-ui/dom").Elements;
|
|
243
243
|
} & {
|
|
@@ -248,16 +248,16 @@ export declare const VvComboboxProps: {
|
|
|
248
248
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
249
249
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
250
250
|
altBoundary?: boolean | undefined;
|
|
251
|
-
padding?: import("@floating-ui/
|
|
251
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
252
252
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
253
253
|
apply?: ((args: {
|
|
254
254
|
x: number;
|
|
255
255
|
y: number;
|
|
256
|
-
initialPlacement: import("@floating-ui/
|
|
257
|
-
placement: import("@floating-ui/
|
|
258
|
-
strategy: import("@floating-ui/
|
|
256
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
257
|
+
placement: import("@floating-ui/utils").Placement;
|
|
258
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
259
259
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
260
|
-
rects: import("@floating-ui/
|
|
260
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
261
261
|
platform: import("@floating-ui/core").Platform;
|
|
262
262
|
elements: import("@floating-ui/dom").Elements;
|
|
263
263
|
} & {
|
|
@@ -275,20 +275,20 @@ export declare const VvComboboxProps: {
|
|
|
275
275
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
276
276
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
277
277
|
altBoundary?: boolean | undefined;
|
|
278
|
-
padding?: import("@floating-ui/
|
|
279
|
-
alignment?: import("@floating-ui/
|
|
278
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
279
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
280
280
|
autoAlignment?: boolean | undefined;
|
|
281
|
-
allowedPlacements?: import("@floating-ui/
|
|
281
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
282
282
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
283
283
|
} | import("@floating-ui/dom").Derivable<{
|
|
284
284
|
crossAxis?: boolean | undefined;
|
|
285
285
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
286
286
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
287
287
|
altBoundary?: boolean | undefined;
|
|
288
|
-
padding?: import("@floating-ui/
|
|
289
|
-
alignment?: import("@floating-ui/
|
|
288
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
289
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
290
290
|
autoAlignment?: boolean | undefined;
|
|
291
|
-
allowedPlacements?: import("@floating-ui/
|
|
291
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
292
292
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
293
293
|
}> | undefined>;
|
|
294
294
|
default: boolean;
|