@rocketui/vue 0.2.26 → 0.2.28
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 +45 -11
- package/dist/rocket-ui-vue.js +568 -559
- 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
|
@@ -726,6 +726,8 @@ declare type ButtonSize = 'small' | 'medium' | 'large';
|
|
|
726
726
|
|
|
727
727
|
declare type ButtonType = 'default' | 'text' | 'outline';
|
|
728
728
|
|
|
729
|
+
declare function close_2(): void;
|
|
730
|
+
|
|
729
731
|
declare function handleSelect(): void;
|
|
730
732
|
|
|
731
733
|
declare function handleToggle(): void;
|
|
@@ -1978,6 +1980,9 @@ declare interface Props_6 {
|
|
|
1978
1980
|
|
|
1979
1981
|
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<AccordionProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionProps>>>, {}, {}>, {
|
|
1980
1982
|
title?(_: {}): any;
|
|
1983
|
+
icon?(_: {
|
|
1984
|
+
open: boolean;
|
|
1985
|
+
}): any;
|
|
1981
1986
|
content?(_: {}): any;
|
|
1982
1987
|
}>;
|
|
1983
1988
|
|
|
@@ -2009,7 +2014,10 @@ export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Wit
|
|
|
2009
2014
|
}, {}>, {
|
|
2010
2015
|
"alert-icon"?(_: {}): any;
|
|
2011
2016
|
content?(_: {}): any;
|
|
2012
|
-
"custom-close"?(_: {
|
|
2017
|
+
"custom-close"?(_: {
|
|
2018
|
+
close: typeof close_2;
|
|
2019
|
+
slotClass: string;
|
|
2020
|
+
}): any;
|
|
2013
2021
|
}>;
|
|
2014
2022
|
|
|
2015
2023
|
export declare const RAvatar: DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_3<IProps>, {
|
|
@@ -2280,7 +2288,9 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2280
2288
|
hideOptionCheckIcon: boolean;
|
|
2281
2289
|
hideChipClear: boolean;
|
|
2282
2290
|
}, {}>, {
|
|
2283
|
-
prepend?(_: {
|
|
2291
|
+
prepend?(_: {
|
|
2292
|
+
active: boolean;
|
|
2293
|
+
}): any;
|
|
2284
2294
|
selection?(_: {
|
|
2285
2295
|
key: number;
|
|
2286
2296
|
index: number;
|
|
@@ -2293,7 +2303,10 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2293
2303
|
};
|
|
2294
2304
|
removeOption: typeof removeOption;
|
|
2295
2305
|
}): any;
|
|
2296
|
-
|
|
2306
|
+
clearable?(_: {}): any;
|
|
2307
|
+
append?(_: {
|
|
2308
|
+
active: boolean;
|
|
2309
|
+
}): any;
|
|
2297
2310
|
option?(_: {
|
|
2298
2311
|
isSelected: boolean | {
|
|
2299
2312
|
[x: string]: any;
|
|
@@ -2303,8 +2316,24 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2303
2316
|
disabled?: boolean | undefined;
|
|
2304
2317
|
} | undefined;
|
|
2305
2318
|
}): any;
|
|
2306
|
-
"option-prepend"?(_: {
|
|
2307
|
-
|
|
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;
|
|
2308
2337
|
"not-options"?(_: {}): any;
|
|
2309
2338
|
}>;
|
|
2310
2339
|
|
|
@@ -2548,8 +2577,8 @@ export declare const RSnackbar: __VLS_WithTemplateSlots_10<DefineComponent<__VLS
|
|
|
2548
2577
|
closable: boolean;
|
|
2549
2578
|
timeout: number;
|
|
2550
2579
|
}, {}>, {
|
|
2580
|
+
icon?(_: {}): any;
|
|
2551
2581
|
default?(_: {}): any;
|
|
2552
|
-
action?(_: {}): any;
|
|
2553
2582
|
close?(_: {}): any;
|
|
2554
2583
|
}>;
|
|
2555
2584
|
|
|
@@ -2620,8 +2649,13 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
|
|
|
2620
2649
|
modelValue: string | number;
|
|
2621
2650
|
tile: boolean;
|
|
2622
2651
|
}, {}>, {
|
|
2623
|
-
prepend?(_: {
|
|
2624
|
-
|
|
2652
|
+
prepend?(_: {
|
|
2653
|
+
active: boolean;
|
|
2654
|
+
}): any;
|
|
2655
|
+
default?(_: {}): any;
|
|
2656
|
+
append?(_: {
|
|
2657
|
+
active: boolean;
|
|
2658
|
+
}): any;
|
|
2625
2659
|
}>;
|
|
2626
2660
|
|
|
2627
2661
|
export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
|
|
@@ -2632,7 +2666,6 @@ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Wit
|
|
|
2632
2666
|
scrollable: boolean;
|
|
2633
2667
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2634
2668
|
"update:modelValue": (...args: any[]) => void;
|
|
2635
|
-
"click:icon": (...args: any[]) => void;
|
|
2636
2669
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
|
|
2637
2670
|
tabs: () => never[];
|
|
2638
2671
|
block: boolean;
|
|
@@ -2641,7 +2674,6 @@ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Wit
|
|
|
2641
2674
|
scrollable: boolean;
|
|
2642
2675
|
}>>> & {
|
|
2643
2676
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2644
|
-
"onClick:icon"?: ((...args: any[]) => any) | undefined;
|
|
2645
2677
|
}, {
|
|
2646
2678
|
block: boolean;
|
|
2647
2679
|
modelValue: string | number;
|
|
@@ -2649,7 +2681,9 @@ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Wit
|
|
|
2649
2681
|
tabs: Tab[];
|
|
2650
2682
|
scrollable: boolean;
|
|
2651
2683
|
}, {}>, {
|
|
2652
|
-
default?(_: {
|
|
2684
|
+
default?(_: {
|
|
2685
|
+
activeTab: string | number;
|
|
2686
|
+
}): any;
|
|
2653
2687
|
}>;
|
|
2654
2688
|
|
|
2655
2689
|
export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
|