@m4l/components 9.2.30 → 9.2.32

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.
@@ -645,8 +645,8 @@ const createAreasStore = (initProps, storeDevtoolsEnabled = false) => {
645
645
  area3.layouts = newBreakPointsLayouts;
646
646
  area3.layoutItemsIds = newHashLayoutItems;
647
647
  area3.status = "loaded";
648
- const layoutSelected = getParmsFromValue(COOKIE_WINDOW_SELECTED, dataResponse) || "";
649
- helperSelectLayout(state, areaId, layoutSelected, false);
648
+ const layoutSelected = getParmsFromValue(COOKIE_WINDOW_SELECTED, dataResponse) || { currentLayoutId: "" };
649
+ helperSelectLayout(state, areaId, layoutSelected?.currentLayoutId || "", false);
650
650
  });
651
651
  }).catch((_response) => {
652
652
  set((state) => {
@@ -48,9 +48,6 @@ const RHFTextFieldPassword = (props) => {
48
48
  id: name,
49
49
  type: showPassword ? "text" : "password",
50
50
  size,
51
- mandatory,
52
- mandatoryMessage,
53
- helperMessage,
54
51
  error: !!error,
55
52
  disabled,
56
53
  inputProps: {
@@ -8,7 +8,7 @@
8
8
  * - Please do NOT serve this file on production.
9
9
  */
10
10
 
11
- const PACKAGE_VERSION = '2.7.3'
11
+ const PACKAGE_VERSION = '2.7.4'
12
12
  const INTEGRITY_CHECKSUM = '00729d72e3b82faf54ca8b9621dbb96f'
13
13
  const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
14
14
  const activeClientIds = new Set()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.2.30",
3
+ "version": "9.2.32",
4
4
  "license": "UNLICENSED",
5
5
  "lint-staged": {
6
6
  "*.{js,ts,tsx}": "eslint --fix --max-warnings 0 --no-warn-ignored"