@ziadshalaby/ngx-zs-component 3.0.5 → 3.0.7
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/fesm2022/ziadshalaby-ngx-zs-component.mjs +45 -24
- package/fesm2022/ziadshalaby-ngx-zs-component.mjs.map +1 -1
- package/index.d.ts +20 -10
- package/output.css +155 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ declare class AlertService {
|
|
|
19
19
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AlertService>;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
type KeyType = 'alert' | 'spinner' | 'modal' | 'themeToggle' | 'navbar' | 'scrollToTop' | 'navItemDropdown' | 'selectDropdown';
|
|
22
|
+
type KeyType = 'alert' | 'spinner' | 'modal' | 'themeToggle' | 'navbar' | 'sideBar' | 'scrollToTop' | 'navItemDropdown' | 'selectDropdown';
|
|
23
23
|
type ZIndicesType = Record<KeyType, `zs:z-${number}`>;
|
|
24
24
|
|
|
25
25
|
interface AlertType {
|
|
@@ -39,17 +39,17 @@ interface AlertFullType extends AlertType {
|
|
|
39
39
|
}
|
|
40
40
|
type OldAlertsType = Set<number | string>;
|
|
41
41
|
declare const ALERT_CONFIG: Record<AlertType['type'], Omit<AlertFullType, keyof AlertType>>;
|
|
42
|
-
type
|
|
42
|
+
type DirectionType = 'top' | 'bottom';
|
|
43
43
|
declare class Alert {
|
|
44
44
|
readonly zIndices: ZIndicesType;
|
|
45
45
|
readonly alertService: AlertService;
|
|
46
|
-
readonly positionClass: _angular_core.InputSignal<
|
|
46
|
+
readonly positionClass: _angular_core.InputSignal<string>;
|
|
47
|
+
readonly direction: _angular_core.InputSignal<DirectionType>;
|
|
48
|
+
readonly maxh: _angular_core.InputSignal<string>;
|
|
47
49
|
readonly defaultShowCloseButton: _angular_core.InputSignal<boolean>;
|
|
48
50
|
readonly defaultAutoClose: _angular_core.InputSignal<boolean>;
|
|
49
51
|
readonly defaultDuration: _angular_core.InputSignal<number>;
|
|
50
52
|
private readonly oldAlerts;
|
|
51
|
-
private readonly direction;
|
|
52
|
-
readonly positionClasses: _angular_core.Signal<string>;
|
|
53
53
|
readonly alerts: _angular_core.Signal<AlertType[]>;
|
|
54
54
|
readonly alertConfig: ReturnType<typeof computed<AlertFullType[]>>;
|
|
55
55
|
private activeIntervals;
|
|
@@ -58,7 +58,7 @@ declare class Alert {
|
|
|
58
58
|
private registerAlert;
|
|
59
59
|
closeAlert(id: string | number): void;
|
|
60
60
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Alert, never>;
|
|
61
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Alert, "ZS-alert", never, { "positionClass": { "alias": "positionClass"; "required": false; "isSignal": true; }; "defaultShowCloseButton": { "alias": "defaultShowCloseButton"; "required": false; "isSignal": true; }; "defaultAutoClose": { "alias": "defaultAutoClose"; "required": false; "isSignal": true; }; "defaultDuration": { "alias": "defaultDuration"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
61
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Alert, "ZS-alert", never, { "positionClass": { "alias": "positionClass"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "maxh": { "alias": "maxh"; "required": false; "isSignal": true; }; "defaultShowCloseButton": { "alias": "defaultShowCloseButton"; "required": false; "isSignal": true; }; "defaultAutoClose": { "alias": "defaultAutoClose"; "required": false; "isSignal": true; }; "defaultDuration": { "alias": "defaultDuration"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
interface NavbarItem {
|
|
@@ -338,7 +338,7 @@ declare class Button {
|
|
|
338
338
|
readonly size: _angular_core.InputSignal<BtnSizeType>;
|
|
339
339
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
340
340
|
readonly icon: _angular_core.InputSignal<string | null>;
|
|
341
|
-
readonly type: _angular_core.InputSignal<"
|
|
341
|
+
readonly type: _angular_core.InputSignal<"button" | "reset" | "submit">;
|
|
342
342
|
readonly clickedEv: _angular_core.OutputEmitterRef<Event>;
|
|
343
343
|
readonly solidTextColor: _angular_core.Signal<string>;
|
|
344
344
|
readonly baseClasses: _angular_core.Signal<string>;
|
|
@@ -619,13 +619,14 @@ declare class ThemeToggle {
|
|
|
619
619
|
readonly bodyClass: _angular_core.InputSignal<string>;
|
|
620
620
|
readonly showDefaultUI: _angular_core.InputSignal<boolean>;
|
|
621
621
|
readonly setManualTheme: _angular_core.InputSignal<themeTypes | null>;
|
|
622
|
+
readonly fromTop: _angular_core.InputSignal<string>;
|
|
622
623
|
readonly themeChangeEv: _angular_core.OutputEmitterRef<themeTypes>;
|
|
623
624
|
constructor();
|
|
624
625
|
toggleOpen(): void;
|
|
625
626
|
setTheme(theme: themeTypes): void;
|
|
626
627
|
onDocumentClick(event: MouseEvent): void;
|
|
627
628
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeToggle, never>;
|
|
628
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThemeToggle, "ZS-theme-toggle", never, { "bodyClass": { "alias": "bodyClass"; "required": false; "isSignal": true; }; "showDefaultUI": { "alias": "showDefaultUI"; "required": false; "isSignal": true; }; "setManualTheme": { "alias": "setManualTheme"; "required": false; "isSignal": true; }; }, { "themeChangeEv": "themeChangeEv"; }, never, never, true, never>;
|
|
629
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThemeToggle, "ZS-theme-toggle", never, { "bodyClass": { "alias": "bodyClass"; "required": false; "isSignal": true; }; "showDefaultUI": { "alias": "showDefaultUI"; "required": false; "isSignal": true; }; "setManualTheme": { "alias": "setManualTheme"; "required": false; "isSignal": true; }; "fromTop": { "alias": "fromTop"; "required": false; "isSignal": true; }; }, { "themeChangeEv": "themeChangeEv"; }, never, never, true, never>;
|
|
629
630
|
}
|
|
630
631
|
|
|
631
632
|
type ChVariantType = 'solid' | 'regular';
|
|
@@ -961,5 +962,14 @@ declare class Footer {
|
|
|
961
962
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Footer, "ZS-footer", never, { "showDefultContent": { "alias": "showDefultContent"; "required": false; "isSignal": true; }; "pages": { "alias": "pages"; "required": false; "isSignal": true; }; }, {}, never, ["[rights]"], true, never>;
|
|
962
963
|
}
|
|
963
964
|
|
|
964
|
-
|
|
965
|
-
|
|
965
|
+
declare class Sidebar {
|
|
966
|
+
readonly zIndices: ZIndicesType;
|
|
967
|
+
readonly header: _angular_core.InputSignal<string>;
|
|
968
|
+
readonly openSide: _angular_core.ModelSignal<boolean>;
|
|
969
|
+
toggleSide(): void;
|
|
970
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Sidebar, never>;
|
|
971
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Sidebar, "ZS-sidebar", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "openSide": { "alias": "openSide"; "required": false; "isSignal": true; }; }, { "openSide": "openSideChange"; }, never, ["[main]"], true, never>;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
export { ALERT_CONFIG, Alert, AlertService, Button, Card, Carousel, Checkbox, ColorMapping, Connection, ExtractorService, FileInput, Footer, Form, Input, InputErrors, Label, Modal, NavItem, NavItemService, Navbar, NgxZsComponent, Page404, Pagination, Range, ScrollToTop, Select, Sidebar, Spinner, ThemeToggle, Toggle, buttonOutlinePaletteMap, buttonSolidPaletteMap, cardPaletteMap, checkboxTextPaletteMap, inputPaletteMap, modalPaletteMap, page404PaletteMap, ringPaletteMap, selectPaletteMap, unifiedPaletteMap };
|
|
975
|
+
export type { AlertFullType, AlertType, AnimationType, AuthButtonsType, BaseColorPrefixes, BaseColors, BaseSize, BtnSizeType, BtnType, BtnTypeDefault, BulkAlert, ButtonVariant, CarouselItem, ChVariantType, ChangeEventType, DateType, DirectionType, DropdownItem, FileData, FilesType, FormStyle, FormatterFn, InputType, ItemShapeType, LoaderType, NavbarItem, NavbarItemExport, NewAlert, OldAlertsType, PagesType, Position, PositionType, ShapeType, SiteNameConfigType, UserProfile, ValidatorFn, VariantType, ZFormField, ZFormFieldMap, navItemsType, themeTypes };
|
package/output.css
CHANGED
|
@@ -158,6 +158,7 @@
|
|
|
158
158
|
--zs-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
159
159
|
--zs-animate-spin: spin 1s linear infinite;
|
|
160
160
|
--zs-animate-bounce: bounce 1s infinite;
|
|
161
|
+
--zs-blur-md: 12px;
|
|
161
162
|
--zs-default-transition-duration: 150ms;
|
|
162
163
|
--zs-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
163
164
|
--zs-default-font-family: var(--zs-font-sans);
|
|
@@ -337,8 +338,11 @@
|
|
|
337
338
|
.zs\:top-1\/2 {
|
|
338
339
|
top: calc(1/2 * 100%);
|
|
339
340
|
}
|
|
340
|
-
.zs\:top-1\/
|
|
341
|
-
top: calc(1/
|
|
341
|
+
.zs\:top-1\/4 {
|
|
342
|
+
top: calc(1/4 * 100%);
|
|
343
|
+
}
|
|
344
|
+
.zs\:top-3 {
|
|
345
|
+
top: calc(var(--zs-spacing) * 3);
|
|
342
346
|
}
|
|
343
347
|
.zs\:top-4 {
|
|
344
348
|
top: calc(var(--zs-spacing) * 4);
|
|
@@ -370,6 +374,9 @@
|
|
|
370
374
|
.zs\:left-1\/2 {
|
|
371
375
|
left: calc(1/2 * 100%);
|
|
372
376
|
}
|
|
377
|
+
.zs\:left-2 {
|
|
378
|
+
left: calc(var(--zs-spacing) * 2);
|
|
379
|
+
}
|
|
373
380
|
.zs\:left-3 {
|
|
374
381
|
left: calc(var(--zs-spacing) * 3);
|
|
375
382
|
}
|
|
@@ -409,6 +416,9 @@
|
|
|
409
416
|
.zs\:z-1600 {
|
|
410
417
|
z-index: 1600;
|
|
411
418
|
}
|
|
419
|
+
.zs\:z-1800 {
|
|
420
|
+
z-index: 1800;
|
|
421
|
+
}
|
|
412
422
|
.zs\:m-4 {
|
|
413
423
|
margin: calc(var(--zs-spacing) * 4);
|
|
414
424
|
}
|
|
@@ -445,9 +455,6 @@
|
|
|
445
455
|
.zs\:mt-6 {
|
|
446
456
|
margin-top: calc(var(--zs-spacing) * 6);
|
|
447
457
|
}
|
|
448
|
-
.zs\:mt-8 {
|
|
449
|
-
margin-top: calc(var(--zs-spacing) * 8);
|
|
450
|
-
}
|
|
451
458
|
.zs\:mr-1 {
|
|
452
459
|
margin-right: calc(var(--zs-spacing) * 1);
|
|
453
460
|
}
|
|
@@ -593,6 +600,9 @@
|
|
|
593
600
|
.zs\:h-16 {
|
|
594
601
|
height: calc(var(--zs-spacing) * 16);
|
|
595
602
|
}
|
|
603
|
+
.zs\:h-\[88vh\] {
|
|
604
|
+
height: 88vh;
|
|
605
|
+
}
|
|
596
606
|
.zs\:h-full {
|
|
597
607
|
height: 100%;
|
|
598
608
|
}
|
|
@@ -605,18 +615,18 @@
|
|
|
605
615
|
.zs\:max-h-\[75vh\] {
|
|
606
616
|
max-height: 75vh;
|
|
607
617
|
}
|
|
608
|
-
.zs\:max-h-\[calc\(100vh-
|
|
609
|
-
max-height: calc(100vh -
|
|
618
|
+
.zs\:max-h-\[calc\(100vh-1\.2rem\)\] {
|
|
619
|
+
max-height: calc(100vh - 1.2rem);
|
|
610
620
|
}
|
|
611
621
|
.zs\:min-h-14 {
|
|
612
622
|
min-height: calc(var(--zs-spacing) * 14);
|
|
613
623
|
}
|
|
624
|
+
.zs\:min-h-\[88vh\] {
|
|
625
|
+
min-height: 88vh;
|
|
626
|
+
}
|
|
614
627
|
.zs\:min-h-\[90vh\] {
|
|
615
628
|
min-height: 90vh;
|
|
616
629
|
}
|
|
617
|
-
.zs\:min-h-\[92vh\] {
|
|
618
|
-
min-height: 92vh;
|
|
619
|
-
}
|
|
620
630
|
.zs\:w-1 {
|
|
621
631
|
width: calc(var(--zs-spacing) * 1);
|
|
622
632
|
}
|
|
@@ -650,6 +660,9 @@
|
|
|
650
660
|
.zs\:w-64 {
|
|
651
661
|
width: calc(var(--zs-spacing) * 64);
|
|
652
662
|
}
|
|
663
|
+
.zs\:w-\[75vw\] {
|
|
664
|
+
width: 75vw;
|
|
665
|
+
}
|
|
653
666
|
.zs\:w-auto {
|
|
654
667
|
width: auto;
|
|
655
668
|
}
|
|
@@ -709,6 +722,10 @@
|
|
|
709
722
|
--tw-translate-x: calc(var(--zs-spacing) * -24);
|
|
710
723
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
711
724
|
}
|
|
725
|
+
.zs\:-translate-x-full {
|
|
726
|
+
--tw-translate-x: -100%;
|
|
727
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
728
|
+
}
|
|
712
729
|
.zs\:translate-x-0 {
|
|
713
730
|
--tw-translate-x: calc(var(--zs-spacing) * 0);
|
|
714
731
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -826,6 +843,13 @@
|
|
|
826
843
|
.zs\:gap-8 {
|
|
827
844
|
gap: calc(var(--zs-spacing) * 8);
|
|
828
845
|
}
|
|
846
|
+
.zs\:space-y-2 {
|
|
847
|
+
:where(& > :not(:last-child)) {
|
|
848
|
+
--tw-space-y-reverse: 0;
|
|
849
|
+
margin-block-start: calc(calc(var(--zs-spacing) * 2) * var(--tw-space-y-reverse));
|
|
850
|
+
margin-block-end: calc(calc(var(--zs-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
851
|
+
}
|
|
852
|
+
}
|
|
829
853
|
.zs\:gap-x-4 {
|
|
830
854
|
column-gap: calc(var(--zs-spacing) * 4);
|
|
831
855
|
}
|
|
@@ -1138,6 +1162,9 @@
|
|
|
1138
1162
|
background-color: color-mix(in oklab, var(--zs-color-gray-100) 50%, transparent);
|
|
1139
1163
|
}
|
|
1140
1164
|
}
|
|
1165
|
+
.zs\:bg-gray-200 {
|
|
1166
|
+
background-color: var(--zs-color-gray-200);
|
|
1167
|
+
}
|
|
1141
1168
|
.zs\:bg-gray-300 {
|
|
1142
1169
|
background-color: var(--zs-color-gray-300);
|
|
1143
1170
|
}
|
|
@@ -1258,6 +1285,12 @@
|
|
|
1258
1285
|
.zs\:bg-white {
|
|
1259
1286
|
background-color: var(--zs-color-white);
|
|
1260
1287
|
}
|
|
1288
|
+
.zs\:bg-white\/90 {
|
|
1289
|
+
background-color: var(--zs-color-white);
|
|
1290
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1291
|
+
background-color: color-mix(in oklab, var(--zs-color-white) 90%, transparent);
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1261
1294
|
.zs\:bg-yellow-100 {
|
|
1262
1295
|
background-color: var(--zs-color-yellow-100);
|
|
1263
1296
|
}
|
|
@@ -1288,6 +1321,9 @@
|
|
|
1288
1321
|
.zs\:p-0\.5 {
|
|
1289
1322
|
padding: calc(var(--zs-spacing) * 0.5);
|
|
1290
1323
|
}
|
|
1324
|
+
.zs\:p-1 {
|
|
1325
|
+
padding: calc(var(--zs-spacing) * 1);
|
|
1326
|
+
}
|
|
1291
1327
|
.zs\:p-2 {
|
|
1292
1328
|
padding: calc(var(--zs-spacing) * 2);
|
|
1293
1329
|
}
|
|
@@ -1393,6 +1429,9 @@
|
|
|
1393
1429
|
.zs\:pt-3 {
|
|
1394
1430
|
padding-top: calc(var(--zs-spacing) * 3);
|
|
1395
1431
|
}
|
|
1432
|
+
.zs\:pt-4 {
|
|
1433
|
+
padding-top: calc(var(--zs-spacing) * 4);
|
|
1434
|
+
}
|
|
1396
1435
|
.zs\:pr-2 {
|
|
1397
1436
|
padding-right: calc(var(--zs-spacing) * 2);
|
|
1398
1437
|
}
|
|
@@ -1726,6 +1765,11 @@
|
|
|
1726
1765
|
--tw-drop-shadow: var(--tw-drop-shadow-size);
|
|
1727
1766
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1728
1767
|
}
|
|
1768
|
+
.zs\:backdrop-blur-md {
|
|
1769
|
+
--tw-backdrop-blur: blur(var(--zs-blur-md));
|
|
1770
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1771
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1772
|
+
}
|
|
1729
1773
|
.zs\:transition {
|
|
1730
1774
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
1731
1775
|
transition-timing-function: var(--tw-ease, var(--zs-default-transition-timing-function));
|
|
@@ -2075,6 +2119,13 @@
|
|
|
2075
2119
|
}
|
|
2076
2120
|
}
|
|
2077
2121
|
}
|
|
2122
|
+
.zs\:hover\:bg-gray-300 {
|
|
2123
|
+
&:hover {
|
|
2124
|
+
@media (hover: hover) {
|
|
2125
|
+
background-color: var(--zs-color-gray-300);
|
|
2126
|
+
}
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2078
2129
|
.zs\:hover\:bg-gray-600 {
|
|
2079
2130
|
&:hover {
|
|
2080
2131
|
@media (hover: hover) {
|
|
@@ -2398,6 +2449,11 @@
|
|
|
2398
2449
|
height: calc(var(--zs-spacing) * 10);
|
|
2399
2450
|
}
|
|
2400
2451
|
}
|
|
2452
|
+
.zs\:sm\:w-\[55vw\] {
|
|
2453
|
+
@media (width >= 40rem) {
|
|
2454
|
+
width: 55vw;
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2401
2457
|
.zs\:sm\:gap-x-6 {
|
|
2402
2458
|
@media (width >= 40rem) {
|
|
2403
2459
|
column-gap: calc(var(--zs-spacing) * 6);
|
|
@@ -2425,6 +2481,11 @@
|
|
|
2425
2481
|
line-height: var(--tw-leading, var(--zs-text-xs--line-height));
|
|
2426
2482
|
}
|
|
2427
2483
|
}
|
|
2484
|
+
.zs\:md\:w-\[40vw\] {
|
|
2485
|
+
@media (width >= 48rem) {
|
|
2486
|
+
width: 40vw;
|
|
2487
|
+
}
|
|
2488
|
+
}
|
|
2428
2489
|
.zs\:md\:gap-x-8 {
|
|
2429
2490
|
@media (width >= 48rem) {
|
|
2430
2491
|
column-gap: calc(var(--zs-spacing) * 8);
|
|
@@ -2451,6 +2512,11 @@
|
|
|
2451
2512
|
display: none;
|
|
2452
2513
|
}
|
|
2453
2514
|
}
|
|
2515
|
+
.zs\:lg\:w-\[25vw\] {
|
|
2516
|
+
@media (width >= 64rem) {
|
|
2517
|
+
width: 25vw;
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2454
2520
|
.zs\:lg\:gap-x-10 {
|
|
2455
2521
|
@media (width >= 64rem) {
|
|
2456
2522
|
column-gap: calc(var(--zs-spacing) * 10);
|
|
@@ -2461,6 +2527,11 @@
|
|
|
2461
2527
|
padding-inline: calc(var(--zs-spacing) * 8);
|
|
2462
2528
|
}
|
|
2463
2529
|
}
|
|
2530
|
+
.zs\:xl\:w-\[15vw\] {
|
|
2531
|
+
@media (width >= 80rem) {
|
|
2532
|
+
width: 15vw;
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2464
2535
|
.zs\:dark\:border-amber-400 {
|
|
2465
2536
|
&:where(.dark, .dark *) {
|
|
2466
2537
|
border-color: var(--zs-color-amber-400);
|
|
@@ -2915,6 +2986,14 @@
|
|
|
2915
2986
|
background-color: var(--zs-color-slate-800);
|
|
2916
2987
|
}
|
|
2917
2988
|
}
|
|
2989
|
+
.zs\:dark\:bg-slate-800\/90 {
|
|
2990
|
+
&:where(.dark, .dark *) {
|
|
2991
|
+
background-color: var(--zs-color-slate-800);
|
|
2992
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2993
|
+
background-color: color-mix(in oklab, var(--zs-color-slate-800) 90%, transparent);
|
|
2994
|
+
}
|
|
2995
|
+
}
|
|
2996
|
+
}
|
|
2918
2997
|
.zs\:dark\:bg-slate-900 {
|
|
2919
2998
|
&:where(.dark, .dark *) {
|
|
2920
2999
|
background-color: var(--zs-color-slate-900);
|
|
@@ -3575,6 +3654,15 @@
|
|
|
3575
3654
|
}
|
|
3576
3655
|
}
|
|
3577
3656
|
}
|
|
3657
|
+
.zs\:dark\:hover\:bg-gray-600 {
|
|
3658
|
+
&:where(.dark, .dark *) {
|
|
3659
|
+
&:hover {
|
|
3660
|
+
@media (hover: hover) {
|
|
3661
|
+
background-color: var(--zs-color-gray-600);
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
}
|
|
3665
|
+
}
|
|
3578
3666
|
.zs\:dark\:hover\:bg-gray-600\/40 {
|
|
3579
3667
|
&:where(.dark, .dark *) {
|
|
3580
3668
|
&:hover {
|
|
@@ -3869,6 +3957,12 @@ zs-carousel {
|
|
|
3869
3957
|
--scroll-thumb: #374151;
|
|
3870
3958
|
--scroll-track: #1f2937;
|
|
3871
3959
|
}
|
|
3960
|
+
.sidebar-shadow-right {
|
|
3961
|
+
box-shadow: 4px 0 6px -1px rgba(0,0,0,0.1), 4px 0 3px -1px rgba(0,0,0,0.06);
|
|
3962
|
+
}
|
|
3963
|
+
.dark .sidebar-shadow-right {
|
|
3964
|
+
box-shadow: 4px 0 6px -1px rgba(255,255,255,0.1), 4px 0 3px -1px rgba(255,255,255,0.06);
|
|
3965
|
+
}
|
|
3872
3966
|
@property --tw-translate-x {
|
|
3873
3967
|
syntax: "*";
|
|
3874
3968
|
inherits: false;
|
|
@@ -3919,6 +4013,11 @@ zs-carousel {
|
|
|
3919
4013
|
syntax: "*";
|
|
3920
4014
|
inherits: false;
|
|
3921
4015
|
}
|
|
4016
|
+
@property --tw-space-y-reverse {
|
|
4017
|
+
syntax: "*";
|
|
4018
|
+
inherits: false;
|
|
4019
|
+
initial-value: 0;
|
|
4020
|
+
}
|
|
3922
4021
|
@property --tw-border-style {
|
|
3923
4022
|
syntax: "*";
|
|
3924
4023
|
inherits: false;
|
|
@@ -4096,6 +4195,42 @@ zs-carousel {
|
|
|
4096
4195
|
syntax: "*";
|
|
4097
4196
|
inherits: false;
|
|
4098
4197
|
}
|
|
4198
|
+
@property --tw-backdrop-blur {
|
|
4199
|
+
syntax: "*";
|
|
4200
|
+
inherits: false;
|
|
4201
|
+
}
|
|
4202
|
+
@property --tw-backdrop-brightness {
|
|
4203
|
+
syntax: "*";
|
|
4204
|
+
inherits: false;
|
|
4205
|
+
}
|
|
4206
|
+
@property --tw-backdrop-contrast {
|
|
4207
|
+
syntax: "*";
|
|
4208
|
+
inherits: false;
|
|
4209
|
+
}
|
|
4210
|
+
@property --tw-backdrop-grayscale {
|
|
4211
|
+
syntax: "*";
|
|
4212
|
+
inherits: false;
|
|
4213
|
+
}
|
|
4214
|
+
@property --tw-backdrop-hue-rotate {
|
|
4215
|
+
syntax: "*";
|
|
4216
|
+
inherits: false;
|
|
4217
|
+
}
|
|
4218
|
+
@property --tw-backdrop-invert {
|
|
4219
|
+
syntax: "*";
|
|
4220
|
+
inherits: false;
|
|
4221
|
+
}
|
|
4222
|
+
@property --tw-backdrop-opacity {
|
|
4223
|
+
syntax: "*";
|
|
4224
|
+
inherits: false;
|
|
4225
|
+
}
|
|
4226
|
+
@property --tw-backdrop-saturate {
|
|
4227
|
+
syntax: "*";
|
|
4228
|
+
inherits: false;
|
|
4229
|
+
}
|
|
4230
|
+
@property --tw-backdrop-sepia {
|
|
4231
|
+
syntax: "*";
|
|
4232
|
+
inherits: false;
|
|
4233
|
+
}
|
|
4099
4234
|
@property --tw-duration {
|
|
4100
4235
|
syntax: "*";
|
|
4101
4236
|
inherits: false;
|
|
@@ -4133,6 +4268,7 @@ zs-carousel {
|
|
|
4133
4268
|
--tw-rotate-z: initial;
|
|
4134
4269
|
--tw-skew-x: initial;
|
|
4135
4270
|
--tw-skew-y: initial;
|
|
4271
|
+
--tw-space-y-reverse: 0;
|
|
4136
4272
|
--tw-border-style: solid;
|
|
4137
4273
|
--tw-gradient-position: initial;
|
|
4138
4274
|
--tw-gradient-from: #0000;
|
|
@@ -4173,6 +4309,15 @@ zs-carousel {
|
|
|
4173
4309
|
--tw-drop-shadow-color: initial;
|
|
4174
4310
|
--tw-drop-shadow-alpha: 100%;
|
|
4175
4311
|
--tw-drop-shadow-size: initial;
|
|
4312
|
+
--tw-backdrop-blur: initial;
|
|
4313
|
+
--tw-backdrop-brightness: initial;
|
|
4314
|
+
--tw-backdrop-contrast: initial;
|
|
4315
|
+
--tw-backdrop-grayscale: initial;
|
|
4316
|
+
--tw-backdrop-hue-rotate: initial;
|
|
4317
|
+
--tw-backdrop-invert: initial;
|
|
4318
|
+
--tw-backdrop-opacity: initial;
|
|
4319
|
+
--tw-backdrop-saturate: initial;
|
|
4320
|
+
--tw-backdrop-sepia: initial;
|
|
4176
4321
|
--tw-duration: initial;
|
|
4177
4322
|
--tw-ease: initial;
|
|
4178
4323
|
}
|