react-magma-dom 4.6.0-next.3 → 4.6.0-next.5

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.
@@ -6,3 +6,4 @@ export declare const Disabled: import("@storybook/csf").AnnotatedStoryFn<import(
6
6
  export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
7
7
  export declare const InverseDisabled: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
8
8
  export declare const All: () => JSX.Element;
9
+ export declare const LoadingButton: (args: any) => JSX.Element;
@@ -2,9 +2,6 @@ import * as React from 'react';
2
2
  import { TabsIconPosition } from '../Tabs';
3
3
  import { TabsOrientation } from '../Tabs/shared';
4
4
  import { XOR } from '../../utils';
5
- /**
6
- * @children required
7
- */
8
5
  export interface BaseNavTabProps extends React.HTMLAttributes<HTMLAnchorElement> {
9
6
  /**
10
7
  * @internal
@@ -39,7 +36,7 @@ export interface BaseNavTabProps extends React.HTMLAttributes<HTMLAnchorElement>
39
36
  theme?: any;
40
37
  }
41
38
  export interface NavTabChildrenProps extends BaseNavTabProps {
42
- children: JSX.Element | string;
39
+ children?: JSX.Element | string;
43
40
  /**
44
41
  * The href value of the tab link
45
42
  */
@@ -1,5 +1,7 @@
1
1
  declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
2
2
  export default _default;
3
3
  export declare const Default: () => JSX.Element;
4
+ export declare const IconOnly: () => JSX.Element;
4
5
  export declare const BackgroundColor: () => JSX.Element;
5
6
  export declare const Inverse: () => JSX.Element;
7
+ export declare const CustomTab: () => JSX.Element;
@@ -7,6 +7,11 @@ export interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement> {
7
7
  */
8
8
  color?: string;
9
9
  isInverse?: boolean;
10
+ /**
11
+ * Use when Spinner does not need the "img" role (ex: button loading state)
12
+ * @internal
13
+ */
14
+ noRole?: boolean;
10
15
  /**
11
16
  * The height and width of the spinner. Can be a string or number; if number is provided, the size is in px.
12
17
  * @default 16