geoiq-frontend-ui-kit 1.1.30 → 1.1.32
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/components/organisms/navbar/index.d.ts +4 -1
- package/dist/components/organisms/navbar/index.d.ts.map +1 -1
- package/dist/components/organisms/navbar/navbar-desktop.d.ts +5 -0
- package/dist/components/organisms/navbar/navbar-desktop.d.ts.map +1 -0
- package/dist/components/organisms/navbar/navbar-mobile.d.ts +5 -0
- package/dist/components/organisms/navbar/navbar-mobile.d.ts.map +1 -0
- package/dist/components/organisms/navbar/navbar.types.d.ts +17 -1
- package/dist/components/organisms/navbar/navbar.types.d.ts.map +1 -1
- package/dist/index.es10.js +1 -1
- package/dist/index.es15.js +1 -1
- package/dist/index.es18.js +1 -1
- package/dist/index.es19.js +1 -1
- package/dist/index.es20.js +3 -3
- package/dist/index.es21.js +1 -1
- package/dist/index.es24.js +1 -1
- package/dist/index.es25.js +1 -1
- package/dist/index.es27.js +1 -1
- package/dist/index.es29.js +1 -1
- package/dist/index.es30.js +1 -1
- package/dist/index.es38.js +7 -132
- package/dist/index.es38.js.map +1 -1
- package/dist/index.es43.js +1 -1
- package/dist/index.es56.js +1 -1
- package/dist/index.es70.js +129 -8
- package/dist/index.es70.js.map +1 -1
- package/dist/index.es71.js +187 -76
- package/dist/index.es71.js.map +1 -1
- package/dist/index.es72.js +48 -121
- package/dist/index.es72.js.map +1 -1
- package/dist/index.es73.js +22 -17
- package/dist/index.es73.js.map +1 -1
- package/dist/index.es74.js +5 -16
- package/dist/index.es74.js.map +1 -1
- package/dist/index.es75.js +22 -22
- package/dist/index.es75.js.map +1 -1
- package/dist/index.es76.js +121 -48
- package/dist/index.es76.js.map +1 -1
- package/dist/index.es77.js +83 -40
- package/dist/index.es77.js.map +1 -1
- package/dist/index.es78.js +15 -23
- package/dist/index.es78.js.map +1 -1
- package/dist/index.es79.js +21 -10
- package/dist/index.es79.js.map +1 -1
- package/dist/index.es80.js +41 -7
- package/dist/index.es80.js.map +1 -1
- package/dist/index.es81.js +12 -38
- package/dist/index.es81.js.map +1 -1
- package/dist/index.es82.js +10 -41
- package/dist/index.es82.js.map +1 -1
- package/dist/index.es83.js +41 -12
- package/dist/index.es83.js.map +1 -1
- package/dist/index.es84.js +36 -155
- package/dist/index.es84.js.map +1 -1
- package/dist/index.es85.js +7 -10
- package/dist/index.es85.js.map +1 -1
- package/dist/index.es86.js +162 -0
- package/dist/index.es86.js.map +1 -0
- package/dist/index.es87.js +19 -0
- package/dist/index.es87.js.map +1 -0
- package/dist/index.es9.js +1 -1
- package/dist/styles.css +59 -0
- package/package.json +10 -10
- package/dist/components/organisms/navbar/navbar.d.ts +0 -5
- package/dist/components/organisms/navbar/navbar.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;CAGlB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navbar-desktop.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/navbar-desktop.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAa,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AAkK9D,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA0CtD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navbar-mobile.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/navbar-mobile.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAa,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAuN7D,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAiEpD,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
2
|
|
|
3
|
-
export type
|
|
3
|
+
export type NavbarPropsDesktop = {
|
|
4
4
|
credits: number;
|
|
5
5
|
className?: React.ComponentProps<'div'>['className'];
|
|
6
6
|
icons: {
|
|
@@ -42,5 +42,21 @@ export type IconProps = {
|
|
|
42
42
|
wrapper?: (children: React.ReactNode) => ReactElement;
|
|
43
43
|
onClick?: () => void;
|
|
44
44
|
};
|
|
45
|
+
type BottomItems = {
|
|
46
|
+
label: string;
|
|
47
|
+
onClick: () => void;
|
|
48
|
+
};
|
|
49
|
+
export type NavbarPropsMobile = {
|
|
50
|
+
credits: NavbarPropsDesktop['credits'];
|
|
51
|
+
profile: NavbarPropsDesktop['profile'];
|
|
52
|
+
icons: NavbarPropsDesktop['icons']['list'];
|
|
53
|
+
logo: NavbarPropsDesktop['logo'] & {
|
|
54
|
+
text: string;
|
|
55
|
+
};
|
|
56
|
+
logoutPanel: {
|
|
57
|
+
handleLogout: () => void;
|
|
58
|
+
bottomItems: Array<BottomItems>;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
45
61
|
export {};
|
|
46
62
|
//# sourceMappingURL=navbar.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navbar.types.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/navbar.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"navbar.types.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/navbar/navbar.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAGpC,MAAM,MAAM,kBAAkB,GAAG;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,CAAA;IACpD,KAAK,EAAE;QACL,IAAI,EAAE,SAAS,CAAA;QACf,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC,CAAA;KACvB,CAAA;IAED,KAAK,EAAE;QACL,UAAU,EAAE,OAAO,CAAA;QAEnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;KACrB,CAAA;IAED,IAAI,EAAE;QACJ,GAAG,EAAE,MAAM,CAAA;QACX,GAAG,EAAE,MAAM,CAAA;KACZ,CAAA;IAED,OAAO,EAAE;QACP,cAAc,EAAE,KAAK,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAA;QAEzD,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,GAAG,CAAC,EAAE,MAAM,CAAA;QACZ,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;KACrB,CAAA;CACF,CAAA;AAED,KAAK,2BAA2B,GAAG;IACjC,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,OAAO,CAAA;IACjB,OAAO,EAAE,MAAM,IAAI,CAAA;IAEnB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CACvB,CAAA;AAED;;KAEK;AACL,MAAM,MAAM,SAAS,GAAG;IACtB,GAAG,EAAE,MAAM,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IAEX,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,CAAA;IACpD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,KAAK,YAAY,CAAA;IACrD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,CAAA;AAOD,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,OAAO,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAA;IAEtC,OAAO,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAA;IAEtC,KAAK,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;IAE1C,IAAI,EAAE,kBAAkB,CAAC,MAAM,CAAC,GAAG;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IAEnD,WAAW,EAAE;QACX,YAAY,EAAE,MAAM,IAAI,CAAA;QACxB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC,CAAA;KAChC,CAAA;CACF,CAAA"}
|
package/dist/index.es10.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as r from "react";
|
|
2
2
|
import * as a from "@radix-ui/react-progress";
|
|
3
3
|
import { cn as n } from "./index.es62.js";
|
|
4
|
-
import { ProgressVariants as i } from "./index.
|
|
4
|
+
import { ProgressVariants as i } from "./index.es74.js";
|
|
5
5
|
const l = r.forwardRef(({ className: t, value: o, ...e }, m) => {
|
|
6
6
|
const s = (o || 0) / (e.max || 100) * 100;
|
|
7
7
|
return /* @__PURE__ */ r.createElement(
|
package/dist/index.es15.js
CHANGED
|
@@ -6,7 +6,7 @@ import "./index.es44.js";
|
|
|
6
6
|
import "./index.es63.js";
|
|
7
7
|
import "./index.es26.js";
|
|
8
8
|
import "./index.es32.js";
|
|
9
|
-
import { TextAreaVariants as u } from "./index.
|
|
9
|
+
import { TextAreaVariants as u } from "./index.es75.js";
|
|
10
10
|
const m = e.forwardRef(
|
|
11
11
|
({ className: o, inputLabel: a, showTextCount: l, maximumTextCount: i, ...t }, f) => {
|
|
12
12
|
const [r, s] = e.useState(!1), c = e.useRef(null);
|
package/dist/index.es18.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as o from "react";
|
|
2
2
|
import { cn as m } from "./index.es62.js";
|
|
3
3
|
import { TypographyVariants as n } from "./index.es56.js";
|
|
4
|
-
import { defaultTypographyVariant as y, variantElementMap as i } from "./index.
|
|
4
|
+
import { defaultTypographyVariant as y, variantElementMap as i } from "./index.es73.js";
|
|
5
5
|
const c = o.forwardRef(({ className: t, variant: r = y, ...a }, e) => {
|
|
6
6
|
const p = i[r];
|
|
7
7
|
return /* @__PURE__ */ o.createElement(
|
package/dist/index.es19.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
2
|
import { cn as s } from "./index.es62.js";
|
|
3
|
-
import { AlertVariants as f, AlertContentVariants as d, AlertButtonVariants as g } from "./index.
|
|
3
|
+
import { AlertVariants as f, AlertContentVariants as d, AlertButtonVariants as g } from "./index.es80.js";
|
|
4
4
|
import { Button as p } from "./index.es7.js";
|
|
5
5
|
import { Typography as u } from "./index.es18.js";
|
|
6
6
|
const c = e.forwardRef(({ className: t, ...a }, r) => /* @__PURE__ */ e.createElement(
|
package/dist/index.es20.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Breadcrumb as E, BreadcrumbList as i, BreadcrumbSeparator as c, BreadcrumbItem as o, BreadcrumbEllipsis as b, BreadcrumbLink as u } from "./index.
|
|
2
|
-
import { DropdownMenu as g, DropdownMenuTrigger as y, DropdownMenuContent as d, DropdownMenuItem as h } from "./index.
|
|
1
|
+
import { Breadcrumb as E, BreadcrumbList as i, BreadcrumbSeparator as c, BreadcrumbItem as o, BreadcrumbEllipsis as b, BreadcrumbLink as u } from "./index.es77.js";
|
|
2
|
+
import { DropdownMenu as g, DropdownMenuTrigger as y, DropdownMenuContent as d, DropdownMenuItem as h } from "./index.es76.js";
|
|
3
3
|
import e from "react";
|
|
4
4
|
import { Typography as B } from "./index.es18.js";
|
|
5
5
|
import { cn as f } from "./index.es62.js";
|
|
6
|
-
import { CrumbVariants as w } from "./index.
|
|
6
|
+
import { CrumbVariants as w } from "./index.es78.js";
|
|
7
7
|
function l({ field: r, isSelected: t }) {
|
|
8
8
|
return /* @__PURE__ */ e.createElement(o, null, /* @__PURE__ */ e.createElement(
|
|
9
9
|
u,
|
package/dist/index.es21.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import e from "react";
|
|
2
|
-
import { DropdownMenu as i, DropdownMenuTrigger as g, DropdownMenuContent as p, DropdownMenuLabel as h, DropdownMenuSeparator as d, DropdownMenuGroup as E, DropdownMenuSub as w, DropdownMenuSubTrigger as x, DropdownMenuPortal as N, DropdownMenuSubContent as D, DropdownMenuItem as s } from "./index.
|
|
2
|
+
import { DropdownMenu as i, DropdownMenuTrigger as g, DropdownMenuContent as p, DropdownMenuLabel as h, DropdownMenuSeparator as d, DropdownMenuGroup as E, DropdownMenuSub as w, DropdownMenuSubTrigger as x, DropdownMenuPortal as N, DropdownMenuSubContent as D, DropdownMenuItem as s } from "./index.es76.js";
|
|
3
3
|
function k({
|
|
4
4
|
trigger: c,
|
|
5
5
|
optionGroups: r,
|
package/dist/index.es24.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { cn as s } from "./index.es62.js";
|
|
2
2
|
import { useRanger as b } from "@tanstack/react-ranger";
|
|
3
3
|
import e from "react";
|
|
4
|
-
import { SliderBgColorVariants as a } from "./index.
|
|
4
|
+
import { SliderBgColorVariants as a } from "./index.es81.js";
|
|
5
5
|
const w = ({ left: t = 0, width: o = 0, index: l = -1 }) => /* @__PURE__ */ e.createElement(
|
|
6
6
|
"div",
|
|
7
7
|
{
|
package/dist/index.es25.js
CHANGED
|
@@ -5,7 +5,7 @@ import { cn as m } from "./index.es62.js";
|
|
|
5
5
|
import { Button as v } from "./index.es7.js";
|
|
6
6
|
import { Command as w, CommandInput as k, CommandEmpty as S, CommandGroup as O, CommandList as P, CommandItem as R } from "./index.es44.js";
|
|
7
7
|
import { Popover as j, PopoverTrigger as B, PopoverContent as I } from "./index.es63.js";
|
|
8
|
-
import { ComboBoxStates as T } from "./index.
|
|
8
|
+
import { ComboBoxStates as T } from "./index.es79.js";
|
|
9
9
|
import { Typography as d } from "./index.es18.js";
|
|
10
10
|
function z({
|
|
11
11
|
options: n,
|
package/dist/index.es27.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as o from "@radix-ui/react-slider";
|
|
2
2
|
import * as e from "react";
|
|
3
3
|
import { cn as i } from "./index.es62.js";
|
|
4
|
-
import { SliderVariants as t } from "./index.
|
|
4
|
+
import { SliderVariants as t } from "./index.es82.js";
|
|
5
5
|
const s = e.forwardRef(({ className: r, ...l }, a) => (
|
|
6
6
|
// <div className='bg-light-3 h-[100px] w-full flex'>
|
|
7
7
|
/* @__PURE__ */ e.createElement(
|
package/dist/index.es29.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StepperProvider as r, StepGroup as p } from "./index.
|
|
1
|
+
import { StepperProvider as r, StepGroup as p } from "./index.es83.js";
|
|
2
2
|
import * as e from "react";
|
|
3
3
|
const m = ({ value: t }) => /* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement(r, { steps: t }, /* @__PURE__ */ e.createElement(p, null)));
|
|
4
4
|
m.displayName = "Stepper";
|
package/dist/index.es30.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
2
|
import * as t from "@radix-ui/react-tabs";
|
|
3
3
|
import { cn as n } from "./index.es62.js";
|
|
4
|
-
import { TabsVariants as d, TabTriggerVariants as T } from "./index.
|
|
4
|
+
import { TabsVariants as d, TabTriggerVariants as T } from "./index.es84.js";
|
|
5
5
|
const c = e.forwardRef(({ className: a, variant: r, size: s, ...o }, i) => /* @__PURE__ */ e.createElement(
|
|
6
6
|
t.List,
|
|
7
7
|
{
|
package/dist/index.es38.js
CHANGED
|
@@ -1,135 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import { NavbarIconVariants as u } from "./index.es83.js";
|
|
8
|
-
import { AvatarDemo as h } from "./index.es4.js";
|
|
9
|
-
const N = ({ name: t = "", email: a = "" }) => {
|
|
10
|
-
if (!(t || a)) return null;
|
|
11
|
-
const r = "text-ellipsis overflow-hidden";
|
|
12
|
-
return /* @__PURE__ */ e.createElement("div", { className: "flex flex-col px-2" }, t && /* @__PURE__ */ e.createElement(
|
|
13
|
-
c,
|
|
14
|
-
{
|
|
15
|
-
variant: "body4",
|
|
16
|
-
className: i("text-light-1", r)
|
|
17
|
-
},
|
|
18
|
-
t
|
|
19
|
-
), a && /* @__PURE__ */ e.createElement(
|
|
20
|
-
c,
|
|
21
|
-
{
|
|
22
|
-
variant: "body5",
|
|
23
|
-
className: i("text-light-3", r)
|
|
24
|
-
},
|
|
25
|
-
a
|
|
26
|
-
));
|
|
27
|
-
}, g = ({
|
|
28
|
-
alt: t,
|
|
29
|
-
className: a,
|
|
30
|
-
isActive: r = !1,
|
|
31
|
-
isNew: l = !1,
|
|
32
|
-
src: o,
|
|
33
|
-
tooltipText: n = "",
|
|
34
|
-
wrapper: m = null,
|
|
35
|
-
onClick: s
|
|
36
|
-
}) => {
|
|
37
|
-
const d = (p) => m?.(p) ?? p, f = /* @__PURE__ */ e.createElement(
|
|
38
|
-
"div",
|
|
39
|
-
{
|
|
40
|
-
className: i(u({ isActive: r }), a),
|
|
41
|
-
...s && { onClick: s }
|
|
42
|
-
},
|
|
43
|
-
/* @__PURE__ */ e.createElement("img", { src: o, alt: t }),
|
|
44
|
-
/* @__PURE__ */ e.createElement(y, { isNew: l })
|
|
45
|
-
);
|
|
46
|
-
return d(
|
|
47
|
-
n ? /* @__PURE__ */ e.createElement("div", { className: "relative" }, /* @__PURE__ */ e.createElement(
|
|
48
|
-
v,
|
|
49
|
-
{
|
|
50
|
-
content: "",
|
|
51
|
-
headerText: /* @__PURE__ */ e.createElement("div", { className: "flex gap-2 items-center" }, l && /* @__PURE__ */ e.createElement(E, { variant: "gradient", size: "sm" }, "NEW"), /* @__PURE__ */ e.createElement("div", null, n)),
|
|
52
|
-
sideOffset: 24,
|
|
53
|
-
triggerElement: f,
|
|
54
|
-
delayDuration: 100,
|
|
55
|
-
side: "right"
|
|
56
|
-
}
|
|
57
|
-
)) : f
|
|
58
|
-
);
|
|
59
|
-
}, b = () => /* @__PURE__ */ e.createElement("div", { className: "my-1 h-[1px] w-10 bg-white opacity-20" }), y = ({ isNew: t }) => t ? /* @__PURE__ */ e.createElement("div", { className: "absolute w-[6px] h-[6px] rounded-full bottom-1 right-1 bg-secondary-2" }) : null, w = ({
|
|
60
|
-
src: t,
|
|
61
|
-
popoverOptions: a,
|
|
62
|
-
name: r = "",
|
|
63
|
-
email: l = ""
|
|
64
|
-
}) => /* @__PURE__ */ e.createElement(
|
|
65
|
-
x,
|
|
66
|
-
{
|
|
67
|
-
dropdownContentProps: { sideOffset: 24, side: "right", align: "end" },
|
|
68
|
-
trigger: (
|
|
69
|
-
// div required as unable to open up the popup without it
|
|
70
|
-
/* @__PURE__ */ e.createElement("div", null, /* @__PURE__ */ e.createElement(
|
|
71
|
-
h,
|
|
72
|
-
{
|
|
73
|
-
imageSrc: t ?? "",
|
|
74
|
-
size: "md",
|
|
75
|
-
alt: "avatar",
|
|
76
|
-
fallback: /* @__PURE__ */ e.createElement(
|
|
77
|
-
"img",
|
|
78
|
-
{
|
|
79
|
-
src: "https://frontend-static-files.geoiq.io/strapi/Avatar_e5ab891e67.svg",
|
|
80
|
-
alt: "avatar",
|
|
81
|
-
className: "w-10 h-10 cursor-pointer"
|
|
82
|
-
}
|
|
83
|
-
)
|
|
84
|
-
}
|
|
85
|
-
))
|
|
86
|
-
),
|
|
87
|
-
header: /* @__PURE__ */ e.createElement(N, { name: r, email: l }),
|
|
88
|
-
optionGroups: a
|
|
89
|
-
}
|
|
90
|
-
), _ = ({
|
|
91
|
-
onClick: t
|
|
92
|
-
}) => /* @__PURE__ */ e.createElement(
|
|
93
|
-
c,
|
|
94
|
-
{
|
|
95
|
-
variant: "body4",
|
|
96
|
-
className: "text-white text-center cursor-pointer",
|
|
97
|
-
onClick: t
|
|
98
|
-
},
|
|
99
|
-
"Login"
|
|
100
|
-
), I = ({ src: t, alt: a }) => /* @__PURE__ */ e.createElement("img", { src: t, alt: a, className: "w-10 h-auto" }), L = ({ credits: t }) => t >= 0 && /* @__PURE__ */ e.createElement("div", { className: "rounded brand-primary-secondary-gradient flex gap-[2px] h-auto box-border p-1 w-10 flex-wrap justify-center" }, t > 9999 ? /* @__PURE__ */ e.createElement(
|
|
101
|
-
"img",
|
|
102
|
-
{
|
|
103
|
-
src: "https://frontend-static-files.geoiq.io/strapi/infinity_7d62ad2947.svg",
|
|
104
|
-
alt: "infinity icon",
|
|
105
|
-
className: "h-4 w-4"
|
|
106
|
-
}
|
|
107
|
-
) : /* @__PURE__ */ e.createElement(c, { variant: "body5", className: "text-white" }, t), /* @__PURE__ */ e.createElement(
|
|
108
|
-
"img",
|
|
109
|
-
{
|
|
110
|
-
src: "https://frontend-static-files.geoiq.io/strapi/navbar_credits_247858e26a.svg",
|
|
111
|
-
alt: "coin icon",
|
|
112
|
-
className: "h-4 w-4"
|
|
113
|
-
}
|
|
114
|
-
)), B = ({
|
|
115
|
-
login: t,
|
|
116
|
-
icons: a,
|
|
117
|
-
credits: r = -1,
|
|
118
|
-
profile: l,
|
|
119
|
-
logo: o,
|
|
120
|
-
className: n = ""
|
|
121
|
-
}) => /* @__PURE__ */ e.createElement(
|
|
122
|
-
"div",
|
|
123
|
-
{
|
|
124
|
-
className: i(
|
|
125
|
-
"w-16 bg-dark-2 px-3 py-4 h-full flex flex-col justify-between",
|
|
126
|
-
n
|
|
127
|
-
)
|
|
128
|
-
},
|
|
129
|
-
/* @__PURE__ */ e.createElement("div", { className: "flex flex-col items-center gap-8" }, /* @__PURE__ */ e.createElement(I, { ...o }), /* @__PURE__ */ e.createElement("div", { className: "flex flex-col gap-3" }, (a?.list ?? []).map((m, s) => /* @__PURE__ */ e.createElement(g, { key: s, ...m })))),
|
|
130
|
-
/* @__PURE__ */ e.createElement("div", { className: "flex flex-col items-center gap-2" }, /* @__PURE__ */ e.createElement(g, { ...a.help }), /* @__PURE__ */ e.createElement(L, { credits: r }), /* @__PURE__ */ e.createElement(b, null), t?.isLoggedIn ? /* @__PURE__ */ e.createElement(w, { ...l }) : /* @__PURE__ */ e.createElement(_, { ...t }))
|
|
131
|
-
);
|
|
1
|
+
import { NavbarDesktop as o } from "./index.es70.js";
|
|
2
|
+
import { NavbarMobile as r } from "./index.es71.js";
|
|
3
|
+
const b = {
|
|
4
|
+
desktop: o,
|
|
5
|
+
mobile: r
|
|
6
|
+
};
|
|
132
7
|
export {
|
|
133
|
-
|
|
8
|
+
b as Navbar
|
|
134
9
|
};
|
|
135
10
|
//# sourceMappingURL=index.es38.js.map
|
package/dist/index.es38.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es38.js","sources":["../src/components/organisms/navbar/
|
|
1
|
+
{"version":3,"file":"index.es38.js","sources":["../src/components/organisms/navbar/index.ts"],"sourcesContent":["import { NavbarDesktop } from './navbar-desktop'\nimport { NavbarMobile } from './navbar-mobile'\n\nexport const Navbar = {\n desktop: NavbarDesktop,\n mobile: NavbarMobile,\n}\n"],"names":["Navbar","NavbarDesktop","NavbarMobile"],"mappings":";;AAGO,MAAMA,IAAS;AAAA,EACpB,SAASC;AAAA,EACT,QAAQC;AACV;"}
|
package/dist/index.es43.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import t from "react";
|
|
2
|
-
import { Carousel as l, CarouselContent as s, CarouselItem as m, CarouselPrevious as r, CarouselNext as n } from "./index.
|
|
2
|
+
import { Carousel as l, CarouselContent as s, CarouselItem as m, CarouselPrevious as r, CarouselNext as n } from "./index.es86.js";
|
|
3
3
|
const o = (e) => /* @__PURE__ */ t.createElement(
|
|
4
4
|
l,
|
|
5
5
|
{
|
package/dist/index.es56.js
CHANGED
package/dist/index.es70.js
CHANGED
|
@@ -1,14 +1,135 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { Badge as E } from "./index.es6.js";
|
|
2
|
+
import v from "./index.es17.js";
|
|
3
|
+
import { Typography as c } from "./index.es18.js";
|
|
4
|
+
import { Dropdown as x } from "./index.es21.js";
|
|
5
|
+
import { cn as i } from "./index.es62.js";
|
|
6
|
+
import e from "react";
|
|
7
|
+
import { NavbarIconVariants as u } from "./index.es85.js";
|
|
8
|
+
import { AvatarDemo as h } from "./index.es4.js";
|
|
9
|
+
const N = ({ name: t = "", email: a = "" }) => {
|
|
10
|
+
if (!(t || a)) return null;
|
|
11
|
+
const r = "text-ellipsis overflow-hidden";
|
|
12
|
+
return /* @__PURE__ */ e.createElement("div", { className: "flex flex-col px-2" }, t && /* @__PURE__ */ e.createElement(
|
|
13
|
+
c,
|
|
14
|
+
{
|
|
15
|
+
variant: "body4",
|
|
16
|
+
className: i("text-light-1", r)
|
|
17
|
+
},
|
|
18
|
+
t
|
|
19
|
+
), a && /* @__PURE__ */ e.createElement(
|
|
20
|
+
c,
|
|
21
|
+
{
|
|
22
|
+
variant: "body5",
|
|
23
|
+
className: i("text-light-3", r)
|
|
24
|
+
},
|
|
25
|
+
a
|
|
26
|
+
));
|
|
27
|
+
}, g = ({
|
|
28
|
+
alt: t,
|
|
29
|
+
className: a,
|
|
30
|
+
isActive: r = !1,
|
|
31
|
+
isNew: l = !1,
|
|
32
|
+
src: o,
|
|
33
|
+
tooltipText: n = "",
|
|
34
|
+
wrapper: m = null,
|
|
35
|
+
onClick: s
|
|
36
|
+
}) => {
|
|
37
|
+
const d = (p) => m?.(p) ?? p, f = /* @__PURE__ */ e.createElement(
|
|
38
|
+
"div",
|
|
39
|
+
{
|
|
40
|
+
className: i(u({ isActive: r }), a),
|
|
41
|
+
...s && { onClick: s }
|
|
7
42
|
},
|
|
8
|
-
|
|
43
|
+
/* @__PURE__ */ e.createElement("img", { src: o, alt: t }),
|
|
44
|
+
/* @__PURE__ */ e.createElement(y, { isNew: l })
|
|
45
|
+
);
|
|
46
|
+
return d(
|
|
47
|
+
n ? /* @__PURE__ */ e.createElement("div", { className: "relative" }, /* @__PURE__ */ e.createElement(
|
|
48
|
+
v,
|
|
49
|
+
{
|
|
50
|
+
content: "",
|
|
51
|
+
headerText: /* @__PURE__ */ e.createElement("div", { className: "flex gap-2 items-center" }, l && /* @__PURE__ */ e.createElement(E, { variant: "gradient", size: "sm" }, "NEW"), /* @__PURE__ */ e.createElement("div", null, n)),
|
|
52
|
+
sideOffset: 24,
|
|
53
|
+
triggerElement: f,
|
|
54
|
+
delayDuration: 100,
|
|
55
|
+
side: "right"
|
|
56
|
+
}
|
|
57
|
+
)) : f
|
|
58
|
+
);
|
|
59
|
+
}, b = () => /* @__PURE__ */ e.createElement("div", { className: "my-1 h-[1px] w-10 bg-white opacity-20" }), y = ({ isNew: t }) => t ? /* @__PURE__ */ e.createElement("div", { className: "absolute w-[6px] h-[6px] rounded-full bottom-1 right-1 bg-secondary-2" }) : null, w = ({
|
|
60
|
+
src: t,
|
|
61
|
+
popoverOptions: a,
|
|
62
|
+
name: r = "",
|
|
63
|
+
email: l = ""
|
|
64
|
+
}) => /* @__PURE__ */ e.createElement(
|
|
65
|
+
x,
|
|
66
|
+
{
|
|
67
|
+
dropdownContentProps: { sideOffset: 24, side: "right", align: "end" },
|
|
68
|
+
trigger: (
|
|
69
|
+
// div required as unable to open up the popup without it
|
|
70
|
+
/* @__PURE__ */ e.createElement("div", null, /* @__PURE__ */ e.createElement(
|
|
71
|
+
h,
|
|
72
|
+
{
|
|
73
|
+
imageSrc: t ?? "",
|
|
74
|
+
size: "md",
|
|
75
|
+
alt: "avatar",
|
|
76
|
+
fallback: /* @__PURE__ */ e.createElement(
|
|
77
|
+
"img",
|
|
78
|
+
{
|
|
79
|
+
src: "https://frontend-static-files.geoiq.io/strapi/Avatar_e5ab891e67.svg",
|
|
80
|
+
alt: "avatar",
|
|
81
|
+
className: "w-10 h-10 cursor-pointer"
|
|
82
|
+
}
|
|
83
|
+
)
|
|
84
|
+
}
|
|
85
|
+
))
|
|
86
|
+
),
|
|
87
|
+
header: /* @__PURE__ */ e.createElement(N, { name: r, email: l }),
|
|
88
|
+
optionGroups: a
|
|
89
|
+
}
|
|
90
|
+
), _ = ({
|
|
91
|
+
onClick: t
|
|
92
|
+
}) => /* @__PURE__ */ e.createElement(
|
|
93
|
+
c,
|
|
94
|
+
{
|
|
95
|
+
variant: "body4",
|
|
96
|
+
className: "text-white text-center cursor-pointer",
|
|
97
|
+
onClick: t
|
|
98
|
+
},
|
|
99
|
+
"Login"
|
|
100
|
+
), k = ({ src: t, alt: a }) => /* @__PURE__ */ e.createElement("img", { src: t, alt: a, className: "w-10 h-auto" }), D = ({ credits: t }) => t >= 0 && /* @__PURE__ */ e.createElement("div", { className: "rounded brand-primary-secondary-gradient flex gap-[2px] h-auto box-border p-1 w-10 flex-wrap justify-center" }, t > 9999 ? /* @__PURE__ */ e.createElement(
|
|
101
|
+
"img",
|
|
102
|
+
{
|
|
103
|
+
src: "https://frontend-static-files.geoiq.io/strapi/infinity_7d62ad2947.svg",
|
|
104
|
+
alt: "infinity icon",
|
|
105
|
+
className: "h-4 w-4"
|
|
9
106
|
}
|
|
107
|
+
) : /* @__PURE__ */ e.createElement(c, { variant: "body5", className: "text-white" }, t), /* @__PURE__ */ e.createElement(
|
|
108
|
+
"img",
|
|
109
|
+
{
|
|
110
|
+
src: "https://frontend-static-files.geoiq.io/strapi/navbar_credits_247858e26a.svg",
|
|
111
|
+
alt: "coin icon",
|
|
112
|
+
className: "h-4 w-4"
|
|
113
|
+
}
|
|
114
|
+
)), B = ({
|
|
115
|
+
login: t,
|
|
116
|
+
icons: a,
|
|
117
|
+
credits: r = -1,
|
|
118
|
+
profile: l,
|
|
119
|
+
logo: o,
|
|
120
|
+
className: n = ""
|
|
121
|
+
}) => /* @__PURE__ */ e.createElement(
|
|
122
|
+
"div",
|
|
123
|
+
{
|
|
124
|
+
className: i(
|
|
125
|
+
"w-16 bg-dark-2 px-3 py-4 h-full flex flex-col justify-between",
|
|
126
|
+
n
|
|
127
|
+
)
|
|
128
|
+
},
|
|
129
|
+
/* @__PURE__ */ e.createElement("div", { className: "flex flex-col items-center gap-8" }, /* @__PURE__ */ e.createElement(k, { ...o }), /* @__PURE__ */ e.createElement("div", { className: "flex flex-col gap-3" }, (a?.list ?? []).map((m, s) => /* @__PURE__ */ e.createElement(g, { key: s, ...m })))),
|
|
130
|
+
/* @__PURE__ */ e.createElement("div", { className: "flex flex-col items-center gap-2" }, /* @__PURE__ */ e.createElement(g, { ...a.help }), /* @__PURE__ */ e.createElement(D, { credits: r }), /* @__PURE__ */ e.createElement(b, null), t?.isLoggedIn ? /* @__PURE__ */ e.createElement(w, { ...l }) : /* @__PURE__ */ e.createElement(_, { ...t }))
|
|
10
131
|
);
|
|
11
132
|
export {
|
|
12
|
-
|
|
133
|
+
B as NavbarDesktop
|
|
13
134
|
};
|
|
14
135
|
//# sourceMappingURL=index.es70.js.map
|
package/dist/index.es70.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es70.js","sources":["../src/components/
|
|
1
|
+
{"version":3,"file":"index.es70.js","sources":["../src/components/organisms/navbar/navbar-desktop.tsx"],"sourcesContent":["import { Badge } from '@/components/atoms/badge'\nimport Tooltip from '@/components/atoms/tooltip'\nimport { Typography } from '@/components/atoms/typography'\nimport { Dropdown } from '@/components/molecules/dropdown-menu/dropdown-menu'\nimport { cn } from '@/lib/utils'\nimport React from 'react'\nimport { IconProps, NavbarPropsDesktop } from './navbar.types'\nimport { NavbarIconVariants } from './navbar.styles'\nimport { Avatar } from '@/components/atoms/avatar'\n\nconst ProfileHeader = ({ name = '', email = '' }) => {\n if (!(name || email)) return null\n\n const classEllipsisAndOverflow: React.ComponentProps<'div'>['className'] =\n 'text-ellipsis overflow-hidden'\n\n return (\n <div className=\"flex flex-col px-2\">\n {name && (\n <Typography\n variant=\"body4\"\n className={cn('text-light-1', classEllipsisAndOverflow)}\n >\n {name}\n </Typography>\n )}\n {email && (\n <Typography\n variant=\"body5\"\n className={cn('text-light-3', classEllipsisAndOverflow)}\n >\n {email}\n </Typography>\n )}\n </div>\n )\n}\n\nconst NavbarIcon: React.FC<IconProps> = ({\n alt,\n className,\n isActive = false,\n isNew = false,\n src,\n tooltipText = '',\n wrapper = null,\n onClick,\n}) => {\n // Wrap the icon with a link or a button\n const returnWrap = (children: React.ReactNode) =>\n wrapper?.(children) ?? children\n\n const navbarIcon = (\n <div\n className={cn(NavbarIconVariants({ isActive }), className)}\n {...(onClick && { onClick })}\n >\n <img {...{ src, alt }} />\n <NewBlink isNew={isNew} />\n </div>\n )\n\n if (tooltipText)\n return returnWrap(\n <div className=\"relative\">\n <Tooltip\n content=\"\"\n headerText={\n (\n <div className=\"flex gap-2 items-center\">\n {isNew && (\n <Badge variant=\"gradient\" size=\"sm\">\n NEW\n </Badge>\n )}\n <div>{tooltipText}</div>\n </div>\n ) as unknown as string\n }\n sideOffset={24}\n triggerElement={navbarIcon}\n delayDuration={100}\n side=\"right\"\n />\n </div>\n )\n\n return returnWrap(navbarIcon)\n}\n\nconst Separator = () => (\n <div className=\"my-1 h-[1px] w-10 bg-white opacity-20\" />\n)\n\nconst NewBlink: React.FC<Pick<IconProps, 'isNew'>> = ({ isNew }) =>\n isNew ? (\n <div className=\"absolute w-[6px] h-[6px] rounded-full bottom-1 right-1 bg-secondary-2\" />\n ) : null\n\nconst Profile: React.FC<NavbarPropsDesktop['profile']> = ({\n src,\n popoverOptions,\n name = '',\n email = '',\n}) => (\n <Dropdown\n dropdownContentProps={{ sideOffset: 24, side: 'right', align: 'end' }}\n trigger={\n // div required as unable to open up the popup without it\n <div>\n <Avatar\n imageSrc={src ?? ''}\n size=\"md\"\n alt=\"avatar\"\n fallback={\n <img\n src=\"https://frontend-static-files.geoiq.io/strapi/Avatar_e5ab891e67.svg\"\n alt=\"avatar\"\n className=\"w-10 h-10 cursor-pointer\"\n />\n }\n />\n </div>\n }\n header={<ProfileHeader {...{ name, email }} />}\n optionGroups={popoverOptions}\n />\n)\n\nconst Login: React.FC<Pick<NavbarPropsDesktop['login'], 'onClick'>> = ({\n onClick,\n}) => (\n <Typography\n variant=\"body4\"\n className=\"text-white text-center cursor-pointer\"\n onClick={onClick}\n >\n Login\n </Typography>\n)\n\nconst Logo: React.FC<NavbarPropsDesktop['logo']> = ({ src, alt }) => (\n <img src={src} alt={alt} className=\"w-10 h-auto\" />\n)\n\nconst Credits: React.FC<Pick<NavbarPropsDesktop, 'credits'>> = ({ credits }) =>\n credits >= 0 && (\n <div className=\"rounded brand-primary-secondary-gradient flex gap-[2px] h-auto box-border p-1 w-10 flex-wrap justify-center\">\n {credits > 9999 ? (\n <img\n src=\"https://frontend-static-files.geoiq.io/strapi/infinity_7d62ad2947.svg\"\n alt=\"infinity icon\"\n className=\"h-4 w-4\"\n />\n ) : (\n <Typography variant=\"body5\" className=\"text-white\">\n {credits}\n </Typography>\n )}\n\n <img\n src=\"https://frontend-static-files.geoiq.io/strapi/navbar_credits_247858e26a.svg\"\n alt=\"coin icon\"\n className=\"h-4 w-4\"\n />\n </div>\n )\n\nexport const NavbarDesktop: React.FC<NavbarPropsDesktop> = ({\n login,\n icons,\n credits = -1,\n profile,\n logo,\n className = '',\n}) => {\n return (\n <div\n className={cn(\n 'w-16 bg-dark-2 px-3 py-4 h-full flex flex-col justify-between',\n className\n )}\n >\n {/* Top Part */}\n <div className=\"flex flex-col items-center gap-8\">\n <Logo {...logo} />\n\n {/* Main Icons */}\n <div className=\"flex flex-col gap-3\">\n {(icons?.list ?? []).map((icon, index) => (\n <NavbarIcon key={index} {...icon} />\n ))}\n </div>\n </div>\n\n {/* Bottom Part */}\n <div className=\"flex flex-col items-center gap-2\">\n {/* Help */}\n <NavbarIcon {...icons.help} />\n\n {/* Credits */}\n <Credits credits={credits} />\n\n <Separator />\n\n {/* Avatar and Login Part */}\n {login?.isLoggedIn ? <Profile {...profile} /> : <Login {...login} />}\n </div>\n </div>\n )\n}\n"],"names":["ProfileHeader","name","email","classEllipsisAndOverflow","React","Typography","cn","NavbarIcon","alt","className","isActive","isNew","src","tooltipText","wrapper","onClick","returnWrap","children","navbarIcon","NavbarIconVariants","NewBlink","Tooltip","Badge","Separator","Profile","popoverOptions","Dropdown","Avatar","Login","Logo","Credits","credits","NavbarDesktop","login","icons","profile","logo","icon","index"],"mappings":"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"}
|