@rocketui/vue 0.1.14 → 0.1.16
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/rocket-ui-vue.d.ts +13 -2
- package/dist/rocket-ui-vue.js +819 -795
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +15 -12
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -2168,6 +2168,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2168
2168
|
prependIcon: string;
|
|
2169
2169
|
appendIcon: string;
|
|
2170
2170
|
searchable: boolean;
|
|
2171
|
+
clearable: boolean;
|
|
2171
2172
|
id: string;
|
|
2172
2173
|
label: string;
|
|
2173
2174
|
closeOnSelect: boolean;
|
|
@@ -2189,6 +2190,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2189
2190
|
prependIcon: string;
|
|
2190
2191
|
appendIcon: string;
|
|
2191
2192
|
searchable: boolean;
|
|
2193
|
+
clearable: boolean;
|
|
2192
2194
|
id: string;
|
|
2193
2195
|
label: string;
|
|
2194
2196
|
closeOnSelect: boolean;
|
|
@@ -2211,6 +2213,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2211
2213
|
taggable: boolean;
|
|
2212
2214
|
multiple: boolean;
|
|
2213
2215
|
searchable: boolean;
|
|
2216
|
+
clearable: boolean;
|
|
2214
2217
|
closeOnSelect: boolean;
|
|
2215
2218
|
dropdownClass: string;
|
|
2216
2219
|
optionsClass: string;
|
|
@@ -2298,10 +2301,10 @@ export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VL
|
|
|
2298
2301
|
}, {
|
|
2299
2302
|
disabled: boolean;
|
|
2300
2303
|
modelValue: string[] | number[];
|
|
2301
|
-
max: number;
|
|
2302
2304
|
as: string;
|
|
2303
2305
|
selectedClass: string | string[];
|
|
2304
2306
|
mandatory: boolean;
|
|
2307
|
+
max: number;
|
|
2305
2308
|
}, {}>, {
|
|
2306
2309
|
default?(_: {
|
|
2307
2310
|
isSelected: typeof isSelected;
|
|
@@ -2636,11 +2639,11 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2636
2639
|
role: string;
|
|
2637
2640
|
modelValue: any;
|
|
2638
2641
|
placeholder: string;
|
|
2642
|
+
clearable: boolean;
|
|
2639
2643
|
errorMsg: string;
|
|
2640
2644
|
hint: string;
|
|
2641
2645
|
hideDetails: boolean;
|
|
2642
2646
|
readonly: boolean;
|
|
2643
|
-
clearable: boolean;
|
|
2644
2647
|
}, {}>, {
|
|
2645
2648
|
prepend?(_: {}): any;
|
|
2646
2649
|
append?(_: {}): any;
|
|
@@ -2820,6 +2823,14 @@ declare interface SelectProps {
|
|
|
2820
2823
|
* <Dropdown searchable />
|
|
2821
2824
|
*/
|
|
2822
2825
|
searchable?: boolean;
|
|
2826
|
+
/**
|
|
2827
|
+
* Clearable status to selected and searched options
|
|
2828
|
+
* @type {boolean}
|
|
2829
|
+
* @default false
|
|
2830
|
+
* @example
|
|
2831
|
+
* <Dropdown clearable />
|
|
2832
|
+
*/
|
|
2833
|
+
clearable?: boolean;
|
|
2823
2834
|
/**
|
|
2824
2835
|
* Id of the Dropdown
|
|
2825
2836
|
* @type {string}
|