@smart-factor/gem-ui-components 0.0.37 → 0.0.40
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.
|
@@ -9,7 +9,10 @@ export interface FixedActionsBottomPanelProps {
|
|
|
9
9
|
secondaryLabel?: string;
|
|
10
10
|
secondaryLoading?: boolean;
|
|
11
11
|
secondaryOnClick?: () => void;
|
|
12
|
-
|
|
12
|
+
tertiaryLabel?: string;
|
|
13
|
+
tertiaryLoading?: boolean;
|
|
14
|
+
tertiaryOnClick?: () => void;
|
|
15
|
+
tertiaryIcon?: ReactNode;
|
|
13
16
|
disabled?: boolean;
|
|
14
17
|
}
|
|
15
|
-
export declare function FixedActionsBottomPanel({ primaryLabel, primaryLoading, primaryOnClick, secondaryLabel, secondaryLoading,
|
|
18
|
+
export declare function FixedActionsBottomPanel({ primaryLabel, primaryLoading, primaryOnClick, secondaryLabel, secondaryLoading, secondaryOnClick, tertiaryLabel, tertiaryLoading, tertiaryIcon, tertiaryOnClick, cancelOnClick, offset, disabled, }: FixedActionsBottomPanelProps): import('react').ReactPortal;
|
|
@@ -7,3 +7,7 @@ type Story = StoryObj<typeof meta>;
|
|
|
7
7
|
export declare const Default: Story;
|
|
8
8
|
export declare const WithPrimary: Story;
|
|
9
9
|
export declare const WithSecondary: Story;
|
|
10
|
+
export declare const WithTertiary: Story;
|
|
11
|
+
export declare const WithCustomTertiaryIcon: Story;
|
|
12
|
+
export declare const WithLoading: Story;
|
|
13
|
+
export declare const Disabled: Story;
|