jett.admin.npmpackage 1.0.78 → 1.0.80
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/dist/index.css +2 -10
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
--text-sm--line-height: calc(1.25 / 0.875);
|
|
52
52
|
--text-lg: 1.125rem;
|
|
53
53
|
--text-lg--line-height: calc(1.75 / 1.125);
|
|
54
|
-
--font-weight-normal: 400;
|
|
55
54
|
--font-weight-medium: 500;
|
|
56
55
|
--font-weight-semibold: 600;
|
|
57
56
|
--radius-sm: 0.25rem;
|
|
@@ -782,9 +781,6 @@
|
|
|
782
781
|
.text-\[14px\] {
|
|
783
782
|
font-size: 14px;
|
|
784
783
|
}
|
|
785
|
-
.text-\[15px\] {
|
|
786
|
-
font-size: 15px;
|
|
787
|
-
}
|
|
788
784
|
.text-\[16px\] {
|
|
789
785
|
font-size: 16px;
|
|
790
786
|
}
|
|
@@ -808,10 +804,6 @@
|
|
|
808
804
|
--tw-font-weight: var(--font-weight-medium);
|
|
809
805
|
font-weight: var(--font-weight-medium);
|
|
810
806
|
}
|
|
811
|
-
.font-normal {
|
|
812
|
-
--tw-font-weight: var(--font-weight-normal);
|
|
813
|
-
font-weight: var(--font-weight-normal);
|
|
814
|
-
}
|
|
815
807
|
.font-semibold {
|
|
816
808
|
--tw-font-weight: var(--font-weight-semibold);
|
|
817
809
|
font-weight: var(--font-weight-semibold);
|
|
@@ -819,8 +811,8 @@
|
|
|
819
811
|
.whitespace-nowrap {
|
|
820
812
|
white-space: nowrap;
|
|
821
813
|
}
|
|
822
|
-
.text-\[\#
|
|
823
|
-
color: #
|
|
814
|
+
.text-\[\#000\] {
|
|
815
|
+
color: #000;
|
|
824
816
|
}
|
|
825
817
|
.text-\[\#3f3f46cc\] {
|
|
826
818
|
color: #3f3f46cc;
|
package/dist/index.js
CHANGED
|
@@ -591,7 +591,7 @@ var navItemsConstant = [
|
|
|
591
591
|
{
|
|
592
592
|
label: "Admin Users",
|
|
593
593
|
onClick: () => {
|
|
594
|
-
window.location.href = "/users/";
|
|
594
|
+
window.location.href = "/users/users";
|
|
595
595
|
}
|
|
596
596
|
},
|
|
597
597
|
{ label: "Roles", onClick: () => {
|
|
@@ -858,7 +858,7 @@ var AppSideBar = ({
|
|
|
858
858
|
}
|
|
859
859
|
},
|
|
860
860
|
/* @__PURE__ */ import_react12.default.createElement("div", { className: "text-primary" }, /* @__PURE__ */ import_react12.default.createElement(item.Icon, { width: 20, height: 20 })),
|
|
861
|
-
/* @__PURE__ */ import_react12.default.createElement("span", { className: "font-medium text-[
|
|
861
|
+
/* @__PURE__ */ import_react12.default.createElement("span", { className: "font-medium text-[16px] text-[#000] dark:text-[#f4f4f5cc]" }, item.label),
|
|
862
862
|
item.isDropDown && /* @__PURE__ */ import_react12.default.createElement("div", { className: `ml-auto transition-all delay-75` }, /* @__PURE__ */ import_react12.default.createElement(import_lucide_react6.ChevronDown, { width: 20, height: 20, className: "text-gray-500 dark:text-gray-400" }))
|
|
863
863
|
), item.options && item.options.length > 0 && /* @__PURE__ */ import_react12.default.createElement(
|
|
864
864
|
"div",
|
|
@@ -903,7 +903,7 @@ var AppSideBar = ({
|
|
|
903
903
|
return /* @__PURE__ */ import_react12.default.createElement(
|
|
904
904
|
"div",
|
|
905
905
|
{
|
|
906
|
-
className: "py-1.5 px-3 rounded-md hover:bg-[#f4f4f5] dark:hover:bg-[#27272a] text-gray-500 dark:text-[#71717a] font-
|
|
906
|
+
className: "py-1.5 px-3 rounded-md hover:bg-[#f4f4f5] dark:hover:bg-[#27272a] text-gray-500 dark:text-[#71717a] font-medium text-sm cursor-pointer ml-8 mr-2 transition-colors duration-200",
|
|
907
907
|
onClick: (e) => {
|
|
908
908
|
subOption.onClick && subOption.onClick();
|
|
909
909
|
closeMobileMenu();
|
package/dist/index.mjs
CHANGED
|
@@ -565,7 +565,7 @@ var navItemsConstant = [
|
|
|
565
565
|
{
|
|
566
566
|
label: "Admin Users",
|
|
567
567
|
onClick: () => {
|
|
568
|
-
window.location.href = "/users/";
|
|
568
|
+
window.location.href = "/users/users";
|
|
569
569
|
}
|
|
570
570
|
},
|
|
571
571
|
{ label: "Roles", onClick: () => {
|
|
@@ -832,7 +832,7 @@ var AppSideBar = ({
|
|
|
832
832
|
}
|
|
833
833
|
},
|
|
834
834
|
/* @__PURE__ */ React12.createElement("div", { className: "text-primary" }, /* @__PURE__ */ React12.createElement(item.Icon, { width: 20, height: 20 })),
|
|
835
|
-
/* @__PURE__ */ React12.createElement("span", { className: "font-medium text-[
|
|
835
|
+
/* @__PURE__ */ React12.createElement("span", { className: "font-medium text-[16px] text-[#000] dark:text-[#f4f4f5cc]" }, item.label),
|
|
836
836
|
item.isDropDown && /* @__PURE__ */ React12.createElement("div", { className: `ml-auto transition-all delay-75` }, /* @__PURE__ */ React12.createElement(ChevronDown3, { width: 20, height: 20, className: "text-gray-500 dark:text-gray-400" }))
|
|
837
837
|
), item.options && item.options.length > 0 && /* @__PURE__ */ React12.createElement(
|
|
838
838
|
"div",
|
|
@@ -877,7 +877,7 @@ var AppSideBar = ({
|
|
|
877
877
|
return /* @__PURE__ */ React12.createElement(
|
|
878
878
|
"div",
|
|
879
879
|
{
|
|
880
|
-
className: "py-1.5 px-3 rounded-md hover:bg-[#f4f4f5] dark:hover:bg-[#27272a] text-gray-500 dark:text-[#71717a] font-
|
|
880
|
+
className: "py-1.5 px-3 rounded-md hover:bg-[#f4f4f5] dark:hover:bg-[#27272a] text-gray-500 dark:text-[#71717a] font-medium text-sm cursor-pointer ml-8 mr-2 transition-colors duration-200",
|
|
881
881
|
onClick: (e) => {
|
|
882
882
|
subOption.onClick && subOption.onClick();
|
|
883
883
|
closeMobileMenu();
|