@m4l/layouts 9.3.1 → 9.3.2

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.
@@ -291,6 +291,7 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
291
291
  onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLDivElement> | undefined;
292
292
  onTransitionEnd?: import('react').TransitionEventHandler<HTMLDivElement> | undefined;
293
293
  onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLDivElement> | undefined;
294
+ dataTestId?: string | undefined;
294
295
  centerRipple?: boolean | undefined;
295
296
  disableRipple?: boolean | undefined;
296
297
  disableTouchRipple?: boolean | undefined;
@@ -301,7 +302,6 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
301
302
  TouchRippleProps?: Partial<import('@mui/material/ButtonBase/TouchRipple').TouchRippleProps> | undefined;
302
303
  touchRippleRef?: React.Ref<import('@mui/material/ButtonBase/TouchRipple').TouchRippleActions> | undefined;
303
304
  disableFocusRipple?: boolean | undefined;
304
- dataTestId?: string | undefined;
305
305
  iconPosition?: ("top" | "bottom" | "start" | "end") | undefined;
306
306
  wrapped?: boolean | undefined;
307
307
  }[];
@@ -1,4 +1,5 @@
1
- interface PropertyValueFieldBase {
1
+ import { PropertyValueProps } from '@m4l/components';
2
+ interface PropertyValueFieldBase extends Pick<PropertyValueProps, 'semanticWidth'> {
2
3
  name: string;
3
4
  type: 'RHFTexfField' | 'component';
4
5
  label: string;
@@ -41,7 +41,7 @@ function useDynamicPaperForm(props) {
41
41
  mandatoryMessage: "*",
42
42
  value: component,
43
43
  dataTestId: field.name,
44
- semanticWidth: "fullWidth"
44
+ semanticWidth: field?.semanticWidth || "fullWidth"
45
45
  },
46
46
  field.name
47
47
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/layouts",
3
- "version": "9.3.1",
3
+ "version": "9.3.2",
4
4
  "license": "UNLICENSED",
5
5
  "author": "M4L Team ",
6
6
  "lint-staged": {