@marianmeres/stuic 2.8.0 → 2.8.1
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.
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
});
|
|
86
86
|
|
|
87
87
|
const rounded = "rounded-md";
|
|
88
|
-
const roundedBtn = "rounded-md";
|
|
89
88
|
//
|
|
90
89
|
const CLS = `
|
|
91
90
|
stuic-button-group
|
|
@@ -119,7 +118,6 @@
|
|
|
119
118
|
text-button-group-text-active dark:text-button-group-text-active-dark
|
|
120
119
|
hover:bg-button-group-bg-active hover:dark:bg-button-group-bg-active
|
|
121
120
|
hover:text-button-group-text-active hover:dark:text-button-group-text-active-dark
|
|
122
|
-
${roundedBtn}
|
|
123
121
|
`;
|
|
124
122
|
// shadow-[0px_0px_1px_1px_rgba(0_0_0_/_.6)]
|
|
125
123
|
|
|
@@ -169,7 +167,7 @@
|
|
|
169
167
|
id={item.id}
|
|
170
168
|
{...buttonProps?.(i, coll) || {}}
|
|
171
169
|
>
|
|
172
|
-
{item.option.label}
|
|
170
|
+
{@html item.option.label}
|
|
173
171
|
</Button>
|
|
174
172
|
{/each}
|
|
175
173
|
</div>
|