@movable/ui 2.13.7 → 2.14.1
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.
|
@@ -14,6 +14,7 @@ type InkWorkflowHeaderProps = {
|
|
|
14
14
|
label: string;
|
|
15
15
|
Stepper?: JSX.Element;
|
|
16
16
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
17
|
+
Subtitle?: JSX.Element;
|
|
17
18
|
};
|
|
18
|
-
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, }: InkWorkflowHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, Subtitle, }: InkWorkflowHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
19
20
|
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -596,12 +596,13 @@ declare type InkToggleTextProps = ToggleButtonProps & {
|
|
|
596
596
|
value: string | number;
|
|
597
597
|
};
|
|
598
598
|
|
|
599
|
-
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, }: InkWorkflowHeaderProps): JSX_2.Element;
|
|
599
|
+
export declare function InkWorkflowHeader({ label, Stepper, ButtonGroup, Subtitle, }: InkWorkflowHeaderProps): JSX_2.Element;
|
|
600
600
|
|
|
601
601
|
export declare const inkWorkflowHeader: InkWorkflowHeaderPageObject;
|
|
602
602
|
|
|
603
603
|
export declare class InkWorkflowHeaderPageObject {
|
|
604
604
|
get label(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
605
|
+
get subtitle(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
605
606
|
get stepper(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
606
607
|
get buttonGroup(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
607
608
|
get primaryAction(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
@@ -612,6 +613,7 @@ declare type InkWorkflowHeaderProps = {
|
|
|
612
613
|
label: string;
|
|
613
614
|
Stepper?: JSX.Element;
|
|
614
615
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
616
|
+
Subtitle?: JSX.Element;
|
|
615
617
|
};
|
|
616
618
|
|
|
617
619
|
export declare function InternalUseOnlyAlert({ message, sx, messageSx, }: InternalUseOnlyAlertProp): JSX_2.Element;
|
|
@@ -674,6 +676,7 @@ declare interface Option_2 {
|
|
|
674
676
|
description?: string;
|
|
675
677
|
subDescription?: string;
|
|
676
678
|
disabled?: boolean;
|
|
679
|
+
bottomContent?: string | JSX.Element;
|
|
677
680
|
}
|
|
678
681
|
|
|
679
682
|
export declare function PageHeaderActionButtons({ primaryAction, secondaryAction, dropdownAction, }: PageHeaderActionButtonsProps): JSX_2.Element;
|