@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
package/dist/props/index.d.ts
CHANGED
|
@@ -246,7 +246,7 @@ export declare const DropdownProps: {
|
|
|
246
246
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
247
247
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
248
248
|
altBoundary?: boolean | undefined;
|
|
249
|
-
padding?: import("@floating-ui/
|
|
249
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
250
250
|
limiter?: {
|
|
251
251
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
252
252
|
options?: any;
|
|
@@ -258,7 +258,7 @@ export declare const DropdownProps: {
|
|
|
258
258
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
259
259
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
260
260
|
altBoundary?: boolean | undefined;
|
|
261
|
-
padding?: import("@floating-ui/
|
|
261
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
262
262
|
limiter?: {
|
|
263
263
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
264
264
|
options?: any;
|
|
@@ -278,8 +278,8 @@ export declare const DropdownProps: {
|
|
|
278
278
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
279
279
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
280
280
|
altBoundary?: boolean | undefined;
|
|
281
|
-
padding?: import("@floating-ui/
|
|
282
|
-
fallbackPlacements?: import("@floating-ui/
|
|
281
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
282
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
283
283
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
284
284
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
285
285
|
flipAlignment?: boolean | undefined;
|
|
@@ -290,8 +290,8 @@ export declare const DropdownProps: {
|
|
|
290
290
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
291
291
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
292
292
|
altBoundary?: boolean | undefined;
|
|
293
|
-
padding?: import("@floating-ui/
|
|
294
|
-
fallbackPlacements?: import("@floating-ui/
|
|
293
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
294
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
295
295
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
296
296
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
297
297
|
flipAlignment?: boolean | undefined;
|
|
@@ -308,16 +308,16 @@ export declare const DropdownProps: {
|
|
|
308
308
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
309
309
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
310
310
|
altBoundary?: boolean | undefined;
|
|
311
|
-
padding?: import("@floating-ui/
|
|
311
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
312
312
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
313
313
|
apply?: ((args: {
|
|
314
314
|
x: number;
|
|
315
315
|
y: number;
|
|
316
|
-
initialPlacement: import("@floating-ui/
|
|
317
|
-
placement: import("@floating-ui/
|
|
318
|
-
strategy: import("@floating-ui/
|
|
316
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
317
|
+
placement: import("@floating-ui/utils").Placement;
|
|
318
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
319
319
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
320
|
-
rects: import("@floating-ui/
|
|
320
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
321
321
|
platform: import("@floating-ui/core").Platform;
|
|
322
322
|
elements: import("@floating-ui/dom").Elements;
|
|
323
323
|
} & {
|
|
@@ -328,16 +328,16 @@ export declare const DropdownProps: {
|
|
|
328
328
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
329
329
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
330
330
|
altBoundary?: boolean | undefined;
|
|
331
|
-
padding?: import("@floating-ui/
|
|
331
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
332
332
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
333
333
|
apply?: ((args: {
|
|
334
334
|
x: number;
|
|
335
335
|
y: number;
|
|
336
|
-
initialPlacement: import("@floating-ui/
|
|
337
|
-
placement: import("@floating-ui/
|
|
338
|
-
strategy: import("@floating-ui/
|
|
336
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
337
|
+
placement: import("@floating-ui/utils").Placement;
|
|
338
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
339
339
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
340
|
-
rects: import("@floating-ui/
|
|
340
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
341
341
|
platform: import("@floating-ui/core").Platform;
|
|
342
342
|
elements: import("@floating-ui/dom").Elements;
|
|
343
343
|
} & {
|
|
@@ -359,20 +359,20 @@ export declare const DropdownProps: {
|
|
|
359
359
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
360
360
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
361
361
|
altBoundary?: boolean | undefined;
|
|
362
|
-
padding?: import("@floating-ui/
|
|
363
|
-
alignment?: import("@floating-ui/
|
|
362
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
363
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
364
364
|
autoAlignment?: boolean | undefined;
|
|
365
|
-
allowedPlacements?: import("@floating-ui/
|
|
365
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
366
366
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
367
367
|
} | import("@floating-ui/dom").Derivable<{
|
|
368
368
|
crossAxis?: boolean | undefined;
|
|
369
369
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
370
370
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
371
371
|
altBoundary?: boolean | undefined;
|
|
372
|
-
padding?: import("@floating-ui/
|
|
373
|
-
alignment?: import("@floating-ui/
|
|
372
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
373
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
374
374
|
autoAlignment?: boolean | undefined;
|
|
375
|
-
allowedPlacements?: import("@floating-ui/
|
|
375
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
376
376
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
377
377
|
}> | undefined>;
|
|
378
378
|
default: boolean;
|
|
@@ -3,7 +3,7 @@ import VvInputText from '@/components/VvInputText/VvInputText.vue';
|
|
|
3
3
|
declare const meta: Meta<typeof VvInputText>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof VvInputText>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const Regex: Story;
|
|
7
7
|
export declare const PhoneNumber: Story;
|
|
8
8
|
export declare const Pattern: Story;
|
|
9
9
|
export declare const IntlNumber: Story;
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/volverjs/ui-vue/issues"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.0.
|
|
22
|
+
"version": "0.0.10-beta.2",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@volverjs/style": "0.*"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.22.
|
|
57
|
-
"@babel/preset-env": "^7.22.
|
|
58
|
-
"@babel/preset-typescript": "^7.22.
|
|
56
|
+
"@babel/core": "^7.22.15",
|
|
57
|
+
"@babel/preset-env": "^7.22.15",
|
|
58
|
+
"@babel/preset-typescript": "^7.22.15",
|
|
59
59
|
"@iconify/types": "^2.0.0",
|
|
60
60
|
"@iconify/utils": "^2.1.9",
|
|
61
61
|
"@mdx-js/react": "^2.3.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@tsconfig/node18": "^18.2.1",
|
|
83
83
|
"@types/jest-axe": "^3.5.5",
|
|
84
84
|
"@types/jsdom": "^21.1.2",
|
|
85
|
-
"@types/node": "^20.5.
|
|
85
|
+
"@types/node": "^20.5.9",
|
|
86
86
|
"@types/react": "^18.2.21",
|
|
87
87
|
"@types/yargs": "^17.0.24",
|
|
88
88
|
"@vitejs/plugin-vue": "^4.3.4",
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"@vue/test-utils": "^2.4.1",
|
|
94
94
|
"@vue/tsconfig": "^0.4.0",
|
|
95
95
|
"change-case": "^4.1.2",
|
|
96
|
+
"chokidar": "^3.5.3",
|
|
96
97
|
"eslint": "^8.48.0",
|
|
97
98
|
"eslint-config-prettier": "^9.0.0",
|
|
98
99
|
"eslint-mdx": "^2.2.0",
|
|
@@ -116,11 +117,11 @@
|
|
|
116
117
|
"storybook-addon-markdown-docs": "^2.0.0",
|
|
117
118
|
"storybook-dark-mode": "^3.0.1",
|
|
118
119
|
"storybook-version": "^0.1.1",
|
|
119
|
-
"terser": "^5.19.
|
|
120
|
+
"terser": "^5.19.4",
|
|
120
121
|
"ts-node": "^10.9.1",
|
|
121
122
|
"typescript": "~5.2.2",
|
|
122
123
|
"unplugin-auto-import": "^0.16.6",
|
|
123
|
-
"unplugin-vue-components": "^0.25.
|
|
124
|
+
"unplugin-vue-components": "^0.25.2",
|
|
124
125
|
"vite": "^4.4.9",
|
|
125
126
|
"vite-plugin-eslint": "^1.8.1",
|
|
126
127
|
"vite-plugin-externalize-deps": "^0.7.0",
|