codexly-ui 0.0.80 → 0.0.81
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/assets/styles/styles.css +19 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +2 -2
package/assets/styles/styles.css
CHANGED
|
@@ -9,13 +9,31 @@
|
|
|
9
9
|
@source inline("text-{black,white}");
|
|
10
10
|
@source inline("focus:ring-2 focus-within:ring-2 ring-2");
|
|
11
11
|
|
|
12
|
-
/* ──
|
|
12
|
+
/* ── Shared backdrop base ── */
|
|
13
|
+
.clx-modal-backdrop,
|
|
14
|
+
.clx-alert-backdrop {
|
|
15
|
+
animation: clx-backdrop-in 220ms ease forwards;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@keyframes clx-backdrop-in {
|
|
19
|
+
from { opacity: 0; }
|
|
20
|
+
to { opacity: 1; }
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* ── Modal backdrop ── */
|
|
13
24
|
.clx-modal-backdrop {
|
|
14
25
|
background-color: rgba(15, 23, 42, 0.40);
|
|
15
26
|
backdrop-filter: blur(4px);
|
|
16
27
|
-webkit-backdrop-filter: blur(4px);
|
|
17
28
|
}
|
|
18
29
|
|
|
30
|
+
/* ── Alert backdrop ── */
|
|
31
|
+
.clx-alert-backdrop {
|
|
32
|
+
background-color: rgba(15, 23, 42, 0.45);
|
|
33
|
+
backdrop-filter: blur(6px);
|
|
34
|
+
-webkit-backdrop-filter: blur(6px);
|
|
35
|
+
}
|
|
36
|
+
|
|
19
37
|
|
|
20
38
|
/* ── Global scrollbar styling ─────────────────────────────────────────────── */
|
|
21
39
|
::-webkit-scrollbar {
|
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -971,7 +971,7 @@ declare class ClxRatingComponent {
|
|
|
971
971
|
declare class ClxBadgeComponent {
|
|
972
972
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
973
973
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
974
|
-
readonly size: _angular_core.InputSignal<"
|
|
974
|
+
readonly size: _angular_core.InputSignal<"xs" | "sm" | "md">;
|
|
975
975
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
976
976
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
977
977
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
@@ -982,7 +982,7 @@ declare class ClxBadgeComponent {
|
|
|
982
982
|
declare class ClxButtonComponent {
|
|
983
983
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
984
984
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
985
|
-
readonly size: _angular_core.InputSignal<"
|
|
985
|
+
readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
|
|
986
986
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
987
987
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
988
988
|
readonly disabled: _angular_core.InputSignal<boolean>;
|