jett.admin.npmpackage 1.0.45 → 1.0.47
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.js +6 -14
- package/dist/index.mjs +6 -14
- package/dist/logo-white-RYMEJOWI.svg +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -614,8 +614,10 @@ var additionalItemsConstant = [
|
|
|
614
614
|
}
|
|
615
615
|
];
|
|
616
616
|
|
|
617
|
+
// src/assests/logo/logo-white.svg
|
|
618
|
+
var logo_white_default = "./logo-white-RYMEJOWI.svg";
|
|
619
|
+
|
|
617
620
|
// src/sideBar/SideBar.jsx
|
|
618
|
-
var import_logo_dark = __toESM(require("https://d2hhcjc4gpirud.cloudfront.net/production/logo-dark.svg"));
|
|
619
621
|
var import_js_cookie = __toESM(require("js-cookie"));
|
|
620
622
|
|
|
621
623
|
// src/inputs/CustomSelect.jsx
|
|
@@ -753,8 +755,8 @@ var AppSideBar = ({
|
|
|
753
755
|
}, [localStorage.getItem("authData")]);
|
|
754
756
|
const navItemsLocal = navItems ?? navItemsConstant;
|
|
755
757
|
const additionalItemsLocal = additionalItems ?? additionalItemsConstant;
|
|
756
|
-
const sideBarLogoLocal = sideBarLogo ??
|
|
757
|
-
return /* @__PURE__ */ import_react12.default.createElement("div", { className: "w-[320px] transition-all ease-in-out delay-100 bg-transparent border-r border-gray-200 dark:border-[#303036] flex flex-col p-4 h-full max-h-[100vh] dark:bg-[#18181b]" }, /* @__PURE__ */ import_react12.default.createElement("div", { className: "p-2 mb-
|
|
758
|
+
const sideBarLogoLocal = sideBarLogo ?? logo_white_default;
|
|
759
|
+
return /* @__PURE__ */ import_react12.default.createElement("div", { className: "w-[320px] transition-all ease-in-out delay-100 bg-transparent border-r border-gray-200 dark:border-[#303036] flex flex-col p-4 h-full max-h-[100vh] dark:bg-[#18181b]" }, /* @__PURE__ */ import_react12.default.createElement("div", { className: "p-2 mb-2" }, /* @__PURE__ */ import_react12.default.createElement("div", { className: "flex items-center justify-center w-full h-[60px] mb-2" }, /* @__PURE__ */ import_react12.default.createElement(
|
|
758
760
|
"img",
|
|
759
761
|
{
|
|
760
762
|
src: sideBarLogoLocal,
|
|
@@ -763,17 +765,7 @@ var AppSideBar = ({
|
|
|
763
765
|
height: 40,
|
|
764
766
|
className: "object-contain"
|
|
765
767
|
}
|
|
766
|
-
))), /* @__PURE__ */ import_react12.default.createElement("div", { className: "mb-
|
|
767
|
-
CustomSelect,
|
|
768
|
-
{
|
|
769
|
-
heading: "Select Location",
|
|
770
|
-
label: "Country",
|
|
771
|
-
value: selectedCountry,
|
|
772
|
-
onChange: setSelectedCountry,
|
|
773
|
-
options: countryOptions,
|
|
774
|
-
placeholder: "Select country..."
|
|
775
|
-
}
|
|
776
|
-
))), /* @__PURE__ */ import_react12.default.createElement("div", { className: "overflow-y-auto" }, /* @__PURE__ */ import_react12.default.createElement("div", null, navItemsLocal == null ? void 0 : navItemsLocal.map((item, index) => {
|
|
768
|
+
))), /* @__PURE__ */ import_react12.default.createElement("div", { className: "mb-4" }, /* @__PURE__ */ import_react12.default.createElement("div", { className: "flex ml-[20px] items-center gap-2 mb-2 dark:text-[#f4f4f5cc]" }, /* @__PURE__ */ import_react12.default.createElement("div", { className: "text-primary" }, /* @__PURE__ */ import_react12.default.createElement(import_lucide_react6.Globe, { width: 20, height: 20 })), /* @__PURE__ */ import_react12.default.createElement("h3", { className: "text-[#3f3f46cc] dark:text-[#f4f4f5cc] font-medium" }, "Data Centers"))), /* @__PURE__ */ import_react12.default.createElement("div", { className: "overflow-y-auto" }, /* @__PURE__ */ import_react12.default.createElement("div", null, navItemsLocal == null ? void 0 : navItemsLocal.map((item, index) => {
|
|
777
769
|
return /* @__PURE__ */ import_react12.default.createElement("div", { key: index, className: "" }, /* @__PURE__ */ import_react12.default.createElement(
|
|
778
770
|
"div",
|
|
779
771
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -566,8 +566,10 @@ var additionalItemsConstant = [
|
|
|
566
566
|
}
|
|
567
567
|
];
|
|
568
568
|
|
|
569
|
+
// src/assests/logo/logo-white.svg
|
|
570
|
+
var logo_white_default = "./logo-white-RYMEJOWI.svg";
|
|
571
|
+
|
|
569
572
|
// src/sideBar/SideBar.jsx
|
|
570
|
-
import SideBarLogoFallback from "https://d2hhcjc4gpirud.cloudfront.net/production/logo-dark.svg";
|
|
571
573
|
import Cookies from "js-cookie";
|
|
572
574
|
|
|
573
575
|
// src/inputs/CustomSelect.jsx
|
|
@@ -705,8 +707,8 @@ var AppSideBar = ({
|
|
|
705
707
|
}, [localStorage.getItem("authData")]);
|
|
706
708
|
const navItemsLocal = navItems ?? navItemsConstant;
|
|
707
709
|
const additionalItemsLocal = additionalItems ?? additionalItemsConstant;
|
|
708
|
-
const sideBarLogoLocal = sideBarLogo ??
|
|
709
|
-
return /* @__PURE__ */ React12.createElement("div", { className: "w-[320px] transition-all ease-in-out delay-100 bg-transparent border-r border-gray-200 dark:border-[#303036] flex flex-col p-4 h-full max-h-[100vh] dark:bg-[#18181b]" }, /* @__PURE__ */ React12.createElement("div", { className: "p-2 mb-
|
|
710
|
+
const sideBarLogoLocal = sideBarLogo ?? logo_white_default;
|
|
711
|
+
return /* @__PURE__ */ React12.createElement("div", { className: "w-[320px] transition-all ease-in-out delay-100 bg-transparent border-r border-gray-200 dark:border-[#303036] flex flex-col p-4 h-full max-h-[100vh] dark:bg-[#18181b]" }, /* @__PURE__ */ React12.createElement("div", { className: "p-2 mb-2" }, /* @__PURE__ */ React12.createElement("div", { className: "flex items-center justify-center w-full h-[60px] mb-2" }, /* @__PURE__ */ React12.createElement(
|
|
710
712
|
"img",
|
|
711
713
|
{
|
|
712
714
|
src: sideBarLogoLocal,
|
|
@@ -715,17 +717,7 @@ var AppSideBar = ({
|
|
|
715
717
|
height: 40,
|
|
716
718
|
className: "object-contain"
|
|
717
719
|
}
|
|
718
|
-
))), /* @__PURE__ */ React12.createElement("div", { className: "mb-
|
|
719
|
-
CustomSelect,
|
|
720
|
-
{
|
|
721
|
-
heading: "Select Location",
|
|
722
|
-
label: "Country",
|
|
723
|
-
value: selectedCountry,
|
|
724
|
-
onChange: setSelectedCountry,
|
|
725
|
-
options: countryOptions,
|
|
726
|
-
placeholder: "Select country..."
|
|
727
|
-
}
|
|
728
|
-
))), /* @__PURE__ */ React12.createElement("div", { className: "overflow-y-auto" }, /* @__PURE__ */ React12.createElement("div", null, navItemsLocal == null ? void 0 : navItemsLocal.map((item, index) => {
|
|
720
|
+
))), /* @__PURE__ */ React12.createElement("div", { className: "mb-4" }, /* @__PURE__ */ React12.createElement("div", { className: "flex ml-[20px] items-center gap-2 mb-2 dark:text-[#f4f4f5cc]" }, /* @__PURE__ */ React12.createElement("div", { className: "text-primary" }, /* @__PURE__ */ React12.createElement(Globe2, { width: 20, height: 20 })), /* @__PURE__ */ React12.createElement("h3", { className: "text-[#3f3f46cc] dark:text-[#f4f4f5cc] font-medium" }, "Data Centers"))), /* @__PURE__ */ React12.createElement("div", { className: "overflow-y-auto" }, /* @__PURE__ */ React12.createElement("div", null, navItemsLocal == null ? void 0 : navItemsLocal.map((item, index) => {
|
|
729
721
|
return /* @__PURE__ */ React12.createElement("div", { key: index, className: "" }, /* @__PURE__ */ React12.createElement(
|
|
730
722
|
"div",
|
|
731
723
|
{
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="2000" height="366.013" viewBox="0 0 2000 366.013" fill="none" version="1.1" id="svg6" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs6"/><path d="M86.471 282.484H0V40.706h87.19q36.797 0 63.346 14.51a98.431 98.431 0 0 1 40.863 41.438q14.405 27.033 14.405 64.693 0 37.778 -14.405 64.928a98.562 98.562 0 0 1 -41.098 41.66q-26.667 14.51 -63.83 14.523m-34.902 -43.804h32.758q22.863 0 38.471 -8.026 15.712 -8.157 23.582 -25.15 7.974 -17.124 7.974 -44.144 0 -26.797 -7.974 -43.791 -7.869 -17.007 -23.464 -25.033T84.444 84.51H51.569Z" fill="#0087fa" id="path1"/><path d="M244 282.484V40.706H408.366v42.144H295.556v57.608h104.34v42.131H295.556v57.725h113.268v42.144z" fill="#0087fa" id="path2"/><path d="M449.359 40.719h63.595L580.131 203.137h2.863l67.163 -162.431h63.608v241.752h-50.026V125.124h-2.026l-63.124 156.17h-34.065L501.412 124.523h-2.026V282.484h-50.026Z" fill="#0087fa" id="path3"/><path d="M980.392 161.595q0 39.556 -15.124 67.281 -15.007 27.752 -40.967 42.379 -25.843 14.51 -58.131 14.51 -32.51 0 -58.353 -14.627 -25.843 -14.641 -40.85 -42.379t-15.007 -67.163q0 -39.556 15.007 -67.281 15.007 -27.752 40.85 -42.261 25.843 -14.641 58.353 -14.641 32.288 0 58.131 14.641 25.961 14.51 40.967 42.261Q980.392 122.039 980.392 161.595m-52.288 0q0 -25.621 -7.739 -43.203 -7.621 -17.595 -21.569 -26.68 -13.922 -9.098 -32.614 -9.085 -18.693 0 -32.641 9.085 -13.922 9.085 -21.673 26.667 -7.621 17.608 -7.621 43.216t7.621 43.203q7.739 17.582 21.673 26.667t32.641 9.098 32.627 -9.085q13.922 -9.098 21.556 -26.68 7.739 -17.595 7.739 -43.203" fill="#0087fa" id="path4"/><path d="M1958.967 2.078c-11.399 3.033 -18.196 6.667 -46.444 24.366l-23.647 14.68 -8.484 -1.83c-4.732 -1.085 -31.529 -6.784 -59.425 -12.85l-50.81 -11.033 -4.98 3.529c-2.784 2.052 -4.967 4.353 -4.967 5.203 0 0.967 11.163 7.399 24.98 14.549 28.863 14.797 56.51 29.843 57.359 31.294 0.732 1.085 -35.895 26.549 -54.81 38.314l-11.281 7.033 -15.15 -0.85 -15.046 -0.837 -8 4.484c-9.333 5.216 -9.582 4.484 5.333 12.732 4.732 2.667 8.732 5.098 8.732 5.333 0 0.732 -27.163 19.647 -46.68 32.379 -26.562 17.464 -55.176 35.163 -73.856 45.843l-15.647 8.967 -7.634 -8c-14.196 -15.033 -20.863 -35.163 -19.529 -58.562 1.948 -31.778 17.83 -54.824 44.144 -63.791 11.516 -4.013 29.098 -4.013 40.627 -0.131 13.699 4.732 27.529 15.294 31.529 24.013 0.719 1.569 1.817 2.915 2.301 2.915 0.967 0 40.627 -24.863 42.81 -26.797 1.817 -1.582 -9.699 -17.229 -19.046 -26.078 -13.333 -12.614 -25.948 -19.399 -46.68 -24.98 -7.765 -2.065 -12.98 -2.549 -30.562 -2.667 -18.314 -0.131 -22.797 0.235 -32.013 2.667 -11.765 2.915 -29.83 10.915 -39.176 17.333 -21.333 14.562 -38.562 40.261 -45.961 68.405 -4.235 16 -5.333 45.098 -2.418 61.961 3.516 20.497 11.634 40.013 22.797 54.81 2.667 3.647 4.601 6.667 4.366 6.928 -0.967 0.954 -48.745 22.549 -51.294 23.15l-2.431 0.601 -0.118 -116.771 -0.248 -116.784 -30.431 -0.366 -30.314 -0.235 -34.562 57.595 -34.444 57.725 -6.549 -10.549c-3.516 -5.817 -19.399 -31.647 -35.163 -57.359l-28.627 -46.81h-59.66v122.118c0 115.556 0.131 121.987 2.183 121.634 1.098 -0.248 13.098 -0.497 26.562 -0.497l24.614 -0.118 0.248 -78.941 0.353 -78.954 33.961 54.209c18.68 29.843 35.529 56.876 37.595 60.157 1.935 3.268 3.882 5.935 4.235 5.935 0.366 -0.118 16.98 -26.797 36.993 -59.542a10758.17 10758.17 0 0 1 37.83 -61.477c1.216 -1.569 1.464 14.797 1.582 78.575v80.654l16 -0.366c9.83 -0.131 15.412 0.131 14.314 0.85 -3.634 2.052 -50.693 20.614 -72.275 28.497 -76.523 27.529 -141.399 42.68 -200.575 46.797 -10.301 0.732 -21.83 1.699 -25.464 2.065 -12.85 1.582 19.647 2.667 43.294 1.464 51.66 -2.549 106.719 -13.948 172.444 -35.294 40.497 -13.216 75.908 -27.163 134.353 -53.229l35.294 -15.765 7.765 5.699c22.183 16.484 56.379 26.183 86.34 24.366 35.046 -2.183 64.144 -17.098 83.307 -42.444 7.033 -9.333 7.281 -9.817 5.098 -11.882a1189.542 1189.542 0 0 0 -16.614 -14.314l-14.431 -12.118 -8.497 7.765c-15.765 14.667 -36.131 22.183 -56.51 20.85 -9.817 -0.601 -25.948 -4.601 -27.281 -6.797 -0.366 -0.471 4.366 -3.503 10.549 -6.784 6.183 -3.15 26.68 -14.667 45.725 -25.464 30.431 -17.346 105.137 -58.824 158.131 -87.673 9.817 -5.464 18.431 -9.582 19.033 -9.216s1.098 3.752 1.098 7.516c0 7.033 2.902 56.51 4.366 75.19 0.484 6.536 1.333 10.301 2.418 10.784 0.85 0.248 4.484 -1.333 8 -3.634l6.431 -4.118 11.882 -48.993c6.431 -26.928 12.732 -52.993 13.83 -57.843l2.065 -8.863 19.516 -13.464c36.497 -25.333 50.078 -36.366 54.693 -44.745 2.431 -4.235 2.065 -8.85 -0.85 -11.503 -3.634 -3.281 -17.346 -3.66 -28.497 -0.614" fill="#0087fa" id="path5"/><path d="M1006.536 67.686v25.464h81.856l-0.248 95.804 -0.366 95.791h55.791V93.15h78.706l0.353 -25.464 0.366 -25.477H1006.536Z" fill="#0087fa" id="path6"/></svg>
|