@m4l/layouts 9.3.16 → 9.3.17
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/components/ModuleDetailTabs/ModuleDetailTabs.js +11 -2
- package/components/ModuleDetailTabs/types.d.ts +4 -0
- package/components/ModuleDetailTabs/useModuleDatailTabs.d.ts +18 -17
- package/components/ModuleDetailTabs/useModuleDatailTabs.js +8 -3
- package/hooks/useDynamicAccordions/types.d.ts +1 -1
- package/layouts/NoAuthModuleLayout/slots/NoAuthModuleLayoutSlots.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { NoItemSelected, NoItemPrivileges, ModalProvider, Stack, Tabs, Tab, TabContent } from "@m4l/components";
|
|
3
3
|
import { u as useModuleDetailTabs } from "./useModuleDatailTabs.js";
|
|
4
4
|
function ModuleDetailTabs(props) {
|
|
5
|
-
const { conditionNoMasterSelection, currentTab, detailData, finalTabs, handleChangeTab, hasPrivilegeDetail, endPointData } = useModuleDetailTabs(props);
|
|
5
|
+
const { conditionNoMasterSelection, currentTab, detailData, finalTabs, handleChangeTab, hasPrivilegeDetail, endPointData, refreshDetail } = useModuleDetailTabs(props);
|
|
6
6
|
if (conditionNoMasterSelection) {
|
|
7
7
|
return /* @__PURE__ */ jsx(NoItemSelected, {});
|
|
8
8
|
}
|
|
@@ -31,7 +31,16 @@ function ModuleDetailTabs(props) {
|
|
|
31
31
|
{
|
|
32
32
|
style: { display: isMatched ? "flex" : "none" },
|
|
33
33
|
hasBackground: tab.hasBackground ?? true,
|
|
34
|
-
children: /* @__PURE__ */ jsx(
|
|
34
|
+
children: /* @__PURE__ */ jsx(
|
|
35
|
+
tab.tabContent,
|
|
36
|
+
{
|
|
37
|
+
data: detailData,
|
|
38
|
+
endPointData,
|
|
39
|
+
hasPrivilegeDetail,
|
|
40
|
+
refreshDetail,
|
|
41
|
+
...tab.componentProps
|
|
42
|
+
}
|
|
43
|
+
)
|
|
35
44
|
},
|
|
36
45
|
tab.value
|
|
37
46
|
);
|
|
@@ -19,6 +19,10 @@ export interface ModuleDetailTabContent<T extends Record<string, any> = Record<s
|
|
|
19
19
|
* hasPrivilegeDetail - Indica si el usuario tiene privilegio para ver el detalle.
|
|
20
20
|
*/
|
|
21
21
|
hasPrivilegeDetail?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* refreshDetail - Función para refrescar el detalle.
|
|
24
|
+
*/
|
|
25
|
+
refreshDetail: () => void;
|
|
22
26
|
}
|
|
23
27
|
interface ModuleDetailBaseTab extends Omit<TabProps, 'label'> {
|
|
24
28
|
/**
|
|
@@ -25,14 +25,13 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
25
25
|
id?: string | undefined | undefined;
|
|
26
26
|
disabled?: boolean | undefined;
|
|
27
27
|
action?: React.Ref<import('@mui/material').ButtonBaseActions> | undefined;
|
|
28
|
-
hidden?: boolean | undefined | undefined;
|
|
29
28
|
color?: Extract<import('@m4l/styles').ComponentPalletColor, "default"> | undefined;
|
|
30
29
|
content?: string | undefined | undefined;
|
|
31
|
-
style?: React.CSSProperties | undefined;
|
|
32
30
|
translate?: "yes" | "no" | undefined | undefined;
|
|
33
31
|
urlIcon?: string | undefined;
|
|
34
32
|
lang?: string | undefined | undefined;
|
|
35
33
|
slot?: string | undefined | undefined;
|
|
34
|
+
style?: React.CSSProperties | undefined;
|
|
36
35
|
dir?: string | undefined | undefined;
|
|
37
36
|
className?: string | undefined;
|
|
38
37
|
classes?: (Partial<import('@mui/material').TabClasses> & Partial<import('@mui/material').ClassNameMap<never>>) | undefined;
|
|
@@ -45,12 +44,13 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
45
44
|
accessKey?: string | undefined | undefined;
|
|
46
45
|
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
47
46
|
autoFocus?: boolean | undefined | undefined;
|
|
48
|
-
contentEditable?: "inherit" | (boolean | "
|
|
47
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
49
48
|
contextMenu?: string | undefined | undefined;
|
|
50
|
-
draggable?: (boolean | "
|
|
49
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
51
50
|
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
51
|
+
hidden?: boolean | undefined | undefined;
|
|
52
52
|
nonce?: string | undefined | undefined;
|
|
53
|
-
spellCheck?: (boolean | "
|
|
53
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
54
54
|
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
55
55
|
radioGroup?: string | undefined | undefined;
|
|
56
56
|
role?: import('react').AriaRole | undefined;
|
|
@@ -79,11 +79,11 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
79
79
|
exportparts?: string | undefined | undefined;
|
|
80
80
|
part?: string | undefined | undefined;
|
|
81
81
|
"aria-activedescendant"?: string | undefined | undefined;
|
|
82
|
-
"aria-atomic"?: (boolean | "
|
|
82
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
83
83
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
84
84
|
"aria-braillelabel"?: string | undefined | undefined;
|
|
85
85
|
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
86
|
-
"aria-busy"?: (boolean | "
|
|
86
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
87
87
|
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
88
88
|
"aria-colcount"?: number | undefined | undefined;
|
|
89
89
|
"aria-colindex"?: number | undefined | undefined;
|
|
@@ -94,37 +94,37 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
94
94
|
"aria-describedby"?: string | undefined | undefined;
|
|
95
95
|
"aria-description"?: string | undefined | undefined;
|
|
96
96
|
"aria-details"?: string | undefined | undefined;
|
|
97
|
-
"aria-disabled"?: (boolean | "
|
|
97
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
98
98
|
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
99
99
|
"aria-errormessage"?: string | undefined | undefined;
|
|
100
|
-
"aria-expanded"?: (boolean | "
|
|
100
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
101
101
|
"aria-flowto"?: string | undefined | undefined;
|
|
102
|
-
"aria-grabbed"?: (boolean | "
|
|
102
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
103
103
|
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
104
|
-
"aria-hidden"?: (boolean | "
|
|
104
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
105
105
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
106
106
|
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
107
107
|
"aria-label"?: string | undefined | undefined;
|
|
108
108
|
"aria-labelledby"?: string | undefined | undefined;
|
|
109
109
|
"aria-level"?: number | undefined | undefined;
|
|
110
110
|
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
111
|
-
"aria-modal"?: (boolean | "
|
|
112
|
-
"aria-multiline"?: (boolean | "
|
|
113
|
-
"aria-multiselectable"?: (boolean | "
|
|
111
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
113
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
114
114
|
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
115
115
|
"aria-owns"?: string | undefined | undefined;
|
|
116
116
|
"aria-placeholder"?: string | undefined | undefined;
|
|
117
117
|
"aria-posinset"?: number | undefined | undefined;
|
|
118
118
|
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
119
|
-
"aria-readonly"?: (boolean | "
|
|
119
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
120
120
|
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
121
|
-
"aria-required"?: (boolean | "
|
|
121
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
122
122
|
"aria-roledescription"?: string | undefined | undefined;
|
|
123
123
|
"aria-rowcount"?: number | undefined | undefined;
|
|
124
124
|
"aria-rowindex"?: number | undefined | undefined;
|
|
125
125
|
"aria-rowindextext"?: string | undefined | undefined;
|
|
126
126
|
"aria-rowspan"?: number | undefined | undefined;
|
|
127
|
-
"aria-selected"?: (boolean | "
|
|
127
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
128
128
|
"aria-setsize"?: number | undefined | undefined;
|
|
129
129
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
130
130
|
"aria-valuemax"?: number | undefined | undefined;
|
|
@@ -308,4 +308,5 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
308
308
|
wrapped?: boolean | undefined;
|
|
309
309
|
}[];
|
|
310
310
|
handleChangeTab: (newValue: string) => void;
|
|
311
|
+
refreshDetail: () => void;
|
|
311
312
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useState, useMemo, useEffect } from "react";
|
|
2
|
+
import { useState, useCallback, useMemo, useEffect } from "react";
|
|
3
3
|
import { u as useMasterDetail } from "../../hooks/useMasterDetail/index.js";
|
|
4
4
|
import { useModuleDictionary, useNetwork } from "@m4l/core";
|
|
5
5
|
import { useWindowToolsMF, ObjectLogs, Icon } from "@m4l/components";
|
|
@@ -9,6 +9,7 @@ function useModuleDetailTabs(props) {
|
|
|
9
9
|
const [detailData, setDetailData] = useState(void 0);
|
|
10
10
|
const [endPointData, setEndPointData] = useState(void 0);
|
|
11
11
|
const [hasPrivilegeDetail, setHasPrivilegeDetail] = useState(true);
|
|
12
|
+
const [refreshCount, setRefreshCount] = useState(0);
|
|
12
13
|
const { masterSelection } = useMasterDetail();
|
|
13
14
|
const { getLabel } = useModuleDictionary();
|
|
14
15
|
const { startProgress, stopProgress } = useWindowToolsMF();
|
|
@@ -16,6 +17,9 @@ function useModuleDetailTabs(props) {
|
|
|
16
17
|
const handleChangeTab = (newValue) => {
|
|
17
18
|
setCurrentTab(newValue);
|
|
18
19
|
};
|
|
20
|
+
const refreshDetail = useCallback(() => {
|
|
21
|
+
setRefreshCount((prev) => prev + 1);
|
|
22
|
+
}, [setRefreshCount]);
|
|
19
23
|
const finalTabs = useMemo(() => {
|
|
20
24
|
if (masterSelection === void 0 || masterSelection.length === 0) {
|
|
21
25
|
return [];
|
|
@@ -79,7 +83,7 @@ function useModuleDetailTabs(props) {
|
|
|
79
83
|
setHasPrivilegeDetail(false);
|
|
80
84
|
}
|
|
81
85
|
});
|
|
82
|
-
}, [masterSelection, startProgress, stopProgress, networkOperation, getEndPoint]);
|
|
86
|
+
}, [masterSelection, startProgress, stopProgress, networkOperation, getEndPoint, refreshCount]);
|
|
83
87
|
return {
|
|
84
88
|
conditionNoMasterSelection,
|
|
85
89
|
currentTab,
|
|
@@ -87,7 +91,8 @@ function useModuleDetailTabs(props) {
|
|
|
87
91
|
endPointData,
|
|
88
92
|
hasPrivilegeDetail,
|
|
89
93
|
finalTabs,
|
|
90
|
-
handleChangeTab
|
|
94
|
+
handleChangeTab,
|
|
95
|
+
refreshDetail
|
|
91
96
|
};
|
|
92
97
|
}
|
|
93
98
|
export {
|
|
@@ -54,6 +54,6 @@ export interface ConfigDynamicAccordion<T extends any = any, K extends any = any
|
|
|
54
54
|
export interface useDynamicAccordionsProps<T extends any = any, K extends any = any> {
|
|
55
55
|
configDynamicAccordions: ConfigDynamicAccordion<T, K>[] | GroupConfigDynamicAccordion<T, K>[];
|
|
56
56
|
}
|
|
57
|
-
export interface useBaseDynamicAccordionsProps<T extends any = any, K extends any = any> extends ModuleDetailTabContent {
|
|
57
|
+
export interface useBaseDynamicAccordionsProps<T extends any = any, K extends any = any> extends Omit<ModuleDetailTabContent, 'refreshDetail'> {
|
|
58
58
|
configDynamicAccordions: GroupConfigDynamicAccordion<T, K>[];
|
|
59
59
|
}
|
|
@@ -5,6 +5,6 @@ export declare const ContainerModuleNameStyled: import('@emotion/styled').Styled
|
|
|
5
5
|
export declare const ContentFormDesktopStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
6
6
|
export declare const HeaderContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
7
7
|
export declare const ContainerLanguageAndSettingsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
8
|
-
export declare const ButtonHomeNavigationStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('@m4l/components/src/components/mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "
|
|
8
|
+
export declare const ButtonHomeNavigationStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('@m4l/components/src/components/mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "color" | "content" | "translate" | "lang" | "form" | "label" | "slot" | "style" | "dir" | "variant" | "className" | "classes" | "sx" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "fullWidth" | "disableElevation"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
|
|
9
9
|
export declare const ContainerCompanyLogoStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
10
10
|
export declare const FormContentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|