@axos-web-dev/shared-components 2.0.0-dev.28 → 2.0.0-dev.29

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.
@@ -4,4 +4,5 @@ export declare const gradientBorder: string;
4
4
  export declare const gradientBorderUfb: string;
5
5
  export declare const inputFocusKeyframes: string;
6
6
  export declare const gradientFocus: string;
7
+ export declare const focusAnimation: string;
7
8
  export declare const shadowAnimation: string;
@@ -9,9 +9,11 @@ var gradientBorder = "ic6iil2";
9
9
  var gradientBorderUfb = "ic6iil3";
10
10
  var inputFocusKeyframes = "ic6iil4";
11
11
  var gradientFocus = "ic6iil5";
12
+ var focusAnimation = "ic6iil6";
12
13
  var shadowAnimation = "ic6iil8";
13
14
  export {
14
15
  angle,
16
+ focusAnimation,
15
17
  gradientBorder,
16
18
  gradientBorderUfb,
17
19
  gradientFocus,
@@ -14,18 +14,9 @@ const Bubble = ({
14
14
  const isOpen = useOpenChat((state) => state.isOpen);
15
15
  return /* @__PURE__ */ jsx("div", { className: clsx(bubbleWrapper, shadowAnimation), children: /* @__PURE__ */ jsx("div", { className: inner, children: /* @__PURE__ */ jsxs("button", { className: clsx(bubbleButton, inner), onClick, children: [
16
16
  /* @__PURE__ */ jsx(AnimatePresence, { children: !isOpen ? /* @__PURE__ */ jsx("div", { className: "bubble-circle", children: /* @__PURE__ */ jsxs(
17
- motion.svg,
17
+ "svg",
18
18
  {
19
19
  xmlns: "http://www.w3.org/2000/svg",
20
- initial: { scale: 0.1, opacity: 0 },
21
- animate: {
22
- scale: 1,
23
- opacity: 1,
24
- transition: {
25
- default: { type: "spring" },
26
- opacity: { ease: [0, 0.71, 0.2, 1.01] }
27
- }
28
- },
29
20
  width: "24",
30
21
  height: "24",
31
22
  viewBox: "0 0 24 24",
@@ -6,9 +6,9 @@ import '../assets/themes/victorie.css';import '../assets/themes/ufb.css';import
6
6
  /* empty css */
7
7
  /* empty css */
8
8
  import clsx from "clsx";
9
- import React, { useRef, useEffect } from "react";
9
+ import React, { useRef, useState, useEffect } from "react";
10
10
  import { useNetworkState, useMount } from "react-use";
11
- import { gradientFocus } from "./AnimatedGradientBorder.css.js";
11
+ import { focusAnimation, gradientFocus } from "./AnimatedGradientBorder.css.js";
12
12
  import { ChatbotMessage } from "./ChatbotMessage.js";
13
13
  import { windowBarStyle, left_bar_section, chat_title, button_bar, chatbotMenuItem, chatbotMenu, chatEndDialogOverlay, chatFinishDialog, chatEndCircle, endChatButtonStyle, noAnswerButton, arrowFill, button_reset, buttonss_section, chatNetworkStatus, shimmerText, messagesContainerStyle, inputStyle, autoResize, sendButtonStyle, windowStyle, windowOpenStyle } from "./ChatWindow.css.js";
14
14
  import { EllipsisIcon } from "./EllipsisIcon.js";
@@ -53,6 +53,7 @@ const ChatWindow = ({
53
53
  const [input, setInput] = React.useState("");
54
54
  const messagesEndRef = useRef(null);
55
55
  const inputRef = useRef(null);
56
+ const [focused, setFocused] = useState(false);
56
57
  useEffect(() => {
57
58
  messagesEndRef.current?.scrollIntoView({ behavior: "smooth" });
58
59
  }, [messages]);
@@ -459,71 +460,89 @@ const ChatWindow = ({
459
460
  ),
460
461
  /* @__PURE__ */ jsx("div", { ref: messagesEndRef })
461
462
  ] }),
462
- /* @__PURE__ */ jsx("div", { style: { padding: "16px 16px 24px 16px" }, children: /* @__PURE__ */ jsx("form", { onSubmit: handleSend, className: clsx(gradientFocus), children: /* @__PURE__ */ jsxs(
463
- "div",
464
- {
465
- style: {
466
- display: "flex",
467
- padding: "12px 16px",
468
- background: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected ? "light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3))" : "#ffffff",
469
- borderRadius: 12
470
- },
471
- children: [
472
- /* @__PURE__ */ jsx(
473
- "textarea",
474
- {
475
- ref: inputRef,
476
- value: input,
477
- onChange: (e) => setInput(e.target.value),
478
- onKeyDown: (e) => {
479
- if (hasEscalated) {
480
- previewTyping(e.target?.value);
481
- }
482
- if (e.key === "Enter" && !e.shiftKey) {
483
- handleSend(e);
484
- }
485
- },
486
- placeholder: "Ask anything...",
487
- className: clsx(inputStyle, autoResize),
488
- autoFocus: true,
489
- disabled: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected,
490
- rows: 1
491
- }
492
- ),
493
- /* @__PURE__ */ jsx(
494
- "button",
495
- {
496
- className: clsx(
497
- sendButtonStyle,
498
- input.trim().length > 0 && "active"
499
- ),
500
- type: "submit",
501
- title: "Send message",
502
- disabled: isBlockedInput || inputDisabled || status !== "connected" || !input.trim() || messages.length == 0 || escalationDeflected,
503
- children: /* @__PURE__ */ jsx(
504
- "svg",
505
- {
506
- xmlns: "http://www.w3.org/2000/svg",
507
- width: "16",
508
- height: "16",
509
- viewBox: "0 0 16 16",
510
- fill: "none",
511
- children: /* @__PURE__ */ jsx(
512
- "path",
513
- {
514
- fillRule: "evenodd",
515
- clipRule: "evenodd",
516
- d: "M0.0030533 5.42479C0.0273417 5.1795 0.193529 4.9714 0.427369 4.89345L15.0114 0.0320896C15.236 -0.0427712 15.4836 0.0156801 15.651 0.183075C15.8184 0.35047 15.8769 0.598075 15.802 0.822659L10.9407 15.4067C10.8627 15.6406 10.6546 15.8068 10.4093 15.8311C10.164 15.8553 9.92737 15.7332 9.80508 15.5192L6.35411 9.47999L0.314925 6.02903C0.100912 5.90673 -0.0212351 5.67008 0.0030533 5.42479ZM7.59169 9.1263L9.64202 12.7144C9.85645 13.0896 10.4138 13.0344 10.5505 12.6244L13.9046 2.56191C14.0349 2.17103 13.6631 1.79916 13.2722 1.92946L3.20969 5.28362C2.79967 5.4203 2.74448 5.97766 3.11973 6.19209L6.70781 8.24242L9.90579 5.04443C10.1499 4.80036 10.5456 4.80036 10.7897 5.04443C11.0337 5.28851 11.0337 5.68424 10.7897 5.92832L7.59169 9.1263Z",
517
- fill: "#435164"
518
- }
519
- )
520
- }
521
- )
522
- }
523
- )
524
- ]
525
- }
526
- ) }) })
463
+ /* @__PURE__ */ jsx("div", { style: { padding: "16px 16px 24px 16px" }, children: /* @__PURE__ */ jsxs("form", { onSubmit: handleSend, className: clsx(gradientFocus), children: [
464
+ /* @__PURE__ */ jsx(
465
+ "div",
466
+ {
467
+ className: clsx(focused ? focusAnimation : ""),
468
+ style: {
469
+ position: "absolute",
470
+ // border: "1px solid red",
471
+ left: "10%",
472
+ width: "80%",
473
+ height: "40px",
474
+ zIndex: "-1"
475
+ }
476
+ }
477
+ ),
478
+ /* @__PURE__ */ jsxs(
479
+ "div",
480
+ {
481
+ style: {
482
+ display: "flex",
483
+ padding: "12px 16px",
484
+ background: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected ? "light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3))" : "#ffffff",
485
+ borderRadius: 12
486
+ },
487
+ children: [
488
+ /* @__PURE__ */ jsx(
489
+ "textarea",
490
+ {
491
+ ref: inputRef,
492
+ value: input,
493
+ onChange: (e) => setInput(e.target.value),
494
+ onKeyDown: (e) => {
495
+ if (hasEscalated) {
496
+ previewTyping(e.target?.value);
497
+ }
498
+ if (e.key === "Enter" && !e.shiftKey) {
499
+ handleSend(e);
500
+ }
501
+ },
502
+ onFocus: () => setFocused(true),
503
+ onBlur: () => setFocused(false),
504
+ placeholder: "Ask anything...",
505
+ className: clsx(inputStyle, autoResize),
506
+ autoFocus: true,
507
+ disabled: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected,
508
+ rows: 1
509
+ }
510
+ ),
511
+ /* @__PURE__ */ jsx(
512
+ "button",
513
+ {
514
+ className: clsx(
515
+ sendButtonStyle,
516
+ input.trim().length > 0 && "active"
517
+ ),
518
+ type: "submit",
519
+ title: "Send message",
520
+ disabled: isBlockedInput || inputDisabled || status !== "connected" || !input.trim() || messages.length == 0 || escalationDeflected,
521
+ children: /* @__PURE__ */ jsx(
522
+ "svg",
523
+ {
524
+ xmlns: "http://www.w3.org/2000/svg",
525
+ width: "20",
526
+ height: "20",
527
+ viewBox: "0 0 16 16",
528
+ fill: "none",
529
+ children: /* @__PURE__ */ jsx(
530
+ "path",
531
+ {
532
+ fillRule: "evenodd",
533
+ clipRule: "evenodd",
534
+ d: "M0.0030533 5.42479C0.0273417 5.1795 0.193529 4.9714 0.427369 4.89345L15.0114 0.0320896C15.236 -0.0427712 15.4836 0.0156801 15.651 0.183075C15.8184 0.35047 15.8769 0.598075 15.802 0.822659L10.9407 15.4067C10.8627 15.6406 10.6546 15.8068 10.4093 15.8311C10.164 15.8553 9.92737 15.7332 9.80508 15.5192L6.35411 9.47999L0.314925 6.02903C0.100912 5.90673 -0.0212351 5.67008 0.0030533 5.42479ZM7.59169 9.1263L9.64202 12.7144C9.85645 13.0896 10.4138 13.0344 10.5505 12.6244L13.9046 2.56191C14.0349 2.17103 13.6631 1.79916 13.2722 1.92946L3.20969 5.28362C2.79967 5.4203 2.74448 5.97766 3.11973 6.19209L6.70781 8.24242L9.90579 5.04443C10.1499 4.80036 10.5456 4.80036 10.7897 5.04443C11.0337 5.28851 11.0337 5.68424 10.7897 5.92832L7.59169 9.1263Z",
535
+ fill: "#435164"
536
+ }
537
+ )
538
+ }
539
+ )
540
+ }
541
+ )
542
+ ]
543
+ }
544
+ )
545
+ ] }) })
527
546
  ] });
528
547
  };
529
548
  export {
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsxs, jsx } from "react/jsx-runtime";
3
3
  import { useRef, useState, useEffect } from "react";
4
- import { useMount, useUnmount } from "react-use";
4
+ import { useLocation, useMount, useUnmount } from "react-use";
5
5
  import notificationSound from "../assets/notification.mp3.js";
6
6
  import { Bubble } from "./Bubble.js";
7
7
  import { chatbotAXB, chatbotUFB } from "./Chatbot.css.js";
@@ -34,6 +34,7 @@ const Chatbot = ({
34
34
  unblockInput,
35
35
  blockInput
36
36
  } = useOpenChat();
37
+ const location = useLocation();
37
38
  const { addMessage, addMessages, clearMessages, messages } = useMessages();
38
39
  const clientRef = useRef(null);
39
40
  const menuRef = useRef(null);
@@ -89,6 +90,10 @@ const Chatbot = ({
89
90
  env: {
90
91
  label: "env",
91
92
  value: projectEnv === "uat" ? "dev" : projectEnv
93
+ },
94
+ url: {
95
+ label: "url",
96
+ value: location.href
92
97
  }
93
98
  }
94
99
  };
@@ -333,7 +338,14 @@ const Chatbot = ({
333
338
  const onSendMessage = async (msg) => {
334
339
  const clientChatId = clientRef.current?.chat?.id;
335
340
  const refChatId = chatRef.current?.id;
336
- console.log("Sending message:", msg, "| client.chat.id:", clientChatId, "| chatRef.id:", refChatId);
341
+ console.log(
342
+ "Sending message:",
343
+ msg,
344
+ "| client.chat.id:",
345
+ clientChatId,
346
+ "| chatRef.id:",
347
+ refChatId
348
+ );
337
349
  try {
338
350
  await clientRef.current?.sendTextMessage(msg);
339
351
  } catch (error) {
@@ -188,7 +188,13 @@ const SetContainer = ({
188
188
  children
189
189
  }
190
190
  ),
191
- additionalDetails && /* @__PURE__ */ jsx("div", { className: clsx(setcontainer_section_additionaltext, "text_center"), children: /* @__PURE__ */ jsx(Fragment, { children: additionalDetails }) })
191
+ additionalDetails && /* @__PURE__ */ jsx(
192
+ "div",
193
+ {
194
+ className: clsx(setcontainer_section_additionaltext, "text_center"),
195
+ children: /* @__PURE__ */ jsx(Fragment, { children: additionalDetails })
196
+ }
197
+ )
192
198
  ] })
193
199
  },
194
200
  id
@@ -30,29 +30,26 @@
30
30
  }
31
31
  @keyframes ic6iil4 {
32
32
  0% {
33
- box-shadow: px -4px 12px -6px var(--_1073cm813);
33
+ box-shadow: px -4px 12px -6px var(--_1073cm817);
34
34
  }
35
35
  50% {
36
- box-shadow: 0px -14px 40px -10px var(--_1073cm813);
36
+ box-shadow: 0px -10px 14px -6px var(--_1073cm817);
37
37
  }
38
38
  100% {
39
- box-shadow: 0px -4px 12px -6px var(--_1073cm813);
40
- }
41
- }
42
- @keyframes ic6iil6 {
43
- from {
44
- box-shadow: 0 0 0 rgba(0, 0, 0, 0);
45
- }
46
- to {
47
- box-shadow: 0 0 16px 4px var(--_1073cm813);
39
+ box-shadow: 0px -4px 12px -6px var(--_1073cm817);
48
40
  }
49
41
  }
50
42
  @keyframes ic6iil7 {
51
- from {
52
- box-shadow: 0 0 16px 4px var(--_1073cm813);
43
+ 0% {
44
+ box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.10), 0 10px 10px 0 rgba(0, 0, 0, 0.04);
53
45
  }
54
- to {
55
- box-shadow: 0 0 rgba(0, 0, 0, 0);
46
+ 50% {
47
+ box-shadow: 0 0 16px 4px var(--_1073cm817),
48
+ 0 20px 25px 0 rgba(0, 0, 0, 0.10),
49
+ 0 10px 10px 0 rgba(0, 0, 0, 0.04);
50
+ }
51
+ 100% {
52
+ box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.10), 0 10px 10px 0 rgba(0, 0, 0, 0.04);
56
53
  }
57
54
  }
58
55
  .ic6iil2 {
@@ -71,16 +68,20 @@
71
68
  }
72
69
  .ic6iil5 {
73
70
  --angle: 90deg;
74
- border: 1px solid var(--_1073cm81c);
71
+ border: 1px solid var(--_1073cm81d);
75
72
  border-radius: 12px;
76
73
  background: linear-gradient(white) padding-box, var(--_1073cm815) border-box;
77
74
  }
78
75
  .ic6iil5:focus-within {
79
76
  border: 1px solid #404040;
77
+ }
78
+ .ic6iil6 {
79
+ width: 80%;
80
+ border-radius: 50%;
80
81
  animation: ic6iil4 2s ease-in-out infinite;
81
82
  }
82
83
  .ic6iil8 {
83
- animation: ic6iil7 0.4s ease forwards;
84
+ box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.10), 0 10px 10px 0 rgba(0, 0, 0, 0.04);
84
85
  }
85
86
  @media screen and (max-width:768px) {
86
87
  .ic6iil2 {
@@ -119,7 +120,6 @@
119
120
  background: linear-gradient(var(--_1073cm813)) padding-box, linear-gradient(var(--angle), var(--_1073cm815)) border-box;
120
121
  }
121
122
  .ic6iil8:hover {
122
- box-shadow: 0 0 16px 4px var(--_1073cm813);
123
- animation: ic6iil6 0.4s ease forwards;
123
+ animation: ic6iil7 2.5s infinite linear;
124
124
  }
125
125
  }
@@ -47,6 +47,7 @@
47
47
  z-index: 9999;
48
48
  overflow: hidden;
49
49
  background-color: var(--_1073cm813);
50
+ font: Inter, Lato;
50
51
  }
51
52
  ._1hpv6vm1 ._7u9pv32 {
52
53
  background-color: var(--_1073cm813);
@@ -97,6 +98,6 @@
97
98
  ._7u9pv32 {
98
99
  border-radius: 100px;
99
100
  width: 164px;
100
- height: 42px;
101
+ height: 48px;
101
102
  }
102
103
  }
@@ -1,6 +1,6 @@
1
1
  @keyframes _13n1jqk0 {
2
2
  from {
3
- box-shadow: 0 0 16px 4px var(--_1073cm813);
3
+ box-shadow: 0 0 16px 4px var(--_1073cm817);
4
4
  }
5
5
  to {
6
6
  box-shadow: none;
@@ -15,8 +15,8 @@
15
15
  }
16
16
  }
17
17
  ._13n1jqk1 {
18
- background: var(--_1073cm817);
19
- border-radius: 10px;
18
+ background: var(--_1073cm818);
19
+ border-radius: 24px;
20
20
  bottom: 15px;
21
21
  display: flex;
22
22
  border: 1px solid #E9EBEF;
@@ -34,24 +34,25 @@
34
34
  z-index: 10000;
35
35
  }
36
36
  ._13n1jqk2 {
37
- animation: _13n1jqk0 3s forwards;
38
- box-shadow: 0 0 16px 4px var(--_1073cm813);
37
+ animation: _13n1jqk0 2s forwards;
38
+ box-shadow: 0 0 16px 4px var(--_1073cm817);
39
39
  transform: translate(0px) scale(1);
40
40
  transition: transform 0.3s;
41
41
  visibility: visible;
42
+ animation-delay: 1s;
42
43
  }
43
44
  ._13n1jqk3 {
44
45
  align-items: center;
45
- background-color: var(--_1073cm817);
46
+ background-color: var(--_1073cm818);
46
47
  display: grid;
47
48
  grid-template-columns: 40px auto max-content;
48
49
  min-height: 50px;
49
- color: var(--_1073cm819);
50
+ color: var(--_1073cm81a);
50
51
  padding: 20px 24px;
51
52
  gap: 8px;
52
53
  }
53
54
  ._13n1jqk5 {
54
- color: var(--_1073cm819);
55
+ color: var(--_1073cm81a);
55
56
  font-weight: 700;
56
57
  font-size: 18px;
57
58
  line-height: 1.5;
@@ -59,7 +60,7 @@
59
60
  ._13n1jqk6 {
60
61
  display: flex;
61
62
  align-items: center;
62
- gap: 8px;
63
+ gap: 4px;
63
64
  }
64
65
  ._13n1jqk7 {
65
66
  width: 32px;
@@ -93,24 +94,24 @@ button:has(span:hover) ._13n1jqk7 {
93
94
  display: none;
94
95
  }
95
96
  ._13n1jqk9 {
96
- fill: var(--_1073cm819);
97
- color: var(--_1073cm819);
97
+ fill: var(--_1073cm81a);
98
+ color: var(--_1073cm81a);
98
99
  }
99
100
  ._13n1jqka {
100
101
  border: none;
101
102
  color: #1F1F1F;
102
103
  flex: 1 0 0;
103
104
  font-size: 16px;
104
- opacity: 0.7;
105
105
  outline: none;
106
106
  background: transparent;
107
107
  resize: none;
108
+ margin-right: 8px;
108
109
  }
109
110
  ._13n1jqka::placeholder {
110
- color: rgba(31,31,31,.38);
111
+ color: #435164;
111
112
  }
112
113
  ._1hpv6vm1 ._13n1jqka::placeholder {
113
- color: rgba(31,31,31,.58);
114
+ color: #435164;
114
115
  }
115
116
  ._13n1jqka:disabled {
116
117
  cursor: not-allowed;
@@ -120,7 +121,8 @@ button:has(span:hover) ._13n1jqk7 {
120
121
  min-height: 20px;
121
122
  }
122
123
  ._13n1jqkc {
123
- padding-inline: 20px;
124
+ display: flex;
125
+ align-items: center;
124
126
  background: transparent;
125
127
  border: none;
126
128
  }
@@ -180,13 +182,13 @@ button:has(span:hover) ._13n1jqk7 {
180
182
  ._13n1jqkh {
181
183
  font-size: 12px;
182
184
  text-align: center;
183
- background: var(--_1073cm817);
184
- color: var(--_1073cm819);
185
+ background: var(--_1073cm818);
186
+ color: var(--_1073cm81a);
185
187
  cursor: pointer;
186
188
  padding: 5px 12px;
187
189
  border-radius: 8px;
188
190
  width: min(60%,180px);
189
- border: 1px solid var(--_1073cm81c);
191
+ border: 1px solid var(--_1073cm81d);
190
192
  }
191
193
  ._13n1jqkh:hover {
192
194
  background: #f0f0f0;
@@ -210,14 +212,14 @@ button:has(span:hover) ._13n1jqk7 {
210
212
  }
211
213
  ._13n1jqkj {
212
214
  background: white;
213
- color: var(--_1073cm819);
214
- border: 1px solid var(--_1073cm81e);
215
+ color: var(--_1073cm81a);
216
+ border: 1px solid var(--_1073cm81f);
215
217
  }
216
218
  ._13n1jqkk {
217
219
  position: absolute;
218
220
  top: 48px;
219
221
  right: 70px;
220
- background: var(--_1073cm817);
222
+ background: var(--_1073cm818);
221
223
  padding: 4px 16px;
222
224
  border-radius: 16px;
223
225
  list-style: none;
@@ -258,7 +260,7 @@ button:has(span:hover) ._13n1jqk7 {
258
260
  }
259
261
  ._13n1jqkn {
260
262
  align-items: center;
261
- background-color: var(--_1073cm817);
263
+ background-color: var(--_1073cm818);
262
264
  bottom: 0;
263
265
  display: flex;
264
266
  justify-content: center;
@@ -302,23 +304,23 @@ button:has(span:hover) ._13n1jqk7 {
302
304
  background-color: #FFF0F3;
303
305
  }
304
306
  ._13n1jqkt {
305
- background-color: var(--_1073cm81b);
306
- color: var(--_1073cm819);
307
+ background-color: var(--_1073cm81c);
308
+ color: var(--_1073cm81a);
307
309
  align-self: flex-end;
308
310
  border-bottom-left-radius: 32px;
309
311
  }
310
312
  ._13n1jqku {
311
- background-color: var(--_1073cm81a);
312
- color: var(--_1073cm819);
313
+ background-color: var(--_1073cm81b);
314
+ color: var(--_1073cm81a);
313
315
  align-self: flex-start;
314
316
  border-bottom-right-radius: 32px;
315
317
  }
316
318
  ._13n1jqkw {
317
319
  background: linear-gradient(
318
320
  90deg,
319
- var(--_1073cm819) 0%,
321
+ var(--_1073cm81a) 0%,
320
322
  rgba(255,255,255,0.8) 50%,
321
- var(--_1073cm819) 100%
323
+ var(--_1073cm81a) 100%
322
324
  );
323
325
  background-size: 200% auto;
324
326
  background-clip: text;
@@ -334,8 +336,8 @@ button:has(span:hover) ._13n1jqk7 {
334
336
  table-layout: fixed;
335
337
  }
336
338
  ._13n1jqky {
337
- background: var(--_1073cm819);
338
- color: var(--_1073cm817);
339
+ background: var(--_1073cm81a);
340
+ color: var(--_1073cm818);
339
341
  padding-inline: 1.5rem;
340
342
  padding-top: 1em;
341
343
  padding-bottom: 1em;
@@ -347,13 +349,13 @@ button:has(span:hover) ._13n1jqk7 {
347
349
  text-align: center;
348
350
  }
349
351
  ._13n1jqk10 {
350
- background: var(--_1073cm817);
352
+ background: var(--_1073cm818);
351
353
  }
352
354
  ._13n1jqk10:nth-child(odd) {
353
- background: var(--_1073cm817);
355
+ background: var(--_1073cm818);
354
356
  }
355
357
  ._13n1jqk10:nth-child(even) {
356
- background: var(--_1073cm81a);
358
+ background: var(--_1073cm81b);
357
359
  }
358
360
  @media screen and (max-width: 768px) {
359
361
  ._13n1jqk1 {
@@ -41,12 +41,13 @@
41
41
  --_1073cm814: #1E629A;
42
42
  --_1073cm815: rgba(222, 244, 255, 1), rgba(30, 98, 154, 1), rgba(222, 244, 255, 1);
43
43
  --_1073cm816: #FFFFFF;
44
- --_1073cm817: #FFFFFF;
45
- --_1073cm818: #1E3860;
44
+ --_1073cm817: #2595F0a3;
45
+ --_1073cm818: #FFFFFF;
46
46
  --_1073cm819: #1E3860;
47
- --_1073cm81a: #F5F5F5;
48
- --_1073cm81b: #DEF4FF;
49
- --_1073cm81c: #F0F0F0;
50
- --_1073cm81d: #8C8C8C;
51
- --_1073cm81e: #B9C1CE;
47
+ --_1073cm81a: #1E3860;
48
+ --_1073cm81b: #F5F5F5;
49
+ --_1073cm81c: #DEF4FF;
50
+ --_1073cm81d: #F0F0F0;
51
+ --_1073cm81e: #8C8C8C;
52
+ --_1073cm81f: #B9C1CE;
52
53
  }
@@ -41,12 +41,13 @@
41
41
  --_1073cm814: #98DDFF;
42
42
  --_1073cm815: linear-gradient(90deg,rgba(222, 244, 255, 1) 0%, rgba(30, 98, 154, 1) 50%, rgba(222, 244, 255, 1) 100%);
43
43
  --_1073cm816: #FFFFFF;
44
- --_1073cm817: #FFFFFF;
45
- --_1073cm818: #1E3860;
46
- --_1073cm819: #FFFFFF;
47
- --_1073cm81a: #F5F5F5;
48
- --_1073cm81b: #DEF4FF;
49
- --_1073cm81c: #000000;
50
- --_1073cm81d: #1F1F1F;
51
- --_1073cm81e: #B9C1CE;
44
+ --_1073cm817: #2595F0;
45
+ --_1073cm818: #FFFFFF;
46
+ --_1073cm819: #1E3860;
47
+ --_1073cm81a: #FFFFFF;
48
+ --_1073cm81b: #F5F5F5;
49
+ --_1073cm81c: #DEF4FF;
50
+ --_1073cm81d: #000000;
51
+ --_1073cm81e: #1F1F1F;
52
+ --_1073cm81f: #B9C1CE;
52
53
  }
@@ -41,12 +41,13 @@
41
41
  --_1073cm814: #E18357;
42
42
  --_1073cm815: #EAD4BB, #806646 , #EAD4BB ;
43
43
  --_1073cm816: #1B1B1F;
44
- --_1073cm817: #FFFFFF;
45
- --_1073cm81e: #B9C1CE;
46
- --_1073cm818: #1E629A;
47
- --_1073cm819: #1B1B1F;
48
- --_1073cm81a: #EDEEF0;
49
- --_1073cm81b: #FFF8F6;
50
- --_1073cm81c: #F0F0F0;
51
- --_1073cm81d: #000000;
44
+ --_1073cm817: #E18357;
45
+ --_1073cm818: #FFFFFF;
46
+ --_1073cm81f: #B9C1CE;
47
+ --_1073cm819: #1E629A;
48
+ --_1073cm81a: #1B1B1F;
49
+ --_1073cm81b: #EDEEF0;
50
+ --_1073cm81c: #FFF8F6;
51
+ --_1073cm81d: #F0F0F0;
52
+ --_1073cm81e: #000000;
52
53
  }
@@ -41,12 +41,13 @@
41
41
  --_1073cm814: #98DDFF;
42
42
  --_1073cm815: linear-gradient(90deg,rgba(222, 244, 255, 1) 0%, rgba(40, 88, 125, 1) 50%, rgba(222, 244, 255, 1) 100%);
43
43
  --_1073cm816: #FFFFFF;
44
- --_1073cm817: #FFFFFF;
45
- --_1073cm818: #28587d;
46
- --_1073cm819: #FFFFFF;
47
- --_1073cm81a: #F5F5F5;
48
- --_1073cm81b: #DEF4FF;
49
- --_1073cm81c: #000000;
50
- --_1073cm81d: #1F1F1F;
51
- --_1073cm81e: #B9C1CE;
44
+ --_1073cm817: #2595F0;
45
+ --_1073cm818: #FFFFFF;
46
+ --_1073cm819: #28587d;
47
+ --_1073cm81a: #FFFFFF;
48
+ --_1073cm81b: #F5F5F5;
49
+ --_1073cm81c: #DEF4FF;
50
+ --_1073cm81d: #000000;
51
+ --_1073cm81e: #1F1F1F;
52
+ --_1073cm81f: #B9C1CE;
52
53
  }
@@ -69,6 +69,7 @@ export declare const axosTheme: string, vars: {
69
69
  border: `var(--${string})`;
70
70
  borderGradient: `var(--${string})`;
71
71
  icon: `var(--${string})`;
72
+ glowShadow: `var(--${string})`;
72
73
  };
73
74
  window: {
74
75
  background: `var(--${string})`;
@@ -1,6 +1,6 @@
1
1
  import '../assets/themes/axos.css';/* empty css */
2
2
  var axosTheme = "_1073cm80";
3
- var vars = { colors: { primary: { background: "var(--_1073cm81)", backgroundButton: "var(--_1073cm82)", body: "var(--_1073cm83)", border: "var(--_1073cm84)", headline: "var(--_1073cm85)", textButton: "var(--_1073cm86)", textGradient: "var(--_1073cm87)" }, secondary: { background: "var(--_1073cm88)", backgroundButton: "var(--_1073cm89)", body: "var(--_1073cm8a)", border: "var(--_1073cm8b)", headline: "var(--_1073cm8c)", textButton: "var(--_1073cm8d)", textGradient: "var(--_1073cm8e)" }, tertiary: { background: "var(--_1073cm8f)", backgroundButton: "var(--_1073cm8g)", body: "var(--_1073cm8h)", border: "var(--_1073cm8i)", headline: "var(--_1073cm8j)", textButton: "var(--_1073cm8k)", textGradient: "var(--_1073cm8l)" }, quaternary: { background: "var(--_1073cm8m)", backgroundButton: "var(--_1073cm8n)", body: "var(--_1073cm8o)", border: "var(--_1073cm8p)", headline: "var(--_1073cm8q)", textButton: "var(--_1073cm8r)", textGradient: "var(--_1073cm8s)" } }, error: "var(--_1073cm8t)", disabled: { border: "var(--_1073cm8u)", color: "var(--_1073cm8v)", background: "var(--_1073cm8w)" }, icons: { check: { primary: "var(--_1073cm8x)", secondary: "var(--_1073cm8y)" } }, table: { highlight: "var(--_1073cm8z)", color: "var(--_1073cm810)" }, footer: { link: { color: "var(--_1073cm811)" } }, selecction: { icon: { color: "var(--_1073cm812)" } }, chatbot: { bubble: { background: "var(--_1073cm813)", border: "var(--_1073cm814)", borderGradient: "var(--_1073cm815)", icon: "var(--_1073cm816)" }, window: { background: "var(--_1073cm817)", headerBackground: "var(--_1073cm818)", headerText: "var(--_1073cm819)", agentBackground: "var(--_1073cm81a)", userBackground: "var(--_1073cm81b)", inputBorder: "var(--_1073cm81c)", timestampColor: "var(--_1073cm81d)", borderBtn: "var(--_1073cm81e)" } } };
3
+ var vars = { colors: { primary: { background: "var(--_1073cm81)", backgroundButton: "var(--_1073cm82)", body: "var(--_1073cm83)", border: "var(--_1073cm84)", headline: "var(--_1073cm85)", textButton: "var(--_1073cm86)", textGradient: "var(--_1073cm87)" }, secondary: { background: "var(--_1073cm88)", backgroundButton: "var(--_1073cm89)", body: "var(--_1073cm8a)", border: "var(--_1073cm8b)", headline: "var(--_1073cm8c)", textButton: "var(--_1073cm8d)", textGradient: "var(--_1073cm8e)" }, tertiary: { background: "var(--_1073cm8f)", backgroundButton: "var(--_1073cm8g)", body: "var(--_1073cm8h)", border: "var(--_1073cm8i)", headline: "var(--_1073cm8j)", textButton: "var(--_1073cm8k)", textGradient: "var(--_1073cm8l)" }, quaternary: { background: "var(--_1073cm8m)", backgroundButton: "var(--_1073cm8n)", body: "var(--_1073cm8o)", border: "var(--_1073cm8p)", headline: "var(--_1073cm8q)", textButton: "var(--_1073cm8r)", textGradient: "var(--_1073cm8s)" } }, error: "var(--_1073cm8t)", disabled: { border: "var(--_1073cm8u)", color: "var(--_1073cm8v)", background: "var(--_1073cm8w)" }, icons: { check: { primary: "var(--_1073cm8x)", secondary: "var(--_1073cm8y)" } }, table: { highlight: "var(--_1073cm8z)", color: "var(--_1073cm810)" }, footer: { link: { color: "var(--_1073cm811)" } }, selecction: { icon: { color: "var(--_1073cm812)" } }, chatbot: { bubble: { background: "var(--_1073cm813)", border: "var(--_1073cm814)", borderGradient: "var(--_1073cm815)", icon: "var(--_1073cm816)", glowShadow: "var(--_1073cm817)" }, window: { background: "var(--_1073cm818)", headerBackground: "var(--_1073cm819)", headerText: "var(--_1073cm81a)", agentBackground: "var(--_1073cm81b)", userBackground: "var(--_1073cm81c)", inputBorder: "var(--_1073cm81d)", timestampColor: "var(--_1073cm81e)", borderBtn: "var(--_1073cm81f)" } } };
4
4
  export {
5
5
  axosTheme,
6
6
  vars
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.28",
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": "^4.22.0",
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.29",
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": "npm run build && 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": "^4.22.0",
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
+ }