@customafk/lunas-ui 0.0.2 → 0.0.3-a

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.
Files changed (68) hide show
  1. package/dist/Atoms/AspectRatio/index.js +2 -0
  2. package/dist/Atoms/Avatar/index.js +3 -3
  3. package/dist/Atoms/Badge/index.js +2 -0
  4. package/dist/Atoms/Breadcrumb/index.js +7 -23
  5. package/dist/Atoms/Button/index.d.ts +2 -2
  6. package/dist/Atoms/Button/index.js +2 -0
  7. package/dist/Atoms/Card/index.js +2 -0
  8. package/dist/Atoms/Checkbox/index.d.ts +6 -0
  9. package/dist/Atoms/Checkbox/index.js +276 -0
  10. package/dist/Atoms/Command/index.d.ts +7 -7
  11. package/dist/Atoms/Command/index.js +39 -50
  12. package/dist/Atoms/Dialog/index.js +16 -31
  13. package/dist/Atoms/DropdownMenu/index.js +2 -0
  14. package/dist/Atoms/Form/index.js +32 -21
  15. package/dist/Atoms/Input/index.d.ts +5 -1
  16. package/dist/Atoms/Input/index.js +45 -543
  17. package/dist/Atoms/Label/index.js +2 -0
  18. package/dist/Atoms/MenuItem/index.d.ts +14 -0
  19. package/dist/Atoms/MenuItem/index.js +287 -0
  20. package/dist/Atoms/Money/index.js +2 -0
  21. package/dist/Atoms/Navbar/index.js +2 -0
  22. package/dist/Atoms/NavigationMenu/index.js +2 -0
  23. package/dist/Atoms/NumberInput/index.d.ts +7 -0
  24. package/dist/Atoms/NumberInput/index.js +321 -0
  25. package/dist/Atoms/Popover/index.d.ts +8 -0
  26. package/dist/Atoms/Popover/index.js +286 -0
  27. package/dist/Atoms/Progress/index.js +2 -0
  28. package/dist/Atoms/QuantityBtn/index.js +2 -0
  29. package/dist/Atoms/RadioGroup/index.d.ts +7 -0
  30. package/dist/Atoms/RadioGroup/index.js +285 -0
  31. package/dist/Atoms/ScrollBar/index.js +4 -2
  32. package/dist/Atoms/Select/index.js +2 -0
  33. package/dist/Atoms/Sheet/index.d.ts +29 -0
  34. package/dist/Atoms/Sheet/index.js +422 -0
  35. package/dist/Atoms/Slider/index.d.ts +6 -0
  36. package/dist/Atoms/Slider/index.js +286 -0
  37. package/dist/Atoms/SmallQuantityBtn/index.d.ts +9 -0
  38. package/dist/Atoms/SmallQuantityBtn/index.js +110 -0
  39. package/dist/Atoms/Switch/index.d.ts +6 -0
  40. package/dist/Atoms/Switch/index.js +293 -0
  41. package/dist/Atoms/Tabs/index.d.ts +9 -0
  42. package/dist/Atoms/Tabs/index.js +304 -0
  43. package/dist/Atoms/Textarea/index.d.ts +5 -0
  44. package/dist/Atoms/Textarea/index.js +283 -0
  45. package/dist/Atoms/Tooltip/index.d.ts +10 -0
  46. package/dist/Atoms/Tooltip/index.js +289 -0
  47. package/dist/Atoms/UserAvatar/index.d.ts +2 -2
  48. package/dist/Atoms/UserAvatar/index.js +24 -28
  49. package/dist/Atoms/XButton/index.d.ts +10 -0
  50. package/dist/Atoms/XButton/index.js +309 -0
  51. package/dist/Authentication/SignIn/index.d.ts +1 -1
  52. package/dist/Authentication/SignIn/index.js +129 -74
  53. package/dist/Authentication/SignUp/index.d.ts +5 -5
  54. package/dist/Authentication/SignUp/index.js +181 -110
  55. package/dist/Authentication/ThankYou/index.js +13 -4
  56. package/dist/Ecommerce/Categories/index.d.ts +33 -0
  57. package/dist/Ecommerce/Categories/index.js +1426 -0
  58. package/dist/Icons/index.d.ts +5 -3
  59. package/dist/Icons/index.js +126 -97
  60. package/dist/Molecules/AuthenForm/index.js +30 -21
  61. package/dist/Molecules/Search/index.js +46 -57
  62. package/dist/Molecules/UserDropdown/index.js +42 -33
  63. package/dist/Organisms/Header/index.d.ts +25 -3
  64. package/dist/Organisms/Header/index.js +585 -324
  65. package/dist/hooks/index.d.ts +1 -54
  66. package/dist/hooks/index.js +3 -127
  67. package/dist/{types-BgHhiNa-.d.ts → types-BlE003QY.d.ts} +1 -1
  68. package/package.json +85 -41
@@ -1,8 +1,4 @@
1
- import * as React from 'react';
2
1
  import React__default, { useEffect } from 'react';
3
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
4
- import * as ToastPrimitives from '@radix-ui/react-toast';
5
- import { VariantProps } from 'class-variance-authority';
6
2
 
7
3
  type TUseBoolean = {
8
4
  value: boolean;
@@ -58,59 +54,10 @@ declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(reference
58
54
 
59
55
  declare const useTimeout: (callback: () => void, delay: number | null) => void;
60
56
 
61
- declare const Toast$1: React.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
62
- variant?: "default" | "destructive" | null | undefined;
63
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
64
- declare const ToastAction: React.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
65
- type ToastProps = React.ComponentPropsWithoutRef<typeof Toast$1>;
66
- type ToastActionElement = React.ReactElement<typeof ToastAction>;
67
-
68
- type ToasterToast = ToastProps & {
69
- id: string;
70
- title?: React.ReactNode;
71
- description?: React.ReactNode;
72
- action?: ToastActionElement;
73
- };
74
- declare const actionTypes: {
75
- readonly ADD_TOAST: "ADD_TOAST";
76
- readonly UPDATE_TOAST: "UPDATE_TOAST";
77
- readonly DISMISS_TOAST: "DISMISS_TOAST";
78
- readonly REMOVE_TOAST: "REMOVE_TOAST";
79
- };
80
- type ActionType = typeof actionTypes;
81
- type Action = {
82
- type: ActionType['ADD_TOAST'];
83
- toast: ToasterToast;
84
- } | {
85
- type: ActionType['UPDATE_TOAST'];
86
- toast: Partial<ToasterToast>;
87
- } | {
88
- type: ActionType['DISMISS_TOAST'];
89
- toastId?: ToasterToast['id'];
90
- } | {
91
- type: ActionType['REMOVE_TOAST'];
92
- toastId?: ToasterToast['id'];
93
- };
94
- interface State {
95
- toasts: ToasterToast[];
96
- }
97
- declare const reducer: (state: State, action: Action) => State;
98
- type Toast = Omit<ToasterToast, 'id'>;
99
- declare function toast({ duration, ...props }: Toast): {
100
- id: string;
101
- dismiss: () => void;
102
- update: (props: ToasterToast) => void;
103
- };
104
- declare function useToast(): {
105
- toast: typeof toast;
106
- dismiss: (toastId?: string) => void;
107
- toasts: ToasterToast[];
108
- };
109
-
110
57
  /**
111
58
  * Custom hook that runs a cleanup function when the component is unmounted
112
59
  * @param func
113
60
  */
114
61
  declare const useUnmount: (callback: () => void) => void;
115
62
 
116
- export { reducer, toast, useBoolean, useClickAnyWhere, useCopyToClipboard, useEventListener, useHover, useInterval, useIsomorphicLayoutEffect, useOnClickOutside, useTimeout, useToast, useUnmount };
63
+ export { useBoolean, useClickAnyWhere, useCopyToClipboard, useEventListener, useHover, useInterval, useIsomorphicLayoutEffect, useOnClickOutside, useTimeout, useUnmount };
@@ -127,133 +127,12 @@ var useTimeout = (callback, delay) => {
127
127
  };
128
128
  var useTimeout_default = useTimeout;
129
129
 
130
- // packages/hooks/useToast.tsx
131
- import * as React7 from "react";
132
- var TOAST_LIMIT = 1;
133
- var TOAST_REMOVE_DELAY = 1e6;
134
- var count = 0;
135
- function genId() {
136
- count = (count + 1) % Number.MAX_SAFE_INTEGER;
137
- return count.toString();
138
- }
139
- var toastTimeouts = /* @__PURE__ */ new Map();
140
- var addToRemoveQueue = (toastId) => {
141
- if (toastTimeouts.has(toastId)) {
142
- return;
143
- }
144
- const timeout = setTimeout(() => {
145
- toastTimeouts.delete(toastId);
146
- dispatch({
147
- type: "REMOVE_TOAST",
148
- toastId
149
- });
150
- }, TOAST_REMOVE_DELAY);
151
- toastTimeouts.set(toastId, timeout);
152
- };
153
- var reducer = (state, action) => {
154
- switch (action.type) {
155
- case "ADD_TOAST": {
156
- return {
157
- ...state,
158
- toasts: [action.toast, ...state.toasts].slice(0, TOAST_LIMIT)
159
- };
160
- }
161
- case "UPDATE_TOAST": {
162
- return {
163
- ...state,
164
- toasts: state.toasts.map((t) => t.id === action.toast.id ? { ...t, ...action.toast } : t)
165
- };
166
- }
167
- case "DISMISS_TOAST": {
168
- const { toastId } = action;
169
- if (toastId) {
170
- addToRemoveQueue(toastId);
171
- } else {
172
- state.toasts.forEach((toast2) => {
173
- addToRemoveQueue(toast2.id);
174
- });
175
- }
176
- return {
177
- ...state,
178
- toasts: state.toasts.map(
179
- (t) => t.id === toastId || toastId === void 0 ? {
180
- ...t,
181
- open: false
182
- } : t
183
- )
184
- };
185
- }
186
- case "REMOVE_TOAST": {
187
- if (action.toastId === void 0) {
188
- return {
189
- ...state,
190
- toasts: []
191
- };
192
- }
193
- return {
194
- ...state,
195
- toasts: state.toasts.filter((t) => t.id !== action.toastId)
196
- };
197
- }
198
- }
199
- };
200
- var listeners = [];
201
- var memoryState = { toasts: [] };
202
- function dispatch(action) {
203
- memoryState = reducer(memoryState, action);
204
- listeners.forEach((listener) => {
205
- listener(memoryState);
206
- });
207
- }
208
- function toast({ duration = 2e3, ...props }) {
209
- const id = genId();
210
- const update = (props2) => dispatch({
211
- type: "UPDATE_TOAST",
212
- toast: { ...props2, id }
213
- });
214
- const dismiss = () => dispatch({ type: "DISMISS_TOAST", toastId: id });
215
- dispatch({
216
- type: "ADD_TOAST",
217
- toast: {
218
- ...props,
219
- id,
220
- open: true,
221
- duration,
222
- onOpenChange: (open) => {
223
- if (!open) dismiss();
224
- }
225
- }
226
- });
227
- return {
228
- id,
229
- dismiss,
230
- update
231
- };
232
- }
233
- function useToast() {
234
- const [state, setState] = React7.useState(memoryState);
235
- React7.useEffect(() => {
236
- listeners.push(setState);
237
- return () => {
238
- const index = listeners.indexOf(setState);
239
- if (index > -1) {
240
- listeners.splice(index, 1);
241
- }
242
- };
243
- }, [state]);
244
- return {
245
- ...state,
246
- toast,
247
- dismiss: (toastId) => dispatch({ type: "DISMISS_TOAST", toastId })
248
- };
249
- }
250
-
251
130
  // packages/hooks/useUnmount.ts
252
- import React8 from "react";
131
+ import React7 from "react";
253
132
  var useUnmount = (callback) => {
254
- const functionReference = React8.useRef(callback);
133
+ const functionReference = React7.useRef(callback);
255
134
  functionReference.current = callback;
256
- React8.useEffect(
135
+ React7.useEffect(
257
136
  () => () => {
258
137
  functionReference.current();
259
138
  },
@@ -262,8 +141,6 @@ var useUnmount = (callback) => {
262
141
  };
263
142
  var useUnmount_default = useUnmount;
264
143
  export {
265
- reducer,
266
- toast,
267
144
  useBoolean_default as useBoolean,
268
145
  useClickAnyWhere_default as useClickAnyWhere,
269
146
  useCopyToClipboard_default as useCopyToClipboard,
@@ -273,6 +150,5 @@ export {
273
150
  useIsomorphicLayoutEffect_default as useIsomorphicLayoutEffect,
274
151
  useOnClickOutside_default as useOnClickOutside,
275
152
  useTimeout_default as useTimeout,
276
- useToast,
277
153
  useUnmount_default as useUnmount
278
154
  };
@@ -11,7 +11,7 @@ type TUser = {
11
11
  fullname: string;
12
12
  username: string;
13
13
  email: string;
14
- avatar: string;
14
+ avatar: string | null;
15
15
  };
16
16
  type TUserSettingSelect = 'PROFILE' | 'SECURITY' | 'NOTIFICATION' | 'RESERVATION' | 'ADDRESS' | 'LOGOUT';
17
17
 
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
+ "$schema": "https://json.schemastore.org/package",
2
3
  "name": "@customafk/lunas-ui",
3
4
  "private": false,
4
- "version": "0.0.2",
5
+ "version": "0.0.3-a",
5
6
  "type": "module",
6
7
  "homepage": "https://docs.customafk.com",
7
8
  "repository": {
@@ -39,6 +40,11 @@
39
40
  "import": "./dist/Atoms/AlertDialog/index.js",
40
41
  "require": "./dist/Atoms/AlertDialog/index.js"
41
42
  },
43
+ "./Atoms/AspectRatio": {
44
+ "types": "./dist/Atoms/AspectRatio/index.d.ts",
45
+ "import": "./dist/Atoms/AspectRatio/index.js",
46
+ "require": "./dist/Atoms/AspectRatio/index.js"
47
+ },
42
48
  "./Atoms/Avatar": {
43
49
  "types": "./dist/Atoms/Avatar/index.d.ts",
44
50
  "import": "./dist/Atoms/Avatar/index.js",
@@ -104,6 +110,11 @@
104
110
  "import": "./dist/Atoms/Label/index.js",
105
111
  "require": "./dist/Atoms/Label/index.js"
106
112
  },
113
+ "./Atoms/MenuItem": {
114
+ "types": "./dist/Atoms/MenuItem/index.d.ts",
115
+ "import": "./dist/Atoms/MenuItem/index.js",
116
+ "require": "./dist/Atoms/MenuItem/index.js"
117
+ },
107
118
  "./Atoms/Money": {
108
119
  "types": "./dist/Atoms/Money/index.d.ts",
109
120
  "import": "./dist/Atoms/Money/index.js",
@@ -119,6 +130,11 @@
119
130
  "import": "./dist/Atoms/NavigationMenu/index.js",
120
131
  "require": "./dist/Atoms/NavigationMenu/index.js"
121
132
  },
133
+ "./Atoms/Popover": {
134
+ "types": "./dist/Atoms/Popover/index.d.ts",
135
+ "import": "./dist/Atoms/Popover/index.js",
136
+ "require": "./dist/Atoms/Popover/index.js"
137
+ },
122
138
  "./Atoms/Progress": {
123
139
  "types": "./dist/Atoms/Progress/index.d.ts",
124
140
  "import": "./dist/Atoms/Progress/index.js",
@@ -129,6 +145,11 @@
129
145
  "import": "./dist/Atoms/QuantityBtn/index.js",
130
146
  "require": "./dist/Atoms/QuantityBtn/index.js"
131
147
  },
148
+ "./Atoms/RadioGroup": {
149
+ "types": "./dist/Atoms/RadioGroup/index.d.ts",
150
+ "import": "./dist/Atoms/RadioGroup/index.js",
151
+ "require": "./dist/Atoms/RadioGroup/index.js"
152
+ },
132
153
  "./Atoms/ScrollBar": {
133
154
  "types": "./dist/Atoms/ScrollBar/index.d.ts",
134
155
  "import": "./dist/Atoms/ScrollBar/index.js",
@@ -159,16 +180,31 @@
159
180
  "import": "./dist/Atoms/Slider/index.js",
160
181
  "require": "./dist/Atoms/Slider/index.js"
161
182
  },
183
+ "./Atoms/SmallQuantityBtn": {
184
+ "types": "./dist/Atoms/SmallQuantityBtn/index.d.ts",
185
+ "import": "./dist/Atoms/SmallQuantityBtn/index.js",
186
+ "require": "./dist/Atoms/SmallQuantityBtn/index.js"
187
+ },
162
188
  "./Atoms/Switch": {
163
189
  "types": "./dist/Atoms/Switch/index.d.ts",
164
190
  "import": "./dist/Atoms/Switch/index.js",
165
191
  "require": "./dist/Atoms/Switch/index.js"
166
192
  },
193
+ "./Atoms/Tabs": {
194
+ "types": "./dist/Atoms/Tabs/index.d.ts",
195
+ "import": "./dist/Atoms/Tabs/index.js",
196
+ "require": "./dist/Atoms/Tabs/index.js"
197
+ },
167
198
  "./Atoms/Textarea": {
168
199
  "types": "./dist/Atoms/Textarea/index.d.ts",
169
200
  "import": "./dist/Atoms/Textarea/index.js",
170
201
  "require": "./dist/Atoms/Textarea/index.js"
171
202
  },
203
+ "./Atoms/Tooltip": {
204
+ "types": "./dist/Atoms/Tooltip/index.d.ts",
205
+ "import": "./dist/Atoms/Tooltip/index.js",
206
+ "require": "./dist/Atoms/Tooltip/index.js"
207
+ },
172
208
  "./Atoms/UserAvatar": {
173
209
  "types": "./dist/Atoms/UserAvatar/index.d.ts",
174
210
  "import": "./dist/Atoms/UserAvatar/index.js",
@@ -195,14 +231,14 @@
195
231
  "require": "./dist/UserDropdown/index.js"
196
232
  },
197
233
  "./Organisms/Footer": {
198
- "types": "./dist/Footer/index.d.ts",
199
- "import": "./dist/Footer/index.js",
200
- "require": "./dist/Footer/index.js"
234
+ "types": "./dist/Organisms/Footer/index.d.ts",
235
+ "import": "./dist/Organisms/Footer/index.js",
236
+ "require": "./dist/Organisms/Footer/index.js"
201
237
  },
202
238
  "./Organisms/Header": {
203
- "types": "./dist/Header/index.d.ts",
204
- "import": "./dist/Header/index.js",
205
- "require": "./dist/Header/index.js"
239
+ "types": "./dist/Organisms/Header/index.d.ts",
240
+ "import": "./dist/Organisms/Header/index.js",
241
+ "require": "./dist/Organisms/Header/index.js"
206
242
  },
207
243
  "./Layout/Flex": {
208
244
  "types": "./dist/Layout/Flex/index.d.ts",
@@ -223,6 +259,11 @@
223
259
  "types": "./dist/Authentication/ThankYou/index.d.ts",
224
260
  "import": "./dist/Authentication/ThankYou/index.js",
225
261
  "require": "./dist/Authentication/ThankYou/index.js"
262
+ },
263
+ "./Ecommerce/Categories": {
264
+ "types": "./dist/Ecommerce/Categories/index.d.ts",
265
+ "import": "./dist/Ecommerce/Categories/index.js",
266
+ "require": "./dist/Ecommerce/Categories/index.js"
226
267
  }
227
268
  },
228
269
  "scripts": {
@@ -235,35 +276,35 @@
235
276
  "build-sb": "storybook build"
236
277
  },
237
278
  "devDependencies": {
238
- "@chromatic-com/storybook": "^1.6.1",
279
+ "@chromatic-com/storybook": "^1.9.0",
239
280
  "@shopify/eslint-plugin": "^46.0.0",
240
- "@storybook/addon-essentials": "^8.3.1",
241
- "@storybook/addon-interactions": "^8.3.1",
242
- "@storybook/addon-links": "^8.3.1",
243
- "@storybook/addon-onboarding": "^8.3.1",
244
- "@storybook/addon-themes": "^8.3.1",
245
- "@storybook/blocks": "^8.3.1",
246
- "@storybook/react": "^8.3.1",
247
- "@storybook/react-vite": "^8.3.1",
248
- "@storybook/test": "^8.3.1",
281
+ "@storybook/addon-essentials": "^8.4.5",
282
+ "@storybook/addon-interactions": "^8.4.5",
283
+ "@storybook/addon-links": "^8.4.5",
284
+ "@storybook/addon-onboarding": "^8.4.5",
285
+ "@storybook/addon-themes": "^8.4.5",
286
+ "@storybook/blocks": "^8.4.5",
287
+ "@storybook/react": "^8.4.5",
288
+ "@storybook/react-vite": "^8.4.5",
289
+ "@storybook/test": "^8.4.5",
249
290
  "@types/bun": "latest",
250
- "@types/react": "^18.3.3",
251
- "@types/react-dom": "^18.3.0",
291
+ "@types/react": "^18.3.12",
292
+ "@types/react-dom": "^18.3.1",
252
293
  "@typescript-eslint/eslint-plugin": "^6.21.0",
253
294
  "@typescript-eslint/parser": "^6.21.0",
254
- "@vitejs/plugin-react": "^4.3.0",
295
+ "@vitejs/plugin-react": "^4.3.3",
255
296
  "autoprefixer": "^10.4.20",
256
297
  "eslint": "^8.57.1",
257
298
  "eslint-config-prettier": "^9.1.0",
258
- "eslint-plugin-import": "^2.30.0",
259
- "eslint-plugin-jsx-a11y": "^6.10.0",
260
- "eslint-plugin-react": "^7.36.1",
299
+ "eslint-plugin-import": "^2.31.0",
300
+ "eslint-plugin-jsx-a11y": "^6.10.2",
301
+ "eslint-plugin-react": "^7.37.2",
261
302
  "eslint-plugin-react-form-fields": "^1.2.22",
262
303
  "eslint-plugin-react-hook-form": "^0.3.0",
263
304
  "eslint-plugin-react-hooks": "^4.6.2",
264
- "eslint-plugin-react-perf": "^3.3.2",
305
+ "eslint-plugin-react-perf": "^3.3.3",
265
306
  "eslint-plugin-react-prefer-function-component": "^3.3.0",
266
- "eslint-plugin-react-refresh": "^0.4.7",
307
+ "eslint-plugin-react-refresh": "^0.4.14",
267
308
  "eslint-plugin-simple-import-sort": "^12.1.1",
268
309
  "eslint-plugin-sonar": "^0.13.2",
269
310
  "eslint-plugin-ssr-friendly": "^1.3.0",
@@ -271,15 +312,15 @@
271
312
  "eslint-plugin-unicorn": "^55.0.0",
272
313
  "eslint-plugin-unused-imports": "^4.1.4",
273
314
  "eslint-plugin-validate-jsx-nesting": "^0.1.1",
274
- "postcss": "^8.4.40",
315
+ "postcss": "^8.4.49",
275
316
  "prettier": "^3.3.3",
276
- "prettier-plugin-tailwindcss": "^0.6.5",
277
- "storybook": "^8.3.1",
278
- "tailwindcss": "^3.4.7",
317
+ "prettier-plugin-tailwindcss": "^0.6.9",
318
+ "storybook": "^8.4.5",
319
+ "tailwindcss": "^3.4.15",
279
320
  "tailwindcss-animate": "^1.0.7",
280
- "tsup": "^8.2.4",
281
- "typescript": "^5.2.2",
282
- "vite": "^5.2.13",
321
+ "tsup": "^8.3.5",
322
+ "typescript": "^5.7.2",
323
+ "vite": "^5.4.11",
283
324
  "vite-tsconfig-paths": "^4.3.2"
284
325
  },
285
326
  "description": "This is a e-commerce UI library for CustomAFK",
@@ -290,36 +331,39 @@
290
331
  "license": "ISC",
291
332
  "dependencies": {
292
333
  "@hookform/error-message": "^2.0.1",
293
- "@hookform/resolvers": "^3.9.0",
334
+ "@hookform/resolvers": "^3.9.1",
294
335
  "@radix-ui/react-accordion": "^1.2.1",
295
336
  "@radix-ui/react-alert-dialog": "^1.1.2",
296
337
  "@radix-ui/react-aspect-ratio": "^1.1.0",
297
338
  "@radix-ui/react-avatar": "^1.1.1",
298
339
  "@radix-ui/react-checkbox": "^1.1.2",
299
340
  "@radix-ui/react-dialog": "^1.1.2",
300
- "@radix-ui/react-dropdown-menu": "^2.1.1",
341
+ "@radix-ui/react-dropdown-menu": "^2.1.2",
301
342
  "@radix-ui/react-label": "^2.1.0",
302
343
  "@radix-ui/react-navigation-menu": "^1.2.1",
344
+ "@radix-ui/react-popover": "^1.1.2",
303
345
  "@radix-ui/react-progress": "^1.1.0",
304
346
  "@radix-ui/react-radio-group": "^1.2.1",
305
- "@radix-ui/react-scroll-area": "^1.2.0",
347
+ "@radix-ui/react-scroll-area": "^1.2.1",
306
348
  "@radix-ui/react-select": "^2.1.2",
307
349
  "@radix-ui/react-separator": "^1.1.0",
308
350
  "@radix-ui/react-slider": "^1.2.1",
309
351
  "@radix-ui/react-slot": "^1.1.0",
310
352
  "@radix-ui/react-switch": "^1.1.1",
311
- "@radix-ui/react-toast": "^1.2.1",
353
+ "@radix-ui/react-tabs": "^1.1.1",
354
+ "@radix-ui/react-tooltip": "^1.1.4",
355
+ "@radix-ui/react-visually-hidden": "^1.1.0",
312
356
  "class-variance-authority": "^0.7.0",
313
357
  "clsx": "^2.1.1",
314
- "cmdk": "^1.0.0",
315
- "embla-carousel-react": "^8.3.0",
316
- "framer-motion": "^11.11.8",
358
+ "cmdk": "^1.0.4",
359
+ "embla-carousel-react": "^8.5.1",
360
+ "framer-motion": "^11.11.17",
317
361
  "lucide-react": "^0.424.0",
318
362
  "react": "^18.3.1",
319
363
  "react-dom": "^18.3.1",
320
- "react-hook-form": "^7.53.0",
364
+ "react-hook-form": "^7.53.2",
321
365
  "react-spinners": "^0.14.1",
322
- "tailwind-merge": "^2.4.0",
366
+ "tailwind-merge": "^2.5.5",
323
367
  "zod": "^3.23.8"
324
368
  }
325
369
  }