@comet/admin 9.0.0-beta.3 → 9.0.0-beta.5
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/lib/common/DeleteDialog.d.ts +1 -0
- package/lib/common/DeleteDialog.d.ts.map +1 -1
- package/lib/common/DeleteDialog.js +8 -1
- package/lib/common/__stories__/Tooltip.stories.js +404 -0
- package/lib/common/buttons/__stories__/Button.stories.js +445 -0
- package/lib/common/buttons/clearinput/ClearInputButton.js +1 -1
- package/lib/common/buttons/delete/__stories__/DeleteButton.stories.js +1 -1
- package/lib/common/toolbar/__stories__/DataGridToolbar.stories.js +76 -0
- package/lib/common/toolbar/__stories__/Toolbar.stories.js +82 -0
- package/lib/dataGrid/__stories__/ClickableRows.stories.js +109 -0
- package/lib/dataGrid/__stories__/CrudMoreActionsMenu.stories.js +50 -0
- package/lib/dataGrid/__stories__/DataGrid.stories.js +94 -0
- package/lib/dataGrid/__stories__/DataGridSingleSelectFilter.stories.js +492 -0
- package/lib/error/errorHandler/ErrorHandlerProvider.d.ts +8 -0
- package/lib/error/errorHandler/ErrorHandlerProvider.d.ts.map +1 -0
- package/lib/error/errorHandler/ErrorHandlerProvider.js +16 -0
- package/lib/error/errorboundary/ErrorBoundary.d.ts.map +1 -1
- package/lib/error/errorboundary/ErrorBoundary.js +26 -18
- package/lib/form/FinalFormInput.d.ts.map +1 -1
- package/lib/form/FinalFormInput.js +3 -2
- package/lib/form/__stories__/AsyncAutocompleteField.stories.js +660 -0
- package/lib/form/__stories__/AsyncSelectField.stories.js +513 -0
- package/lib/form/__stories__/Autocomplete.stories.js +188 -0
- package/lib/form/__stories__/AutocompleteField.stories.js +48 -0
- package/lib/form/__stories__/Checkbox.stories.js +70 -0
- package/lib/form/__stories__/CheckboxField.stories.js +87 -0
- package/lib/form/__stories__/CheckboxListField.stories.js +172 -0
- package/lib/form/__stories__/CustomButtons.stories.js +78 -0
- package/lib/form/__stories__/DependentAsyncSelects.stories.js +91 -0
- package/lib/form/__stories__/DisableAutoNavigation.stories.js +132 -0
- package/lib/form/__stories__/DisabledSubmitIfNotDirty.stories.js +54 -0
- package/lib/form/__stories__/FieldContainer.stories.js +87 -0
- package/lib/form/__stories__/FinalFormFileSelect.stories.js +155 -0
- package/lib/form/__stories__/FormInStack.stories.js +133 -0
- package/lib/form/__stories__/FormLayouts.stories.js +174 -0
- package/lib/form/__stories__/FormValidation.stories.js +82 -0
- package/lib/form/__stories__/Input.stories.js +37 -0
- package/lib/form/__stories__/NumberField.stories.js +38 -0
- package/lib/form/__stories__/Radio.stories.js +101 -0
- package/lib/form/__stories__/RadioGroupField.stories.js +172 -0
- package/lib/form/__stories__/RangeInput.stories.js +239 -0
- package/lib/form/__stories__/RouterTabs.stories.js +96 -0
- package/lib/form/__stories__/RouterTabsInForm.stories.js +73 -0
- package/lib/form/__stories__/RouterTabsInFormWithSubroutes.stories.js +96 -0
- package/lib/form/__stories__/ScrollToErrorField.stories.js +82 -0
- package/lib/form/__stories__/SearchField.stories.js +38 -0
- package/lib/form/__stories__/Select.stories.js +187 -0
- package/lib/form/__stories__/SelectField.stories.js +100 -0
- package/lib/form/__stories__/ShowErrorStrategies.stories.js +107 -0
- package/lib/form/__stories__/SingleTextField.stories.js +108 -0
- package/lib/form/__stories__/StackInForm.stories.js +53 -0
- package/lib/form/__stories__/SubmitErrors.stories.js +90 -0
- package/lib/form/__stories__/Switch.stories.js +49 -0
- package/lib/form/__stories__/SwitchField.stories.js +87 -0
- package/lib/form/__stories__/Tabs.stories.js +78 -0
- package/lib/form/__stories__/TextAreaField.stories.js +38 -0
- package/lib/form/__stories__/TextField.stories.js +67 -0
- package/lib/form/__stories__/ToggleButtonGroupField.stories.js +312 -0
- package/lib/form/__stories__/TwoLevelValidation.stories.js +168 -0
- package/lib/form/__stories__/Typography.stories.js +71 -0
- package/lib/form/file/__stories__/FileDropzone.stories.js +81 -0
- package/lib/form/file/__stories__/FileSelect.stories.js +139 -0
- package/lib/form/file/__stories__/FileSelectListItem.stories.js +108 -0
- package/lib/form/file/__stories__/FileSelectMultipleExamples.stories.js +187 -0
- package/lib/helpers/useTopOffset.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/section/__stories__/SectionHeadline.stories.js +71 -0
- package/lib/stack/Stack.d.ts.map +1 -1
- package/lib/stack/Stack.js +3 -0
- package/lib/stack/__stories__/RouterTabsNestedStack.stories.js +51 -0
- package/lib/stack/__stories__/Stack.stories.js +14 -0
- package/lib/stack/__stories__/StackBackButton.stories.js +50 -0
- package/lib/stack/__stories__/StackBreadcrumbs.stories.js +139 -0
- package/lib/stack/__stories__/StackBreadcrumbsTabs.stories.js +47 -0
- package/lib/stack/__stories__/StackCustomSeparator.stories.js +47 -0
- package/lib/stack/__stories__/StackLink.stories.js +41 -0
- package/lib/stack/__stories__/StackNested.stories.js +58 -0
- package/lib/stack/__stories__/StackNestedOnInitialPage.stories.js +78 -0
- package/lib/stack/__stories__/StackNestedOneStack.stories.js +90 -0
- package/lib/stack/__stories__/StackPageTitle.stories.js +121 -0
- package/lib/stack/__stories__/StackReactNodeTitle.stories.js +54 -0
- package/lib/stack/__stories__/StackRefApi.stories.js +56 -0
- package/lib/stack/__stories__/StackTableFormQueryAtStack.stories.js +155 -0
- package/lib/stack/__stories__/StackTableFormQueryInTable.stories.js +160 -0
- package/lib/stack/__stories__/StackUrl.stories.js +66 -0
- package/lib/tabs/__stories__/DynamicTabs.stories.js +84 -0
- package/lib/tabs/__stories__/NestedStackSwitchWithRouterTabs.stories.js +84 -0
- package/lib/tabs/__stories__/OverflowIssues.stories.js +224 -0
- package/lib/tabs/__stories__/RouterTabs.stories.js +31 -0
- package/lib/tabs/__stories__/RouterTabsInStack.stories.js +74 -0
- package/lib/tabs/__stories__/RouterTabsInSubroute.stories.js +68 -0
- package/lib/tabs/__stories__/Tabs.stories.js +219 -0
- package/lib/theme/componentsTheme/MuiDataGrid.js +1 -1
- package/lib/translator/ContentTranslationServiceContext.d.ts +1 -0
- package/lib/translator/ContentTranslationServiceContext.d.ts.map +1 -1
- package/lib/translator/ContentTranslationServiceProvider.d.ts +1 -1
- package/lib/translator/ContentTranslationServiceProvider.d.ts.map +1 -1
- package/lib/translator/ContentTranslationServiceProvider.js +4 -2
- package/lib/translator/PlainTextTranslationDialog.d.ts +1 -0
- package/lib/translator/PlainTextTranslationDialog.d.ts.map +1 -1
- package/lib/translator/PlainTextTranslationDialog.js +8 -3
- package/lib/translator/__stories__/ContentTranslation.stories.js +104 -0
- package/package.json +23 -24
|
@@ -4,6 +4,7 @@ interface PlainTextTranslationDialogProps {
|
|
|
4
4
|
originalText: string;
|
|
5
5
|
translatedText: string;
|
|
6
6
|
onApplyTranslation: (value: string) => void;
|
|
7
|
+
multiline?: boolean;
|
|
7
8
|
}
|
|
8
9
|
export declare const PlainTextTranslationDialog: (props: PlainTextTranslationDialogProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PlainTextTranslationDialog.d.ts","sourceRoot":"","sources":["../../src/translator/PlainTextTranslationDialog.tsx"],"names":[],"mappings":"AAIA,UAAU,+BAA+B;IACrC,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"PlainTextTranslationDialog.d.ts","sourceRoot":"","sources":["../../src/translator/PlainTextTranslationDialog.tsx"],"names":[],"mappings":"AAIA,UAAU,+BAA+B;IACrC,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,0BAA0B,GAAI,OAAO,+BAA+B,4CAsBhF,CAAC"}
|
|
@@ -6,7 +6,8 @@ export var PlainTextTranslationDialog = function PlainTextTranslationDialog(prop
|
|
|
6
6
|
onClose = props.onClose,
|
|
7
7
|
originalText = props.originalText,
|
|
8
8
|
translatedText = props.translatedText,
|
|
9
|
-
onApplyTranslation = props.onApplyTranslation
|
|
9
|
+
onApplyTranslation = props.onApplyTranslation,
|
|
10
|
+
multiline = props.multiline;
|
|
10
11
|
return /*#__PURE__*/_jsx(BaseTranslationDialog, {
|
|
11
12
|
open: open,
|
|
12
13
|
onClose: onClose,
|
|
@@ -17,7 +18,9 @@ export var PlainTextTranslationDialog = function PlainTextTranslationDialog(prop
|
|
|
17
18
|
return /*#__PURE__*/_jsx(TextField, {
|
|
18
19
|
value: text,
|
|
19
20
|
disabled: true,
|
|
20
|
-
fullWidth: true
|
|
21
|
+
fullWidth: true,
|
|
22
|
+
multiline: multiline,
|
|
23
|
+
rows: multiline ? 3 : undefined
|
|
21
24
|
});
|
|
22
25
|
},
|
|
23
26
|
renderTranslatedText: function renderTranslatedText(text, _onChange) {
|
|
@@ -26,7 +29,9 @@ export var PlainTextTranslationDialog = function PlainTextTranslationDialog(prop
|
|
|
26
29
|
onChange: function onChange(event) {
|
|
27
30
|
return _onChange(event.target.value);
|
|
28
31
|
},
|
|
29
|
-
fullWidth: true
|
|
32
|
+
fullWidth: true,
|
|
33
|
+
multiline: multiline,
|
|
34
|
+
rows: multiline ? 3 : undefined
|
|
30
35
|
});
|
|
31
36
|
}
|
|
32
37
|
});
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); }
|
|
2
|
+
function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); }
|
|
3
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
|
|
4
|
+
function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
|
|
5
|
+
import { FinalForm } from "../../FinalForm";
|
|
6
|
+
import { TextAreaField } from "../../form/fields/TextAreaField";
|
|
7
|
+
import { TextField } from "../../form/fields/TextField";
|
|
8
|
+
import { FinalFormDebug } from "../../form/FinalFormDebug";
|
|
9
|
+
import { ContentTranslationServiceProvider } from "../ContentTranslationServiceProvider";
|
|
10
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
11
|
+
var reverseTranslate = /*#__PURE__*/function () {
|
|
12
|
+
var _ref = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(text) {
|
|
13
|
+
return _regenerator().w(function (_context) {
|
|
14
|
+
while (1) switch (_context.n) {
|
|
15
|
+
case 0:
|
|
16
|
+
return _context.a(2, text.split("").reverse().join(""));
|
|
17
|
+
}
|
|
18
|
+
}, _callee);
|
|
19
|
+
}));
|
|
20
|
+
return function reverseTranslate(_x) {
|
|
21
|
+
return _ref.apply(this, arguments);
|
|
22
|
+
};
|
|
23
|
+
}();
|
|
24
|
+
var initialValues = {
|
|
25
|
+
title: "Hello World",
|
|
26
|
+
description: "The quick brown fox jumps over the lazy dog."
|
|
27
|
+
};
|
|
28
|
+
var TranslationProvider = function TranslationProvider(_ref2) {
|
|
29
|
+
var children = _ref2.children,
|
|
30
|
+
showApplyTranslationDialog = _ref2.showApplyTranslationDialog;
|
|
31
|
+
return /*#__PURE__*/_jsx(ContentTranslationServiceProvider, {
|
|
32
|
+
enabled: true,
|
|
33
|
+
translate: reverseTranslate,
|
|
34
|
+
showApplyTranslationDialog: showApplyTranslationDialog,
|
|
35
|
+
children: children
|
|
36
|
+
});
|
|
37
|
+
};
|
|
38
|
+
var config = {
|
|
39
|
+
component: ContentTranslationServiceProvider,
|
|
40
|
+
title: "components/translator/ContentTranslation"
|
|
41
|
+
};
|
|
42
|
+
export default config;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Translation is applied immediately when clicking the translate button on a `TextField` or `TextAreaField`.
|
|
46
|
+
*
|
|
47
|
+
* The fake `translate` function used here reverses the input text.
|
|
48
|
+
*/
|
|
49
|
+
export var Default = {
|
|
50
|
+
render: function render() {
|
|
51
|
+
return /*#__PURE__*/_jsx(TranslationProvider, {
|
|
52
|
+
children: /*#__PURE__*/_jsxs(FinalForm, {
|
|
53
|
+
mode: "edit",
|
|
54
|
+
onSubmit: function onSubmit() {
|
|
55
|
+
// not handled
|
|
56
|
+
},
|
|
57
|
+
initialValues: initialValues,
|
|
58
|
+
subscription: {
|
|
59
|
+
values: true
|
|
60
|
+
},
|
|
61
|
+
children: [/*#__PURE__*/_jsx(TextField, {
|
|
62
|
+
name: "title",
|
|
63
|
+
label: "Title",
|
|
64
|
+
fullWidth: true
|
|
65
|
+
}), /*#__PURE__*/_jsx(TextAreaField, {
|
|
66
|
+
name: "description",
|
|
67
|
+
label: "Description",
|
|
68
|
+
fullWidth: true
|
|
69
|
+
}), /*#__PURE__*/_jsx(FinalFormDebug, {})]
|
|
70
|
+
})
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* With `showApplyTranslationDialog` enabled, the translation is shown in a dialog where the user can review
|
|
77
|
+
* and edit it before applying. For `TextAreaField`, the dialog renders the input as a multiline textarea.
|
|
78
|
+
*/
|
|
79
|
+
export var WithApplyTranslationDialog = {
|
|
80
|
+
render: function render() {
|
|
81
|
+
return /*#__PURE__*/_jsx(TranslationProvider, {
|
|
82
|
+
showApplyTranslationDialog: true,
|
|
83
|
+
children: /*#__PURE__*/_jsxs(FinalForm, {
|
|
84
|
+
mode: "edit",
|
|
85
|
+
onSubmit: function onSubmit() {
|
|
86
|
+
// not handled
|
|
87
|
+
},
|
|
88
|
+
initialValues: initialValues,
|
|
89
|
+
subscription: {
|
|
90
|
+
values: true
|
|
91
|
+
},
|
|
92
|
+
children: [/*#__PURE__*/_jsx(TextField, {
|
|
93
|
+
name: "title",
|
|
94
|
+
label: "Title",
|
|
95
|
+
fullWidth: true
|
|
96
|
+
}), /*#__PURE__*/_jsx(TextAreaField, {
|
|
97
|
+
name: "description",
|
|
98
|
+
label: "Description",
|
|
99
|
+
fullWidth: true
|
|
100
|
+
}), /*#__PURE__*/_jsx(FinalFormDebug, {})]
|
|
101
|
+
})
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/admin",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.5",
|
|
4
4
|
"description": "Comet Admin package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/admin/admin",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"lib"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@mui/utils": "^7.3.
|
|
24
|
-
"date-fns": "^4.1
|
|
23
|
+
"@mui/utils": "^7.3.11",
|
|
24
|
+
"date-fns": "^4.2.1",
|
|
25
25
|
"exceljs": "^4.4.0",
|
|
26
26
|
"final-form-set-field-data": "^1.0.2",
|
|
27
27
|
"http-status-codes": "^2.3.0",
|
|
@@ -31,25 +31,24 @@
|
|
|
31
31
|
"query-string": "^7.1.3",
|
|
32
32
|
"react-dropzone": "^14.3.8",
|
|
33
33
|
"use-constant": "^2.0.0",
|
|
34
|
-
"uuid": "^11.1.
|
|
35
|
-
"@comet/admin-icons": "9.0.0-beta.
|
|
34
|
+
"uuid": "^11.1.1",
|
|
35
|
+
"@comet/admin-icons": "9.0.0-beta.5"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@apollo/client": "^3.14.1",
|
|
39
39
|
"@babel/cli": "^7.28.6",
|
|
40
|
-
"@babel/core": "^7.
|
|
40
|
+
"@babel/core": "^7.29.0",
|
|
41
41
|
"@emotion/react": "^11.14.0",
|
|
42
42
|
"@emotion/styled": "^11.14.1",
|
|
43
|
-
"@mui/material": "^7.3.
|
|
44
|
-
"@mui/system": "^7.3.
|
|
45
|
-
"@mui/x-data-grid": "^8.28.
|
|
46
|
-
"@mui/x-data-grid-premium": "^8.28.
|
|
47
|
-
"@mui/x-data-grid-pro": "^8.28.
|
|
48
|
-
"@mui/x-date-pickers": "^8.28.
|
|
49
|
-
"@mui/x-date-pickers-pro": "^8.28.
|
|
43
|
+
"@mui/material": "^7.3.11",
|
|
44
|
+
"@mui/system": "^7.3.11",
|
|
45
|
+
"@mui/x-data-grid": "^8.28.7",
|
|
46
|
+
"@mui/x-data-grid-premium": "^8.28.7",
|
|
47
|
+
"@mui/x-data-grid-pro": "^8.28.7",
|
|
48
|
+
"@mui/x-date-pickers": "^8.28.7",
|
|
49
|
+
"@mui/x-date-pickers-pro": "^8.28.7",
|
|
50
50
|
"@storybook/addon-docs": "^10.3.5",
|
|
51
|
-
"@storybook/
|
|
52
|
-
"@storybook/react-webpack5": "^10.3.5",
|
|
51
|
+
"@storybook/react-vite": "^10.3.5",
|
|
53
52
|
"@testing-library/dom": "^10.4.1",
|
|
54
53
|
"@testing-library/jest-dom": "^6.9.1",
|
|
55
54
|
"@testing-library/react": "^16.3.2",
|
|
@@ -58,23 +57,23 @@
|
|
|
58
57
|
"@types/history": "^4.7.11",
|
|
59
58
|
"@types/lodash.debounce": "^4.0.9",
|
|
60
59
|
"@types/lodash.isequal": "^4.5.8",
|
|
61
|
-
"@types/node": "^24.12.
|
|
62
|
-
"@types/react": "^19.2.
|
|
60
|
+
"@types/node": "^24.12.4",
|
|
61
|
+
"@types/react": "^19.2.15",
|
|
63
62
|
"@types/react-dom": "^19.2.3",
|
|
64
63
|
"@types/react-router": "^5.1.20",
|
|
65
64
|
"@types/react-router-dom": "^5.3.3",
|
|
66
|
-
"eslint": "^9.39.
|
|
65
|
+
"eslint": "^9.39.4",
|
|
67
66
|
"eslint-plugin-storybook": "^10.3.5",
|
|
68
67
|
"final-form": "^4.20.10",
|
|
69
|
-
"graphql": "^16.
|
|
68
|
+
"graphql": "^16.14.0",
|
|
70
69
|
"history": "^4.10.1",
|
|
71
70
|
"jsdom": "^28.1.0",
|
|
72
71
|
"msw": "^2.10.4",
|
|
73
72
|
"npm-run-all2": "^8.0.4",
|
|
74
73
|
"prettier": "^3.6.2",
|
|
75
|
-
"react": "^19.2.
|
|
74
|
+
"react": "^19.2.6",
|
|
76
75
|
"react-dnd": "^16.0.1",
|
|
77
|
-
"react-dom": "^19.2.
|
|
76
|
+
"react-dom": "^19.2.6",
|
|
78
77
|
"react-final-form": "^6.5.9",
|
|
79
78
|
"react-intl": "^7.1.11",
|
|
80
79
|
"react-router": "^5.3.4",
|
|
@@ -85,9 +84,9 @@
|
|
|
85
84
|
"typescript": "^5.9.3",
|
|
86
85
|
"vite-tsconfig-paths": "^6.0.4",
|
|
87
86
|
"vitest": "^4.0.16",
|
|
88
|
-
"@comet/admin-babel-preset": "9.0.0-beta.
|
|
89
|
-
"@comet/eslint-config": "9.0.0-beta.
|
|
90
|
-
"@comet/eslint-plugin": "9.0.0-beta.
|
|
87
|
+
"@comet/admin-babel-preset": "9.0.0-beta.5",
|
|
88
|
+
"@comet/eslint-config": "9.0.0-beta.5",
|
|
89
|
+
"@comet/eslint-plugin": "9.0.0-beta.5"
|
|
91
90
|
},
|
|
92
91
|
"peerDependencies": {
|
|
93
92
|
"@apollo/client": "^3.7.0",
|