@movable/ui 2.14.2 → 2.14.4-alpha.0
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { TypographyProps } from '@mui/material';
|
|
2
|
+
type HeaderSubtitleType = TypographyProps & {
|
|
2
3
|
subtitle: string;
|
|
3
4
|
};
|
|
4
|
-
export declare function HeaderSubtitle({ subtitle }: HeaderSubtitleType): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function HeaderSubtitle({ subtitle, sx, ...rest }: HeaderSubtitleType): import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|
|
@@ -14,7 +14,7 @@ type InkWorkflowHeaderProps = {
|
|
|
14
14
|
label: string;
|
|
15
15
|
Stepper?: JSX.Element;
|
|
16
16
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
17
|
-
|
|
17
|
+
subtitle?: string;
|
|
18
18
|
};
|
|
19
|
-
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup,
|
|
19
|
+
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, subtitle, }: InkWorkflowHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ import { TextFieldProps } from '@mui/material/TextField';
|
|
|
46
46
|
import { Theme } from '@mui/material';
|
|
47
47
|
import { ToggleButtonGroupProps } from '@mui/material';
|
|
48
48
|
import { ToggleButtonProps } from '@mui/material';
|
|
49
|
+
import { TypographyProps } from '@mui/material';
|
|
49
50
|
import { UseControllerProps } from 'react-hook-form';
|
|
50
51
|
import { VariantType as VariantType_2 } from 'notistack';
|
|
51
52
|
|
|
@@ -148,9 +149,9 @@ declare type HeaderMetadataType = {
|
|
|
148
149
|
value: string | JSX.Element;
|
|
149
150
|
};
|
|
150
151
|
|
|
151
|
-
export declare function HeaderSubtitle({ subtitle }: HeaderSubtitleType): JSX_2.Element;
|
|
152
|
+
export declare function HeaderSubtitle({ subtitle, sx, ...rest }: HeaderSubtitleType): JSX_2.Element;
|
|
152
153
|
|
|
153
|
-
declare type HeaderSubtitleType = {
|
|
154
|
+
declare type HeaderSubtitleType = TypographyProps & {
|
|
154
155
|
subtitle: string;
|
|
155
156
|
};
|
|
156
157
|
|
|
@@ -597,7 +598,7 @@ declare type InkToggleTextProps = ToggleButtonProps & {
|
|
|
597
598
|
value: string | number;
|
|
598
599
|
};
|
|
599
600
|
|
|
600
|
-
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup,
|
|
601
|
+
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, subtitle, }: InkWorkflowHeaderProps): JSX_2.Element;
|
|
601
602
|
|
|
602
603
|
export declare const inkWorkflowHeader: InkWorkflowHeaderPageObject;
|
|
603
604
|
|
|
@@ -614,7 +615,7 @@ declare type InkWorkflowHeaderProps = {
|
|
|
614
615
|
label: string;
|
|
615
616
|
Stepper?: JSX.Element;
|
|
616
617
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
617
|
-
|
|
618
|
+
subtitle?: string;
|
|
618
619
|
};
|
|
619
620
|
|
|
620
621
|
export declare function InternalUseOnlyAlert({ message, sx, messageSx, }: InternalUseOnlyAlertProp): JSX_2.Element;
|