@ziadshalaby/ngx-zs-component 3.2.21 → 3.2.22
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/index.d.ts
CHANGED
|
@@ -478,7 +478,7 @@ declare class Navbar {
|
|
|
478
478
|
readonly moreNavItems: Signal<NavbarItem[]>;
|
|
479
479
|
readonly mobileNavItems: Signal<NavbarItem[]>;
|
|
480
480
|
readonly getUserMenuItems: Signal<NavbarItem[]>;
|
|
481
|
-
readonly desktopVisibilityClass: Signal<"zs:xs:flex" | "zs:sm:flex" | "zs:md:flex" | "zs:lg:flex" | "zs:xl:flex"
|
|
481
|
+
readonly desktopVisibilityClass: Signal<"" | "zs:xs:flex" | "zs:sm:flex" | "zs:md:flex" | "zs:lg:flex" | "zs:xl:flex">;
|
|
482
482
|
readonly desktopVisibilityClassBlock: Signal<"" | "zs:xs:block" | "zs:sm:block" | "zs:md:block" | "zs:lg:block" | "zs:xl:block">;
|
|
483
483
|
readonly desktopHiddenClass: Signal<"" | "zs:xs:hidden" | "zs:sm:hidden" | "zs:md:hidden" | "zs:lg:hidden" | "zs:xl:hidden">;
|
|
484
484
|
private toNavbarItem;
|
package/output.css
CHANGED
|
@@ -673,8 +673,8 @@
|
|
|
673
673
|
.zs\:w-64 {
|
|
674
674
|
width: calc(var(--zs-spacing) * 64);
|
|
675
675
|
}
|
|
676
|
-
.zs\:w-\[
|
|
677
|
-
width:
|
|
676
|
+
.zs\:w-\[80vw\] {
|
|
677
|
+
width: 80vw;
|
|
678
678
|
}
|
|
679
679
|
.zs\:w-auto {
|
|
680
680
|
width: auto;
|
|
@@ -2602,9 +2602,9 @@
|
|
|
2602
2602
|
height: calc(var(--zs-spacing) * 10);
|
|
2603
2603
|
}
|
|
2604
2604
|
}
|
|
2605
|
-
.zs\:sm\:w-\[
|
|
2605
|
+
.zs\:sm\:w-\[65vw\] {
|
|
2606
2606
|
@media (width >= 40rem) {
|
|
2607
|
-
width:
|
|
2607
|
+
width: 65vw;
|
|
2608
2608
|
}
|
|
2609
2609
|
}
|
|
2610
2610
|
.zs\:sm\:gap-x-6 {
|
|
@@ -2675,9 +2675,9 @@
|
|
|
2675
2675
|
display: none;
|
|
2676
2676
|
}
|
|
2677
2677
|
}
|
|
2678
|
-
.zs\:lg\:w-\[
|
|
2678
|
+
.zs\:lg\:w-\[28vw\] {
|
|
2679
2679
|
@media (width >= 64rem) {
|
|
2680
|
-
width:
|
|
2680
|
+
width: 28vw;
|
|
2681
2681
|
}
|
|
2682
2682
|
}
|
|
2683
2683
|
.zs\:lg\:gap-x-10 {
|
|
@@ -2705,9 +2705,14 @@
|
|
|
2705
2705
|
display: none;
|
|
2706
2706
|
}
|
|
2707
2707
|
}
|
|
2708
|
-
.zs\:xl\:w-\[
|
|
2708
|
+
.zs\:xl\:w-\[22vw\] {
|
|
2709
2709
|
@media (width >= 80rem) {
|
|
2710
|
-
width:
|
|
2710
|
+
width: 22vw;
|
|
2711
|
+
}
|
|
2712
|
+
}
|
|
2713
|
+
.zs\:2xl\:w-\[18vw\] {
|
|
2714
|
+
@media (width >= 96rem) {
|
|
2715
|
+
width: 18vw;
|
|
2711
2716
|
}
|
|
2712
2717
|
}
|
|
2713
2718
|
.zs\:dark\:border-amber-400 {
|