@rocketui/vue 0.2.27 → 0.2.29
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 +33 -7
- package/dist/rocket-ui-vue.js +187 -180
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1980,7 +1980,9 @@ declare interface Props_6 {
|
|
|
1980
1980
|
|
|
1981
1981
|
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<AccordionProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionProps>>>, {}, {}>, {
|
|
1982
1982
|
title?(_: {}): any;
|
|
1983
|
-
icon?(_: {
|
|
1983
|
+
icon?(_: {
|
|
1984
|
+
open: boolean;
|
|
1985
|
+
}): any;
|
|
1984
1986
|
content?(_: {}): any;
|
|
1985
1987
|
}>;
|
|
1986
1988
|
|
|
@@ -2286,7 +2288,9 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2286
2288
|
hideOptionCheckIcon: boolean;
|
|
2287
2289
|
hideChipClear: boolean;
|
|
2288
2290
|
}, {}>, {
|
|
2289
|
-
prepend?(_: {
|
|
2291
|
+
prepend?(_: {
|
|
2292
|
+
active: boolean;
|
|
2293
|
+
}): any;
|
|
2290
2294
|
selection?(_: {
|
|
2291
2295
|
key: number;
|
|
2292
2296
|
index: number;
|
|
@@ -2300,7 +2304,9 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2300
2304
|
removeOption: typeof removeOption;
|
|
2301
2305
|
}): any;
|
|
2302
2306
|
clearable?(_: {}): any;
|
|
2303
|
-
append?(_: {
|
|
2307
|
+
append?(_: {
|
|
2308
|
+
active: boolean;
|
|
2309
|
+
}): any;
|
|
2304
2310
|
option?(_: {
|
|
2305
2311
|
isSelected: boolean | {
|
|
2306
2312
|
[x: string]: any;
|
|
@@ -2310,8 +2316,24 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2310
2316
|
disabled?: boolean | undefined;
|
|
2311
2317
|
} | undefined;
|
|
2312
2318
|
}): any;
|
|
2313
|
-
"option-prepend"?(_: {
|
|
2314
|
-
|
|
2319
|
+
"option-prepend"?(_: {
|
|
2320
|
+
isSelected: boolean | {
|
|
2321
|
+
[x: string]: any;
|
|
2322
|
+
value: string | number;
|
|
2323
|
+
label: string;
|
|
2324
|
+
prependIcon?: string | undefined;
|
|
2325
|
+
disabled?: boolean | undefined;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
}): any;
|
|
2328
|
+
"option-append"?(_: {
|
|
2329
|
+
isSelected: boolean | {
|
|
2330
|
+
[x: string]: any;
|
|
2331
|
+
value: string | number;
|
|
2332
|
+
label: string;
|
|
2333
|
+
prependIcon?: string | undefined;
|
|
2334
|
+
disabled?: boolean | undefined;
|
|
2335
|
+
} | undefined;
|
|
2336
|
+
}): any;
|
|
2315
2337
|
"not-options"?(_: {}): any;
|
|
2316
2338
|
}>;
|
|
2317
2339
|
|
|
@@ -2627,9 +2649,13 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
|
|
|
2627
2649
|
modelValue: string | number;
|
|
2628
2650
|
tile: boolean;
|
|
2629
2651
|
}, {}>, {
|
|
2630
|
-
prepend?(_: {
|
|
2652
|
+
prepend?(_: {
|
|
2653
|
+
active: boolean;
|
|
2654
|
+
}): any;
|
|
2631
2655
|
default?(_: {}): any;
|
|
2632
|
-
append?(_: {
|
|
2656
|
+
append?(_: {
|
|
2657
|
+
active: boolean;
|
|
2658
|
+
}): any;
|
|
2633
2659
|
}>;
|
|
2634
2660
|
|
|
2635
2661
|
export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
|