@axos-web-dev/shared-components 2.0.0-dev.14 → 2.0.0-dev.15

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.
@@ -43,7 +43,8 @@ const ChatWindow = ({
43
43
  toggleThankyouMessage,
44
44
  hasEscalated,
45
45
  isBlockedInput,
46
- isOpen
46
+ isOpen,
47
+ hasOpenedOnce
47
48
  } = useOpenChat();
48
49
  const [mounted, setMounted] = React.useState(false);
49
50
  const [menuOpen, setMenuOpen] = React.useState(false);
@@ -398,7 +399,7 @@ const ChatWindow = ({
398
399
  }
399
400
  ) }) : null,
400
401
  /* @__PURE__ */ jsxs("div", { className: clsx(messagesContainerStyle), children: [
401
- (status === "idle" || messages.length == 0) && /* @__PURE__ */ jsx(
402
+ (status === "idle" && messages.length == 0 || messages.length == 0) && /* @__PURE__ */ jsx(
402
403
  "div",
403
404
  {
404
405
  className: clsx(),
@@ -425,23 +426,28 @@ const ChatWindow = ({
425
426
  )
426
427
  }
427
428
  ),
428
- messages?.map((msg) => /* @__PURE__ */ jsx(
429
- ChatbotMessage,
430
- {
431
- msg,
432
- onSend,
433
- showAvatar,
434
- showName,
435
- virtualAgent,
436
- onCancelEndChat,
437
- onEndChat: () => {
438
- endChat();
439
- onCloseAfterThankYou();
429
+ messages?.map((msg) => {
430
+ if (!hasOpenedOnce) {
431
+ return null;
432
+ }
433
+ return /* @__PURE__ */ jsx(
434
+ ChatbotMessage,
435
+ {
436
+ msg,
437
+ onSend,
438
+ showAvatar,
439
+ showName,
440
+ virtualAgent,
441
+ onCancelEndChat,
442
+ onEndChat: () => {
443
+ endChat();
444
+ onCloseAfterThankYou();
445
+ },
446
+ inputRef
440
447
  },
441
- inputRef
442
- },
443
- msg?.$index
444
- )),
448
+ msg?.$index
449
+ );
450
+ }),
445
451
  showReconnect && /* @__PURE__ */ jsx(
446
452
  "button",
447
453
  {
@@ -39,13 +39,11 @@ const Chatbot = ({
39
39
  const clientRef = useRef(null);
40
40
  const menuRef = useRef(null);
41
41
  const isMountedRef = useRef(false);
42
- const hasLoadedBefore = useRef(true);
43
42
  const chatRef = useRef(null);
44
43
  const agent_virtual = useRef(null);
45
44
  const [status, setStatus] = useState("idle");
46
45
  const [hasStarted, setHasStarted] = useState(false);
47
46
  const [menusLoaded, setMenusLoaded] = useState(false);
48
- const [pendingStart, setPendingStart] = useState(false);
49
47
  const [isTyping, setIsTyping] = useState(false);
50
48
  const [scalationStarted, setScalationStarted] = useState(false);
51
49
  useEffect(() => {
@@ -100,6 +98,9 @@ const Chatbot = ({
100
98
  menuRef.current = await clientRef.current.getMenus();
101
99
  setMenusLoaded(true);
102
100
  console.log("menus:", menuRef.current);
101
+ if (menuRef.current !== null) {
102
+ await startChat();
103
+ }
103
104
  }
104
105
  };
105
106
  const onAuthenticatedHandler = async () => {
@@ -260,9 +261,10 @@ const Chatbot = ({
260
261
  return;
261
262
  };
262
263
  const startChat = async () => {
263
- console.log("Starting chat");
264
+ console.log("Starting chat", chatRef.current);
264
265
  const client = clientRef.current;
265
266
  if (!client) return;
267
+ if (hasStarted) return;
266
268
  if (!menuRef.current || !menuRef.current.menus) {
267
269
  let waited = 0;
268
270
  while ((!menuRef.current || !menuRef.current.menus) && waited < 5e3) {
@@ -275,19 +277,26 @@ const Chatbot = ({
275
277
  }
276
278
  }
277
279
  try {
280
+ console.log("menus: ->", menuRef.current);
278
281
  const ongoingChat = await client.loadOngoingChat();
282
+ console.log("theres a ongoing chat?: -->", ongoingChat);
279
283
  if (ongoingChat) {
280
284
  console.log("Ongoing chat found:", ongoingChat);
281
285
  console.log("Resuming chat:", ongoingChat.id);
282
- chatRef.current = await client.resumeChat(ongoingChat.id);
286
+ chatRef.current = ongoingChat;
283
287
  agent_virtual.current = ongoingChat.agent;
284
288
  return;
285
289
  }
290
+ console.log("not ongoing chat ");
291
+ console.log(!!ongoingChat);
286
292
  const foundMenu = menuRef.current.menus.find(
287
293
  (menu) => menu.name === menuOption
288
294
  );
289
295
  const menuId = foundMenu && foundMenu.id;
290
296
  console.log("Creating new chat with menu ID:", menuId);
297
+ if (!foundMenu) {
298
+ throw new Error("Menu not found: " + menuOption);
299
+ }
291
300
  const newChat = await client.createChat(menuId, { custom_data });
292
301
  if (newChat !== null) {
293
302
  chatRef.current = newChat;
@@ -297,6 +306,7 @@ const Chatbot = ({
297
306
  } catch (err) {
298
307
  console.error("Error creating chat:", err);
299
308
  } finally {
309
+ setHasStarted(true);
300
310
  if (clientRef?.current?.chat?.state?.status == "va_assigned") {
301
311
  const OriginalAudio = window.Audio;
302
312
  class PatchedAudio extends OriginalAudio {
@@ -312,10 +322,6 @@ const Chatbot = ({
312
322
  const handleClick = async () => {
313
323
  toggle();
314
324
  if (hasStarted) return;
315
- if (!menusLoaded) {
316
- setPendingStart(true);
317
- return;
318
- }
319
325
  if (!hasOpenedOnce) {
320
326
  await startChat();
321
327
  setHasStarted(true);
@@ -356,17 +362,9 @@ const Chatbot = ({
356
362
  isMountedRef.current = true;
357
363
  await createClient();
358
364
  });
359
- useEffect(() => {
360
- if (menusLoaded && pendingStart && !hasStarted) {
361
- startChat();
362
- setPendingStart(false);
363
- }
364
- }, [menusLoaded, pendingStart, hasStarted]);
365
365
  useUnmount(() => {
366
366
  console.log("Chatbot unmounted");
367
367
  deregisterEventHandlers();
368
- isMountedRef.current = false;
369
- hasLoadedBefore.current = true;
370
368
  reset();
371
369
  setHasStarted(false);
372
370
  setStatus("idle");
@@ -379,9 +377,13 @@ const Chatbot = ({
379
377
  const onClose = () => {
380
378
  toggle();
381
379
  };
382
- const onCloseAfterThankYou = () => {
380
+ const newChatSession = async () => {
381
+ console.log("create new session");
382
+ };
383
+ const onCloseAfterThankYou = async () => {
383
384
  reset();
384
385
  setHasStarted(false);
386
+ newChatSession();
385
387
  };
386
388
  const onPreviewTyping = async (msg) => {
387
389
  console.log("Preview typing message:", msg);
@@ -686,6 +686,15 @@ const AxosFooterSiteMap = ({
686
686
  ),
687
687
  children: "Treasury Management"
688
688
  }
689
+ ) }),
690
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
691
+ "a",
692
+ {
693
+ href: resolveUrl(
694
+ "{AXOSBANK}/commercial/banking/technology-and-life-sciences-banking"
695
+ ),
696
+ children: "Technology and Life Sciences Banking"
697
+ }
689
698
  ) })
690
699
  ] }),
691
700
  /* @__PURE__ */ jsxs("ul", { children: [
@@ -1,30 +1,30 @@
1
- import '../../../assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css';const overlay = "_overlay_w36iv_1";
2
- const drawer = "_drawer_w36iv_17";
3
- const mobileNavRow = "_mobileNavRow_w36iv_57";
4
- const loginTrigger = "_loginTrigger_w36iv_69";
5
- const hamburger = "_hamburger_w36iv_101";
6
- const loginDrawerTitle = "_loginDrawerTitle_w36iv_145";
7
- const loginDrawerContent = "_loginDrawerContent_w36iv_157";
8
- const header = "_header_w36iv_169";
9
- const back = "_back_w36iv_191";
10
- const close = "_close_w36iv_207";
11
- const levelContainer = "_levelContainer_w36iv_229";
12
- const level = "_level_w36iv_229";
13
- const levelTitle = "_levelTitle_w36iv_261";
14
- const menu = "_menu_w36iv_271";
15
- const menuItem = "_menuItem_w36iv_303";
16
- const loginAccordion = "_loginAccordion_w36iv_335";
17
- const loginAccordionList = "_loginAccordionList_w36iv_343";
18
- const loginAccordionGroup = "_loginAccordionGroup_w36iv_355";
19
- const loginAccordionHeading = "_loginAccordionHeading_w36iv_429";
20
- const loginAccordionGroupList = "_loginAccordionGroupList_w36iv_449";
21
- const loginHeading = "_loginHeading_w36iv_537";
22
- const chevron = "_chevron_w36iv_557";
23
- const chevronIcon = "_chevronIcon_w36iv_567";
24
- const quickLinks = "_quickLinks_w36iv_589";
25
- const quickLink = "_quickLink_w36iv_589";
26
- const sr_only = "_sr_only_w36iv_637";
27
- const loginAccordionOverlay = "_loginAccordionOverlay_w36iv_687";
1
+ import '../../../assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css';const overlay = "_overlay_hbh7s_1";
2
+ const drawer = "_drawer_hbh7s_9";
3
+ const mobileNavRow = "_mobileNavRow_hbh7s_29";
4
+ const loginTrigger = "_loginTrigger_hbh7s_35";
5
+ const hamburger = "_hamburger_hbh7s_51";
6
+ const loginDrawerTitle = "_loginDrawerTitle_hbh7s_73";
7
+ const loginDrawerContent = "_loginDrawerContent_hbh7s_79";
8
+ const header = "_header_hbh7s_85";
9
+ const back = "_back_hbh7s_96";
10
+ const close = "_close_hbh7s_104";
11
+ const levelContainer = "_levelContainer_hbh7s_115";
12
+ const level = "_level_hbh7s_115";
13
+ const levelTitle = "_levelTitle_hbh7s_131";
14
+ const menu = "_menu_hbh7s_136";
15
+ const menuItem = "_menuItem_hbh7s_152";
16
+ const loginAccordion = "_loginAccordion_hbh7s_168";
17
+ const loginAccordionList = "_loginAccordionList_hbh7s_172";
18
+ const loginAccordionGroup = "_loginAccordionGroup_hbh7s_178";
19
+ const loginAccordionHeading = "_loginAccordionHeading_hbh7s_215";
20
+ const loginAccordionGroupList = "_loginAccordionGroupList_hbh7s_225";
21
+ const loginHeading = "_loginHeading_hbh7s_269";
22
+ const chevron = "_chevron_hbh7s_279";
23
+ const chevronIcon = "_chevronIcon_hbh7s_284";
24
+ const quickLinks = "_quickLinks_hbh7s_295";
25
+ const quickLink = "_quickLink_hbh7s_295";
26
+ const sr_only = "_sr_only_hbh7s_319";
27
+ const loginAccordionOverlay = "_loginAccordionOverlay_hbh7s_344";
28
28
  const styles = {
29
29
  overlay,
30
30
  drawer,
@@ -194,6 +194,7 @@ export declare const getMenuData: (resolveUrl: UrlResolver) => {
194
194
  "Leveraged Finance": string;
195
195
  "Dealer Floorplan Finance": string;
196
196
  "Premium Finance": string;
197
+ "Franchise Finance": string;
197
198
  };
198
199
  "Other Resources": {
199
200
  "Business Support": string;
@@ -359,6 +359,9 @@ const getMenuData = (resolveUrl) => ({
359
359
  ),
360
360
  "Premium Finance": resolveUrl(
361
361
  "{AXOSBANK}/commercial/lending/premium-finance"
362
+ ),
363
+ "Franchise Finance": resolveUrl(
364
+ "{AXOSBANK}/commercial/lending/franchise-finance"
362
365
  )
363
366
  },
364
367
  "Other Resources": {
@@ -2924,6 +2924,15 @@ function SubNavBar() {
2924
2924
  ),
2925
2925
  children: "Premium Finance"
2926
2926
  }
2927
+ ) }),
2928
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2929
+ Link,
2930
+ {
2931
+ href: resolveUrl(
2932
+ "{AXOSBANK}/commercial/lending/franchise-finance"
2933
+ ),
2934
+ children: "Franchise Finance"
2935
+ }
2927
2936
  ) })
2928
2937
  ] })
2929
2938
  ] }),
@@ -499,7 +499,15 @@ function NavBar({
499
499
  "li",
500
500
  {
501
501
  className: `${styles.signin_subheader} ${signin_subheader}`,
502
- children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{AXOSBANK}/commercial/lending/commercial-portal"), children: "Commercial Loan Portal" })
502
+ children: /* @__PURE__ */ jsx(
503
+ "a",
504
+ {
505
+ href: resolveUrl(
506
+ "{AXOSBANK}/commercial/lending/commercial-portal"
507
+ ),
508
+ children: "Commercial Loan Portal"
509
+ }
510
+ )
503
511
  }
504
512
  )
505
513
  ] })
@@ -1,353 +1,353 @@
1
- ._overlay_w36iv_1 {
2
- position: fixed;
3
- inset: 0;
4
- height: 100vh;
5
- background: rgba(0, 0, 0, 0.6);
6
- z-index: 10000;
7
- }
8
-
9
- ._drawer_w36iv_17 {
10
- background: #fff;
11
- border-radius: 0 0 0 1rem;
12
- box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
13
- max-height: 100vh;
14
- max-width: 500px;
15
- overflow: hidden auto;
16
- position: fixed;
17
- right: 0px;
18
- top: 0;
19
- width: 85%;
20
- scrollbar-width: none;
21
- -ms-overflow-style: none;
22
- z-index: 10001;
23
- }
24
-
25
- ._drawer_w36iv_17::-webkit-scrollbar {
26
- display: none;
27
- }
28
-
29
- ._mobileNavRow_w36iv_57 {
30
- display: flex;
31
- align-items: center;
32
- gap: 16px;
33
- }
34
-
35
- ._loginTrigger_w36iv_69 {
36
- background: transparent;
37
- border: none;
38
- color: var(--_1073cm83);
39
- cursor: pointer;
40
- font-family: var(--header-font-family);
41
- font-size: 1rem;
42
- font-weight: 700;
43
- padding: 0.25rem 0;
44
- transition: opacity 0.2s ease;
45
- }
46
-
47
- ._loginTrigger_w36iv_69:hover {
48
- opacity: 0.85;
49
- }
50
-
51
- ._hamburger_w36iv_101 {
52
- background: transparent;
53
- border: none;
54
- cursor: pointer;
55
- transition: opacity 0.3s ease;
56
- position: relative;
57
- }
58
-
59
- ._hamburger_w36iv_101::before {
60
- content: "";
61
- position: absolute;
62
- left: -7px;
63
- bottom: 0;
64
- height: 28px;
65
- border-left: 2px solid #1f1f1f;
66
- top: -2px;
67
- }
68
-
69
- ._hamburger_w36iv_101:hover {
70
- opacity: 0.8;
71
- }
72
-
73
- ._loginDrawerTitle_w36iv_145 {
74
- font-weight: 700;
75
- font-size: 1rem;
76
- color: var(--_1073cm83);
77
- }
78
-
79
- ._loginDrawerContent_w36iv_157 {
80
- padding: 1rem 1.2rem 1.2rem;
81
- overflow: auto;
82
- flex: 1;
83
- }
84
-
85
- ._header_w36iv_169 {
86
- display: flex;
87
- align-items: center;
88
- background: #f4f4f4;
89
- justify-content: space-between;
90
- padding: 0.9rem 1.2rem 0.9rem 1rem;
91
- position: sticky;
92
- top: 0;
93
- z-index: 1;
94
- }
95
-
96
- ._back_w36iv_191 {
97
- color: var(--_1073cm83);
98
- font-size: 1rem;
99
- font-weight: 700;
100
- line-height: 1;
101
- padding: 0;
102
- }
103
-
104
- ._close_w36iv_207 {
105
- font-size: 1.3rem;
106
- }
107
-
108
- ._back_w36iv_191,
109
- ._close_w36iv_207 {
110
- background: none;
111
- border: none;
112
- cursor: pointer;
113
- }
114
-
115
- ._levelContainer_w36iv_229 {
116
- height: 100%;
117
- position: relative;
118
- }
119
-
120
- ._level_w36iv_229 {
121
- background: var(--_1073cm86);
122
- color: var(--_1073cm85);
123
- font-size: 0.9rem;
124
- padding: 14px 1.2rem;
125
- position: sticky;
126
- top: 54.78px;
127
- width: 100%;
128
- z-index: 1;
129
- }
130
-
131
- ._levelTitle_w36iv_261 {
132
- font: 700 0.9rem / 1.39 var(--main-font-family);
133
- letter-spacing: 0.4px;
134
- }
135
-
136
- ._menu_w36iv_271 {
137
- background-color: transparent;
138
- list-style: none;
139
- margin: 0;
140
- min-height: 100%;
141
- padding: 0 1.2rem;
142
- position: relative;
143
- }
144
-
145
- ._menu_w36iv_271 li {
146
- color: var(--_1073cm83);
147
- font-family: var(--header-font-family);
148
- font-weight: 500;
149
- border-top: 1px solid #e9e9e9;
150
- }
151
-
152
- ._menuItem_w36iv_303 {
153
- display: flex;
154
- align-items: center;
155
- background: none;
156
- border: none;
157
- color: inherit;
158
- cursor: pointer;
159
- font-size: 1rem;
160
- justify-content: space-between;
161
- padding: 0.75rem 0;
162
- text-align: left;
163
- text-decoration: none;
164
- transition: background 0.2s ease;
165
- width: 100%;
166
- }
167
-
168
- ._loginAccordion_w36iv_335 {
169
- padding: 0;
170
- }
171
-
172
- ._loginAccordionList_w36iv_343 {
173
- list-style: none;
174
- margin: 0;
175
- padding: 0;
176
- }
177
-
178
- ._loginAccordionGroup_w36iv_355 {
179
- padding-block: 4px;
180
- }
181
-
182
- ._loginAccordionGroup_w36iv_355 + ._loginAccordionGroup_w36iv_355 {
183
- margin-top: 2px;
184
- position: relative;
185
- }
186
-
187
- ._loginAccordionGroup_w36iv_355:nth-child(5):is(:last-child) {
188
- padding-top: 12px;
189
- margin-top: 12px;
190
- }
191
-
192
- ._loginAccordionGroup_w36iv_355:nth-child(5):is(:last-child)::before {
193
- content: "";
194
- background-color: #8f8f8f;
195
- height: 2px;
196
- opacity: 0.3;
197
- position: absolute;
198
- right: 8px;
199
- top: 0;
200
- width: 94%;
201
- }
202
-
203
- ._loginAccordionGroup_w36iv_355:nth-child(5):is(:last-child) > span {
204
- position: absolute;
205
- border: 0;
206
- clip: rect(0, 0, 0, 0);
207
- height: 1px;
208
- margin: -1px;
209
- overflow: hidden;
210
- padding: 0;
211
- white-space: nowrap;
212
- width: 1px;
213
- }
214
-
215
- ._loginAccordionHeading_w36iv_429 {
216
- display: block;
217
- font-family: var(--header-font-family);
218
- font-weight: 700;
219
- font-size: 18px;
220
- line-height: 1.39;
221
-
222
- padding: 0.35rem 0 0.2rem;
223
- }
224
-
225
- ._loginAccordionGroupList_w36iv_449 {
226
- list-style: none;
227
- margin: 0;
228
- padding: 0 0 0 8px;
229
- }
230
-
231
- ._loginAccordionList_w36iv_343 li {
232
- font-family: var(--header-font-family);
233
- font-weight: 500;
234
- }
235
-
236
- ._loginAccordionList_w36iv_343 li li {
237
- border-top: none;
238
- color: #1e629a;
239
- font-weight: 400;
240
- padding-block: 3px;
241
- font-family: var(--main-font-family);
242
- }
243
-
244
- ._loginAccordionList_w36iv_343 ._menuItem_w36iv_303 {
245
- display: inline;
246
- padding-block: 0px;
247
- }
248
-
249
- ._loginAccordionList_w36iv_343 ._menuItem_w36iv_303:hover {
250
- opacity: 0.7;
251
- }
252
-
253
- ._loginAccordion_w36iv_335 > ._menuItem_w36iv_303 {
254
- padding-block: 4px;
255
- position: relative;
256
- isolation: isolate;
257
- }
258
-
259
- ._loginAccordion_w36iv_335 > ._menuItem_w36iv_303::after {
260
- content: "return to menu";
261
- position: absolute;
262
- right: 36px;
263
- bottom: 50%;
264
- font-size: 12px;
265
- transform: translateY(50%);
266
- letter-spacing: 0.5px;
267
- }
268
-
269
- ._loginHeading_w36iv_537 {
270
- font-family: var(--header-font-family);
271
- font-size: 20px;
272
- font-weight: 700;
273
- line-height: 1;
274
- display: flex;
275
- align-items: center;
276
- gap: 8px;
277
- }
278
-
279
- ._chevron_w36iv_557 {
280
- font-size: 1.2rem;
281
- margin-left: auto;
282
- }
283
-
284
- ._chevronIcon_w36iv_567 {
285
- height: auto;
286
- margin-right: 10px;
287
- max-width: 8px;
288
- }
289
-
290
- body:has(._drawer_w36iv_17) {
291
- overflow-y: hidden;
292
- position: relative;
293
- }
294
-
295
- ._quickLinks_w36iv_589 {
296
- background-color: #e8f7ff;
297
- bottom: 0;
298
- box-shadow: 0 15px 10px -20px rgba(0, 0, 0, 0.45) inset;
299
- gap: 8px;
300
- margin-top: 9px;
301
- padding: 1rem;
302
- position: sticky;
303
- }
304
-
305
- ._quickLink_w36iv_589 {
306
- display: flex;
307
- align-items: center;
308
- color: var(--_1073cm83);
309
- flex-direction: column;
310
- flex: 1 1 0%;
311
- font-size: 0.8rem;
312
- font-weight: 700;
313
- gap: 8px;
314
- line-height: 1.5;
315
- text-decoration: none;
316
- text-transform: uppercase;
317
- }
318
-
319
- ._sr_only_w36iv_637 {
320
- position: absolute;
321
- border: 0;
322
- clip: rect(0, 0, 0, 0);
323
- height: 1px;
324
- margin: -1px;
325
- overflow: hidden;
326
- padding: 0;
327
- white-space: nowrap;
328
- width: 1px;
329
- }
330
-
331
- @media (max-width: 540px) {
332
- ._drawer_w36iv_17 {
333
- border-radius: 0;
334
- max-width: none;
335
- width: 100%;
336
- }
337
- ._menu_w36iv_271 li + li {
338
- margin-top: 3px;
339
- }
340
- ._menuItem_w36iv_303 {
341
- font-size: 0.9rem;
342
- padding: 0.65rem 0;
343
- }
344
- ._loginAccordionOverlay_w36iv_687::before {
345
- opacity: 0.1;
346
- }
347
- }
348
-
349
- @media (min-width: 541px) {
350
- ._drawer_w36iv_17:has(._loginDrawerContent_w36iv_157) {
351
- max-width: 345px;
352
- }
353
- }
1
+ ._overlay_hbh7s_1 {
2
+ position: fixed;
3
+ inset: 0;
4
+ height: 100vh;
5
+ background: rgba(0, 0, 0, 0.6);
6
+ z-index: 10000;
7
+ }
8
+
9
+ ._drawer_hbh7s_9 {
10
+ background: #fff;
11
+ border-radius: 0 0 0 1rem;
12
+ box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
13
+ max-height: 100vh;
14
+ max-width: 500px;
15
+ overflow: hidden auto;
16
+ position: fixed;
17
+ right: 0px;
18
+ top: 0;
19
+ width: 85%;
20
+ scrollbar-width: none;
21
+ -ms-overflow-style: none;
22
+ z-index: 10001;
23
+ }
24
+
25
+ ._drawer_hbh7s_9::-webkit-scrollbar {
26
+ display: none;
27
+ }
28
+
29
+ ._mobileNavRow_hbh7s_29 {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 16px;
33
+ }
34
+
35
+ ._loginTrigger_hbh7s_35 {
36
+ background: transparent;
37
+ border: none;
38
+ color: var(--_1073cm83);
39
+ cursor: pointer;
40
+ font-family: var(--header-font-family);
41
+ font-size: 1rem;
42
+ font-weight: 700;
43
+ padding: 0.25rem 0;
44
+ transition: opacity 0.2s ease;
45
+ }
46
+
47
+ ._loginTrigger_hbh7s_35:hover {
48
+ opacity: 0.85;
49
+ }
50
+
51
+ ._hamburger_hbh7s_51 {
52
+ background: transparent;
53
+ border: none;
54
+ cursor: pointer;
55
+ transition: opacity 0.3s ease;
56
+ position: relative;
57
+ }
58
+
59
+ ._hamburger_hbh7s_51::before {
60
+ content: "";
61
+ position: absolute;
62
+ left: -7px;
63
+ bottom: 0;
64
+ height: 28px;
65
+ border-left: 2px solid #1f1f1f;
66
+ top: -2px;
67
+ }
68
+
69
+ ._hamburger_hbh7s_51:hover {
70
+ opacity: 0.8;
71
+ }
72
+
73
+ ._loginDrawerTitle_hbh7s_73 {
74
+ font-weight: 700;
75
+ font-size: 1rem;
76
+ color: var(--_1073cm83);
77
+ }
78
+
79
+ ._loginDrawerContent_hbh7s_79 {
80
+ padding: 1rem 1.2rem 1.2rem;
81
+ overflow: auto;
82
+ flex: 1;
83
+ }
84
+
85
+ ._header_hbh7s_85 {
86
+ display: flex;
87
+ align-items: center;
88
+ background: #f4f4f4;
89
+ justify-content: space-between;
90
+ padding: 0.9rem 1.2rem 0.9rem 1rem;
91
+ position: sticky;
92
+ top: 0;
93
+ z-index: 1;
94
+ }
95
+
96
+ ._back_hbh7s_96 {
97
+ color: var(--_1073cm83);
98
+ font-size: 1rem;
99
+ font-weight: 700;
100
+ line-height: 1;
101
+ padding: 0;
102
+ }
103
+
104
+ ._close_hbh7s_104 {
105
+ font-size: 1.3rem;
106
+ }
107
+
108
+ ._back_hbh7s_96,
109
+ ._close_hbh7s_104 {
110
+ background: none;
111
+ border: none;
112
+ cursor: pointer;
113
+ }
114
+
115
+ ._levelContainer_hbh7s_115 {
116
+ height: 100%;
117
+ position: relative;
118
+ }
119
+
120
+ ._level_hbh7s_115 {
121
+ background: var(--_1073cm86);
122
+ color: var(--_1073cm85);
123
+ font-size: 0.9rem;
124
+ padding: 14px 1.2rem;
125
+ position: sticky;
126
+ top: 54.78px;
127
+ width: 100%;
128
+ z-index: 1;
129
+ }
130
+
131
+ ._levelTitle_hbh7s_131 {
132
+ font: 700 0.9rem / 1.39 var(--main-font-family);
133
+ letter-spacing: 0.4px;
134
+ }
135
+
136
+ ._menu_hbh7s_136 {
137
+ background-color: transparent;
138
+ list-style: none;
139
+ margin: 0;
140
+ min-height: 100%;
141
+ padding: 0 1.2rem;
142
+ position: relative;
143
+ }
144
+
145
+ ._menu_hbh7s_136 li {
146
+ color: var(--_1073cm83);
147
+ font-family: var(--header-font-family);
148
+ font-weight: 500;
149
+ border-top: 1px solid #e9e9e9;
150
+ }
151
+
152
+ ._menuItem_hbh7s_152 {
153
+ display: flex;
154
+ align-items: center;
155
+ background: none;
156
+ border: none;
157
+ color: inherit;
158
+ cursor: pointer;
159
+ font-size: 1rem;
160
+ justify-content: space-between;
161
+ padding: 0.75rem 0;
162
+ text-align: left;
163
+ text-decoration: none;
164
+ transition: background 0.2s ease;
165
+ width: 100%;
166
+ }
167
+
168
+ ._loginAccordion_hbh7s_168 {
169
+ padding: 0;
170
+ }
171
+
172
+ ._loginAccordionList_hbh7s_172 {
173
+ list-style: none;
174
+ margin: 0;
175
+ padding: 0;
176
+ }
177
+
178
+ ._loginAccordionGroup_hbh7s_178 {
179
+ padding-block: 4px;
180
+ }
181
+
182
+ ._loginAccordionGroup_hbh7s_178 + ._loginAccordionGroup_hbh7s_178 {
183
+ margin-top: 2px;
184
+ position: relative;
185
+ }
186
+
187
+ ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child) {
188
+ padding-top: 12px;
189
+ margin-top: 12px;
190
+ }
191
+
192
+ ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child)::before {
193
+ content: "";
194
+ background-color: #8f8f8f;
195
+ height: 2px;
196
+ opacity: 0.3;
197
+ position: absolute;
198
+ right: 8px;
199
+ top: 0;
200
+ width: 94%;
201
+ }
202
+
203
+ ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child) > span {
204
+ position: absolute;
205
+ border: 0;
206
+ clip: rect(0, 0, 0, 0);
207
+ height: 1px;
208
+ margin: -1px;
209
+ overflow: hidden;
210
+ padding: 0;
211
+ white-space: nowrap;
212
+ width: 1px;
213
+ }
214
+
215
+ ._loginAccordionHeading_hbh7s_215 {
216
+ display: block;
217
+ font-family: var(--header-font-family);
218
+ font-weight: 700;
219
+ font-size: 18px;
220
+ line-height: 1.39;
221
+
222
+ padding: 0.35rem 0 0.2rem;
223
+ }
224
+
225
+ ._loginAccordionGroupList_hbh7s_225 {
226
+ list-style: none;
227
+ margin: 0;
228
+ padding: 0 0 0 8px;
229
+ }
230
+
231
+ ._loginAccordionList_hbh7s_172 li {
232
+ font-family: var(--header-font-family);
233
+ font-weight: 500;
234
+ }
235
+
236
+ ._loginAccordionList_hbh7s_172 li li {
237
+ border-top: none;
238
+ color: #1e629a;
239
+ font-weight: 400;
240
+ padding-block: 3px;
241
+ font-family: var(--main-font-family);
242
+ }
243
+
244
+ ._loginAccordionList_hbh7s_172 ._menuItem_hbh7s_152 {
245
+ display: inline;
246
+ padding-block: 0px;
247
+ }
248
+
249
+ ._loginAccordionList_hbh7s_172 ._menuItem_hbh7s_152:hover {
250
+ opacity: 0.7;
251
+ }
252
+
253
+ ._loginAccordion_hbh7s_168 > ._menuItem_hbh7s_152 {
254
+ padding-block: 4px;
255
+ position: relative;
256
+ isolation: isolate;
257
+ }
258
+
259
+ ._loginAccordion_hbh7s_168 > ._menuItem_hbh7s_152::after {
260
+ content: "return to menu";
261
+ position: absolute;
262
+ right: 36px;
263
+ bottom: 50%;
264
+ font-size: 12px;
265
+ transform: translateY(50%);
266
+ letter-spacing: 0.5px;
267
+ }
268
+
269
+ ._loginHeading_hbh7s_269 {
270
+ font-family: var(--header-font-family);
271
+ font-size: 20px;
272
+ font-weight: 700;
273
+ line-height: 1;
274
+ display: flex;
275
+ align-items: center;
276
+ gap: 8px;
277
+ }
278
+
279
+ ._chevron_hbh7s_279 {
280
+ font-size: 1.2rem;
281
+ margin-left: auto;
282
+ }
283
+
284
+ ._chevronIcon_hbh7s_284 {
285
+ height: auto;
286
+ margin-right: 10px;
287
+ max-width: 8px;
288
+ }
289
+
290
+ body:has(._drawer_hbh7s_9) {
291
+ overflow-y: hidden;
292
+ position: relative;
293
+ }
294
+
295
+ ._quickLinks_hbh7s_295 {
296
+ background-color: #e8f7ff;
297
+ bottom: 0;
298
+ box-shadow: 0 15px 10px -20px rgba(0, 0, 0, 0.45) inset;
299
+ gap: 8px;
300
+ margin-top: 9px;
301
+ padding: 1rem;
302
+ position: sticky;
303
+ }
304
+
305
+ ._quickLink_hbh7s_295 {
306
+ display: flex;
307
+ align-items: center;
308
+ color: var(--_1073cm83);
309
+ flex-direction: column;
310
+ flex: 1 1 0%;
311
+ font-size: 0.8rem;
312
+ font-weight: 700;
313
+ gap: 8px;
314
+ line-height: 1.5;
315
+ text-decoration: none;
316
+ text-transform: uppercase;
317
+ }
318
+
319
+ ._sr_only_hbh7s_319 {
320
+ position: absolute;
321
+ border: 0;
322
+ clip: rect(0, 0, 0, 0);
323
+ height: 1px;
324
+ margin: -1px;
325
+ overflow: hidden;
326
+ padding: 0;
327
+ white-space: nowrap;
328
+ width: 1px;
329
+ }
330
+
331
+ @media (max-width: 540px) {
332
+ ._drawer_hbh7s_9 {
333
+ border-radius: 0;
334
+ max-width: none;
335
+ width: 100%;
336
+ }
337
+ ._menu_hbh7s_136 li + li {
338
+ margin-top: 3px;
339
+ }
340
+ ._menuItem_hbh7s_152 {
341
+ font-size: 0.9rem;
342
+ padding: 0.65rem 0;
343
+ }
344
+ ._loginAccordionOverlay_hbh7s_344::before {
345
+ opacity: 0.1;
346
+ }
347
+ }
348
+
349
+ @media (min-width: 541px) {
350
+ ._drawer_hbh7s_9:has(._loginDrawerContent_hbh7s_79) {
351
+ max-width: 345px;
352
+ }
353
+ }
package/package.json CHANGED
@@ -1,148 +1,148 @@
1
- {
2
- "name": "@axos-web-dev/shared-components",
3
- "description": "Axos shared components library for web.",
4
- "version": "2.0.0-dev.14",
5
- "type": "module",
6
- "main": "index.js",
7
- "module": "dist/main.js",
8
- "types": "dist/main.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/main.d.ts",
12
- "import": "./dist/main.js"
13
- },
14
- "./styles.css": "./dist/assets/index.css",
15
- "./globals.css": "./dist/assets/globals.css",
16
- "./themes/axos.css": "./dist/assets/themes/axos.css",
17
- "./themes/premier.css": "./dist/assets/themes/premier.css",
18
- "./dist/*": "./dist/*"
19
- },
20
- "files": [
21
- "dist"
22
- ],
23
- "sideEffects": [
24
- "dist/assets/**/*.css"
25
- ],
26
- "scripts": {
27
- "dev": "vite",
28
- "build": "tsc --p ./tsconfig.build.json && vite build",
29
- "lint": "eslint . --report-unused-disable-directives --max-warnings 0",
30
- "preview": "vite preview",
31
- "prepublishOnly": "npm run build",
32
- "check-types": "tsc --pretty --noEmit",
33
- "check-format": "prettier --check .",
34
- "check-lint": "eslint .",
35
- "format": "prettier --write .",
36
- "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
37
- "prepare": "husky",
38
- "storybook": "storybook dev -p 6006",
39
- "build-storybook": "storybook build",
40
- "npm:link": "npm run build && npm link"
41
- },
42
- "dependencies": {
43
- "@headlessui/react": "^2.2.0",
44
- "@hookform/resolvers": "^5.0.1",
45
- "@next-safe-action/adapter-react-hook-form": "^2.0.2",
46
- "@react-input/mask": "^1.2.15",
47
- "@react-input/number-format": "^1.1.3",
48
- "@storybook/icons": "^1.3.0",
49
- "@storybook/preview-api": "^8.4.7",
50
- "@ts-stack/markdown": "^1.5.0",
51
- "@types/iframe-resizer": "3.5.13",
52
- "@ujet/websdk-headless": "^3.41.4",
53
- "@vanilla-extract/css": "^1.16.1",
54
- "@vanilla-extract/recipes": "^0.5.1 || ^0.5.5",
55
- "antd": "^5.22.5",
56
- "clsx": "^2.1.1",
57
- "framer-motion": "^12.9.2",
58
- "iframe-resizer": "^3.6.6",
59
- "lodash": "^4.17.21",
60
- "moment": "^2.30.1",
61
- "next-safe-action": "^8.0.2",
62
- "react-date-picker": "^11.0.0",
63
- "react-date-range": "^2.0.1",
64
- "react-hook-form": "^7.56.4",
65
- "react-markdown": "^9.1.0",
66
- "react-slick": "^0.30.2",
67
- "react-use": "^17.6.0",
68
- "react-wrap-balancer": "^1.1.1",
69
- "remark-gfm": "^4.0.1",
70
- "rsuite": "^5.75.0",
71
- "slick-carousel": "^1.8.1",
72
- "typed-css-modules": "^0.9.1",
73
- "vite-plugin-svgr": "^4.3.0",
74
- "zod": "^3.24.1",
75
- "zustand": "^4.5.5"
76
- },
77
- "peerDependencies": {
78
- "@vanilla-extract/css-utils": "^0.1.3 || ^0.1.4",
79
- "@vanilla-extract/recipes": "^0.5.1 || ^0.5.5",
80
- "@vanilla-extract/vite-plugin": "^4.0.3 || ^4.0.18",
81
- "next": "^14.1.4 || ^15.0.0 || ^16.0.0",
82
- "react": "^18.2.0 || ^19.0.0",
83
- "react-date-range": "^2.0.1",
84
- "react-dom": "^18.2.0 || ^19.0.0",
85
- "react-slick": "^0.30.2",
86
- "slick-carousel": "^1.8.1"
87
- },
88
- "devDependencies": {
89
- "@chromatic-com/storybook": "^1.9.0",
90
- "@eslint/js": "^9.39.4",
91
- "@rollup/plugin-alias": "^5.1.1",
92
- "@storybook/addon-essentials": "^8.4.7",
93
- "@storybook/addon-interactions": "^8.4.7",
94
- "@storybook/addon-links": "^8.4.7",
95
- "@storybook/addon-mdx-gfm": "^8.4.7",
96
- "@storybook/addon-onboarding": "^8.4.7",
97
- "@storybook/addon-themes": "^8.4.7",
98
- "@storybook/blocks": "^8.4.7",
99
- "@storybook/react": "^8.6.14",
100
- "@storybook/react-vite": "^8.4.7",
101
- "@storybook/test": "^8.6.14",
102
- "@svgr/core": "^8.1.0",
103
- "@svgr/plugin-prettier": "^8.1.0",
104
- "@svgr/plugin-svgo": "^8.1.0",
105
- "@types/lodash": "^4.17.17",
106
- "@types/node": "^20.19.0",
107
- "@types/react": "^19.0.0",
108
- "@types/react-date-range": "^1.4.9",
109
- "@types/react-datepicker": "^6.2.0",
110
- "@types/react-dom": "^19.0.0",
111
- "@types/react-slick": "^0.23.13",
112
- "@typescript-eslint/eslint-plugin": "^8.0.0",
113
- "@typescript-eslint/parser": "^8.0.0",
114
- "@vanilla-extract/css-utils": "^0.1.4",
115
- "@vanilla-extract/recipes": "^0.5.5",
116
- "@vanilla-extract/vite-plugin": "^4.0.18",
117
- "@vitejs/plugin-react-swc": "^3.7.2",
118
- "esbuild-vanilla-image-loader": "^0.1.3",
119
- "eslint": "^9.0.0",
120
- "eslint-plugin-react-hooks": "^5.1.0",
121
- "eslint-plugin-react-refresh": "^0.4.16",
122
- "eslint-plugin-storybook": "^0.8.0",
123
- "glob": "^10.4.5",
124
- "globals": "^15.15.0",
125
- "husky": "^9.1.7",
126
- "next": "^16.0.0",
127
- "prettier": "3.2.5",
128
- "react": "^19.0.0",
129
- "react-dom": "^19.0.0",
130
- "rollup-plugin-preserve-directives": "^0.4.0",
131
- "rollup-plugin-svg-import": "^3.0.0",
132
- "rollup-plugin-svgo": "^2.0.0",
133
- "storybook": "^8.4.7",
134
- "typescript": "^5.7.2",
135
- "typescript-eslint": "^8.57.0",
136
- "typescript-plugin-css-modules": "^5.1.0",
137
- "vite": "^5.4.11",
138
- "vite-plugin-dts": "^3.9.1",
139
- "vite-plugin-lib-inject-css": "^2.1.1",
140
- "vite-plugin-setting-css-module": "^1.1.4",
141
- "vite-tsconfig-paths": "^4.3.2"
142
- },
143
- "directories": {
144
- "lib": "lib"
145
- },
146
- "author": "axos-web-dev",
147
- "license": "ISC"
148
- }
1
+ {
2
+ "name": "@axos-web-dev/shared-components",
3
+ "description": "Axos shared components library for web.",
4
+ "version": "2.0.0-dev.15",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "module": "dist/main.js",
8
+ "types": "dist/main.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/main.d.ts",
12
+ "import": "./dist/main.js"
13
+ },
14
+ "./styles.css": "./dist/assets/index.css",
15
+ "./globals.css": "./dist/assets/globals.css",
16
+ "./themes/axos.css": "./dist/assets/themes/axos.css",
17
+ "./themes/premier.css": "./dist/assets/themes/premier.css",
18
+ "./dist/*": "./dist/*"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "sideEffects": [
24
+ "dist/assets/**/*.css"
25
+ ],
26
+ "scripts": {
27
+ "dev": "vite",
28
+ "build": "tsc --p ./tsconfig.build.json && vite build",
29
+ "lint": "eslint . --report-unused-disable-directives --max-warnings 0",
30
+ "preview": "vite preview",
31
+ "prepublishOnly": "npm run build",
32
+ "check-types": "tsc --pretty --noEmit",
33
+ "check-format": "prettier --check .",
34
+ "check-lint": "eslint .",
35
+ "format": "prettier --write .",
36
+ "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
37
+ "prepare": "husky",
38
+ "storybook": "storybook dev -p 6006",
39
+ "build-storybook": "storybook build",
40
+ "npm:link": "npm run build && npm link"
41
+ },
42
+ "dependencies": {
43
+ "@headlessui/react": "^2.2.0",
44
+ "@hookform/resolvers": "^5.0.1",
45
+ "@next-safe-action/adapter-react-hook-form": "^2.0.2",
46
+ "@react-input/mask": "^1.2.15",
47
+ "@react-input/number-format": "^1.1.3",
48
+ "@storybook/icons": "^1.3.0",
49
+ "@storybook/preview-api": "^8.4.7",
50
+ "@ts-stack/markdown": "^1.5.0",
51
+ "@types/iframe-resizer": "3.5.13",
52
+ "@ujet/websdk-headless": "^3.41.4",
53
+ "@vanilla-extract/css": "^1.16.1",
54
+ "@vanilla-extract/recipes": "^0.5.1 || ^0.5.5",
55
+ "antd": "^5.22.5",
56
+ "clsx": "^2.1.1",
57
+ "framer-motion": "^12.9.2",
58
+ "iframe-resizer": "^3.6.6",
59
+ "lodash": "^4.17.21",
60
+ "moment": "^2.30.1",
61
+ "next-safe-action": "^8.0.2",
62
+ "react-date-picker": "^11.0.0",
63
+ "react-date-range": "^2.0.1",
64
+ "react-hook-form": "^7.56.4",
65
+ "react-markdown": "^9.1.0",
66
+ "react-slick": "^0.30.2",
67
+ "react-use": "^17.6.0",
68
+ "react-wrap-balancer": "^1.1.1",
69
+ "remark-gfm": "^4.0.1",
70
+ "rsuite": "^5.75.0",
71
+ "slick-carousel": "^1.8.1",
72
+ "typed-css-modules": "^0.9.1",
73
+ "vite-plugin-svgr": "^4.3.0",
74
+ "zod": "^3.24.1",
75
+ "zustand": "^4.5.5"
76
+ },
77
+ "peerDependencies": {
78
+ "@vanilla-extract/css-utils": "^0.1.3 || ^0.1.4",
79
+ "@vanilla-extract/recipes": "^0.5.1 || ^0.5.5",
80
+ "@vanilla-extract/vite-plugin": "^4.0.3 || ^4.0.18",
81
+ "next": "^14.1.4 || ^15.0.0 || ^16.0.0",
82
+ "react": "^18.2.0 || ^19.0.0",
83
+ "react-date-range": "^2.0.1",
84
+ "react-dom": "^18.2.0 || ^19.0.0",
85
+ "react-slick": "^0.30.2",
86
+ "slick-carousel": "^1.8.1"
87
+ },
88
+ "devDependencies": {
89
+ "@chromatic-com/storybook": "^1.9.0",
90
+ "@eslint/js": "^9.39.4",
91
+ "@rollup/plugin-alias": "^5.1.1",
92
+ "@storybook/addon-essentials": "^8.4.7",
93
+ "@storybook/addon-interactions": "^8.4.7",
94
+ "@storybook/addon-links": "^8.4.7",
95
+ "@storybook/addon-mdx-gfm": "^8.4.7",
96
+ "@storybook/addon-onboarding": "^8.4.7",
97
+ "@storybook/addon-themes": "^8.4.7",
98
+ "@storybook/blocks": "^8.4.7",
99
+ "@storybook/react": "^8.6.14",
100
+ "@storybook/react-vite": "^8.4.7",
101
+ "@storybook/test": "^8.6.14",
102
+ "@svgr/core": "^8.1.0",
103
+ "@svgr/plugin-prettier": "^8.1.0",
104
+ "@svgr/plugin-svgo": "^8.1.0",
105
+ "@types/lodash": "^4.17.17",
106
+ "@types/node": "^20.19.0",
107
+ "@types/react": "^19.0.0",
108
+ "@types/react-date-range": "^1.4.9",
109
+ "@types/react-datepicker": "^6.2.0",
110
+ "@types/react-dom": "^19.0.0",
111
+ "@types/react-slick": "^0.23.13",
112
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
113
+ "@typescript-eslint/parser": "^8.0.0",
114
+ "@vanilla-extract/css-utils": "^0.1.4",
115
+ "@vanilla-extract/recipes": "^0.5.5",
116
+ "@vanilla-extract/vite-plugin": "^4.0.18",
117
+ "@vitejs/plugin-react-swc": "^3.7.2",
118
+ "esbuild-vanilla-image-loader": "^0.1.3",
119
+ "eslint": "^9.0.0",
120
+ "eslint-plugin-react-hooks": "^5.1.0",
121
+ "eslint-plugin-react-refresh": "^0.4.16",
122
+ "eslint-plugin-storybook": "^0.8.0",
123
+ "glob": "^10.4.5",
124
+ "globals": "^15.15.0",
125
+ "husky": "^9.1.7",
126
+ "next": "^16.0.0",
127
+ "prettier": "3.2.5",
128
+ "react": "^19.0.0",
129
+ "react-dom": "^19.0.0",
130
+ "rollup-plugin-preserve-directives": "^0.4.0",
131
+ "rollup-plugin-svg-import": "^3.0.0",
132
+ "rollup-plugin-svgo": "^2.0.0",
133
+ "storybook": "^8.4.7",
134
+ "typescript": "^5.7.2",
135
+ "typescript-eslint": "^8.57.0",
136
+ "typescript-plugin-css-modules": "^5.1.0",
137
+ "vite": "^5.4.11",
138
+ "vite-plugin-dts": "^3.9.1",
139
+ "vite-plugin-lib-inject-css": "^2.1.1",
140
+ "vite-plugin-setting-css-module": "^1.1.4",
141
+ "vite-tsconfig-paths": "^4.3.2"
142
+ },
143
+ "directories": {
144
+ "lib": "lib"
145
+ },
146
+ "author": "axos-web-dev",
147
+ "license": "ISC"
148
+ }