@rocketui/vue 0.0.75 → 0.0.77
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 +27 -9
- package/dist/rocket-ui-vue.js +451 -441
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -320,10 +320,6 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
320
320
|
type: PropType<"primary" | "error" | "success" | "warning" | "neutral">;
|
|
321
321
|
default: string;
|
|
322
322
|
};
|
|
323
|
-
content: {
|
|
324
|
-
type: PropType<string | number>;
|
|
325
|
-
default: string;
|
|
326
|
-
};
|
|
327
323
|
hover: {
|
|
328
324
|
type: PropType<boolean>;
|
|
329
325
|
default: boolean;
|
|
@@ -332,6 +328,10 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
332
328
|
type: PropType<"bottom" | "left" | "right">;
|
|
333
329
|
default: string;
|
|
334
330
|
};
|
|
331
|
+
animation: {
|
|
332
|
+
type: PropType<boolean>;
|
|
333
|
+
default: boolean;
|
|
334
|
+
};
|
|
335
335
|
overlap: {
|
|
336
336
|
type: PropType<boolean>;
|
|
337
337
|
default: boolean;
|
|
@@ -345,10 +345,6 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
345
345
|
type: PropType<"primary" | "error" | "success" | "warning" | "neutral">;
|
|
346
346
|
default: string;
|
|
347
347
|
};
|
|
348
|
-
content: {
|
|
349
|
-
type: PropType<string | number>;
|
|
350
|
-
default: string;
|
|
351
|
-
};
|
|
352
348
|
hover: {
|
|
353
349
|
type: PropType<boolean>;
|
|
354
350
|
default: boolean;
|
|
@@ -357,6 +353,10 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
357
353
|
type: PropType<"bottom" | "left" | "right">;
|
|
358
354
|
default: string;
|
|
359
355
|
};
|
|
356
|
+
animation: {
|
|
357
|
+
type: PropType<boolean>;
|
|
358
|
+
default: boolean;
|
|
359
|
+
};
|
|
360
360
|
overlap: {
|
|
361
361
|
type: PropType<boolean>;
|
|
362
362
|
default: boolean;
|
|
@@ -369,9 +369,9 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
369
369
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
370
370
|
}, {
|
|
371
371
|
variant: "primary" | "error" | "success" | "warning" | "neutral";
|
|
372
|
-
content: string | number;
|
|
373
372
|
hover: boolean;
|
|
374
373
|
placement: "bottom" | "left" | "right";
|
|
374
|
+
animation: boolean;
|
|
375
375
|
overlap: boolean;
|
|
376
376
|
outside: boolean;
|
|
377
377
|
}>, {
|
|
@@ -711,6 +711,14 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<{
|
|
|
711
711
|
type: PropType<boolean>;
|
|
712
712
|
default: boolean;
|
|
713
713
|
};
|
|
714
|
+
dropdownClass: {
|
|
715
|
+
type: PropType<string>;
|
|
716
|
+
default: string;
|
|
717
|
+
};
|
|
718
|
+
optionsClass: {
|
|
719
|
+
type: PropType<string>;
|
|
720
|
+
default: string;
|
|
721
|
+
};
|
|
714
722
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
715
723
|
id: {
|
|
716
724
|
type: PropType<string>;
|
|
@@ -762,6 +770,14 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<{
|
|
|
762
770
|
type: PropType<boolean>;
|
|
763
771
|
default: boolean;
|
|
764
772
|
};
|
|
773
|
+
dropdownClass: {
|
|
774
|
+
type: PropType<string>;
|
|
775
|
+
default: string;
|
|
776
|
+
};
|
|
777
|
+
optionsClass: {
|
|
778
|
+
type: PropType<string>;
|
|
779
|
+
default: string;
|
|
780
|
+
};
|
|
765
781
|
}>> & {
|
|
766
782
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
767
783
|
}, {
|
|
@@ -777,6 +793,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<{
|
|
|
777
793
|
multiple: boolean;
|
|
778
794
|
searchable: boolean;
|
|
779
795
|
closeOnSelect: boolean;
|
|
796
|
+
dropdownClass: string;
|
|
797
|
+
optionsClass: string;
|
|
780
798
|
}>, {
|
|
781
799
|
prepend?(_: {}): any;
|
|
782
800
|
append?(_: {}): any;
|