codexly-ui 0.0.58 → 0.0.59
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* ── Safelist: all color shades for dynamic class binding ── */
|
|
2
2
|
@source inline("{bg,hover:bg,ring,hover:ring,focus:ring,focus-within:ring,hover:border,border,focus:border,focus-within:border,text}-{red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose,slate,gray,zinc,neutral,stone}-{50,100,200,300,400,500,600,700,800,900,950}{/10,/20,/25,/50,/75,}");
|
|
3
|
-
@source inline("{bg,hover:bg,focus:ring,focus-within:ring,border,focus:border,focus-within:border,hover:border}-{white,black,transparent}");
|
|
3
|
+
@source inline("{bg,hover:bg,focus:ring,focus-within:ring,border,focus:border,focus-within:border,hover:border,border-t}-{white,black,transparent}");
|
|
4
|
+
@source inline("border-white/30 border-t-white");
|
|
4
5
|
@source inline("text-{black,white}");
|
|
5
6
|
@source inline("focus:ring-2 focus-within:ring-2 ring-2");
|
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -616,6 +616,8 @@ class ClxSpinnerComponent {
|
|
|
616
616
|
const size = SPINNER_SIZE_MAP[this.size()];
|
|
617
617
|
if (this.color() === 'inherit')
|
|
618
618
|
return `${size} border-current/30 border-t-current`;
|
|
619
|
+
if (this.color() === 'white')
|
|
620
|
+
return `${size} border-white/30 border-t-white`;
|
|
619
621
|
const t = resolveColor(this.color());
|
|
620
622
|
return `${size} ${t.borderLight} ${t.border.replace('border-', 'border-t-')}`;
|
|
621
623
|
}, ...(ngDevMode ? [{ debugName: "_spinnerClass" }] : /* istanbul ignore next */ []));
|