@axos-web-dev/shared-components 1.0.100-dev.53-speedbumpextlinks → 1.0.100-dev.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Chatbot/ChatWindow.css.d.ts +1 -1
- package/dist/Chatbot/ChatWindow.css.js +4 -4
- package/dist/Chatbot/ChatWindow.js +8 -4
- package/dist/Chatbot/Chatbot.js +14 -0
- package/dist/Chatbot/ChatbotMessage.js +28 -2
- package/dist/Chatbot/store/messages.js +9 -13
- package/dist/Table/Table.d.ts +1 -1
- package/dist/assets/Chatbot/ChatWindow.css +19 -11
- package/dist/assets/DownloadTile/DownloadTile.css +1 -1
- package/package.json +136 -136
|
@@ -3,10 +3,10 @@ export declare const windowOpenStyle: string;
|
|
|
3
3
|
export declare const windowBarStyle: string;
|
|
4
4
|
export declare const left_bar_section: string;
|
|
5
5
|
export declare const chat_title: string;
|
|
6
|
+
export declare const buttonss_section: string;
|
|
6
7
|
export declare const button_bar: string;
|
|
7
8
|
export declare const button_reset: string;
|
|
8
9
|
export declare const arrowFill: string;
|
|
9
|
-
export declare const buttonss_section: string;
|
|
10
10
|
export declare const inputStyle: string;
|
|
11
11
|
/**
|
|
12
12
|
* Style for automatically resizing a textarea or input element.
|
|
@@ -9,10 +9,10 @@ var windowOpenStyle = "_13n1jqk1";
|
|
|
9
9
|
var windowBarStyle = "_13n1jqk2";
|
|
10
10
|
var left_bar_section = "_13n1jqk3";
|
|
11
11
|
var chat_title = "_13n1jqk4";
|
|
12
|
-
var
|
|
13
|
-
var
|
|
14
|
-
var
|
|
15
|
-
var
|
|
12
|
+
var buttonss_section = "_13n1jqk5";
|
|
13
|
+
var button_bar = "_13n1jqk6";
|
|
14
|
+
var button_reset = "_13n1jqk7";
|
|
15
|
+
var arrowFill = "_13n1jqk8";
|
|
16
16
|
var inputStyle = "_13n1jqk9";
|
|
17
17
|
var autoResize = "_13n1jqka";
|
|
18
18
|
var sendButtonStyle = "_13n1jqkb";
|
|
@@ -141,11 +141,12 @@ const ChatWindow = ({
|
|
|
141
141
|
},
|
|
142
142
|
className: clsx(button_bar),
|
|
143
143
|
style: {
|
|
144
|
-
border: "none",
|
|
144
|
+
border: menuOpen ? `1px solid ${vars.chatbot.window.headerText}` : "none",
|
|
145
145
|
cursor: "pointer",
|
|
146
146
|
padding: 0,
|
|
147
147
|
display: "flex",
|
|
148
|
-
alignContent: "center"
|
|
148
|
+
alignContent: "center",
|
|
149
|
+
background: menuOpen ? "#0000000f" : void 0
|
|
149
150
|
},
|
|
150
151
|
children: /* @__PURE__ */ jsx(EllipsisIcon, {})
|
|
151
152
|
}
|
|
@@ -309,9 +310,12 @@ const ChatWindow = ({
|
|
|
309
310
|
onClose && /* @__PURE__ */ jsxs(
|
|
310
311
|
"button",
|
|
311
312
|
{
|
|
312
|
-
onClick:
|
|
313
|
+
onClick: () => {
|
|
314
|
+
onClose();
|
|
315
|
+
setMenuOpen(false);
|
|
316
|
+
},
|
|
313
317
|
className: clsx(button_reset, button_bar),
|
|
314
|
-
"aria-label": "Close chat",
|
|
318
|
+
"aria-label": "Close chat window",
|
|
315
319
|
title: "Close",
|
|
316
320
|
children: [
|
|
317
321
|
/* @__PURE__ */ jsx(
|
package/dist/Chatbot/Chatbot.js
CHANGED
|
@@ -30,6 +30,17 @@ const Chatbot = ({
|
|
|
30
30
|
["axos", 1],
|
|
31
31
|
["ufb", 3]
|
|
32
32
|
]);
|
|
33
|
+
const typingMessage = {
|
|
34
|
+
$sid: "typing-1",
|
|
35
|
+
type: "system",
|
|
36
|
+
// or a custom type like "typing"
|
|
37
|
+
text: "AI is typing...",
|
|
38
|
+
sender: { id: "system", type: "system" },
|
|
39
|
+
$timestamp: /* @__PURE__ */ new Date(),
|
|
40
|
+
$userType: "system",
|
|
41
|
+
$index: -10,
|
|
42
|
+
$userId: 0
|
|
43
|
+
};
|
|
33
44
|
const custom_data = {
|
|
34
45
|
unsigned: {
|
|
35
46
|
facingBrandId: {
|
|
@@ -67,6 +78,9 @@ const Chatbot = ({
|
|
|
67
78
|
const onChatMessageHandler = async (message) => {
|
|
68
79
|
console.log("Received message:", message);
|
|
69
80
|
addMessage(message);
|
|
81
|
+
if (message.$userType != "virtual_agent") {
|
|
82
|
+
addMessage(typingMessage);
|
|
83
|
+
}
|
|
70
84
|
};
|
|
71
85
|
const onChatTypingStartedHandler = async (identity) => {
|
|
72
86
|
console.log("Typing started by:", identity);
|
|
@@ -9,7 +9,7 @@ import '../assets/themes/victorie.css';import '../assets/themes/ufb.css';import
|
|
|
9
9
|
/* empty css */
|
|
10
10
|
/* empty css */
|
|
11
11
|
import clsx from "clsx";
|
|
12
|
-
import { notificationStyle, endChatButtonStyle, messageStyle, user_msg, agent_msg, inline_button_wrapper, inline_button } from "./ChatWindow.css.js";
|
|
12
|
+
import { shimmerText, notificationStyle, endChatButtonStyle, messageStyle, user_msg, agent_msg, inline_button_wrapper, inline_button } from "./ChatWindow.css.js";
|
|
13
13
|
function timeAgo(date) {
|
|
14
14
|
const seconds = Math.floor(((/* @__PURE__ */ new Date()).getTime() - date.getTime()) / 1e3);
|
|
15
15
|
if (seconds < 60) return "Just now";
|
|
@@ -34,7 +34,33 @@ const ChatbotMessage = ({
|
|
|
34
34
|
return () => clearInterval(interval);
|
|
35
35
|
}, [msg.$timestamp]);
|
|
36
36
|
if (msg.$sid === "typing-1") {
|
|
37
|
-
return /* @__PURE__ */ jsx(
|
|
37
|
+
return /* @__PURE__ */ jsx(
|
|
38
|
+
"div",
|
|
39
|
+
{
|
|
40
|
+
className: clsx(),
|
|
41
|
+
style: {
|
|
42
|
+
textAlign: "left",
|
|
43
|
+
alignSelf: "flex-start",
|
|
44
|
+
color: "#1e3860",
|
|
45
|
+
borderRadius: 16,
|
|
46
|
+
padding: "8px 8px",
|
|
47
|
+
maxWidth: "80%",
|
|
48
|
+
marginBottom: 2
|
|
49
|
+
},
|
|
50
|
+
children: /* @__PURE__ */ jsx(
|
|
51
|
+
"div",
|
|
52
|
+
{
|
|
53
|
+
style: {
|
|
54
|
+
fontSize: 14,
|
|
55
|
+
display: "flex",
|
|
56
|
+
flexDirection: "column",
|
|
57
|
+
gap: 4
|
|
58
|
+
},
|
|
59
|
+
children: /* @__PURE__ */ jsx("p", { className: shimmerText, children: "AI thinking..." })
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
}
|
|
63
|
+
);
|
|
38
64
|
}
|
|
39
65
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
40
66
|
msg.type == "noti" && msg.$userType == "system" && msg.event == "escalationStarted" && /* @__PURE__ */ jsx("div", { className: notificationStyle, children: "We are connecting you with a human agent..." }, msg.$index),
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
import { create } from "zustand";
|
|
2
2
|
const useMessages = create((set) => ({
|
|
3
3
|
messages: [],
|
|
4
|
-
addMessage: (message) => set((state) =>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
messages: state.messages.filter((msg) => msg.$sid !== id)
|
|
14
|
-
}));
|
|
15
|
-
}, 800)
|
|
16
|
-
),
|
|
4
|
+
addMessage: (message) => set((state) => {
|
|
5
|
+
const cleaned = state.messages.filter((m) => m.$sid !== "typing-1");
|
|
6
|
+
return { messages: [...cleaned, message] };
|
|
7
|
+
}),
|
|
8
|
+
removeMessage: (id) => set((state) => ({
|
|
9
|
+
messages: state.messages.filter(
|
|
10
|
+
(msg) => "$sid" in msg && msg.$sid !== id
|
|
11
|
+
)
|
|
12
|
+
})),
|
|
17
13
|
addMessages: (newMessages) => set((state) => ({ messages: [...state.messages, ...newMessages] })),
|
|
18
14
|
clearMessages: () => set({ messages: [] })
|
|
19
15
|
}));
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
61
61
|
is?: string | undefined;
|
|
62
62
|
exportparts?: string | undefined;
|
|
63
63
|
part?: string | undefined;
|
|
64
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
64
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
65
65
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
66
66
|
popoverTarget?: string | undefined;
|
|
67
67
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
@@ -47,6 +47,11 @@
|
|
|
47
47
|
line-height: 1.5;
|
|
48
48
|
}
|
|
49
49
|
._13n1jqk5 {
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
gap: 8px;
|
|
53
|
+
}
|
|
54
|
+
._13n1jqk6 {
|
|
50
55
|
width: 32px;
|
|
51
56
|
height: 32px;
|
|
52
57
|
border-radius: 50%;
|
|
@@ -56,28 +61,31 @@
|
|
|
56
61
|
justify-content: center;
|
|
57
62
|
align-items: center;
|
|
58
63
|
}
|
|
59
|
-
._13n1jqk6 {
|
|
64
|
+
._13n1jqk6:hover {
|
|
65
|
+
background: #0000000f;
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
}
|
|
68
|
+
button:has(span:hover) ._13n1jqk6 {
|
|
69
|
+
background: #0000000f;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
}
|
|
72
|
+
._13n1jqk7 {
|
|
60
73
|
border: none;
|
|
61
74
|
cursor: pointer;
|
|
62
75
|
line-height: 1;
|
|
63
76
|
margin-left: 8px;
|
|
64
77
|
padding: 0;
|
|
65
78
|
}
|
|
66
|
-
.
|
|
79
|
+
._13n1jqk7 >:first-child {
|
|
67
80
|
display: block;
|
|
68
81
|
}
|
|
69
|
-
.
|
|
82
|
+
._13n1jqk7 > :last-child {
|
|
70
83
|
display: none;
|
|
71
84
|
}
|
|
72
|
-
.
|
|
85
|
+
._13n1jqk8 {
|
|
73
86
|
fill: var(--_1073cm819);
|
|
74
87
|
color: var(--_1073cm819);
|
|
75
88
|
}
|
|
76
|
-
._13n1jqk8 {
|
|
77
|
-
display: flex;
|
|
78
|
-
align-items: center;
|
|
79
|
-
gap: 8px;
|
|
80
|
-
}
|
|
81
89
|
._13n1jqk9 {
|
|
82
90
|
border: none;
|
|
83
91
|
color: #1F1F1F;
|
|
@@ -327,10 +335,10 @@
|
|
|
327
335
|
}
|
|
328
336
|
}
|
|
329
337
|
@media screen and (max-width:768px) {
|
|
330
|
-
.
|
|
338
|
+
._13n1jqk7 >:first-child {
|
|
331
339
|
display: none;
|
|
332
340
|
}
|
|
333
|
-
.
|
|
341
|
+
._13n1jqk7 > :last-child {
|
|
334
342
|
display: block;
|
|
335
343
|
}
|
|
336
344
|
}
|
package/package.json
CHANGED
|
@@ -1,136 +1,136 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@axos-web-dev/shared-components",
|
|
3
|
-
"description": "Axos shared components library for web.",
|
|
4
|
-
"version": "1.0.100-dev.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"module": "dist/main.js",
|
|
7
|
-
"types": "dist/main.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"sideEffects": [
|
|
12
|
-
"dist/assets/**/*.css"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"dev": "vite",
|
|
16
|
-
"build": "tsc --p ./tsconfig.build.json && vite build",
|
|
17
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"prepublishOnly": "npm run build",
|
|
20
|
-
"check-types": "tsc --pretty --noEmit",
|
|
21
|
-
"check-format": "prettier --check .",
|
|
22
|
-
"check-lint": "eslint . --ext ts --ext tsx --ext js",
|
|
23
|
-
"format": "prettier --write .",
|
|
24
|
-
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
|
|
25
|
-
"prepare": "husky",
|
|
26
|
-
"storybook": "storybook dev -p 6006",
|
|
27
|
-
"build-storybook": "storybook build",
|
|
28
|
-
"npm:link": "npm run build && npm link"
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@headlessui/react": "^2.2.0",
|
|
32
|
-
"@hookform/resolvers": "^3.10.0",
|
|
33
|
-
"@next-safe-action/adapter-react-hook-form": "^2.0.0",
|
|
34
|
-
"@react-input/mask": "^1.2.15",
|
|
35
|
-
"@react-input/number-format": "^1.1.3",
|
|
36
|
-
"@storybook/icons": "^1.3.0",
|
|
37
|
-
"@storybook/preview-api": "^8.4.7",
|
|
38
|
-
"@ts-stack/markdown": "^1.5.0",
|
|
39
|
-
"@types/iframe-resizer": "3.5.13",
|
|
40
|
-
"@ujet/websdk-headless": "^3.41.4",
|
|
41
|
-
"@vanilla-extract/css": "^1.16.1",
|
|
42
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
43
|
-
"antd": "^5.22.5",
|
|
44
|
-
"clsx": "^2.1.1",
|
|
45
|
-
"framer-motion": "^12.9.2",
|
|
46
|
-
"iframe-resizer": "^3.6.6",
|
|
47
|
-
"lodash": "^4.17.21",
|
|
48
|
-
"moment": "^2.30.1",
|
|
49
|
-
"next-safe-action": "^8.0.2",
|
|
50
|
-
"react-date-picker": "^11.0.0",
|
|
51
|
-
"react-date-range": "^2.0.1",
|
|
52
|
-
"react-hook-form": "^7.54.2",
|
|
53
|
-
"react-markdown": "^9.1.0",
|
|
54
|
-
"react-popper": "^2.3.0",
|
|
55
|
-
"react-slick": "^0.30.2",
|
|
56
|
-
"react-use": "^17.6.0",
|
|
57
|
-
"react-wrap-balancer": "^1.1.1",
|
|
58
|
-
"remark-gfm": "^4.0.1",
|
|
59
|
-
"rsuite": "^5.75.0",
|
|
60
|
-
"slick-carousel": "^1.8.1",
|
|
61
|
-
"typed-css-modules": "^0.9.1",
|
|
62
|
-
"vite-plugin-svgr": "^4.3.0",
|
|
63
|
-
"zod": "^3.24.1",
|
|
64
|
-
"zustand": "^4.5.5"
|
|
65
|
-
},
|
|
66
|
-
"peerDependencies": {
|
|
67
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
68
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
69
|
-
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
70
|
-
"next": "^14.1.4",
|
|
71
|
-
"react": "^18.2.0",
|
|
72
|
-
"react-date-range": "^2.0.1",
|
|
73
|
-
"react-dom": "^18.2.0",
|
|
74
|
-
"react-popper": "^2.3.0",
|
|
75
|
-
"react-slick": "^0.30.2",
|
|
76
|
-
"slick-carousel": "^1.8.1"
|
|
77
|
-
},
|
|
78
|
-
"devDependencies": {
|
|
79
|
-
"@chromatic-com/storybook": "^1.9.0",
|
|
80
|
-
"@rollup/plugin-alias": "^5.1.1",
|
|
81
|
-
"@storybook/addon-essentials": "^8.4.7",
|
|
82
|
-
"@storybook/addon-interactions": "^8.4.7",
|
|
83
|
-
"@storybook/addon-links": "^8.4.7",
|
|
84
|
-
"@storybook/addon-mdx-gfm": "^8.4.7",
|
|
85
|
-
"@storybook/addon-onboarding": "^8.4.7",
|
|
86
|
-
"@storybook/addon-themes": "^8.4.7",
|
|
87
|
-
"@storybook/blocks": "^8.4.7",
|
|
88
|
-
"@storybook/react": "^8.6.14",
|
|
89
|
-
"@storybook/react-vite": "^8.4.7",
|
|
90
|
-
"@storybook/test": "^8.6.14",
|
|
91
|
-
"@svgr/core": "^8.1.0",
|
|
92
|
-
"@svgr/plugin-prettier": "^8.1.0",
|
|
93
|
-
"@svgr/plugin-svgo": "^8.1.0",
|
|
94
|
-
"@types/lodash": "^4.17.17",
|
|
95
|
-
"@types/node": "^20.19.0",
|
|
96
|
-
"@types/react": "^18.3.23",
|
|
97
|
-
"@types/react-date-range": "^1.4.9",
|
|
98
|
-
"@types/react-datepicker": "^6.2.0",
|
|
99
|
-
"@types/react-dom": "^18.3.7",
|
|
100
|
-
"@types/react-slick": "^0.23.13",
|
|
101
|
-
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
102
|
-
"@typescript-eslint/parser": "^7.18.0",
|
|
103
|
-
"@vanilla-extract/css-utils": "^0.1.4",
|
|
104
|
-
"@vanilla-extract/recipes": "^0.5.5",
|
|
105
|
-
"@vanilla-extract/vite-plugin": "^4.0.18",
|
|
106
|
-
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
107
|
-
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
108
|
-
"eslint": "^8.57.1",
|
|
109
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
110
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
111
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
112
|
-
"glob": "^10.4.5",
|
|
113
|
-
"husky": "^9.1.7",
|
|
114
|
-
"next": "^14.1.4",
|
|
115
|
-
"prettier": "3.2.5",
|
|
116
|
-
"react": "^18.3.1",
|
|
117
|
-
"react-dom": "^18.3.1",
|
|
118
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
119
|
-
"rollup-plugin-svg-import": "^3.0.0",
|
|
120
|
-
"rollup-plugin-svgo": "^2.0.0",
|
|
121
|
-
"storybook": "^8.4.7",
|
|
122
|
-
"typescript": "^5.7.2",
|
|
123
|
-
"typescript-plugin-css-modules": "^5.1.0",
|
|
124
|
-
"vite": "^5.4.11",
|
|
125
|
-
"vite-plugin-dts": "^3.9.1",
|
|
126
|
-
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
127
|
-
"vite-plugin-setting-css-module": "^1.1.4",
|
|
128
|
-
"vite-tsconfig-paths": "^4.3.2"
|
|
129
|
-
},
|
|
130
|
-
"main": "index.js",
|
|
131
|
-
"directories": {
|
|
132
|
-
"lib": "lib"
|
|
133
|
-
},
|
|
134
|
-
"author": "axos-web-dev",
|
|
135
|
-
"license": "ISC"
|
|
136
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@axos-web-dev/shared-components",
|
|
3
|
+
"description": "Axos shared components library for web.",
|
|
4
|
+
"version": "1.0.100-dev.55",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "dist/main.js",
|
|
7
|
+
"types": "dist/main.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"sideEffects": [
|
|
12
|
+
"dist/assets/**/*.css"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"build": "tsc --p ./tsconfig.build.json && vite build",
|
|
17
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
|
+
"check-types": "tsc --pretty --noEmit",
|
|
21
|
+
"check-format": "prettier --check .",
|
|
22
|
+
"check-lint": "eslint . --ext ts --ext tsx --ext js",
|
|
23
|
+
"format": "prettier --write .",
|
|
24
|
+
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
|
|
25
|
+
"prepare": "husky",
|
|
26
|
+
"storybook": "storybook dev -p 6006",
|
|
27
|
+
"build-storybook": "storybook build",
|
|
28
|
+
"npm:link": "npm run build && npm link"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@headlessui/react": "^2.2.0",
|
|
32
|
+
"@hookform/resolvers": "^3.10.0",
|
|
33
|
+
"@next-safe-action/adapter-react-hook-form": "^2.0.0",
|
|
34
|
+
"@react-input/mask": "^1.2.15",
|
|
35
|
+
"@react-input/number-format": "^1.1.3",
|
|
36
|
+
"@storybook/icons": "^1.3.0",
|
|
37
|
+
"@storybook/preview-api": "^8.4.7",
|
|
38
|
+
"@ts-stack/markdown": "^1.5.0",
|
|
39
|
+
"@types/iframe-resizer": "3.5.13",
|
|
40
|
+
"@ujet/websdk-headless": "^3.41.4",
|
|
41
|
+
"@vanilla-extract/css": "^1.16.1",
|
|
42
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
43
|
+
"antd": "^5.22.5",
|
|
44
|
+
"clsx": "^2.1.1",
|
|
45
|
+
"framer-motion": "^12.9.2",
|
|
46
|
+
"iframe-resizer": "^3.6.6",
|
|
47
|
+
"lodash": "^4.17.21",
|
|
48
|
+
"moment": "^2.30.1",
|
|
49
|
+
"next-safe-action": "^8.0.2",
|
|
50
|
+
"react-date-picker": "^11.0.0",
|
|
51
|
+
"react-date-range": "^2.0.1",
|
|
52
|
+
"react-hook-form": "^7.54.2",
|
|
53
|
+
"react-markdown": "^9.1.0",
|
|
54
|
+
"react-popper": "^2.3.0",
|
|
55
|
+
"react-slick": "^0.30.2",
|
|
56
|
+
"react-use": "^17.6.0",
|
|
57
|
+
"react-wrap-balancer": "^1.1.1",
|
|
58
|
+
"remark-gfm": "^4.0.1",
|
|
59
|
+
"rsuite": "^5.75.0",
|
|
60
|
+
"slick-carousel": "^1.8.1",
|
|
61
|
+
"typed-css-modules": "^0.9.1",
|
|
62
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
63
|
+
"zod": "^3.24.1",
|
|
64
|
+
"zustand": "^4.5.5"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
68
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
69
|
+
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
70
|
+
"next": "^14.1.4",
|
|
71
|
+
"react": "^18.2.0",
|
|
72
|
+
"react-date-range": "^2.0.1",
|
|
73
|
+
"react-dom": "^18.2.0",
|
|
74
|
+
"react-popper": "^2.3.0",
|
|
75
|
+
"react-slick": "^0.30.2",
|
|
76
|
+
"slick-carousel": "^1.8.1"
|
|
77
|
+
},
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@chromatic-com/storybook": "^1.9.0",
|
|
80
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
81
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
82
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
83
|
+
"@storybook/addon-links": "^8.4.7",
|
|
84
|
+
"@storybook/addon-mdx-gfm": "^8.4.7",
|
|
85
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
86
|
+
"@storybook/addon-themes": "^8.4.7",
|
|
87
|
+
"@storybook/blocks": "^8.4.7",
|
|
88
|
+
"@storybook/react": "^8.6.14",
|
|
89
|
+
"@storybook/react-vite": "^8.4.7",
|
|
90
|
+
"@storybook/test": "^8.6.14",
|
|
91
|
+
"@svgr/core": "^8.1.0",
|
|
92
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
93
|
+
"@svgr/plugin-svgo": "^8.1.0",
|
|
94
|
+
"@types/lodash": "^4.17.17",
|
|
95
|
+
"@types/node": "^20.19.0",
|
|
96
|
+
"@types/react": "^18.3.23",
|
|
97
|
+
"@types/react-date-range": "^1.4.9",
|
|
98
|
+
"@types/react-datepicker": "^6.2.0",
|
|
99
|
+
"@types/react-dom": "^18.3.7",
|
|
100
|
+
"@types/react-slick": "^0.23.13",
|
|
101
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
102
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
103
|
+
"@vanilla-extract/css-utils": "^0.1.4",
|
|
104
|
+
"@vanilla-extract/recipes": "^0.5.5",
|
|
105
|
+
"@vanilla-extract/vite-plugin": "^4.0.18",
|
|
106
|
+
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
107
|
+
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
108
|
+
"eslint": "^8.57.1",
|
|
109
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
110
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
111
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
112
|
+
"glob": "^10.4.5",
|
|
113
|
+
"husky": "^9.1.7",
|
|
114
|
+
"next": "^14.1.4",
|
|
115
|
+
"prettier": "3.2.5",
|
|
116
|
+
"react": "^18.3.1",
|
|
117
|
+
"react-dom": "^18.3.1",
|
|
118
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
119
|
+
"rollup-plugin-svg-import": "^3.0.0",
|
|
120
|
+
"rollup-plugin-svgo": "^2.0.0",
|
|
121
|
+
"storybook": "^8.4.7",
|
|
122
|
+
"typescript": "^5.7.2",
|
|
123
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
124
|
+
"vite": "^5.4.11",
|
|
125
|
+
"vite-plugin-dts": "^3.9.1",
|
|
126
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
127
|
+
"vite-plugin-setting-css-module": "^1.1.4",
|
|
128
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
129
|
+
},
|
|
130
|
+
"main": "index.js",
|
|
131
|
+
"directories": {
|
|
132
|
+
"lib": "lib"
|
|
133
|
+
},
|
|
134
|
+
"author": "axos-web-dev",
|
|
135
|
+
"license": "ISC"
|
|
136
|
+
}
|