ag-common 0.0.892 → 0.0.894

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 (92) hide show
  1. package/dist/api/helpers/acm.js +7 -17
  2. package/dist/api/helpers/api.js +28 -23
  3. package/dist/api/helpers/apigw.js +54 -71
  4. package/dist/api/helpers/cosmos/delete.js +81 -94
  5. package/dist/api/helpers/cosmos/get.js +170 -195
  6. package/dist/api/helpers/cosmos/index.js +23 -53
  7. package/dist/api/helpers/cosmos/write.js +88 -92
  8. package/dist/api/helpers/dynamo/delete.js +22 -52
  9. package/dist/api/helpers/dynamo/get.js +145 -135
  10. package/dist/api/helpers/dynamo/set.js +22 -29
  11. package/dist/api/helpers/enforceDynamoProvisionCap.js +5 -5
  12. package/dist/api/helpers/google/apikey.js +1 -2
  13. package/dist/api/helpers/google/gemini.js +26 -37
  14. package/dist/api/helpers/retryOnError.js +15 -26
  15. package/dist/api/helpers/s3.js +102 -121
  16. package/dist/api/helpers/ses.js +19 -26
  17. package/dist/api/helpers/sqs.js +5 -15
  18. package/dist/api/helpers/ssmInfra/dynamo.js +9 -5
  19. package/dist/api/helpers/sts.js +26 -37
  20. package/dist/api/helpers/validations.js +7 -17
  21. package/dist/api/helpers/zod.js +1 -2
  22. package/dist/common/helpers/async.js +27 -42
  23. package/dist/common/helpers/csv.js +1 -4
  24. package/dist/common/helpers/date.js +2 -2
  25. package/dist/common/helpers/fetch.js +42 -55
  26. package/dist/common/helpers/generator.js +11 -22
  27. package/dist/common/helpers/i18n.js +3 -5
  28. package/dist/common/helpers/log.js +4 -4
  29. package/dist/common/helpers/math.js +1 -2
  30. package/dist/common/helpers/node-cache.js +10 -2
  31. package/dist/common/helpers/random.js +2 -2
  32. package/dist/common/helpers/secondsInNearest.js +1 -2
  33. package/dist/common/helpers/stream.js +24 -35
  34. package/dist/common/helpers/string/redact.js +1 -2
  35. package/dist/common/helpers/withRetry.js +5 -14
  36. package/dist/common/helpers/xml.js +9 -22
  37. package/dist/node/helpers/fetch.js +22 -33
  38. package/dist/ui/components/DarkMode/Base.js +10 -5
  39. package/dist/ui/components/Markdown/index.js +4 -5
  40. package/dist/ui/components/shadcn/accordion.js +13 -36
  41. package/dist/ui/components/shadcn/alert.d.ts +1 -1
  42. package/dist/ui/components/shadcn/alert.js +3 -23
  43. package/dist/ui/components/shadcn/avatar.js +4 -24
  44. package/dist/ui/components/shadcn/button.d.ts +1 -1
  45. package/dist/ui/components/shadcn/button.js +2 -14
  46. package/dist/ui/components/shadcn/card.js +6 -35
  47. package/dist/ui/components/shadcn/checkbox.js +4 -18
  48. package/dist/ui/components/shadcn/dialog.js +17 -46
  49. package/dist/ui/components/shadcn/dropdown-list.js +2 -2
  50. package/dist/ui/components/shadcn/dropdown-menu.js +22 -58
  51. package/dist/ui/components/shadcn/input-selector.js +4 -5
  52. package/dist/ui/components/shadcn/input.js +2 -14
  53. package/dist/ui/components/shadcn/label.d.ts +1 -1
  54. package/dist/ui/components/shadcn/label.js +2 -16
  55. package/dist/ui/components/shadcn/popover.js +3 -17
  56. package/dist/ui/components/shadcn/radio-group.js +4 -17
  57. package/dist/ui/components/shadcn/scroll-area.js +9 -26
  58. package/dist/ui/components/shadcn/select.js +23 -55
  59. package/dist/ui/components/shadcn/sheet.d.ts +1 -1
  60. package/dist/ui/components/shadcn/sheet.js +13 -42
  61. package/dist/ui/components/shadcn/switch.js +3 -17
  62. package/dist/ui/components/shadcn/textarea.js +2 -14
  63. package/dist/ui/components/shadcn/toast.js +6 -4
  64. package/dist/ui/helpers/cookie/get.js +5 -1
  65. package/dist/ui/helpers/cookie/raw.js +1 -2
  66. package/dist/ui/helpers/cookie/set.js +2 -2
  67. package/dist/ui/helpers/cookie/use.js +19 -9
  68. package/dist/ui/helpers/date.js +3 -4
  69. package/dist/ui/helpers/debounce.js +1 -1
  70. package/dist/ui/helpers/extractAttributes.js +1 -2
  71. package/dist/ui/helpers/openDialog.js +1 -2
  72. package/dist/ui/helpers/routes.js +6 -4
  73. package/dist/ui/helpers/serviceWorker.js +7 -18
  74. package/dist/ui/helpers/useContextMenu.js +2 -3
  75. package/dist/ui/helpers/useElementAttribute.js +1 -1
  76. package/dist/ui/helpers/useGranularHook.js +2 -2
  77. package/dist/ui/helpers/useInterval.js +5 -7
  78. package/dist/ui/helpers/useLocalStorage.js +1 -1
  79. package/dist/ui/helpers/useOnClickOutside.js +2 -3
  80. package/dist/ui/helpers/useOnScroll.js +6 -8
  81. package/dist/ui/helpers/useOverloadPageSearch.js +1 -1
  82. package/dist/ui/helpers/useQueryString.js +2 -2
  83. package/dist/ui/helpers/useResize.js +1 -1
  84. package/dist/ui/helpers/useTimeout.js +1 -1
  85. package/dist/ui/helpers/useTooltip.js +8 -5
  86. package/dist/ui/icons/Checkmark.js +2 -5
  87. package/dist/ui/icons/Circle.js +2 -5
  88. package/dist/ui/icons/Magnify.js +2 -5
  89. package/dist/ui/icons/Sun.js +8 -11
  90. package/dist/ui/icons/Warning.js +7 -10
  91. package/dist/ui/styles/common.js +8 -20
  92. package/package.json +66 -65
@@ -5,9 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Circle = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
- const Circle = ({ style, dotted = false, }) => {
9
- var _a;
10
- return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "2 2 20 20", style: style },
11
- react_1.default.createElement("path", { fill: "none", stroke: (_a = style === null || style === void 0 ? void 0 : style.fill) !== null && _a !== void 0 ? _a : '#000', strokeLinecap: "round", strokeLinejoin: "round", strokeDasharray: !dotted ? '' : '4 4', strokeWidth: "2", d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" })));
12
- };
8
+ const Circle = ({ style, dotted = false, }) => (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "2 2 20 20", style: style },
9
+ react_1.default.createElement("path", { fill: "none", stroke: style?.fill ?? '#000', strokeLinecap: "round", strokeLinejoin: "round", strokeDasharray: !dotted ? '' : '4 4', strokeWidth: "2", d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" })));
13
10
  exports.Circle = Circle;
@@ -5,9 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Magnify = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
- const Magnify = ({ style, }) => {
9
- var _a;
10
- return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 490 490", style: style },
11
- react_1.default.createElement("path", { fill: "none", stroke: (_a = style === null || style === void 0 ? void 0 : style.fill) !== null && _a !== void 0 ? _a : 'black', strokeWidth: "36", strokeLinecap: "round", d: "M280 278a153 153 0 1 0-2 2l170 170m-91-117 110 110-26 26-110-110" })));
12
- };
8
+ const Magnify = ({ style, }) => (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 490 490", style: style },
9
+ react_1.default.createElement("path", { fill: "none", stroke: style?.fill ?? 'black', strokeWidth: "36", strokeLinecap: "round", d: "M280 278a153 153 0 1 0-2 2l170 170m-91-117 110 110-26 26-110-110" })));
13
10
  exports.Magnify = Magnify;
@@ -5,15 +5,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Sun = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
- const Sun = (p) => {
9
- var _a, _b;
10
- return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
11
- react_1.default.createElement("g", { stroke: (_b = (_a = p === null || p === void 0 ? void 0 : p.style) === null || _a === void 0 ? void 0 : _a.fill) !== null && _b !== void 0 ? _b : 'black', strokeMiterlimit: "10", strokeWidth: "1.5", clipPath: "url(#a)" },
12
- react_1.default.createElement("path", { strokeLinecap: "round", d: "M5 12H1m22 0h-4M7.05 7.05 4.222 4.222m15.556 15.556L16.95 16.95m-9.9 0-2.828 2.828M19.778 4.222 16.95 7.05" }),
13
- react_1.default.createElement("path", { fillOpacity: "0", d: "M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z" }),
14
- react_1.default.createElement("path", { strokeLinecap: "round", d: "M12 19v4m0-22v4" })),
15
- react_1.default.createElement("defs", null,
16
- react_1.default.createElement("clipPath", { id: "a" },
17
- react_1.default.createElement("path", { fill: "#fff", d: "M0 0h24v24H0z" })))));
18
- };
8
+ const Sun = (p) => (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
9
+ react_1.default.createElement("g", { stroke: p?.style?.fill ?? 'black', strokeMiterlimit: "10", strokeWidth: "1.5", clipPath: "url(#a)" },
10
+ react_1.default.createElement("path", { strokeLinecap: "round", d: "M5 12H1m22 0h-4M7.05 7.05 4.222 4.222m15.556 15.556L16.95 16.95m-9.9 0-2.828 2.828M19.778 4.222 16.95 7.05" }),
11
+ react_1.default.createElement("path", { fillOpacity: "0", d: "M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z" }),
12
+ react_1.default.createElement("path", { strokeLinecap: "round", d: "M12 19v4m0-22v4" })),
13
+ react_1.default.createElement("defs", null,
14
+ react_1.default.createElement("clipPath", { id: "a" },
15
+ react_1.default.createElement("path", { fill: "#fff", d: "M0 0h24v24H0z" })))));
19
16
  exports.Sun = Sun;
@@ -6,14 +6,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Warning = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
8
  //yellow warning
9
- const Warning = ({ style, className, }) => {
10
- var _a;
11
- return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 64 64", className: className },
12
- react_1.default.createElement("defs", null,
13
- react_1.default.createElement("linearGradient", { id: "a", x2: "0", y1: "45.47", y2: "-.599", gradientTransform: "matrix(1.31117 0 0 1.30239 737.39 159.91)", gradientUnits: "userSpaceOnUse" },
14
- react_1.default.createElement("stop", { stopColor: "none" }),
15
- react_1.default.createElement("stop", { offset: "1", stopColor: "none" }))),
16
- react_1.default.createElement("path", { fill: (_a = style === null || style === void 0 ? void 0 : style.fill) !== null && _a !== void 0 ? _a : '#ffc515', stroke: "url(#a)", strokeWidth: "4px", d: "m797.94 212.01-25.607-48c-.736-1.333-2.068-2.074-3.551-2.074s-2.822.889-3.569 2.222l-25.417 48c-.598 1.185-.605 2.815.132 4s1.921 1.778 3.404 1.778h51.02c1.483 0 2.821-.741 3.42-1.926.747-1.185.753-2.667.165-4", transform: "translate(-627.02 -130.8) scale(.85714)" }),
17
- react_1.default.createElement("path", { fillOpacity: ".75", stroke: "none", strokeWidth: ".90168", d: "M31.996 24.239a1.93 1.93 0 0 0-1.926 1.92v11.559c0 1.06.855 1.92 1.926 1.92a1.929 1.929 0 0 0 1.925-1.92v-11.56c0-1.06-.853-1.92-1.925-1.92zm0 19.249c-1.064 0-1.926.86-1.926 1.925 0 1.064.86 1.925 1.926 1.925 1.064 0 1.925-.86 1.925-1.925a1.922 1.922 0 0 0-1.925-1.925z" })));
18
- };
9
+ const Warning = ({ style, className, }) => (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 64 64", className: className },
10
+ react_1.default.createElement("defs", null,
11
+ react_1.default.createElement("linearGradient", { id: "a", x2: "0", y1: "45.47", y2: "-.599", gradientTransform: "matrix(1.31117 0 0 1.30239 737.39 159.91)", gradientUnits: "userSpaceOnUse" },
12
+ react_1.default.createElement("stop", { stopColor: "none" }),
13
+ react_1.default.createElement("stop", { offset: "1", stopColor: "none" }))),
14
+ react_1.default.createElement("path", { fill: style?.fill ?? '#ffc515', stroke: "url(#a)", strokeWidth: "4px", d: "m797.94 212.01-25.607-48c-.736-1.333-2.068-2.074-3.551-2.074s-2.822.889-3.569 2.222l-25.417 48c-.598 1.185-.605 2.815.132 4s1.921 1.778 3.404 1.778h51.02c1.483 0 2.821-.741 3.42-1.926.747-1.185.753-2.667.165-4", transform: "translate(-627.02 -130.8) scale(.85714)" }),
15
+ react_1.default.createElement("path", { fillOpacity: ".75", stroke: "none", strokeWidth: ".90168", d: "M31.996 24.239a1.93 1.93 0 0 0-1.926 1.92v11.559c0 1.06.855 1.92 1.926 1.92a1.929 1.929 0 0 0 1.925-1.92v-11.56c0-1.06-.853-1.92-1.925-1.92zm0 19.249c-1.064 0-1.926.86-1.926 1.925 0 1.064.86 1.925 1.926 1.925 1.064 0 1.925-.86 1.925-1.925a1.922 1.922 0 0 0-1.925-1.925z" })));
19
16
  exports.Warning = Warning;
@@ -1,16 +1,5 @@
1
- "use strict";
2
1
  'use client';
3
- var __rest = (this && this.__rest) || function (s, e) {
4
- var t = {};
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
6
- t[p] = s[p];
7
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
8
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
9
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
10
- t[p[i]] = s[p[i]];
11
- }
12
- return t;
13
- };
2
+ "use strict";
14
3
  var __importDefault = (this && this.__importDefault) || function (mod) {
15
4
  return (mod && mod.__esModule) ? mod : { "default": mod };
16
5
  };
@@ -71,13 +60,12 @@ const bounce = (isActive = false) => ({
71
60
  },
72
61
  });
73
62
  exports.bounce = bounce;
74
- const Card = (_a) => {
75
- var { children, className = '' } = _a, props = __rest(_a, ["children", "className"]);
76
- return (react_1.default.createElement("div", Object.assign({ className: `bg-white m-2 relative rounded-lg max-w-[40rem] p-4 border-2 border-lighter ${className}` }, props), children));
77
- };
63
+ const Card = ({ children, className = '', ...props }) => (react_1.default.createElement("div", { className: `bg-white m-2 relative rounded-lg max-w-[40rem] p-4 border-2 border-lighter ${className}`, ...props }, children));
78
64
  exports.Card = Card;
79
- const getVarStyles = (raw) => {
80
- var _a, _b, _c;
81
- return (Object.assign(Object.assign({}, raw), { color: (_a = raw === null || raw === void 0 ? void 0 : raw.color) !== null && _a !== void 0 ? _a : 'var(--main-fg)', backgroundColor: (_b = raw === null || raw === void 0 ? void 0 : raw.backgroundColor) !== null && _b !== void 0 ? _b : 'var(--main-bg)', borderColor: (_c = raw === null || raw === void 0 ? void 0 : raw.borderColor) !== null && _c !== void 0 ? _c : 'var(--main-bg-mid)' }));
82
- };
65
+ const getVarStyles = (raw) => ({
66
+ ...raw,
67
+ color: raw?.color ?? 'var(--main-fg)',
68
+ backgroundColor: raw?.backgroundColor ?? 'var(--main-bg)',
69
+ borderColor: raw?.borderColor ?? 'var(--main-bg-mid)',
70
+ });
83
71
  exports.getVarStyles = getVarStyles;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.892",
2
+ "version": "0.0.894",
3
3
  "name": "ag-common",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
@@ -10,72 +10,73 @@
10
10
  "url": "https://github.com/andreigec/ag-common.git"
11
11
  },
12
12
  "dependencies": {
13
- "@tailwindcss/postcss": "^4.1.18",
14
- "autoprefixer": "^10.4.24",
15
- "class-variance-authority": "^0.7.1",
16
- "clsx": "^2.1.1",
17
- "cross-env": "^10.1.0",
18
- "eslint": "^9.39.2",
19
- "eslint-config-e7npm": "^0.1.31",
20
- "lucide-react": "^0.577.0",
21
- "react": "^19.2.4",
22
- "react-dom": "^19.2.4",
23
- "tailwind-merge": "^3.4.0",
24
- "tailwindcss": "^4.1.18",
25
- "tailwindcss-animate": "^1.0.7",
26
- "tsx": "^4.21.0",
27
- "typescript": "^5.9.3"
13
+ "@tailwindcss/postcss": "~4.2.2",
14
+ "autoprefixer": "~10.5.0",
15
+ "class-variance-authority": "~0.7.1",
16
+ "clsx": "~2.1.1",
17
+ "cross-env": "~10.1.0",
18
+ "eslint": "~10.2.1",
19
+ "eslint-config-e7npm": "~0.1.39",
20
+ "lucide-react": "~1.8.0",
21
+ "react": "~19.2.5",
22
+ "react-dom": "~19.2.5",
23
+ "tailwind-merge": "~3.5.0",
24
+ "tailwindcss": "~4.2.2",
25
+ "tailwindcss-animate": "~1.0.7",
26
+ "tsx": "~4.21.0",
27
+ "typescript": "~6.0.3"
28
28
  },
29
29
  "devDependencies": {
30
- "@aws-sdk/client-acm": "^3.983.0",
31
- "@aws-sdk/client-apigatewaymanagementapi": "^3.983.0",
32
- "@aws-sdk/client-dynamodb": "^3.983.0",
33
- "@aws-sdk/client-s3": "^3.983.0",
34
- "@aws-sdk/client-ses": "^3.983.0",
35
- "@aws-sdk/client-sqs": "^3.983.0",
36
- "@aws-sdk/client-sts": "^3.983.0",
37
- "@aws-sdk/lib-dynamodb": "^3.983.0",
38
- "@aws-sdk/s3-presigned-post": "^3.983.0",
39
- "@aws-sdk/s3-request-presigner": "^3.983.0",
40
- "@azure/cosmos": "^4.9.1",
41
- "@google/genai": "^1.40.0",
42
- "@radix-ui/react-accordion": "^1.2.12",
43
- "@radix-ui/react-avatar": "^1.1.11",
44
- "@radix-ui/react-checkbox": "^1.3.3",
45
- "@radix-ui/react-dialog": "^1.1.15",
46
- "@radix-ui/react-dropdown-menu": "^2.1.16",
47
- "@radix-ui/react-icons": "^1.3.2",
48
- "@radix-ui/react-label": "^2.1.8",
49
- "@radix-ui/react-popover": "^1.1.15",
50
- "@radix-ui/react-radio-group": "^1.3.8",
51
- "@radix-ui/react-scroll-area": "^1.2.10",
52
- "@radix-ui/react-select": "^2.2.6",
53
- "@radix-ui/react-slot": "^1.2.4",
54
- "@radix-ui/react-switch": "^1.2.6",
55
- "@radix-ui/react-toast": "^1.2.15",
56
- "@smithy/types": "^4.12.0",
57
- "@storybook/addon-docs": "^10.2.6",
58
- "@storybook/addon-links": "^10.2.6",
59
- "@storybook/addon-styling-webpack": "^3.0.0",
60
- "@storybook/addons": "^7.6.17",
61
- "@storybook/react-vite": "^10.2.6",
62
- "@storybook/react-webpack5": "^10.2.6",
63
- "@types/jsonwebtoken": "^9.0.10",
64
- "@types/node": "^25.2.0",
65
- "@types/react": "^19.2.11",
66
- "@types/react-dom": "^19.2.3",
67
- "@typescript-eslint/eslint-plugin": "^8.54.0",
68
- "@typescript-eslint/parser": "^8.54.0",
69
- "aws-cdk-lib": "^2.237.1",
70
- "buffer": "^6.0.3",
71
- "eslint-plugin-storybook": "^10.2.6",
72
- "globstar": "^1.0.0",
73
- "jsonwebtoken": "^9.0.3",
74
- "jwks-rsa": "^3.2.2",
75
- "node-cache": "^5.1.2",
76
- "rimraf": "^6.1.2",
77
- "storybook": "^10.2.6",
78
- "zod": "^4.3.6"
30
+ "@aws-sdk/client-acm": "~3.1032.0",
31
+ "@aws-sdk/client-apigatewaymanagementapi": "~3.1032.0",
32
+ "@aws-sdk/client-dynamodb": "~3.1032.0",
33
+ "@aws-sdk/client-s3": "~3.1032.0",
34
+ "@aws-sdk/client-ses": "~3.1032.0",
35
+ "@aws-sdk/client-sqs": "~3.1032.0",
36
+ "@aws-sdk/client-sts": "~3.1032.0",
37
+ "@aws-sdk/lib-dynamodb": "~3.1032.0",
38
+ "@aws-sdk/s3-presigned-post": "~3.1032.0",
39
+ "@aws-sdk/s3-request-presigner": "~3.1032.0",
40
+ "@azure/cosmos": "~4.9.2",
41
+ "@google/genai": "~1.50.1",
42
+ "@radix-ui/react-accordion": "~1.2.12",
43
+ "@radix-ui/react-avatar": "~1.1.11",
44
+ "@radix-ui/react-checkbox": "~1.3.3",
45
+ "@radix-ui/react-dialog": "~1.1.15",
46
+ "@radix-ui/react-dropdown-menu": "~2.1.16",
47
+ "@radix-ui/react-icons": "~1.3.2",
48
+ "@radix-ui/react-label": "~2.1.8",
49
+ "@radix-ui/react-popover": "~1.1.15",
50
+ "@radix-ui/react-radio-group": "~1.3.8",
51
+ "@radix-ui/react-scroll-area": "~1.2.10",
52
+ "@radix-ui/react-select": "~2.2.6",
53
+ "@radix-ui/react-slot": "~1.2.4",
54
+ "@radix-ui/react-switch": "~1.2.6",
55
+ "@radix-ui/react-toast": "~1.2.15",
56
+ "@smithy/types": "~4.14.1",
57
+ "@storybook/addon-docs": "~10.3.5",
58
+ "@storybook/addon-links": "~10.3.5",
59
+ "@storybook/addon-styling-webpack": "~3.0.2",
60
+ "@storybook/addons": "~7.6.17",
61
+ "@storybook/react": "^10.3.5",
62
+ "@storybook/react-vite": "~10.3.5",
63
+ "@storybook/react-webpack5": "~10.3.5",
64
+ "@types/jsonwebtoken": "~9.0.10",
65
+ "@types/node": "~25.6.0",
66
+ "@types/react": "~19.2.14",
67
+ "@types/react-dom": "~19.2.3",
68
+ "@typescript-eslint/eslint-plugin": "~8.58.2",
69
+ "@typescript-eslint/parser": "~8.58.2",
70
+ "aws-cdk-lib": "~2.250.0",
71
+ "buffer": "~6.0.3",
72
+ "eslint-plugin-storybook": "~10.3.5",
73
+ "globstar": "~1.0.0",
74
+ "jsonwebtoken": "~9.0.3",
75
+ "jwks-rsa": "~4.0.1",
76
+ "node-cache": "~5.1.2",
77
+ "rimraf": "~6.1.3",
78
+ "storybook": "~10.3.5",
79
+ "zod": "~4.3.6"
79
80
  },
80
81
  "files": [
81
82
  "dist/**/*",