@rocketui/vue 0.2.12 → 0.2.13
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 +1 -11
- package/dist/rocket-ui-vue.js +234 -230
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1262,14 +1262,6 @@ declare interface ItemProps {
|
|
|
1262
1262
|
* <RItem :value="1" />
|
|
1263
1263
|
*/
|
|
1264
1264
|
value: any;
|
|
1265
|
-
/**
|
|
1266
|
-
* Whether the item is disabled
|
|
1267
|
-
* @default false
|
|
1268
|
-
* @type boolean
|
|
1269
|
-
* @example
|
|
1270
|
-
* <RItem :disabled="true" />
|
|
1271
|
-
*/
|
|
1272
|
-
disabled?: boolean;
|
|
1273
1265
|
/**
|
|
1274
1266
|
* The class to apply to the selected item
|
|
1275
1267
|
* @default ''
|
|
@@ -2293,7 +2285,6 @@ export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Wit
|
|
|
2293
2285
|
selectedClass: string;
|
|
2294
2286
|
value: null;
|
|
2295
2287
|
}>>>, {
|
|
2296
|
-
disabled: boolean;
|
|
2297
2288
|
value: any;
|
|
2298
2289
|
selectedClass: string | string[];
|
|
2299
2290
|
}, {}>, {
|
|
@@ -2303,7 +2294,6 @@ export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Wit
|
|
|
2303
2294
|
select: typeof handleSelect;
|
|
2304
2295
|
selectedClass: (string | string[]) & (false | (string | string[])[]);
|
|
2305
2296
|
toggle: typeof handleToggle;
|
|
2306
|
-
value: any;
|
|
2307
2297
|
}): any;
|
|
2308
2298
|
}>;
|
|
2309
2299
|
|
|
@@ -2328,10 +2318,10 @@ export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VL
|
|
|
2328
2318
|
}, {
|
|
2329
2319
|
disabled: boolean;
|
|
2330
2320
|
modelValue: string[] | number[];
|
|
2331
|
-
as: string;
|
|
2332
2321
|
selectedClass: string | string[];
|
|
2333
2322
|
mandatory: boolean;
|
|
2334
2323
|
max: number;
|
|
2324
|
+
as: string;
|
|
2335
2325
|
}, {}>, {
|
|
2336
2326
|
default?(_: {
|
|
2337
2327
|
isSelected: typeof isSelected;
|