@smart-factor/gem-ui-components 0.0.158 → 0.0.159
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.
|
@@ -3,5 +3,6 @@ export interface IconButtonProps extends IconButtonPropsMUI {
|
|
|
3
3
|
loading?: boolean;
|
|
4
4
|
tooltip?: React.ReactNode;
|
|
5
5
|
href?: string;
|
|
6
|
+
tooltipDisableInteractive?: boolean;
|
|
6
7
|
}
|
|
7
|
-
export declare function IconButton({ children, disabled, loading, tooltip, sx, size, ...rest }: IconButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function IconButton({ children, disabled, loading, tooltip, tooltipDisableInteractive, sx, size, ...rest }: IconButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,6 @@ export default meta;
|
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
6
6
|
export declare const Docs: Story;
|
|
7
7
|
export declare const Disabled: Story;
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const WithLoadingSmall: Story;
|
|
9
|
+
export declare const WithLoadingMedium: Story;
|
|
10
|
+
export declare const WithLoadingLarge: Story;
|