@saleor/macaw-ui 1.1.13 → 1.1.15

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.
@@ -0,0 +1,7 @@
1
+ import { Paragraph } from './index';
2
+ import { Meta, StoryObj } from '@storybook/react';
3
+
4
+ declare const meta: Meta<typeof Paragraph>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Paragraph>;
7
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export * from './Paragraph';
@@ -4,7 +4,7 @@ import { ReactNode } from 'react';
4
4
 
5
5
  export type TextProps = PropsWithBox<{
6
6
  children: ReactNode;
7
- as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "a" | "strong";
7
+ as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "a" | "strong" | "td";
8
8
  className?: string;
9
9
  size?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
10
10
  }> & TextVariants;
@@ -1260,7 +1260,7 @@ export declare const Text: import('react').ForwardRefExoticComponent<Omit<{
1260
1260
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
1261
1261
  } & import("react").RefAttributes<HTMLElement>, "size" | "children" | "ref" | "as" | "className"> & {
1262
1262
  children: ReactNode;
1263
- as?: "a" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "strong" | undefined;
1263
+ as?: "a" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "strong" | "td" | undefined;
1264
1264
  className?: string | undefined;
1265
1265
  size?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | undefined;
1266
1266
  } & {
@@ -16,6 +16,7 @@ export * from './Input';
16
16
  export * from './List';
17
17
  export * from './Modal';
18
18
  export * from './Multiselect';
19
+ export * from './Paragraph';
19
20
  export * from './Popover';
20
21
  export * from './RadioGroup';
21
22
  export * from './RangeInput';