@uxf/cms 11.2.6 → 11.4.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/cms",
3
- "version": "11.2.6",
3
+ "version": "11.4.0",
4
4
  "description": "UXF Cms",
5
5
  "author": "UXFans <dev@uxf.cz>",
6
6
  "homepage": "https://gitlab.com/uxf-npm/cms#readme",
@@ -31,11 +31,11 @@
31
31
  "@floating-ui/react": "0.26.0",
32
32
  "@redux-devtools/extension": "3.2.5",
33
33
  "@uxf/core": "10.10.1",
34
- "@uxf/data-grid": "11.2.6",
35
- "@uxf/form": "11.1.0",
34
+ "@uxf/data-grid": "11.4.0",
35
+ "@uxf/form": "11.4.0",
36
36
  "@uxf/router": "10.0.0",
37
- "@uxf/ui": "11.1.0",
38
- "@uxf/wysiwyg": "11.1.1",
37
+ "@uxf/ui": "11.4.0",
38
+ "@uxf/wysiwyg": "11.4.0",
39
39
  "axios": "1.5.1",
40
40
  "axios-hooks": "5.0.0",
41
41
  "es6-error": "4.1.1",
@@ -30,7 +30,7 @@ export type GridPageComponentProps = {
30
30
  onAddTitle?: string;
31
31
  selectable?: boolean;
32
32
  customActions?: DataGridProps<any, any>["customActions"];
33
- initialUserConfig?: DataGridUserConfig | Nullish;
33
+ initialUserConfig?: DataGridUserConfig<any> | Nullish;
34
34
  };
35
35
  export type EntityAliasExtractor = (ctx: NextPageContext) => string;
36
36
  type UIComponents = {
@@ -57,6 +57,6 @@ export type GridPageConfig<T extends object = any> = {
57
57
  onAddTitle?: string;
58
58
  selectable?: boolean;
59
59
  customActions?: DataGridProps<any, any>["customActions"];
60
- initialUserConfig?: DataGridUserConfig | Nullish;
60
+ initialUserConfig?: DataGridUserConfig<any> | Nullish;
61
61
  };
62
62
  export {};