@caseparts-org/caseblocks 0.0.50 → 0.0.52

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.
@@ -5,20 +5,62 @@ declare const meta: {
5
5
  component: import('react').FC<import('./Tooltip').TooltipProps>;
6
6
  parameters: {
7
7
  layout: string;
8
+ controls: {
9
+ sort: string;
10
+ };
11
+ docs: {
12
+ description: {
13
+ component: string;
14
+ };
15
+ };
8
16
  };
9
17
  tags: string[];
18
+ args: {
19
+ on: "hover";
20
+ position: "top center";
21
+ mouseEnterDelay: number;
22
+ mouseLeaveDelay: number;
23
+ arrow: true;
24
+ };
10
25
  argTypes: {
26
+ on: {
27
+ control: "select";
28
+ options: string[];
29
+ description: string;
30
+ };
11
31
  position: {
12
32
  control: "select";
13
33
  options: string[];
34
+ description: string;
35
+ };
36
+ mouseEnterDelay: {
37
+ control: "number";
38
+ description: string;
14
39
  };
15
- delay: {
40
+ mouseLeaveDelay: {
16
41
  control: "number";
42
+ description: string;
43
+ };
44
+ arrow: {
45
+ control: "boolean";
46
+ description: string;
17
47
  };
18
- allowEnter: {
48
+ open: {
19
49
  control: "boolean";
50
+ description: string;
51
+ table: {
52
+ category: string;
53
+ };
54
+ };
55
+ closeOnDocumentClick: {
56
+ control: "boolean";
57
+ description: string;
58
+ };
59
+ closeOnEscape: {
60
+ control: "boolean";
61
+ description: string;
20
62
  };
21
- wrapperClassName: {
63
+ contentClassName: {
22
64
  table: {
23
65
  disable: true;
24
66
  };
@@ -28,6 +70,15 @@ declare const meta: {
28
70
  disable: true;
29
71
  };
30
72
  };
73
+ trigger: {
74
+ table: {
75
+ disable: true;
76
+ };
77
+ description: string;
78
+ };
79
+ children: {
80
+ description: string;
81
+ };
31
82
  };
32
83
  };
33
84
  export default meta;
@@ -1,14 +1,32 @@
1
- import { jsx as t } from "react/jsx-runtime";
2
- import { Tooltip as e } from "./Tooltip.js";
3
- import { Button as i } from "../../atoms/Button/Button.js";
4
- const s = {
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { Tooltip as t } from "./Tooltip.js";
3
+ import { Button as o } from "../../atoms/Button/Button.js";
4
+ const l = {
5
5
  title: "Case Parts/Molecules/Tooltip",
6
- component: e,
6
+ component: t,
7
7
  parameters: {
8
- layout: "centered"
8
+ layout: "centered",
9
+ controls: { sort: "requiredFirst" },
10
+ docs: {
11
+ description: {
12
+ component: "Wrapper around reactjs-popup providing consistent styling. Use `interactive` for focusable content. `on` can be a string or an array of trigger events."
13
+ }
14
+ }
9
15
  },
10
16
  tags: ["autodocs"],
17
+ args: {
18
+ on: "hover",
19
+ position: "top center",
20
+ mouseEnterDelay: 100,
21
+ mouseLeaveDelay: 80,
22
+ arrow: !0
23
+ },
11
24
  argTypes: {
25
+ on: {
26
+ control: "select",
27
+ options: ["hover", "click", "focus", "right-click"],
28
+ description: "Event(s) that trigger the tooltip. Accepts a single string or an array."
29
+ },
12
30
  position: {
13
31
  control: "select",
14
32
  options: [
@@ -25,20 +43,51 @@ const s = {
25
43
  "left center",
26
44
  "left bottom",
27
45
  "center center"
28
- ]
46
+ ],
47
+ description: "Popup position passed to reactjs-popup."
48
+ },
49
+ mouseEnterDelay: {
50
+ control: "number",
51
+ description: "Delay (ms) before opening on hover."
52
+ },
53
+ mouseLeaveDelay: {
54
+ control: "number",
55
+ description: "Delay (ms) before closing after mouse leaves."
56
+ },
57
+ arrow: {
58
+ control: "boolean",
59
+ description: "Show popup arrow."
60
+ },
61
+ open: {
62
+ control: "boolean",
63
+ description: "Controlled open state (overrides triggers). Leave undefined for uncontrolled.",
64
+ table: { category: "Advanced" }
29
65
  },
30
- delay: { control: "number" },
31
- allowEnter: { control: "boolean" },
32
- wrapperClassName: { table: { disable: !0 } },
33
- tooltipClassName: { table: { disable: !0 } }
66
+ closeOnDocumentClick: {
67
+ control: "boolean",
68
+ description: "Close when clicking outside (uncontrolled modes)."
69
+ },
70
+ closeOnEscape: {
71
+ control: "boolean",
72
+ description: "Close on Escape key."
73
+ },
74
+ contentClassName: { table: { disable: !0 } },
75
+ tooltipClassName: { table: { disable: !0 } },
76
+ trigger: {
77
+ table: { disable: !0 },
78
+ description: "React element that triggers the tooltip."
79
+ },
80
+ children: {
81
+ description: "Tooltip content."
82
+ }
34
83
  }
35
84
  }, c = {
36
85
  args: {
37
- position: "top",
38
- delay: 0,
39
- allowEnter: !0
86
+ position: "top center",
87
+ mouseEnterDelay: 0,
88
+ mouseLeaveDelay: 0
40
89
  },
41
- render: (o) => /* @__PURE__ */ t(
90
+ render: (r) => /* @__PURE__ */ e(
42
91
  "div",
43
92
  {
44
93
  style: {
@@ -49,11 +98,11 @@ const s = {
49
98
  alignItems: "center",
50
99
  justifyContent: "center"
51
100
  },
52
- children: /* @__PURE__ */ t(
53
- e,
101
+ children: /* @__PURE__ */ e(
102
+ t,
54
103
  {
55
- ...o,
56
- trigger: /* @__PURE__ */ t("div", { className: "tooltip-story", children: /* @__PURE__ */ t(i, { size: "md", variant: "primary", children: "Hover me" }) }),
104
+ ...r,
105
+ trigger: /* @__PURE__ */ e("div", { className: "tooltip-story", children: /* @__PURE__ */ e(o, { size: "md", variant: "primary", children: "Hover me" }) }),
57
106
  on: "hover",
58
107
  children: "This tooltip appears on hover (top center)."
59
108
  }
@@ -61,7 +110,7 @@ const s = {
61
110
  }
62
111
  )
63
112
  }, a = {
64
- render: () => /* @__PURE__ */ t(
113
+ render: () => /* @__PURE__ */ e(
65
114
  "div",
66
115
  {
67
116
  style: {
@@ -72,19 +121,19 @@ const s = {
72
121
  alignItems: "center",
73
122
  justifyContent: "center"
74
123
  },
75
- children: /* @__PURE__ */ t(
76
- e,
124
+ children: /* @__PURE__ */ e(
125
+ t,
77
126
  {
78
- trigger: /* @__PURE__ */ t("div", { className: "tooltip-story", children: /* @__PURE__ */ t(i, { size: "md", variant: "secondary", children: "Click me" }) }),
127
+ trigger: /* @__PURE__ */ e("div", { className: "tooltip-story", children: /* @__PURE__ */ e(o, { size: "md", variant: "secondary", children: "Click me" }) }),
79
128
  on: "click",
80
- position: "bottom",
129
+ position: "bottom center",
81
130
  children: "This tooltip appears on click (bottom center)."
82
131
  }
83
132
  )
84
133
  }
85
134
  )
86
- }, h = {
87
- render: () => /* @__PURE__ */ t(
135
+ }, p = {
136
+ render: () => /* @__PURE__ */ e(
88
137
  "div",
89
138
  {
90
139
  style: {
@@ -95,19 +144,19 @@ const s = {
95
144
  alignItems: "center",
96
145
  justifyContent: "center"
97
146
  },
98
- children: /* @__PURE__ */ t(
99
- e,
147
+ children: /* @__PURE__ */ e(
148
+ t,
100
149
  {
101
- trigger: /* @__PURE__ */ t("div", { className: "tooltip-story", children: /* @__PURE__ */ t(i, { size: "md", variant: "cta-primary", children: "Hover right" }) }),
150
+ trigger: /* @__PURE__ */ e("div", { className: "tooltip-story", children: /* @__PURE__ */ e(o, { size: "md", variant: "cta-primary", children: "Hover right" }) }),
102
151
  on: "hover",
103
- position: "right",
152
+ position: "right center",
104
153
  children: "Tooltip on the right."
105
154
  }
106
155
  )
107
156
  }
108
157
  )
109
158
  }, d = {
110
- render: () => /* @__PURE__ */ t(
159
+ render: () => /* @__PURE__ */ e(
111
160
  "div",
112
161
  {
113
162
  style: {
@@ -118,19 +167,19 @@ const s = {
118
167
  alignItems: "center",
119
168
  justifyContent: "center"
120
169
  },
121
- children: /* @__PURE__ */ t(
122
- e,
170
+ children: /* @__PURE__ */ e(
171
+ t,
123
172
  {
124
- trigger: /* @__PURE__ */ t("div", { className: "tooltip-story", children: /* @__PURE__ */ t(i, { size: "md", variant: "tertiary", children: "Hover left" }) }),
173
+ trigger: /* @__PURE__ */ e("div", { className: "tooltip-story", children: /* @__PURE__ */ e(o, { size: "md", variant: "tertiary", children: "Hover left" }) }),
125
174
  on: "hover",
126
- position: "left",
175
+ position: "left center",
127
176
  children: "Tooltip on the left."
128
177
  }
129
178
  )
130
179
  }
131
180
  )
132
- }, p = {
133
- render: () => /* @__PURE__ */ t(
181
+ }, h = {
182
+ render: () => /* @__PURE__ */ e(
134
183
  "div",
135
184
  {
136
185
  style: {
@@ -142,12 +191,12 @@ const s = {
142
191
  position: "absolute",
143
192
  right: "300px"
144
193
  },
145
- children: /* @__PURE__ */ t(
146
- e,
194
+ children: /* @__PURE__ */ e(
195
+ t,
147
196
  {
148
- trigger: /* @__PURE__ */ t("div", { className: "tooltip-story", children: /* @__PURE__ */ t(i, { size: "md", variant: "cta-primary", children: "Hover right" }) }),
197
+ trigger: /* @__PURE__ */ e("div", { className: "tooltip-story", children: /* @__PURE__ */ e(o, { size: "md", variant: "cta-primary", children: "Hover right" }) }),
149
198
  on: "hover",
150
- position: "right",
199
+ position: "right center",
151
200
  children: "Tooltip on the right."
152
201
  }
153
202
  )
@@ -155,10 +204,10 @@ const s = {
155
204
  )
156
205
  };
157
206
  export {
158
- p as AbsolutelyPositioned,
207
+ h as AbsolutelyPositioned,
159
208
  a as OnClick,
160
209
  c as OnHover,
161
210
  d as PositionLeft,
162
- h as PositionRight,
163
- s as default
211
+ p as PositionRight,
212
+ l as default
164
213
  };
@@ -4,6 +4,7 @@ import { ContactUsLinkBehavior } from 'lib/main-client';
4
4
  export interface MainNavProps extends CartPropsBase, React.HTMLAttributes<HTMLDivElement>, Pick<AccountProps, "account"> {
5
5
  categories?: MainCategory[];
6
6
  faqRoute: string;
7
+ byModelSerialRoute: string;
7
8
  customPartsRoute: string;
8
9
  aboutUsRoute: string;
9
10
  accountRoute: string;
@@ -24,4 +25,4 @@ export interface MainCategory extends Category {
24
25
  children: Category[];
25
26
  showChevron?: boolean;
26
27
  }
27
- export declare function MainNav({ account, categories, faqRoute, customPartsRoute, aboutUsRoute, accountRoute, contactRoute, cart, cartSubtotal, cartItemPriceLabel, cartContactLinkBehavior, onLoginClick, onSearch, onItemQtyChange, onItemDelete, onItemEdit, onCheckout, className, ...otherProps }: MainNavProps): import("react/jsx-runtime").JSX.Element;
28
+ export declare function MainNav({ account, categories, byModelSerialRoute, faqRoute, customPartsRoute, aboutUsRoute, accountRoute, contactRoute, cart, cartSubtotal, cartItemPriceLabel, cartContactLinkBehavior, onLoginClick, onSearch, onItemQtyChange, onItemDelete, onItemEdit, onCheckout, className, ...otherProps }: MainNavProps): import("react/jsx-runtime").JSX.Element;
@@ -1,109 +1,111 @@
1
1
  import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
2
  import { Text as f } from "../../atoms/Text/Text.js";
3
3
  import { Link as p } from "../../atoms/Link/Link.js";
4
- import { Icon as k } from "../../atoms/Icon/Icon.js";
5
- import { Flex as o } from "../../atoms/Flex/Flex.js";
6
- import { Grid as w, Column as D } from "../../atoms/Grid/Grid.js";
7
- import { Logo as F } from "../../molecules/Logo/Logo.js";
4
+ import { Icon as w } from "../../atoms/Icon/Icon.js";
5
+ import { Flex as a } from "../../atoms/Flex/Flex.js";
6
+ import { Grid as D, Column as I } from "../../atoms/Grid/Grid.js";
7
+ import { Logo as M } from "../../molecules/Logo/Logo.js";
8
8
  import { SearchBox as d } from "../../molecules/SearchBox/SearchBox.js";
9
- import { HamburgerMenu as I } from "../../molecules/HamburgerMenu/HamburgerMenu.js";
10
- import { ShoppingCart as U } from "../../molecules/Cart/Cart.js";
11
- import { Account as B } from "../../molecules/Account/Account.js";
9
+ import { HamburgerMenu as U } from "../../molecules/HamburgerMenu/HamburgerMenu.js";
10
+ import { ShoppingCart as B } from "../../molecules/Cart/Cart.js";
11
+ import { Account as F } from "../../molecules/Account/Account.js";
12
12
  import { CategoryNav as H } from "../../molecules/CategoryNav/CategoryNav.js";
13
- import { c as M } from "../../clsx-OuTLNxxd.js";
14
- import '../../assets/MainNav.css';const P = "_main_18fjz_1", Q = "_column_18fjz_8", G = "_topNav_18fjz_13", K = "_operations_18fjz_21", S = "_search_18fjz_28", T = "_siteLink_18fjz_31", W = "_accountArea_18fjz_35", E = "_category_18fjz_47", J = "_menuList_18fjz_69", i = {
15
- main: P,
16
- column: Q,
17
- topNav: G,
18
- operations: K,
19
- search: S,
20
- siteLink: T,
21
- accountArea: W,
13
+ import { c as P } from "../../clsx-OuTLNxxd.js";
14
+ import '../../assets/MainNav.css';const S = "_main_18fjz_1", G = "_column_18fjz_8", K = "_topNav_18fjz_13", Q = "_operations_18fjz_21", T = "_search_18fjz_28", W = "_siteLink_18fjz_31", q = "_accountArea_18fjz_35", E = "_category_18fjz_47", J = "_menuList_18fjz_69", i = {
15
+ main: S,
16
+ column: G,
17
+ topNav: K,
18
+ operations: Q,
19
+ search: T,
20
+ siteLink: W,
21
+ accountArea: q,
22
22
  category: E,
23
23
  menuList: J
24
24
  };
25
- function ce({
26
- account: a,
25
+ function ae({
26
+ account: o,
27
27
  categories: n,
28
- faqRoute: c,
29
- customPartsRoute: l,
30
- aboutUsRoute: _,
31
- accountRoute: u,
28
+ byModelSerialRoute: c,
29
+ faqRoute: _,
30
+ customPartsRoute: m,
31
+ aboutUsRoute: u,
32
+ accountRoute: N,
32
33
  contactRoute: s,
33
- cart: N,
34
- cartSubtotal: v,
35
- cartItemPriceLabel: A,
36
- cartContactLinkBehavior: g,
37
- onLoginClick: j,
34
+ cart: v,
35
+ cartSubtotal: g,
36
+ cartItemPriceLabel: j,
37
+ cartContactLinkBehavior: A,
38
+ onLoginClick: L,
38
39
  onSearch: h,
39
- onItemQtyChange: L,
40
- onItemDelete: x,
41
- onItemEdit: z,
42
- onCheckout: C,
40
+ onItemQtyChange: x,
41
+ onItemDelete: z,
42
+ onItemEdit: C,
43
+ onCheckout: k,
43
44
  className: y,
44
45
  ...b
45
46
  }) {
46
- return /* @__PURE__ */ e(w, { ...b, gridWrapperClassName: M(i.main, y), children: /* @__PURE__ */ t(D, { span: 12, className: i.column, children: [
47
+ return /* @__PURE__ */ e(D, { ...b, gridWrapperClassName: P(i.main, y), children: /* @__PURE__ */ t(I, { span: 12, className: i.column, children: [
47
48
  /* @__PURE__ */ t(
48
- o,
49
+ a,
49
50
  {
50
51
  flexDirection: "row",
51
52
  alignItems: "center",
52
53
  justifyContent: "space-between",
53
54
  className: i.topNav,
54
55
  children: [
55
- /* @__PURE__ */ e("div", { className: i.logo, children: /* @__PURE__ */ e(F, {}) }),
56
+ /* @__PURE__ */ e("div", { className: i.logo, children: /* @__PURE__ */ e(M, {}) }),
56
57
  /* @__PURE__ */ t(
57
- o,
58
+ a,
58
59
  {
59
60
  flexDirection: "row",
60
61
  alignItems: "center",
61
62
  justifyContent: "flex-end",
62
63
  className: i.operations,
63
64
  children: [
64
- /* @__PURE__ */ e(o, { flexDirection: "row", hideAt: ["sm"], className: i.search, children: /* @__PURE__ */ e(d, { onSearch: h, inputName: "cpc-search" }) }),
65
- /* @__PURE__ */ e(r, { href: l, hideAt: ["sm", "md"], children: "Custom Parts" }),
66
- /* @__PURE__ */ e(r, { href: c, hideAt: ["sm", "md"], children: "FAQ" }),
65
+ /* @__PURE__ */ e(a, { flexDirection: "row", hideAt: ["sm"], className: i.search, children: /* @__PURE__ */ e(d, { onSearch: h, inputName: "cpc-search" }) }),
66
+ /* @__PURE__ */ e(r, { href: c, hideAt: ["sm", "md"], children: "Model/Serial" }),
67
+ /* @__PURE__ */ e(r, { href: m, hideAt: ["sm", "md"], children: "Custom Parts" }),
67
68
  /* @__PURE__ */ e(r, { href: s, hideAt: ["sm", "md"], children: "Contact Us" }),
68
69
  /* @__PURE__ */ e("div", { className: i.accountArea, children: /* @__PURE__ */ e(
69
- B,
70
+ F,
70
71
  {
71
- account: a,
72
- accountRoute: u,
73
- onLoginClick: j,
72
+ account: o,
73
+ accountRoute: N,
74
+ onLoginClick: L,
74
75
  className: i.avatar
75
76
  }
76
77
  ) }),
77
78
  /* @__PURE__ */ e(
78
- U,
79
+ B,
79
80
  {
80
- cart: N,
81
- onItemDelete: x,
82
- onItemEdit: z,
83
- onItemQtyChange: L,
84
- onCheckout: C,
85
- subtotal: v,
81
+ cart: v,
82
+ onItemDelete: z,
83
+ onItemEdit: C,
84
+ onItemQtyChange: x,
85
+ onCheckout: k,
86
+ subtotal: g,
86
87
  contactHref: s,
87
- contactLinkBehavior: g,
88
- itemPriceLabel: A
88
+ contactLinkBehavior: A,
89
+ itemPriceLabel: j
89
90
  }
90
91
  ),
91
- /* @__PURE__ */ e(I, { hideAt: ["lg"], children: /* @__PURE__ */ t("ul", { className: i.menuList, children: [
92
- /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: l, children: "Custom Parts" }) }),
93
- /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: c, children: "FAQ" }) }),
92
+ /* @__PURE__ */ e(U, { hideAt: ["lg"], children: /* @__PURE__ */ t("ul", { className: i.menuList, children: [
93
+ /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: c, children: "Make/Serial" }) }),
94
+ /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: m, children: "Custom Parts" }) }),
94
95
  /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: s, children: "Contact Us" }) }),
95
- /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: _, children: "About Us" }) }),
96
- n && n.map((m) => /* @__PURE__ */ e("li", { className: i.category, children: /* @__PURE__ */ t(p, { href: m.route, children: [
97
- /* @__PURE__ */ e(f, { size: "sm", weight: "semibold", children: m.label }),
96
+ /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: _, children: "FAQ" }) }),
97
+ /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(r, { href: u, children: "About Us" }) }),
98
+ n && n.map((l) => /* @__PURE__ */ e("li", { className: i.category, children: /* @__PURE__ */ t(p, { href: l.route, children: [
99
+ /* @__PURE__ */ e(f, { size: "sm", weight: "semibold", children: l.label }),
98
100
  /* @__PURE__ */ e(
99
- k,
101
+ w,
100
102
  {
101
103
  iconKey: "fa-solid fa-chevron-right",
102
104
  title: "Navigate",
103
105
  size: "sm"
104
106
  }
105
107
  )
106
- ] }) }, m.id))
108
+ ] }) }, l.id))
107
109
  ] }) })
108
110
  ]
109
111
  }
@@ -111,17 +113,17 @@ function ce({
111
113
  ]
112
114
  }
113
115
  ),
114
- /* @__PURE__ */ e(o, { flexDirection: "row", hideAt: ["md", "lg"], children: /* @__PURE__ */ e(d, { onSearch: h, inputName: "cpc-search", className: i.search }) }),
116
+ /* @__PURE__ */ e(a, { flexDirection: "row", hideAt: ["md", "lg"], children: /* @__PURE__ */ e(d, { onSearch: h, inputName: "cpc-search", className: i.search }) }),
115
117
  /* @__PURE__ */ e(H, { categories: n })
116
118
  ] }) });
117
119
  }
118
120
  function r({
119
- href: a,
121
+ href: o,
120
122
  children: n,
121
123
  ...c
122
124
  }) {
123
- return /* @__PURE__ */ e(p, { href: a, className: i.siteLink, ...c, children: /* @__PURE__ */ e(f, { size: "md", variant: "display", children: n }) });
125
+ return /* @__PURE__ */ e(p, { href: o, className: i.siteLink, ...c, children: /* @__PURE__ */ e(f, { size: "md", variant: "display", children: n }) });
124
126
  }
125
127
  export {
126
- ce as MainNav
128
+ ae as MainNav
127
129
  };
@@ -105,6 +105,7 @@ const r = {
105
105
  cart: i,
106
106
  customPartsRoute: "/custom",
107
107
  accountRoute: "/account",
108
+ byModelSerialRoute: "/model",
108
109
  faqRoute: "/faq",
109
110
  aboutUsRoute: "/about",
110
111
  contactRoute: "/contact",
@@ -138,6 +139,7 @@ const r = {
138
139
  cart: i,
139
140
  customPartsRoute: "/custom",
140
141
  accountRoute: "/account",
142
+ byModelSerialRoute: "/model",
141
143
  faqRoute: "/faq",
142
144
  aboutUsRoute: "/about",
143
145
  contactRoute: "/contact",
@@ -166,6 +168,7 @@ const r = {
166
168
  cart: i,
167
169
  customPartsRoute: "/custom",
168
170
  accountRoute: "/account",
171
+ byModelSerialRoute: "/model",
169
172
  faqRoute: "/faq",
170
173
  aboutUsRoute: "/about",
171
174
  contactRoute: "/contact",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@caseparts-org/caseblocks",
3
3
  "private": false,
4
- "version": "0.0.50",
4
+ "version": "0.0.52",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",
@@ -35,7 +35,8 @@
35
35
  "@fontsource-variable/roboto-condensed": "^5.1.1",
36
36
  "@fontsource/roboto": "^5.1.0",
37
37
  "clsx": "^2.1.1",
38
- "csstype": "^3.1.3"
38
+ "csstype": "^3.1.3",
39
+ "reactjs-popup": "^2.0.6"
39
40
  },
40
41
  "peerDependencies": {
41
42
  "react": ">=18.3.1 <20.0.0",