@rocketui/vue 0.2.8 → 0.2.10
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 +5 -2
- package/dist/rocket-ui-vue.js +193 -193
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1417,6 +1417,7 @@ declare function onMouseLeave(): void;
|
|
|
1417
1417
|
declare function onMouseMove(): void;
|
|
1418
1418
|
|
|
1419
1419
|
declare interface Option_2 {
|
|
1420
|
+
[key: string]: any;
|
|
1420
1421
|
value: string | number;
|
|
1421
1422
|
label: string;
|
|
1422
1423
|
prependIcon?: string;
|
|
@@ -2168,7 +2169,7 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
|
|
|
2168
2169
|
|
|
2169
2170
|
export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
|
|
2170
2171
|
options: () => never[];
|
|
2171
|
-
modelValue:
|
|
2172
|
+
modelValue: any;
|
|
2172
2173
|
placeholder: string;
|
|
2173
2174
|
taggable: boolean;
|
|
2174
2175
|
multiple: boolean;
|
|
@@ -2192,7 +2193,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2192
2193
|
"update:modelValue": (...args: any[]) => void;
|
|
2193
2194
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
|
|
2194
2195
|
options: () => never[];
|
|
2195
|
-
modelValue:
|
|
2196
|
+
modelValue: any;
|
|
2196
2197
|
placeholder: string;
|
|
2197
2198
|
taggable: boolean;
|
|
2198
2199
|
multiple: boolean;
|
|
@@ -2239,6 +2240,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2239
2240
|
prepend?(_: {}): any;
|
|
2240
2241
|
tags?(_: {
|
|
2241
2242
|
options: {
|
|
2243
|
+
[x: string]: any;
|
|
2242
2244
|
value: string | number;
|
|
2243
2245
|
label: string;
|
|
2244
2246
|
prependIcon?: string | undefined;
|
|
@@ -2250,6 +2252,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2250
2252
|
append?(_: {}): any;
|
|
2251
2253
|
option?(_: {
|
|
2252
2254
|
isSelected: boolean | {
|
|
2255
|
+
[x: string]: any;
|
|
2253
2256
|
value: string | number;
|
|
2254
2257
|
label: string;
|
|
2255
2258
|
prependIcon?: string | undefined;
|