lkd-web-kit 0.7.31 → 0.8.1

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 (135) hide show
  1. package/dist/_virtual/_rolldown/runtime.cjs +23 -0
  2. package/dist/components/EmptyState/index.cjs +38 -52
  3. package/dist/components/EmptyState/index.js +37 -48
  4. package/dist/components/Icon.cjs +46 -50
  5. package/dist/components/Icon.js +44 -46
  6. package/dist/components/InfinityLoadMoreButton/index.cjs +30 -42
  7. package/dist/components/InfinityLoadMoreButton/index.js +28 -38
  8. package/dist/components/InfinitySelect/index.cjs +126 -168
  9. package/dist/components/InfinitySelect/index.js +125 -164
  10. package/dist/components/MyCheckboxGroup/index.cjs +14 -22
  11. package/dist/components/MyCheckboxGroup/index.js +13 -18
  12. package/dist/components/MyDateInput/index.cjs +12 -18
  13. package/dist/components/MyDateInput/index.js +11 -14
  14. package/dist/components/MyDatePickerInput/CalendarIcon.cjs +45 -64
  15. package/dist/components/MyDatePickerInput/CalendarIcon.js +43 -61
  16. package/dist/components/MyDatePickerInput/index.cjs +12 -18
  17. package/dist/components/MyDatePickerInput/index.js +11 -14
  18. package/dist/components/MyDateTimePicker/index.cjs +12 -18
  19. package/dist/components/MyDateTimePicker/index.js +11 -14
  20. package/dist/components/MyMonthPickerInput/index.cjs +12 -18
  21. package/dist/components/MyMonthPickerInput/index.js +11 -14
  22. package/dist/components/MyMultiSelect/index.cjs +9 -9
  23. package/dist/components/MyMultiSelect/index.js +8 -5
  24. package/dist/components/MyNotifications/index.cjs +11 -16
  25. package/dist/components/MyNotifications/index.js +10 -12
  26. package/dist/components/MyNumberInput/index.cjs +9 -15
  27. package/dist/components/MyNumberInput/index.js +8 -11
  28. package/dist/components/MyRadioGroup/index.cjs +14 -22
  29. package/dist/components/MyRadioGroup/index.js +13 -18
  30. package/dist/components/MySelect/index.cjs +9 -15
  31. package/dist/components/MySelect/index.js +8 -11
  32. package/dist/components/MyTextInput/index.cjs +9 -15
  33. package/dist/components/MyTextInput/index.js +8 -11
  34. package/dist/components/MyTextarea/index.cjs +9 -15
  35. package/dist/components/MyTextarea/index.js +8 -11
  36. package/dist/components/MyTimeInput/index.cjs +9 -15
  37. package/dist/components/MyTimeInput/index.js +8 -11
  38. package/dist/components/NavItems.cjs +28 -38
  39. package/dist/components/NavItems.js +26 -34
  40. package/dist/consts/http-status.cjs +66 -69
  41. package/dist/consts/http-status.js +66 -65
  42. package/dist/consts/revalidate.cjs +10 -13
  43. package/dist/consts/revalidate.js +10 -9
  44. package/dist/contexts/NavigationHistoryContext/hook.cjs +41 -42
  45. package/dist/contexts/NavigationHistoryContext/hook.js +40 -38
  46. package/dist/contexts/NavigationHistoryContext/index.cjs +31 -28
  47. package/dist/contexts/NavigationHistoryContext/index.js +30 -24
  48. package/dist/contexts/PageDataContext/index.cjs +15 -18
  49. package/dist/contexts/PageDataContext/index.js +14 -14
  50. package/dist/form/Form.cjs +19 -28
  51. package/dist/form/Form.js +18 -24
  52. package/dist/form/FormSubmitButton.cjs +15 -27
  53. package/dist/form/FormSubmitButton.js +14 -23
  54. package/dist/form/base/FormCheckbox.cjs +15 -23
  55. package/dist/form/base/FormCheckbox.js +14 -19
  56. package/dist/form/base/FormCheckboxGroup.cjs +10 -16
  57. package/dist/form/base/FormCheckboxGroup.js +9 -12
  58. package/dist/form/base/FormDateInput.cjs +10 -16
  59. package/dist/form/base/FormDateInput.js +9 -12
  60. package/dist/form/base/FormDatePickerInput.cjs +10 -16
  61. package/dist/form/base/FormDatePickerInput.js +9 -12
  62. package/dist/form/base/FormDateTimePicker.cjs +10 -16
  63. package/dist/form/base/FormDateTimePicker.js +9 -12
  64. package/dist/form/base/FormMonthPickerInput.cjs +10 -16
  65. package/dist/form/base/FormMonthPickerInput.js +9 -12
  66. package/dist/form/base/FormMultiSelect.cjs +10 -16
  67. package/dist/form/base/FormMultiSelect.js +9 -12
  68. package/dist/form/base/FormNumberInput.cjs +12 -16
  69. package/dist/form/base/FormNumberInput.js +10 -12
  70. package/dist/form/base/FormRadioGroup.cjs +10 -16
  71. package/dist/form/base/FormRadioGroup.js +9 -12
  72. package/dist/form/base/FormSelect.cjs +10 -16
  73. package/dist/form/base/FormSelect.js +9 -12
  74. package/dist/form/base/FormSelectInfinity.cjs +15 -21
  75. package/dist/form/base/FormSelectInfinity.js +14 -17
  76. package/dist/form/base/FormTextInput.cjs +10 -16
  77. package/dist/form/base/FormTextInput.js +9 -12
  78. package/dist/form/base/FormTextarea.cjs +10 -10
  79. package/dist/form/base/FormTextarea.js +9 -6
  80. package/dist/form/base/FormTimeInput.cjs +18 -24
  81. package/dist/form/base/FormTimeInput.js +17 -20
  82. package/dist/form/utils/nullable-but-required.cjs +14 -17
  83. package/dist/form/utils/nullable-but-required.js +13 -13
  84. package/dist/form/utils/optional-but-required.cjs +14 -17
  85. package/dist/form/utils/optional-but-required.js +13 -13
  86. package/dist/form/utils/zodValidator.cjs +9 -13
  87. package/dist/form/utils/zodValidator.js +9 -9
  88. package/dist/hocs/withController.cjs +43 -54
  89. package/dist/hocs/withController.js +42 -50
  90. package/dist/hocs/withModalManager.cjs +29 -35
  91. package/dist/hocs/withModalManager.js +28 -31
  92. package/dist/hooks/useBreakpoint.cjs +8 -12
  93. package/dist/hooks/useBreakpoint.js +7 -8
  94. package/dist/hooks/useFetchNextPageOnScroll.cjs +13 -21
  95. package/dist/hooks/useFetchNextPageOnScroll.js +13 -17
  96. package/dist/hooks/useOnScrollProgress.cjs +33 -37
  97. package/dist/hooks/useOnScrollProgress.js +32 -33
  98. package/dist/hooks/useUpdateSearchParams.cjs +22 -22
  99. package/dist/hooks/useUpdateSearchParams.js +21 -18
  100. package/dist/hooks/useZodConfig.cjs +14 -19
  101. package/dist/hooks/useZodConfig.js +12 -15
  102. package/dist/index.cjs +130 -136
  103. package/dist/index.d.ts +14 -16
  104. package/dist/index.js +62 -61
  105. package/dist/mantine/breakpoints-with-px.cjs +9 -12
  106. package/dist/mantine/breakpoints-with-px.js +9 -8
  107. package/dist/mantine/my-default-theme.cjs +23 -41
  108. package/dist/mantine/my-default-theme.js +22 -37
  109. package/dist/mantine/to-tailwind-colors.cjs +9 -18
  110. package/dist/mantine/to-tailwind-colors.js +9 -14
  111. package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.cjs +35 -70
  112. package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +34 -42
  113. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.cjs +700 -811
  114. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +701 -804
  115. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.cjs +44 -64
  116. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +44 -60
  117. package/dist/utils/array/groupBy.cjs +30 -40
  118. package/dist/utils/array/groupBy.js +30 -36
  119. package/dist/utils/array/shuffleArray.cjs +11 -17
  120. package/dist/utils/array/shuffleArray.js +11 -13
  121. package/dist/utils/formatBytes.cjs +12 -11
  122. package/dist/utils/formatBytes.js +12 -7
  123. package/dist/utils/isInfinityEmpty.cjs +3 -6
  124. package/dist/utils/isInfinityEmpty.js +3 -2
  125. package/dist/utils/ky/addBodyJsonHook.cjs +9 -10
  126. package/dist/utils/ky/addBodyJsonHook.js +8 -6
  127. package/dist/utils/ky/parseJson.cjs +6 -9
  128. package/dist/utils/ky/parseJson.js +6 -5
  129. package/dist/utils/new-route.cjs +30 -39
  130. package/dist/utils/new-route.js +30 -35
  131. package/dist/utils/query-stringify.cjs +5 -8
  132. package/dist/utils/query-stringify.js +5 -4
  133. package/dist/utils/virtual-styles.cjs +21 -26
  134. package/dist/utils/virtual-styles.js +21 -22
  135. package/package.json +67 -65
@@ -1,45 +1,36 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
-
5
- const queryStringify = require('./query-stringify.cjs');
6
-
1
+ const require_query_stringify = require("./query-stringify.cjs");
2
+ //#region src/utils/new-route.ts
7
3
  function buildPathFromTemplate(path, params) {
8
- return path.replace(/:([a-zA-Z0-9_]+)/g, (_, key) => {
9
- const value = params[key];
10
- if (value === void 0) {
11
- throw new Error(`Falta el parámetro de ruta: ${key}`);
12
- }
13
- return encodeURIComponent(String(value));
14
- });
4
+ return path.replace(/:([a-zA-Z0-9_]+)/g, (_, key) => {
5
+ const value = params[key];
6
+ if (value === void 0) throw new Error(`Falta el parámetro de ruta: ${key}`);
7
+ return encodeURIComponent(String(value));
8
+ });
15
9
  }
16
10
  function createNewRoute(config) {
17
- const globalQueryBuilder = config?.queryBuilder;
18
- function getPathStrategy(arg, options) {
19
- if (options?.pathBuilder) {
20
- return (params) => options.pathBuilder(params);
21
- } else if (typeof arg === "string") {
22
- const template = arg;
23
- return (params) => buildPathFromTemplate(template, params);
24
- } else {
25
- const fn = arg;
26
- return (params) => fn(params);
27
- }
28
- }
29
- function newRoute2(arg, options) {
30
- const pathStrategy = getPathStrategy(arg, options);
31
- const queryBuilder = options?.queryBuilder || globalQueryBuilder;
32
- const queryStrategy = queryBuilder ? (query) => queryBuilder(query) : queryStringify.queryStringify;
33
- return (params = {}) => {
34
- const { query = {}, ...pathParams } = params;
35
- const path = pathStrategy(pathParams);
36
- const queryString = queryStrategy(query);
37
- return path + queryString;
38
- };
39
- }
40
- return newRoute2;
11
+ const globalQueryBuilder = config?.queryBuilder;
12
+ function getPathStrategy(arg, options) {
13
+ if (options?.pathBuilder) return (params) => options.pathBuilder(params);
14
+ else if (typeof arg === "string") {
15
+ const template = arg;
16
+ return (params) => buildPathFromTemplate(template, params);
17
+ } else {
18
+ const fn = arg;
19
+ return (params) => fn(params);
20
+ }
21
+ }
22
+ function newRoute(arg, options) {
23
+ const pathStrategy = getPathStrategy(arg, options);
24
+ const queryBuilder = options?.queryBuilder || globalQueryBuilder;
25
+ const queryStrategy = queryBuilder ? (query) => queryBuilder(query) : require_query_stringify.queryStringify;
26
+ return (params = {}) => {
27
+ const { query = {}, ...pathParams } = params;
28
+ return pathStrategy(pathParams) + queryStrategy(query);
29
+ };
30
+ }
31
+ return newRoute;
41
32
  }
42
- const newRoute = createNewRoute();
43
-
33
+ var newRoute = createNewRoute();
34
+ //#endregion
44
35
  exports.createNewRoute = createNewRoute;
45
36
  exports.newRoute = newRoute;
@@ -1,40 +1,35 @@
1
- import { queryStringify } from './query-stringify.js';
2
-
1
+ import { queryStringify } from "./query-stringify.js";
2
+ //#region src/utils/new-route.ts
3
3
  function buildPathFromTemplate(path, params) {
4
- return path.replace(/:([a-zA-Z0-9_]+)/g, (_, key) => {
5
- const value = params[key];
6
- if (value === void 0) {
7
- throw new Error(`Falta el parámetro de ruta: ${key}`);
8
- }
9
- return encodeURIComponent(String(value));
10
- });
4
+ return path.replace(/:([a-zA-Z0-9_]+)/g, (_, key) => {
5
+ const value = params[key];
6
+ if (value === void 0) throw new Error(`Falta el parámetro de ruta: ${key}`);
7
+ return encodeURIComponent(String(value));
8
+ });
11
9
  }
12
10
  function createNewRoute(config) {
13
- const globalQueryBuilder = config?.queryBuilder;
14
- function getPathStrategy(arg, options) {
15
- if (options?.pathBuilder) {
16
- return (params) => options.pathBuilder(params);
17
- } else if (typeof arg === "string") {
18
- const template = arg;
19
- return (params) => buildPathFromTemplate(template, params);
20
- } else {
21
- const fn = arg;
22
- return (params) => fn(params);
23
- }
24
- }
25
- function newRoute2(arg, options) {
26
- const pathStrategy = getPathStrategy(arg, options);
27
- const queryBuilder = options?.queryBuilder || globalQueryBuilder;
28
- const queryStrategy = queryBuilder ? (query) => queryBuilder(query) : queryStringify;
29
- return (params = {}) => {
30
- const { query = {}, ...pathParams } = params;
31
- const path = pathStrategy(pathParams);
32
- const queryString = queryStrategy(query);
33
- return path + queryString;
34
- };
35
- }
36
- return newRoute2;
11
+ const globalQueryBuilder = config?.queryBuilder;
12
+ function getPathStrategy(arg, options) {
13
+ if (options?.pathBuilder) return (params) => options.pathBuilder(params);
14
+ else if (typeof arg === "string") {
15
+ const template = arg;
16
+ return (params) => buildPathFromTemplate(template, params);
17
+ } else {
18
+ const fn = arg;
19
+ return (params) => fn(params);
20
+ }
21
+ }
22
+ function newRoute(arg, options) {
23
+ const pathStrategy = getPathStrategy(arg, options);
24
+ const queryBuilder = options?.queryBuilder || globalQueryBuilder;
25
+ const queryStrategy = queryBuilder ? (query) => queryBuilder(query) : queryStringify;
26
+ return (params = {}) => {
27
+ const { query = {}, ...pathParams } = params;
28
+ return pathStrategy(pathParams) + queryStrategy(query);
29
+ };
30
+ }
31
+ return newRoute;
37
32
  }
38
- const newRoute = createNewRoute();
39
-
33
+ var newRoute = createNewRoute();
34
+ //#endregion
40
35
  export { createNewRoute, newRoute };
@@ -1,10 +1,7 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
-
5
- const queryStringify = (query = {}) => {
6
- const entries = Object.entries(query).filter(([, value]) => value !== void 0 && value !== null).map(([key, value]) => [key, String(value)]);
7
- return entries.length ? `?${new URLSearchParams(entries).toString()}` : "";
1
+ //#region src/utils/query-stringify.ts
2
+ var queryStringify = (query = {}) => {
3
+ const entries = Object.entries(query).filter(([, value]) => value !== void 0 && value !== null).map(([key, value]) => [key, String(value)]);
4
+ return entries.length ? `?${new URLSearchParams(entries).toString()}` : "";
8
5
  };
9
-
6
+ //#endregion
10
7
  exports.queryStringify = queryStringify;
@@ -1,6 +1,7 @@
1
- const queryStringify = (query = {}) => {
2
- const entries = Object.entries(query).filter(([, value]) => value !== void 0 && value !== null).map(([key, value]) => [key, String(value)]);
3
- return entries.length ? `?${new URLSearchParams(entries).toString()}` : "";
1
+ //#region src/utils/query-stringify.ts
2
+ var queryStringify = (query = {}) => {
3
+ const entries = Object.entries(query).filter(([, value]) => value !== void 0 && value !== null).map(([key, value]) => [key, String(value)]);
4
+ return entries.length ? `?${new URLSearchParams(entries).toString()}` : "";
4
5
  };
5
-
6
+ //#endregion
6
7
  export { queryStringify };
@@ -1,30 +1,25 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
-
5
- const getVirtualItemProps = (item, virtualizer) => {
6
- return {
7
- ref: virtualizer.measureElement,
8
- ["data-index"]: item.index,
9
- style: {
10
- position: "absolute",
11
- top: 0,
12
- left: 0,
13
- width: "100%",
14
- transform: `translateY(${item.start - virtualizer.options.scrollMargin}px)`
15
- },
16
- key: item.key
17
- };
1
+ //#region src/utils/virtual-styles.ts
2
+ var getVirtualItemProps = (item, virtualizer) => {
3
+ return {
4
+ ref: virtualizer.measureElement,
5
+ ["data-index"]: item.index,
6
+ style: {
7
+ position: "absolute",
8
+ top: 0,
9
+ left: 0,
10
+ width: "100%",
11
+ transform: `translateY(${item.start - virtualizer.options.scrollMargin}px)`
12
+ },
13
+ key: item.key
14
+ };
18
15
  };
19
- const getVirtualContainerProps = (virtualizer) => {
20
- return {
21
- style: {
22
- height: virtualizer.getTotalSize(),
23
- width: "100%",
24
- position: "relative"
25
- }
26
- };
16
+ var getVirtualContainerProps = (virtualizer) => {
17
+ return { style: {
18
+ height: virtualizer.getTotalSize(),
19
+ width: "100%",
20
+ position: "relative"
21
+ } };
27
22
  };
28
-
23
+ //#endregion
29
24
  exports.getVirtualContainerProps = getVirtualContainerProps;
30
25
  exports.getVirtualItemProps = getVirtualItemProps;
@@ -1,25 +1,24 @@
1
- const getVirtualItemProps = (item, virtualizer) => {
2
- return {
3
- ref: virtualizer.measureElement,
4
- ["data-index"]: item.index,
5
- style: {
6
- position: "absolute",
7
- top: 0,
8
- left: 0,
9
- width: "100%",
10
- transform: `translateY(${item.start - virtualizer.options.scrollMargin}px)`
11
- },
12
- key: item.key
13
- };
1
+ //#region src/utils/virtual-styles.ts
2
+ var getVirtualItemProps = (item, virtualizer) => {
3
+ return {
4
+ ref: virtualizer.measureElement,
5
+ ["data-index"]: item.index,
6
+ style: {
7
+ position: "absolute",
8
+ top: 0,
9
+ left: 0,
10
+ width: "100%",
11
+ transform: `translateY(${item.start - virtualizer.options.scrollMargin}px)`
12
+ },
13
+ key: item.key
14
+ };
14
15
  };
15
- const getVirtualContainerProps = (virtualizer) => {
16
- return {
17
- style: {
18
- height: virtualizer.getTotalSize(),
19
- width: "100%",
20
- position: "relative"
21
- }
22
- };
16
+ var getVirtualContainerProps = (virtualizer) => {
17
+ return { style: {
18
+ height: virtualizer.getTotalSize(),
19
+ width: "100%",
20
+ position: "relative"
21
+ } };
23
22
  };
24
-
23
+ //#endregion
25
24
  export { getVirtualContainerProps, getVirtualItemProps };
package/package.json CHANGED
@@ -1,65 +1,67 @@
1
- {
2
- "name": "lkd-web-kit",
3
- "version": "0.7.31",
4
- "description": "A template for creating React component libraries with Vite.",
5
- "author": "LKD",
6
- "license": "MIT",
7
- "type": "module",
8
- "main": "./dist/index.cjs",
9
- "module": "./dist/index.js",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "types": "./dist/index.d.ts",
14
- "require": "./dist/index.cjs",
15
- "import": "./dist/index.js"
16
- }
17
- },
18
- "sideEffects": false,
19
- "files": [
20
- "dist"
21
- ],
22
- "scripts": {
23
- "test": "vitest run",
24
- "test:watch": "vitest",
25
- "build": "tsc && vite build",
26
- "lint": "biome check",
27
- "format": "biome format --write",
28
- "prepublishOnly": "npm run build"
29
- },
30
- "devDependencies": {
31
- "@biomejs/biome": "2.3.8",
32
- "@testing-library/jest-dom": "^6.8.0",
33
- "@testing-library/react": "^16.3.0",
34
- "@testing-library/user-event": "^14.6.1",
35
- "@types/node": "^22.17.2",
36
- "@types/react": "^19.1.10",
37
- "@types/react-dom": "^19.1.7",
38
- "@vitejs/plugin-react-swc": "^3.11.0",
39
- "@vitest/coverage-v8": "^3.2.4",
40
- "jsdom": "^26.1.0",
41
- "rollup-preserve-directives": "^1.1.3",
42
- "typescript": "^5.9.2",
43
- "vite": "^7.1.3",
44
- "vite-plugin-dts": "^4.5.4",
45
- "vitest": "^3.2.4"
46
- },
47
- "peerDependencies": {
48
- "@mantine/core": "^8.3.18",
49
- "@mantine/dates": "^8.3.18",
50
- "@mantine/hooks": "^8.3.18",
51
- "@mantine/notifications": "^8.3.18",
52
- "@tanstack/react-query": "^5.91.2",
53
- "clsx": "^2.1.1",
54
- "ky": "^1.14.3",
55
- "next": "^16.2.0",
56
- "react": "^19.2.4",
57
- "react-dom": "^19.2.4",
58
- "react-hook-form": "^7.71.2",
59
- "react-query-kit": "^3.3.2",
60
- "zod": "^4.3.6"
61
- },
62
- "dependencies": {
63
- "@tanstack/react-virtual": "^3.13.19"
64
- }
65
- }
1
+ {
2
+ "name": "lkd-web-kit",
3
+ "version": "0.8.1",
4
+ "description": "A template for creating React component libraries with Vite.",
5
+ "author": "LKD",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "require": "./dist/index.cjs",
15
+ "import": "./dist/index.js"
16
+ }
17
+ },
18
+ "sideEffects": false,
19
+ "engines": {
20
+ "node": ">=22.12.0"
21
+ },
22
+ "files": ["dist"],
23
+ "scripts": {
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "build": "tsc && vite build",
27
+ "lint": "biome check",
28
+ "format": "biome format --write",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "devDependencies": {
32
+ "@biomejs/biome": "2.4.14",
33
+ "@testing-library/jest-dom": "^6.8.0",
34
+ "@testing-library/react": "^16.3.0",
35
+ "@testing-library/user-event": "^14.6.1",
36
+ "@types/node": "^22.17.2",
37
+ "@types/react": "^19.2.14",
38
+ "@types/react-dom": "^19.2.3",
39
+ "@vitejs/plugin-react-swc": "^4.3.0",
40
+ "@vitest/coverage-v8": "^4.1.5",
41
+ "jsdom": "^26.1.0",
42
+ "rollup": "^4.53.3",
43
+ "rollup-preserve-directives": "^1.1.3",
44
+ "typescript": "^5.9.2",
45
+ "vite": "^8.0.10",
46
+ "vite-plugin-dts": "^5.0.0",
47
+ "vitest": "^4.1.5"
48
+ },
49
+ "peerDependencies": {
50
+ "@mantine/core": "^9.1.1",
51
+ "@mantine/dates": "^9.1.1",
52
+ "@mantine/hooks": "^9.1.1",
53
+ "@mantine/notifications": "^9.1.1",
54
+ "@tanstack/react-query": "^5.100.9",
55
+ "clsx": "^2.1.1",
56
+ "ky": "^2.0.2",
57
+ "next": "^16.2.4",
58
+ "react": "^19.2.5",
59
+ "react-dom": "^19.2.5",
60
+ "react-hook-form": "^7.75.0",
61
+ "react-query-kit": "^3.3.3",
62
+ "zod": "^4.4.3"
63
+ },
64
+ "dependencies": {
65
+ "@tanstack/react-virtual": "^3.13.24"
66
+ }
67
+ }