@saleor/macaw-ui 1.1.12 → 1.1.14
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.
- package/dist/components/Icons/DashboardIcon.d.ts +22 -0
- package/dist/components/Icons/GraphQLIcon.d.ts +22 -0
- package/dist/components/Icons/index.d.ts +2 -0
- package/dist/components/Paragraph/Paragraph.d.ts +1259 -0
- package/dist/components/Paragraph/Paragraph.stories.d.ts +7 -0
- package/dist/components/Paragraph/index.d.ts +1 -0
- package/dist/components/Text/Text.d.ts +2 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +19 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1021 -939
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -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
|
} & {
|