@volverjs/ui-vue 0.0.3 → 0.0.5-beta.1
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/LICENSE +1 -1
- package/README.md +54 -15
- package/auto-imports.d.ts +12 -3
- package/bin/icons.cjs +1 -73
- package/dist/Volver.d.ts +23 -11
- package/dist/components/VvAccordion/VvAccordion.es.js +180 -74
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +4 -1
- package/dist/components/VvAccordion/index.d.ts +8 -3
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +280 -122
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +15 -12
- package/dist/components/VvAccordionGroup/index.d.ts +8 -0
- package/dist/components/VvAction/VvAction.es.js +338 -0
- package/dist/components/VvAction/VvAction.umd.js +1 -0
- package/dist/components/VvAction/VvAction.vue.d.ts +63 -0
- package/dist/components/VvAction/index.d.ts +24 -0
- package/dist/components/VvBadge/VvBadge.es.js +251 -22
- package/dist/components/VvBadge/VvBadge.umd.js +1 -1
- package/dist/components/VvBadge/VvBadge.vue.d.ts +2 -2
- package/dist/components/VvBadge/index.d.ts +1 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +280 -62
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +11 -11
- package/dist/components/VvBreadcrumb/index.d.ts +1 -1
- package/dist/components/VvButton/VvButton.es.js +720 -261
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +54 -54
- package/dist/components/VvButton/index.d.ts +30 -75
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +296 -49
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +2 -2
- package/dist/components/VvButtonGroup/index.d.ts +1 -1
- package/dist/components/VvCard/VvCard.es.js +60 -28
- package/dist/components/VvCard/VvCard.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.es.js +630 -172
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +4 -4
- package/dist/components/VvCheckbox/index.d.ts +6 -6
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +736 -228
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +9 -9
- package/dist/components/VvCheckboxGroup/index.d.ts +4 -4
- package/dist/components/VvCombobox/VvCombobox.es.js +1673 -768
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +159 -61
- package/dist/components/VvCombobox/index.d.ts +54 -23
- package/dist/components/VvDialog/VvDialog.es.js +426 -115
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.vue.d.ts +12 -3
- package/dist/components/VvDialog/index.d.ts +4 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +504 -190
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +114 -42
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +61 -0
- package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +52 -0
- package/dist/components/VvDropdown/index.d.ts +35 -14
- package/dist/components/VvDropdownAction/VvDropdownAction.es.js +454 -0
- package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -0
- package/dist/components/VvDropdownItem/VvDropdownItem.es.js +48 -18
- package/dist/components/VvDropdownItem/VvDropdownItem.umd.js +1 -1
- package/dist/components/VvDropdownOption/VvDropdownOption.es.js +361 -0
- package/dist/components/VvDropdownOption/VvDropdownOption.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.es.js +116 -52
- package/dist/components/VvIcon/VvIcon.umd.js +1 -1
- package/dist/components/VvIcon/VvIcon.vue.d.ts +7 -7
- package/dist/components/VvIcon/index.d.ts +2 -2
- package/dist/components/VvInputText/VvInputPasswordAction.d.ts +2 -2
- package/dist/components/VvInputText/VvInputStepAction.d.ts +1 -1
- package/dist/components/VvInputText/VvInputText.es.js +1054 -376
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +107 -20
- package/dist/components/VvInputText/VvInputTextActions.d.ts +1 -1
- package/dist/components/VvInputText/index.d.ts +67 -3
- package/dist/components/VvProgress/VvProgress.es.js +254 -23
- package/dist/components/VvProgress/VvProgress.umd.js +1 -1
- package/dist/components/VvProgress/VvProgress.vue.d.ts +2 -2
- package/dist/components/VvProgress/index.d.ts +1 -1
- package/dist/components/VvRadio/VvRadio.es.js +568 -137
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +4 -4
- package/dist/components/VvRadio/index.d.ts +6 -6
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +674 -193
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +9 -9
- package/dist/components/VvRadioGroup/index.d.ts +4 -4
- package/dist/components/VvSelect/VvSelect.es.js +703 -251
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +24 -17
- package/dist/components/VvSelect/index.d.ts +8 -8
- package/dist/components/VvTextarea/VvTextarea.es.js +747 -272
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +21 -14
- package/dist/components/VvTextarea/index.d.ts +7 -7
- package/dist/components/VvTooltip/VvTooltip.es.js +252 -24
- package/dist/components/VvTooltip/VvTooltip.umd.js +1 -1
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +7 -7
- package/dist/components/VvTooltip/index.d.ts +2 -2
- package/dist/components/index.es.js +3676 -2007
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/dropdown/useInjectDropdown.d.ts +1 -1
- package/dist/composables/dropdown/useProvideDropdown.d.ts +3 -3
- package/dist/composables/group/useInjectedGroupState.d.ts +2 -2
- package/dist/composables/group/useProvideGroupState.d.ts +1 -1
- package/dist/composables/useComponentFocus.d.ts +1 -1
- package/dist/composables/useComponentIcon.d.ts +7 -7
- package/dist/composables/useDebouncedInput.d.ts +4 -1
- package/dist/composables/useDefaults.d.ts +2 -0
- package/dist/composables/useModifiers.d.ts +1 -1
- package/dist/composables/useOptions.d.ts +2 -2
- package/dist/composables/useTextCount.d.ts +3 -3
- package/dist/composables/useUniqueId.d.ts +1 -1
- package/dist/composables/useVolver.d.ts +1 -1
- package/dist/constants.d.ts +30 -0
- package/dist/directives/index.es.js +288 -0
- package/dist/directives/index.umd.js +1 -0
- package/dist/directives/v-tooltip.es.js +285 -0
- package/dist/directives/v-tooltip.umd.js +1 -0
- package/dist/icons.es.js +38 -23
- package/dist/icons.umd.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +115 -3269
- package/dist/index.umd.js +1 -1
- package/dist/props/index.d.ts +215 -23
- package/dist/resolvers/unplugin.d.ts +14 -8
- package/dist/resolvers/unplugin.es.js +94 -33
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/stories/Combobox/Combobox.settings.d.ts +44 -0
- package/dist/stories/Dropdown/Dropdown.settings.d.ts +3 -2
- package/dist/stories/InputText/InputText.settings.d.ts +53 -0
- package/dist/stories/argTypes.d.ts +1 -1
- package/package.json +167 -63
- package/src/Volver.ts +60 -26
- 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/VvAccordion/VvAccordion.vue +19 -22
- package/src/components/VvAccordion/index.ts +12 -4
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +19 -10
- package/src/components/VvAccordionGroup/index.ts +8 -0
- package/src/components/VvAction/VvAction.vue +144 -0
- package/src/components/VvAction/index.ts +5 -0
- package/src/components/VvBadge/VvBadge.vue +2 -2
- package/src/components/VvBadge/index.ts +1 -1
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +3 -3
- package/src/components/VvButton/VvButton.vue +41 -124
- package/src/components/VvButton/index.ts +16 -88
- package/src/components/VvButtonGroup/VvButtonGroup.vue +4 -7
- package/src/components/VvButtonGroup/index.ts +1 -1
- package/src/components/VvCard/VvCard.vue +2 -2
- package/src/components/VvCheckbox/VvCheckbox.vue +3 -7
- package/src/components/VvCheckbox/index.ts +11 -7
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +7 -10
- package/src/components/VvCheckboxGroup/index.ts +1 -1
- package/src/components/VvCombobox/VvCombobox.vue +85 -57
- package/src/components/VvCombobox/index.ts +12 -10
- package/src/components/VvDialog/VvDialog.vue +28 -11
- package/src/components/VvDialog/index.ts +5 -2
- package/src/components/VvDropdown/VvDropdown.vue +6 -5
- package/src/components/VvDropdown/VvDropdownAction.vue +46 -0
- package/src/components/VvDropdown/VvDropdownOption.vue +72 -0
- package/src/components/VvDropdown/index.ts +6 -11
- package/src/components/VvIcon/VvIcon.vue +3 -3
- package/src/components/VvIcon/index.ts +3 -3
- package/src/components/VvInputText/VvInputClearAction.ts +2 -2
- package/src/components/VvInputText/VvInputPasswordAction.ts +3 -4
- package/src/components/VvInputText/VvInputStepAction.ts +3 -2
- package/src/components/VvInputText/VvInputText.vue +128 -35
- package/src/components/VvInputText/VvInputTextActions.ts +5 -8
- package/src/components/VvInputText/index.ts +62 -1
- package/src/components/VvProgress/VvProgress.vue +2 -2
- package/src/components/VvProgress/index.ts +1 -1
- package/src/components/VvRadio/VvRadio.vue +3 -7
- package/src/components/VvRadio/index.ts +11 -7
- package/src/components/VvRadioGroup/VvRadioGroup.vue +7 -10
- package/src/components/VvRadioGroup/index.ts +1 -1
- package/src/components/VvSelect/VvSelect.vue +4 -4
- package/src/components/VvSelect/index.ts +3 -5
- package/src/components/VvTextarea/VvTextarea.vue +4 -4
- package/src/components/VvTextarea/index.ts +1 -1
- package/src/components/VvTooltip/VvTooltip.vue +2 -2
- package/src/components/VvTooltip/index.ts +3 -3
- package/src/composables/dropdown/useInjectDropdown.ts +2 -2
- package/src/composables/dropdown/useProvideDropdown.ts +9 -11
- package/src/composables/group/useInjectedGroupState.ts +1 -1
- package/src/composables/group/useProvideGroupState.ts +1 -1
- package/src/composables/useComponentIcon.ts +1 -1
- package/src/composables/useDebouncedInput.ts +10 -3
- package/src/composables/useDefaults.ts +89 -0
- package/src/composables/useModifiers.ts +8 -9
- package/src/composables/useOptions.ts +1 -1
- package/src/composables/useVolver.ts +2 -2
- package/src/constants.ts +36 -0
- package/src/directives/index.ts +1 -1
- package/src/directives/v-tooltip.ts +2 -2
- package/src/index.ts +0 -2
- package/src/props/index.ts +111 -19
- package/src/resolvers/unplugin.ts +96 -49
- package/src/stories/Accordion/Accordion.stories.mdx +8 -2
- package/src/stories/Accordion/Accordion.test.ts +21 -15
- package/src/stories/Accordion/AccordionSlots.stories.mdx +8 -8
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +17 -1
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +18 -12
- package/src/stories/AccordionGroup/AccordionGroupSlots.stories.mdx +3 -2
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +2 -1
- package/src/stories/Button/Button.stories.mdx +4 -2
- package/src/stories/Button/Button.test.ts +3 -1
- package/src/stories/Button/ButtonModifiers.stories.mdx +2 -2
- package/src/stories/Button/ButtonSlots.stories.mdx +8 -7
- package/src/stories/Button/ButtonState.stories.mdx +2 -11
- package/src/stories/Card/Card.stories.mdx +2 -1
- package/src/stories/Checkbox/Checkbox.stories.mdx +2 -1
- package/src/stories/CheckboxGroup/CheckboxGroup.stories.mdx +2 -1
- package/src/stories/CheckboxGroup/CheckboxGroupSlots.stories.mdx +2 -1
- package/src/stories/Combobox/Combobox.settings.ts +44 -0
- package/src/stories/Combobox/Combobox.stories.mdx +40 -1
- package/src/stories/Dialog/Dialog.stories.mdx +2 -1
- package/src/stories/Dropdown/Dropdown.settings.ts +3 -2
- package/src/stories/Dropdown/Dropdown.stories.mdx +14 -12
- package/src/stories/Dropdown/DropdownMultilevel.stories.mdx +56 -0
- package/src/stories/Dropdown/DropdownSlots.stories.mdx +14 -13
- package/src/stories/Icon/Icon.stories.mdx +2 -1
- package/src/stories/Icon/IconsCollection.stories.mdx +2 -1
- package/src/stories/InputText/InputText.settings.ts +53 -0
- package/src/stories/InputText/InputText.stories.mdx +42 -1
- package/src/stories/InputText/InputText.test.ts +5 -2
- package/src/stories/Progress/Progress.stories.mdx +2 -1
- package/src/stories/Radio/Radio.stories.mdx +2 -1
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +2 -1
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +2 -1
- package/src/stories/Select/Select.stories.mdx +2 -1
- package/src/stories/Textarea/Textarea.stories.mdx +2 -1
- package/src/stories/Tooltip/Tooltip.stories.mdx +2 -1
- package/src/stories/Tooltip/TooltipDirective.stories.mdx +2 -1
- package/src/stories/argTypes.ts +2 -2
- package/src/types/group.d.ts +5 -0
|
@@ -8,10 +8,6 @@ export declare const VvComboboxProps: {
|
|
|
8
8
|
type: (StringConstructor | BooleanConstructor | ArrayConstructor | ObjectConstructor | NumberConstructor)[];
|
|
9
9
|
default: undefined;
|
|
10
10
|
};
|
|
11
|
-
/**
|
|
12
|
-
* Select input label
|
|
13
|
-
*/
|
|
14
|
-
label: StringConstructor;
|
|
15
11
|
/**
|
|
16
12
|
* Label for no search results
|
|
17
13
|
*/
|
|
@@ -19,31 +15,38 @@ export declare const VvComboboxProps: {
|
|
|
19
15
|
type: StringConstructor;
|
|
20
16
|
default: string;
|
|
21
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* Label for no options available
|
|
20
|
+
*/
|
|
21
|
+
noOptionsLabel: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
22
25
|
/**
|
|
23
26
|
* Label for selected option hint
|
|
24
27
|
*/
|
|
25
|
-
|
|
28
|
+
selectedHintLabel: {
|
|
26
29
|
type: StringConstructor;
|
|
27
30
|
default: string;
|
|
28
31
|
};
|
|
29
32
|
/**
|
|
30
|
-
* Label for deselect button
|
|
33
|
+
* Label for deselect action button
|
|
31
34
|
*/
|
|
32
|
-
|
|
35
|
+
deselectActionLabel: {
|
|
33
36
|
type: StringConstructor;
|
|
34
37
|
default: string;
|
|
35
38
|
};
|
|
36
39
|
/**
|
|
37
40
|
* Label for select option hint
|
|
38
41
|
*/
|
|
39
|
-
|
|
42
|
+
selectHintLabel: {
|
|
40
43
|
type: StringConstructor;
|
|
41
44
|
default: string;
|
|
42
45
|
};
|
|
43
46
|
/**
|
|
44
47
|
* Label for deselected option hint
|
|
45
48
|
*/
|
|
46
|
-
|
|
49
|
+
deselectHintLabel: {
|
|
47
50
|
type: StringConstructor;
|
|
48
51
|
default: string;
|
|
49
52
|
};
|
|
@@ -120,8 +123,9 @@ export declare const VvComboboxProps: {
|
|
|
120
123
|
* Close dropdown on select (not multiple)
|
|
121
124
|
*/
|
|
122
125
|
autoClose: BooleanConstructor;
|
|
126
|
+
label: (StringConstructor | NumberConstructor)[];
|
|
123
127
|
placement: {
|
|
124
|
-
type: PropType<
|
|
128
|
+
type: PropType<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
|
|
125
129
|
default: import("../../constants").Side;
|
|
126
130
|
validator: (value: never) => boolean;
|
|
127
131
|
};
|
|
@@ -133,26 +137,46 @@ export declare const VvComboboxProps: {
|
|
|
133
137
|
default: number;
|
|
134
138
|
};
|
|
135
139
|
shift: {
|
|
136
|
-
type: PropType<boolean | Partial<import("@floating-ui/core").ShiftOptions &
|
|
140
|
+
type: PropType<boolean | Partial<import("@floating-ui/core").ShiftOptions & {
|
|
141
|
+
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
142
|
+
elementContext: import("@floating-ui/core").ElementContext;
|
|
143
|
+
altBoundary: boolean;
|
|
144
|
+
padding: import("@floating-ui/core").Padding;
|
|
137
145
|
boundary: import("@floating-ui/dom").Boundary;
|
|
138
146
|
}> | undefined>;
|
|
139
147
|
default: boolean;
|
|
140
148
|
};
|
|
141
149
|
flip: {
|
|
142
|
-
type: PropType<boolean | Partial<import("@floating-ui/core").FlipOptions &
|
|
150
|
+
type: PropType<boolean | Partial<import("@floating-ui/core").FlipOptions & {
|
|
151
|
+
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
152
|
+
elementContext: import("@floating-ui/core").ElementContext;
|
|
153
|
+
altBoundary: boolean;
|
|
154
|
+
padding: import("@floating-ui/core").Padding;
|
|
143
155
|
boundary: import("@floating-ui/dom").Boundary;
|
|
144
156
|
}> | undefined>;
|
|
145
157
|
default: boolean;
|
|
146
158
|
};
|
|
147
159
|
size: {
|
|
148
|
-
type: PropType<boolean | Partial<
|
|
149
|
-
apply(args:
|
|
160
|
+
type: PropType<boolean | Partial<{
|
|
161
|
+
apply: (args: {
|
|
162
|
+
x: number;
|
|
163
|
+
y: number;
|
|
164
|
+
placement: import("@floating-ui/core").Placement;
|
|
165
|
+
initialPlacement: import("@floating-ui/core").Placement;
|
|
166
|
+
strategy: import("@floating-ui/core").Strategy;
|
|
167
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
168
|
+
rects: import("@floating-ui/core").ElementRects;
|
|
169
|
+
platform: import("@floating-ui/core").Platform;
|
|
150
170
|
elements: import("@floating-ui/dom").Elements;
|
|
151
171
|
} & {
|
|
152
172
|
availableWidth: number;
|
|
153
173
|
availableHeight: number;
|
|
154
|
-
})
|
|
155
|
-
} &
|
|
174
|
+
}) => void | Promise<void>;
|
|
175
|
+
} & {
|
|
176
|
+
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
177
|
+
elementContext: import("@floating-ui/core").ElementContext;
|
|
178
|
+
altBoundary: boolean;
|
|
179
|
+
padding: import("@floating-ui/core").Padding;
|
|
156
180
|
boundary: import("@floating-ui/dom").Boundary;
|
|
157
181
|
}> | undefined>;
|
|
158
182
|
default: () => {
|
|
@@ -160,7 +184,11 @@ export declare const VvComboboxProps: {
|
|
|
160
184
|
};
|
|
161
185
|
};
|
|
162
186
|
autoPlacement: {
|
|
163
|
-
type: PropType<boolean | Partial<import("@floating-ui/core").AutoPlacementOptions &
|
|
187
|
+
type: PropType<boolean | Partial<import("@floating-ui/core").AutoPlacementOptions & {
|
|
188
|
+
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
189
|
+
elementContext: import("@floating-ui/core").ElementContext;
|
|
190
|
+
altBoundary: boolean;
|
|
191
|
+
padding: import("@floating-ui/core").Padding;
|
|
164
192
|
boundary: import("@floating-ui/dom").Boundary;
|
|
165
193
|
}> | undefined>;
|
|
166
194
|
default: boolean;
|
|
@@ -182,7 +210,7 @@ export declare const VvComboboxProps: {
|
|
|
182
210
|
type: (StringConstructor | ObjectConstructor)[];
|
|
183
211
|
};
|
|
184
212
|
iconPosition: {
|
|
185
|
-
type: PropType<
|
|
213
|
+
type: PropType<"before" | "after">;
|
|
186
214
|
default: import("../../constants").Position;
|
|
187
215
|
validation: (value: import("../../constants").Position) => boolean;
|
|
188
216
|
};
|
|
@@ -192,9 +220,7 @@ export declare const VvComboboxProps: {
|
|
|
192
220
|
};
|
|
193
221
|
labelKey: {
|
|
194
222
|
type: (StringConstructor | FunctionConstructor)[];
|
|
195
|
-
default: string;
|
|
196
|
-
* Label for select option hint
|
|
197
|
-
*/
|
|
223
|
+
default: string;
|
|
198
224
|
};
|
|
199
225
|
valueKey: {
|
|
200
226
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -205,10 +231,15 @@ export declare const VvComboboxProps: {
|
|
|
205
231
|
default: string;
|
|
206
232
|
};
|
|
207
233
|
modifiers: PropType<string | string[]>;
|
|
208
|
-
readonly: BooleanConstructor;
|
|
234
|
+
readonly: BooleanConstructor; /**
|
|
235
|
+
* Manage modelValue as string[] or object[]
|
|
236
|
+
*/
|
|
209
237
|
disabled: BooleanConstructor;
|
|
210
238
|
loading: BooleanConstructor;
|
|
211
|
-
loadingLabel:
|
|
239
|
+
loadingLabel: {
|
|
240
|
+
type: StringConstructor;
|
|
241
|
+
default: string;
|
|
242
|
+
};
|
|
212
243
|
hintLabel: {
|
|
213
244
|
type: StringConstructor;
|
|
214
245
|
default: string;
|