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.
- package/dist/_virtual/_rolldown/runtime.cjs +23 -0
- package/dist/components/EmptyState/index.cjs +38 -52
- package/dist/components/EmptyState/index.js +37 -48
- package/dist/components/Icon.cjs +46 -50
- package/dist/components/Icon.js +44 -46
- package/dist/components/InfinityLoadMoreButton/index.cjs +30 -42
- package/dist/components/InfinityLoadMoreButton/index.js +28 -38
- package/dist/components/InfinitySelect/index.cjs +126 -168
- package/dist/components/InfinitySelect/index.js +125 -164
- package/dist/components/MyCheckboxGroup/index.cjs +14 -22
- package/dist/components/MyCheckboxGroup/index.js +13 -18
- package/dist/components/MyDateInput/index.cjs +12 -18
- package/dist/components/MyDateInput/index.js +11 -14
- package/dist/components/MyDatePickerInput/CalendarIcon.cjs +45 -64
- package/dist/components/MyDatePickerInput/CalendarIcon.js +43 -61
- package/dist/components/MyDatePickerInput/index.cjs +12 -18
- package/dist/components/MyDatePickerInput/index.js +11 -14
- package/dist/components/MyDateTimePicker/index.cjs +12 -18
- package/dist/components/MyDateTimePicker/index.js +11 -14
- package/dist/components/MyMonthPickerInput/index.cjs +12 -18
- package/dist/components/MyMonthPickerInput/index.js +11 -14
- package/dist/components/MyMultiSelect/index.cjs +9 -9
- package/dist/components/MyMultiSelect/index.js +8 -5
- package/dist/components/MyNotifications/index.cjs +11 -16
- package/dist/components/MyNotifications/index.js +10 -12
- package/dist/components/MyNumberInput/index.cjs +9 -15
- package/dist/components/MyNumberInput/index.js +8 -11
- package/dist/components/MyRadioGroup/index.cjs +14 -22
- package/dist/components/MyRadioGroup/index.js +13 -18
- package/dist/components/MySelect/index.cjs +9 -15
- package/dist/components/MySelect/index.js +8 -11
- package/dist/components/MyTextInput/index.cjs +9 -15
- package/dist/components/MyTextInput/index.js +8 -11
- package/dist/components/MyTextarea/index.cjs +9 -15
- package/dist/components/MyTextarea/index.js +8 -11
- package/dist/components/MyTimeInput/index.cjs +9 -15
- package/dist/components/MyTimeInput/index.js +8 -11
- package/dist/components/NavItems.cjs +28 -38
- package/dist/components/NavItems.js +26 -34
- package/dist/consts/http-status.cjs +66 -69
- package/dist/consts/http-status.js +66 -65
- package/dist/consts/revalidate.cjs +10 -13
- package/dist/consts/revalidate.js +10 -9
- package/dist/contexts/NavigationHistoryContext/hook.cjs +41 -42
- package/dist/contexts/NavigationHistoryContext/hook.js +40 -38
- package/dist/contexts/NavigationHistoryContext/index.cjs +31 -28
- package/dist/contexts/NavigationHistoryContext/index.js +30 -24
- package/dist/contexts/PageDataContext/index.cjs +15 -18
- package/dist/contexts/PageDataContext/index.js +14 -14
- package/dist/form/Form.cjs +19 -28
- package/dist/form/Form.js +18 -24
- package/dist/form/FormSubmitButton.cjs +15 -27
- package/dist/form/FormSubmitButton.js +14 -23
- package/dist/form/base/FormCheckbox.cjs +15 -23
- package/dist/form/base/FormCheckbox.js +14 -19
- package/dist/form/base/FormCheckboxGroup.cjs +10 -16
- package/dist/form/base/FormCheckboxGroup.js +9 -12
- package/dist/form/base/FormDateInput.cjs +10 -16
- package/dist/form/base/FormDateInput.js +9 -12
- package/dist/form/base/FormDatePickerInput.cjs +10 -16
- package/dist/form/base/FormDatePickerInput.js +9 -12
- package/dist/form/base/FormDateTimePicker.cjs +10 -16
- package/dist/form/base/FormDateTimePicker.js +9 -12
- package/dist/form/base/FormMonthPickerInput.cjs +10 -16
- package/dist/form/base/FormMonthPickerInput.js +9 -12
- package/dist/form/base/FormMultiSelect.cjs +10 -16
- package/dist/form/base/FormMultiSelect.js +9 -12
- package/dist/form/base/FormNumberInput.cjs +12 -16
- package/dist/form/base/FormNumberInput.js +10 -12
- package/dist/form/base/FormRadioGroup.cjs +10 -16
- package/dist/form/base/FormRadioGroup.js +9 -12
- package/dist/form/base/FormSelect.cjs +10 -16
- package/dist/form/base/FormSelect.js +9 -12
- package/dist/form/base/FormSelectInfinity.cjs +15 -21
- package/dist/form/base/FormSelectInfinity.js +14 -17
- package/dist/form/base/FormTextInput.cjs +10 -16
- package/dist/form/base/FormTextInput.js +9 -12
- package/dist/form/base/FormTextarea.cjs +10 -10
- package/dist/form/base/FormTextarea.js +9 -6
- package/dist/form/base/FormTimeInput.cjs +18 -24
- package/dist/form/base/FormTimeInput.js +17 -20
- package/dist/form/utils/nullable-but-required.cjs +14 -17
- package/dist/form/utils/nullable-but-required.js +13 -13
- package/dist/form/utils/optional-but-required.cjs +14 -17
- package/dist/form/utils/optional-but-required.js +13 -13
- package/dist/form/utils/zodValidator.cjs +9 -13
- package/dist/form/utils/zodValidator.js +9 -9
- package/dist/hocs/withController.cjs +43 -54
- package/dist/hocs/withController.js +42 -50
- package/dist/hocs/withModalManager.cjs +29 -35
- package/dist/hocs/withModalManager.js +28 -31
- package/dist/hooks/useBreakpoint.cjs +8 -12
- package/dist/hooks/useBreakpoint.js +7 -8
- package/dist/hooks/useFetchNextPageOnScroll.cjs +13 -21
- package/dist/hooks/useFetchNextPageOnScroll.js +13 -17
- package/dist/hooks/useOnScrollProgress.cjs +33 -37
- package/dist/hooks/useOnScrollProgress.js +32 -33
- package/dist/hooks/useUpdateSearchParams.cjs +22 -22
- package/dist/hooks/useUpdateSearchParams.js +21 -18
- package/dist/hooks/useZodConfig.cjs +14 -19
- package/dist/hooks/useZodConfig.js +12 -15
- package/dist/index.cjs +130 -136
- package/dist/index.d.ts +14 -16
- package/dist/index.js +62 -61
- package/dist/mantine/breakpoints-with-px.cjs +9 -12
- package/dist/mantine/breakpoints-with-px.js +9 -8
- package/dist/mantine/my-default-theme.cjs +23 -41
- package/dist/mantine/my-default-theme.js +22 -37
- package/dist/mantine/to-tailwind-colors.cjs +9 -18
- package/dist/mantine/to-tailwind-colors.js +9 -14
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.cjs +35 -70
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +34 -42
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.cjs +700 -811
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +701 -804
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.cjs +44 -64
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +44 -60
- package/dist/utils/array/groupBy.cjs +30 -40
- package/dist/utils/array/groupBy.js +30 -36
- package/dist/utils/array/shuffleArray.cjs +11 -17
- package/dist/utils/array/shuffleArray.js +11 -13
- package/dist/utils/formatBytes.cjs +12 -11
- package/dist/utils/formatBytes.js +12 -7
- package/dist/utils/isInfinityEmpty.cjs +3 -6
- package/dist/utils/isInfinityEmpty.js +3 -2
- package/dist/utils/ky/addBodyJsonHook.cjs +9 -10
- package/dist/utils/ky/addBodyJsonHook.js +8 -6
- package/dist/utils/ky/parseJson.cjs +6 -9
- package/dist/utils/ky/parseJson.js +6 -5
- package/dist/utils/new-route.cjs +30 -39
- package/dist/utils/new-route.js +30 -35
- package/dist/utils/query-stringify.cjs +5 -8
- package/dist/utils/query-stringify.js +5 -4
- package/dist/utils/virtual-styles.cjs +21 -26
- package/dist/utils/virtual-styles.js +21 -22
- package/package.json +67 -65
package/dist/utils/new-route.cjs
CHANGED
|
@@ -1,45 +1,36 @@
|
|
|
1
|
-
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
-
|
|
43
|
-
|
|
33
|
+
var newRoute = createNewRoute();
|
|
34
|
+
//#endregion
|
|
44
35
|
exports.createNewRoute = createNewRoute;
|
|
45
36
|
exports.newRoute = newRoute;
|
package/dist/utils/new-route.js
CHANGED
|
@@ -1,40 +1,35 @@
|
|
|
1
|
-
import { queryStringify } from
|
|
2
|
-
|
|
1
|
+
import { queryStringify } from "./query-stringify.js";
|
|
2
|
+
//#region src/utils/new-route.ts
|
|
3
3
|
function buildPathFromTemplate(path, params) {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
39
|
-
|
|
33
|
+
var newRoute = createNewRoute();
|
|
34
|
+
//#endregion
|
|
40
35
|
export { createNewRoute, newRoute };
|
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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.
|
|
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
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
"test
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"@
|
|
33
|
-
"@testing-library/
|
|
34
|
-
"@testing-library/
|
|
35
|
-
"@
|
|
36
|
-
"@types/
|
|
37
|
-
"@types/react
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"@mantine/
|
|
51
|
-
"@mantine/
|
|
52
|
-
"@
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"react
|
|
59
|
-
"react-
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
+
}
|