@zydon/common-csr 2.1.17 → 2.1.19
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.
|
@@ -50,7 +50,7 @@ declare const editorClasses: {
|
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
declare const Editor: react.
|
|
53
|
+
declare const Editor: react.MemoExoticComponent<react.ForwardRefExoticComponent<Partial<_tiptap_react.UseEditorOptions> & {
|
|
54
54
|
value?: string | undefined;
|
|
55
55
|
error?: boolean | undefined;
|
|
56
56
|
fullItem?: boolean | undefined;
|
|
@@ -62,6 +62,6 @@ declare const Editor: react.NamedExoticComponent<Partial<_tiptap_react.UseEditor
|
|
|
62
62
|
slotProps?: {
|
|
63
63
|
wrap: _mui_system.SxProps<_mui_material.Theme>;
|
|
64
64
|
} | undefined;
|
|
65
|
-
} & react.RefAttributes<HTMLDivElement
|
|
65
|
+
} & react.RefAttributes<HTMLDivElement>>>;
|
|
66
66
|
|
|
67
67
|
export { Editor, editorClasses };
|
|
@@ -21,6 +21,6 @@ type ImageProps = BoxProps & LazyLoadImageProps & {
|
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
declare const Image: react.
|
|
24
|
+
declare const Image: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ImageProps, "ref"> & react.RefAttributes<HTMLSpanElement>>>;
|
|
25
25
|
|
|
26
26
|
export { Image, ImageProps, ImageRatioType, imageClasses };
|
|
@@ -235,15 +235,15 @@ type NavButtonSectionProps = Omit<NavListProps, 'data' | 'depth'> & {
|
|
|
235
235
|
pathname: string;
|
|
236
236
|
};
|
|
237
237
|
|
|
238
|
-
declare const NavItem$4: react.
|
|
238
|
+
declare const NavItem$4: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<NavItemProps, "ref"> & react.RefAttributes<HTMLButtonElement>>>;
|
|
239
239
|
|
|
240
240
|
declare function NavSectionHorizontal({ sx, data, render, slotProps, enabledRootRedirect, cssVars: overridesVars, }: NavSectionProps): react_jsx_runtime.JSX.Element;
|
|
241
241
|
|
|
242
|
-
declare const NavItem$3: react.
|
|
242
|
+
declare const NavItem$3: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<NavItemProps, "ref"> & react.RefAttributes<HTMLButtonElement>>>;
|
|
243
243
|
|
|
244
244
|
declare const NavSectionMini: ({ sx, data, render, slotProps, enabledRootRedirect, cssVars: overridesVars, }: NavSectionProps) => react_jsx_runtime.JSX.Element;
|
|
245
245
|
|
|
246
|
-
declare const NavItem$2: react.
|
|
246
|
+
declare const NavItem$2: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<NavItemButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>>;
|
|
247
247
|
|
|
248
248
|
declare const NavSectionMiniWithButtons: ({ sx, data, render, slotProps, enabledRootRedirect, cssVars: overridesVars, onNavigate, pathname, }: NavButtonSectionProps) => react_jsx_runtime.JSX.Element;
|
|
249
249
|
|
|
@@ -320,11 +320,11 @@ type UseNavItemProps = {
|
|
|
320
320
|
};
|
|
321
321
|
declare function useNavItem({ path, icon, info, depth, render, hasChild, externalLink, enabledRootRedirect, }: UseNavItemProps): UseNavItemReturn;
|
|
322
322
|
|
|
323
|
-
declare const NavItem$1: react.
|
|
323
|
+
declare const NavItem$1: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<NavItemProps, "ref"> & react.RefAttributes<HTMLButtonElement>>>;
|
|
324
324
|
|
|
325
325
|
declare const NavSectionVertical: ({ sx, data, render, slotProps, enabledRootRedirect, cssVars: overridesVars, }: NavSectionProps) => react_jsx_runtime.JSX.Element;
|
|
326
326
|
|
|
327
|
-
declare const NavItem: react.
|
|
327
|
+
declare const NavItem: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<NavItemButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>>;
|
|
328
328
|
|
|
329
329
|
declare const NavSectionVerticalWithButtons: ({ sx, data, render, slotProps, enabledRootRedirect, cssVars: overridesVars, onNavigate, pathname, }: NavButtonSectionProps) => react_jsx_runtime.JSX.Element;
|
|
330
330
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.1.
|
|
2
|
+
"version": "2.1.19",
|
|
3
3
|
"name": "@zydon/common-csr",
|
|
4
4
|
"description": "Zydon common resources for React projects (only Client-Side Rendering (CSR))",
|
|
5
5
|
"license": "MIT",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"url": "https://github.com/zydontecnologia/commons-csr"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/zydontecnologia/commons-csr",
|
|
12
|
+
"resolutions": {
|
|
13
|
+
"@types/react": "18.3.27",
|
|
14
|
+
"@types/react-dom": "18.3.7"
|
|
15
|
+
},
|
|
12
16
|
"publishConfig": {
|
|
13
17
|
"access": "public"
|
|
14
18
|
},
|
|
@@ -58,10 +62,10 @@
|
|
|
58
62
|
},
|
|
59
63
|
"devDependencies": {
|
|
60
64
|
"@emotion/react": "^11.14.0",
|
|
61
|
-
"@emotion/styled": "^11.14.
|
|
65
|
+
"@emotion/styled": "^11.14.1",
|
|
62
66
|
"@mui/material": "^5.18.0",
|
|
63
67
|
"@mui/system": "^5.18.0",
|
|
64
|
-
"@mui/x-data-grid-premium": "
|
|
68
|
+
"@mui/x-data-grid-premium": "7.22.0",
|
|
65
69
|
"@mui/x-license": "^7.29.1",
|
|
66
70
|
"@testing-library/dom": "10.0.0",
|
|
67
71
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -70,12 +74,12 @@
|
|
|
70
74
|
"@types/jest": "^30.0.0",
|
|
71
75
|
"@types/jest-axe": "^3.5.9",
|
|
72
76
|
"@types/node": "^24.10.1",
|
|
73
|
-
"@types/react": "
|
|
74
|
-
"@types/react-dom": "
|
|
77
|
+
"@types/react": "18.3.27",
|
|
78
|
+
"@types/react-dom": "18.3.7",
|
|
75
79
|
"@types/react-lazy-load-image-component": "^1.6.4",
|
|
76
80
|
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
77
81
|
"@typescript-eslint/parser": "^6.4.1",
|
|
78
|
-
"@zydon/common": "2.7.
|
|
82
|
+
"@zydon/common": "2.7.83",
|
|
79
83
|
"eslint": "^8.47.0",
|
|
80
84
|
"eslint-config-prettier": "^9.0.0",
|
|
81
85
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
@@ -89,8 +93,8 @@
|
|
|
89
93
|
"jest-junit": "^16.0.0",
|
|
90
94
|
"postcss": "^8.4.41",
|
|
91
95
|
"prettier": "^3.0.2",
|
|
92
|
-
"react": "^
|
|
93
|
-
"react-dom": "^
|
|
96
|
+
"react": "^18.3.1",
|
|
97
|
+
"react-dom": "^18.3.1",
|
|
94
98
|
"react-hook-form": "^7.53.0",
|
|
95
99
|
"react-router-dom": "^6.26.1",
|
|
96
100
|
"ts-jest": "^29.2.5",
|
|
@@ -117,12 +121,12 @@
|
|
|
117
121
|
},
|
|
118
122
|
"peerDependencies": {
|
|
119
123
|
"@emotion/react": "^11.14.0",
|
|
120
|
-
"@emotion/styled": "^11.14.
|
|
124
|
+
"@emotion/styled": "^11.14.1",
|
|
121
125
|
"@mui/material": "^5.18.0",
|
|
122
|
-
"@mui/x-data-grid-premium": "
|
|
126
|
+
"@mui/x-data-grid-premium": "7.22.0",
|
|
123
127
|
"@zydon/common": ">=2.x",
|
|
124
|
-
"react": "^
|
|
125
|
-
"react-dom": "^
|
|
128
|
+
"react": "^18.3.1",
|
|
129
|
+
"react-dom": "^18.3.1",
|
|
126
130
|
"react-hook-form": "^7.53.0",
|
|
127
131
|
"react-router-dom": "^6.26.1"
|
|
128
132
|
},
|