@visns-studio/visns-components 5.9.8 → 5.9.9
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/package.json
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@nivo/line": "^0.99.0",
|
|
13
13
|
"@nivo/pie": "^0.99.0",
|
|
14
14
|
"@tinymce/miniature": "^6.0.0",
|
|
15
|
-
"@tinymce/tinymce-react": "^6.2.
|
|
15
|
+
"@tinymce/tinymce-react": "^6.2.1",
|
|
16
16
|
"@visns-studio/visns-datagrid-community": "^1.0.14",
|
|
17
17
|
"@visns-studio/visns-datagrid-enterprise": "^1.0.14",
|
|
18
|
-
"@vitejs/plugin-react": "^4.5.
|
|
18
|
+
"@vitejs/plugin-react": "^4.5.1",
|
|
19
19
|
"add": "^2.0.6",
|
|
20
20
|
"akar-icons": "^1.9.31",
|
|
21
21
|
"array-move": "^4.0.0",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"dayjs": "^1.11.13",
|
|
25
25
|
"fabric": "^6.6.7",
|
|
26
26
|
"file-saver": "^2.0.5",
|
|
27
|
-
"framer-motion": "^12.
|
|
27
|
+
"framer-motion": "^12.16.0",
|
|
28
28
|
"html-react-parser": "^5.2.5",
|
|
29
29
|
"lodash": "^4.17.21",
|
|
30
30
|
"lodash.debounce": "^4.0.8",
|
|
31
31
|
"moment": "^2.30.1",
|
|
32
|
-
"motion": "^12.
|
|
32
|
+
"motion": "^12.16.0",
|
|
33
33
|
"numeral": "^2.0.6",
|
|
34
34
|
"pluralize": "^8.0.0",
|
|
35
35
|
"qrcode.react": "^4.2.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
88
88
|
},
|
|
89
89
|
"name": "@visns-studio/visns-components",
|
|
90
|
-
"version": "5.9.
|
|
90
|
+
"version": "5.9.9",
|
|
91
91
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
92
92
|
"main": "src/index.js",
|
|
93
93
|
"files": [
|
|
@@ -702,12 +702,11 @@ const DataGrid = forwardRef(
|
|
|
702
702
|
}
|
|
703
703
|
});
|
|
704
704
|
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
initialCollapsedState
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
groupsInitializedRef.current = true;
|
|
705
|
+
if (ajaxSetting?.defaultCollapsed === false) {
|
|
706
|
+
} else {
|
|
707
|
+
setCollapsedGroups(initialCollapsedState);
|
|
708
|
+
groupsInitializedRef.current = true;
|
|
709
|
+
}
|
|
711
710
|
}
|
|
712
711
|
}
|
|
713
712
|
|