@manamerge/mana-atomic-ui 1.0.46 → 1.0.48
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/index.d.ts +1 -2
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/ManamergeTheme.ts +5 -3
- package/dist/themes/themes/manamerge/fonts/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +1 -0
- package/dist/themes/themes/manamerge/miscellaneous/fontsizes.ts +2 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +3 -2
- package/dist/themes/themes/manamerge/molecules/navigation.ts +1 -2
- package/dist/types/components/Atoms/Heading/Heading.d.ts +1 -1
- package/dist/types/components/Atoms/Text/Text.d.ts +0 -1
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
- package/dist/types/themes/ManamergeTheme.d.ts +13 -13
- package/dist/types/themes/manamerge/molecules/cardSimpleRender.d.ts +1 -0
- package/dist/types/themes/manamerge/molecules/navigation.d.ts +0 -1
- package/package.json +1 -1
|
@@ -109,7 +109,6 @@ export const ManamergeTheme = {
|
|
|
109
109
|
heading,
|
|
110
110
|
button,
|
|
111
111
|
text,
|
|
112
|
-
breakpoints,
|
|
113
112
|
icon,
|
|
114
113
|
headingStyles: heading,
|
|
115
114
|
gradient,
|
|
@@ -128,7 +127,7 @@ export const ManamergeTheme = {
|
|
|
128
127
|
// Layouts
|
|
129
128
|
pint3,
|
|
130
129
|
|
|
131
|
-
//
|
|
130
|
+
// Media queries
|
|
132
131
|
media: {
|
|
133
132
|
tinyMobileUp: `@media only screen and (min-width: ${tinyMobileUp}px)`,
|
|
134
133
|
smallMobileUp: `@media only screen and (min-width: ${smallMobileUp}px)`,
|
|
@@ -141,8 +140,11 @@ export const ManamergeTheme = {
|
|
|
141
140
|
largeDesktopUp: `@media only screen and (min-width: ${largeDesktopUp}px)`,
|
|
142
141
|
superLargeDesktopUp: `@media only screen and (min-width: ${superLargeDesktopUp}px)`
|
|
143
142
|
},
|
|
144
|
-
//
|
|
143
|
+
// breakpoints,
|
|
144
|
+
breakpoints,
|
|
145
|
+
// vSizes
|
|
145
146
|
fontsizes,
|
|
147
|
+
|
|
146
148
|
pages: {
|
|
147
149
|
vod: {
|
|
148
150
|
top: {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,7 +7,7 @@ const cardSimpleRender = {
|
|
|
7
7
|
gradientBackground: `radial-gradient(circle at bottom right, rgba(237, 191, 222, 0.9) 5%, pink 10%, transparent 30%)`,
|
|
8
8
|
border: "2px solid rgb(210, 16, 16)",
|
|
9
9
|
borderRadius: "25px",
|
|
10
|
-
padding: "
|
|
10
|
+
padding: "0px",
|
|
11
11
|
height: "100%",
|
|
12
12
|
maxWidth: "350px",
|
|
13
13
|
minWidth: "200px",
|
|
@@ -26,7 +26,8 @@ const cardSimpleRender = {
|
|
|
26
26
|
variant: "medium"
|
|
27
27
|
},
|
|
28
28
|
atomHeading: {
|
|
29
|
-
variant: "
|
|
29
|
+
variant: "primary",
|
|
30
|
+
as: "h2"
|
|
30
31
|
},
|
|
31
32
|
atomText: {
|
|
32
33
|
variant: "secondary-regular"
|
|
@@ -2,6 +2,6 @@ import React, { ReactNode } from "react";
|
|
|
2
2
|
export interface HeadingTypes {
|
|
3
3
|
variant?: string;
|
|
4
4
|
children: ReactNode;
|
|
5
|
-
as
|
|
5
|
+
as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
6
6
|
}
|
|
7
7
|
export declare const Heading: React.FC<HeadingTypes>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react";
|
|
2
|
+
import { CardSimpleRenderTypes } from "./CardSimpleRender";
|
|
3
|
+
declare const meta: Meta<CardSimpleRenderTypes>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<CardSimpleRenderTypes>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Hover: Story;
|
|
8
|
+
export declare const Flex: Story;
|
|
9
|
+
export declare const FlexExtra: Story;
|
|
10
|
+
export declare const Flex2: Story;
|
|
11
|
+
export declare const Isolado: Story;
|
|
@@ -563,18 +563,6 @@ export declare const ManamergeTheme: {
|
|
|
563
563
|
fontFamily: string;
|
|
564
564
|
};
|
|
565
565
|
};
|
|
566
|
-
breakpoints: {
|
|
567
|
-
tinyMobileUp: number;
|
|
568
|
-
smallMobileUp: number;
|
|
569
|
-
mobileUp: number;
|
|
570
|
-
mobileLandscapeUp: number;
|
|
571
|
-
largeMobileUp: number;
|
|
572
|
-
tabletPortraitUp: number;
|
|
573
|
-
tabletLandscapeUp: number;
|
|
574
|
-
desktopUp: number;
|
|
575
|
-
largeDesktopUp: number;
|
|
576
|
-
superLargeDesktopUp: number;
|
|
577
|
-
};
|
|
578
566
|
icon: {
|
|
579
567
|
"Icon-small": {
|
|
580
568
|
size: string;
|
|
@@ -1036,7 +1024,6 @@ export declare const ManamergeTheme: {
|
|
|
1036
1024
|
focus: {
|
|
1037
1025
|
color: string;
|
|
1038
1026
|
boxShadow: string;
|
|
1039
|
-
transform: string;
|
|
1040
1027
|
};
|
|
1041
1028
|
hover: {
|
|
1042
1029
|
color: string;
|
|
@@ -1188,6 +1175,7 @@ export declare const ManamergeTheme: {
|
|
|
1188
1175
|
};
|
|
1189
1176
|
atomHeading: {
|
|
1190
1177
|
variant: string;
|
|
1178
|
+
as: string;
|
|
1191
1179
|
};
|
|
1192
1180
|
atomText: {
|
|
1193
1181
|
variant: string;
|
|
@@ -1270,6 +1258,18 @@ export declare const ManamergeTheme: {
|
|
|
1270
1258
|
largeDesktopUp: string;
|
|
1271
1259
|
superLargeDesktopUp: string;
|
|
1272
1260
|
};
|
|
1261
|
+
breakpoints: {
|
|
1262
|
+
tinyMobileUp: number;
|
|
1263
|
+
smallMobileUp: number;
|
|
1264
|
+
mobileUp: number;
|
|
1265
|
+
mobileLandscapeUp: number;
|
|
1266
|
+
largeMobileUp: number;
|
|
1267
|
+
tabletPortraitUp: number;
|
|
1268
|
+
tabletLandscapeUp: number;
|
|
1269
|
+
desktopUp: number;
|
|
1270
|
+
largeDesktopUp: number;
|
|
1271
|
+
superLargeDesktopUp: number;
|
|
1272
|
+
};
|
|
1273
1273
|
fontsizes: {
|
|
1274
1274
|
xs: string;
|
|
1275
1275
|
sm: string;
|