react-magma-dom 4.3.0-next.3 → 4.3.0-next.4
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/Heading/Heading.stories.d.ts +9 -3
- package/dist/components/Paragraph/Paragraph.stories.d.ts +1 -1
- package/dist/components/Typography/index.d.ts +2 -1
- package/dist/esm/index.js +46 -29
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +81 -81
- package/dist/react-magma-dom.cjs.development.js +46 -29
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/dist/theme/ThemeContext.d.ts +4 -1
- package/dist/theme/magma.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,5 +1,11 @@
|
|
|
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
|
-
export declare const Default: () => JSX.Element;
|
|
4
|
-
export declare const Colors:
|
|
5
|
-
|
|
3
|
+
export declare const Default: (args: any) => JSX.Element;
|
|
4
|
+
export declare const Colors: {
|
|
5
|
+
(args: any): JSX.Element;
|
|
6
|
+
parameters: {
|
|
7
|
+
controls: {
|
|
8
|
+
exclude: string[];
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -1,3 +1,3 @@
|
|
|
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
|
-
export declare const Default: () => JSX.Element;
|
|
3
|
+
export declare const Default: (args: any) => JSX.Element;
|
|
@@ -40,7 +40,8 @@ export declare enum TypographyVisualStyle {
|
|
|
40
40
|
bodyXSmall = "bodyXSmall"
|
|
41
41
|
}
|
|
42
42
|
export declare function getBodyFontFamily(props: any): any;
|
|
43
|
-
export declare
|
|
43
|
+
export declare function getBaseFontColor(props: any, isHeading?: boolean): any;
|
|
44
|
+
export declare const colorStyles: (props: any, isHeading: boolean) => import("@emotion/utils").SerializedStyles;
|
|
44
45
|
export declare const paragraphLargeStyles: (props: any) => import("@emotion/utils").SerializedStyles;
|
|
45
46
|
export declare const paragraphMediumStyles: (props: any) => import("@emotion/utils").SerializedStyles;
|
|
46
47
|
export declare const paragraphSmallStyles: (props: any) => import("@emotion/utils").SerializedStyles;
|