@rocketui/vue 0.0.77 → 0.0.79
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 +9 -0
- package/dist/rocket-ui-vue.js +5 -3
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -316,6 +316,10 @@ export declare const RAvatar: DefineComponent<{
|
|
|
316
316
|
}>;
|
|
317
317
|
|
|
318
318
|
export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
319
|
+
class: {
|
|
320
|
+
type: PropType<string>;
|
|
321
|
+
default: string;
|
|
322
|
+
};
|
|
319
323
|
variant: {
|
|
320
324
|
type: PropType<"primary" | "error" | "success" | "warning" | "neutral">;
|
|
321
325
|
default: string;
|
|
@@ -341,6 +345,10 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
341
345
|
default: boolean;
|
|
342
346
|
};
|
|
343
347
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
348
|
+
class: {
|
|
349
|
+
type: PropType<string>;
|
|
350
|
+
default: string;
|
|
351
|
+
};
|
|
344
352
|
variant: {
|
|
345
353
|
type: PropType<"primary" | "error" | "success" | "warning" | "neutral">;
|
|
346
354
|
default: string;
|
|
@@ -368,6 +376,7 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<{
|
|
|
368
376
|
}>> & {
|
|
369
377
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
370
378
|
}, {
|
|
379
|
+
class: string;
|
|
371
380
|
variant: "primary" | "error" | "success" | "warning" | "neutral";
|
|
372
381
|
hover: boolean;
|
|
373
382
|
placement: "bottom" | "left" | "right";
|
package/dist/rocket-ui-vue.js
CHANGED
|
@@ -7475,7 +7475,8 @@ const a2 = ["data-state"], Z2 = ["onClick"], u2 = { class: "r-accordion__title"
|
|
|
7475
7475
|
overlap: { type: Boolean, default: !1 },
|
|
7476
7476
|
hover: { type: Boolean, default: !1 },
|
|
7477
7477
|
outside: { type: Boolean, default: !1 },
|
|
7478
|
-
animation: { type: Boolean, default: !1 }
|
|
7478
|
+
animation: { type: Boolean, default: !1 },
|
|
7479
|
+
class: { default: "" }
|
|
7479
7480
|
},
|
|
7480
7481
|
emits: ["click"],
|
|
7481
7482
|
setup(H) {
|
|
@@ -7486,11 +7487,12 @@ const a2 = ["data-state"], Z2 = ["onClick"], u2 = { class: "r-accordion__title"
|
|
|
7486
7487
|
[`r-badge--${V.placement}`]: V.placement,
|
|
7487
7488
|
[`r-badge--outside-${V.placement}`]: V.outside,
|
|
7488
7489
|
"r-badge--hover": V.hover,
|
|
7489
|
-
[`r-badge--${V.variant}`]: V.variant
|
|
7490
|
+
[`r-badge--${V.variant}`]: V.variant,
|
|
7491
|
+
[V.class]: V.class
|
|
7490
7492
|
}));
|
|
7491
7493
|
return (L, M) => (m(), Z("div", B2, [
|
|
7492
7494
|
S("span", {
|
|
7493
|
-
class: f([{ "animate-ping": V.animation }, s(C)])
|
|
7495
|
+
class: f([{ "animate-ping-2": V.animation }, s(C)])
|
|
7494
7496
|
}, null, 2),
|
|
7495
7497
|
S("span", {
|
|
7496
7498
|
class: f(s(C))
|