@volverjs/ui-vue 0.0.10-beta.50 → 0.0.10-beta.52
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/components/VvCombobox/VvCombobox.es.js +450 -438
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +3 -1
- package/dist/components/VvCombobox/index.d.ts +8 -0
- package/dist/components/VvInputText/VvInputText.es.js +11 -4
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +8 -8
- package/dist/components/VvInputText/index.d.ts +4 -4
- package/dist/components/VvTextarea/VvTextarea.es.js +377 -371
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +8 -8
- package/dist/components/VvTextarea/index.d.ts +4 -4
- package/dist/components/index.es.js +188 -178
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +17 -11
- package/package.json +1 -1
- 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 +4 -2
- package/src/components/VvCombobox/index.ts +2 -0
- package/src/components/VvInputText/VvInputText.vue +1 -0
- package/src/components/VvTextarea/VvTextarea.vue +1 -1
- package/src/props/index.ts +12 -5
package/dist/props/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
1
2
|
import type { VvIconProps } from '@/components/VvIcon';
|
|
2
3
|
import type { AutoPlacementOptions, FlipOptions, OffsetOptions, ShiftOptions, SizeOptions } from '@/types/floating-ui';
|
|
3
4
|
import type { Option } from '@/types/generic';
|
|
4
5
|
import type { NavItem } from '@/types/nav';
|
|
5
|
-
import type { PropType } from 'vue';
|
|
6
6
|
import { ActionTag, ButtonType, Placement, Position, Side, StorageType, Strategy } from '@/constants';
|
|
7
7
|
export declare const LinkProps: {
|
|
8
8
|
/**
|
|
@@ -85,6 +85,15 @@ export declare const DisabledProps: {
|
|
|
85
85
|
default: boolean;
|
|
86
86
|
};
|
|
87
87
|
};
|
|
88
|
+
export declare const RequiredProps: {
|
|
89
|
+
/**
|
|
90
|
+
* Whether the form control is required
|
|
91
|
+
*/
|
|
92
|
+
required: {
|
|
93
|
+
type: BooleanConstructor;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
88
97
|
export declare const SelectedProps: {
|
|
89
98
|
/**
|
|
90
99
|
* Whether the item is selected
|
|
@@ -389,6 +398,13 @@ export declare const AutocompleteProps: {
|
|
|
389
398
|
};
|
|
390
399
|
};
|
|
391
400
|
export declare const InputTextareaProps: {
|
|
401
|
+
/**
|
|
402
|
+
* Whether the form control is required
|
|
403
|
+
*/
|
|
404
|
+
required: {
|
|
405
|
+
type: BooleanConstructor;
|
|
406
|
+
default: boolean;
|
|
407
|
+
};
|
|
392
408
|
/**
|
|
393
409
|
* Input / Textarea minlength
|
|
394
410
|
* Minimum length (number of characters) of value
|
|
@@ -419,16 +435,6 @@ export declare const InputTextareaProps: {
|
|
|
419
435
|
type: StringConstructor;
|
|
420
436
|
default: undefined;
|
|
421
437
|
};
|
|
422
|
-
/**
|
|
423
|
-
* Input / Textarea required
|
|
424
|
-
* A value is required or must be check for the form to be submittable
|
|
425
|
-
* Available for all input types except color
|
|
426
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#required
|
|
427
|
-
*/
|
|
428
|
-
required: {
|
|
429
|
-
type: BooleanConstructor;
|
|
430
|
-
default: boolean;
|
|
431
|
-
};
|
|
432
438
|
/**
|
|
433
439
|
* The item label
|
|
434
440
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/ui-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.10-beta.
|
|
4
|
+
"version": "0.0.10-beta.52",
|
|
5
5
|
"description": "@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|