@rocketui/vue 0.0.75 → 0.0.76
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 +6 -9
- package/dist/rocket-ui-vue.js +444 -438
- 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,9 @@ 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
|
+
};
|
|
335
334
|
overlap: {
|
|
336
335
|
type: PropType<boolean>;
|
|
337
336
|
default: boolean;
|
|
@@ -345,10 +344,6 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
345
344
|
type: PropType<"primary" | "error" | "success" | "warning" | "neutral">;
|
|
346
345
|
default: string;
|
|
347
346
|
};
|
|
348
|
-
content: {
|
|
349
|
-
type: PropType<string | number>;
|
|
350
|
-
default: string;
|
|
351
|
-
};
|
|
352
347
|
hover: {
|
|
353
348
|
type: PropType<boolean>;
|
|
354
349
|
default: boolean;
|
|
@@ -357,6 +352,9 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
357
352
|
type: PropType<"bottom" | "left" | "right">;
|
|
358
353
|
default: string;
|
|
359
354
|
};
|
|
355
|
+
animation: {
|
|
356
|
+
type: PropType<boolean>;
|
|
357
|
+
};
|
|
360
358
|
overlap: {
|
|
361
359
|
type: PropType<boolean>;
|
|
362
360
|
default: boolean;
|
|
@@ -369,7 +367,6 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
369
367
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
370
368
|
}, {
|
|
371
369
|
variant: "primary" | "error" | "success" | "warning" | "neutral";
|
|
372
|
-
content: string | number;
|
|
373
370
|
hover: boolean;
|
|
374
371
|
placement: "bottom" | "left" | "right";
|
|
375
372
|
overlap: boolean;
|