@manamerge/mana-atomic-ui 1.0.187 → 1.0.189
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.js +14 -16
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Italic.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/atoms/button.ts +3 -3
- package/dist/themes/themes/manamerge/atoms/icon.ts +1 -1
- 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 +3 -5
- package/dist/themes/themes/manamerge/molecules/accordion.ts +18 -9
- package/dist/themes/themes/manamerge/molecules/cardBanner.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +5 -5
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
- package/dist/types/themes/DavidWebTheme.d.ts +8 -1
- package/dist/types/themes/ManamergeTheme.d.ts +15 -5
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +2 -4
- package/dist/types/themes/manamerge/molecules/accordion.d.ts +8 -1
- package/dist/types/themes/manamerge/molecules/cardBanner.d.ts +1 -0
- package/dist/types/themes/manamerge/molecules/cardSimpleRender.d.ts +4 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -138,17 +138,17 @@ const button = {
|
|
|
138
138
|
default: {
|
|
139
139
|
text: colors.one.b,
|
|
140
140
|
border: `1px solid transparent`, // border setting
|
|
141
|
-
background: colors.
|
|
141
|
+
background: colors.two.g
|
|
142
142
|
},
|
|
143
143
|
hover: {
|
|
144
144
|
text: colors.one.a,
|
|
145
145
|
border: `1px solid transparent`,
|
|
146
|
-
background: `${colors.
|
|
146
|
+
background: `${colors.two.g}`
|
|
147
147
|
},
|
|
148
148
|
active: {
|
|
149
149
|
text: colors.one.a,
|
|
150
150
|
border: `1px solid ${colors.one.a}`,
|
|
151
|
-
background: `${colors.
|
|
151
|
+
background: `${colors.two.g}cc`
|
|
152
152
|
},
|
|
153
153
|
focusVisible: {
|
|
154
154
|
outline: `2px solid ${colors.one.a}`,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -17,7 +17,9 @@ const colors = {
|
|
|
17
17
|
c: "#80C3BA",
|
|
18
18
|
d: "#6FA58E",
|
|
19
19
|
e: "#5E876B",
|
|
20
|
-
f: "#4D694C"
|
|
20
|
+
f: "#4D694C",
|
|
21
|
+
g: "#01160e",
|
|
22
|
+
h: "#012518"
|
|
21
23
|
},
|
|
22
24
|
three: {
|
|
23
25
|
a: "#FFD166",
|
|
@@ -27,10 +29,6 @@ const colors = {
|
|
|
27
29
|
four: {
|
|
28
30
|
a: "#FF1A1A",
|
|
29
31
|
b: "#590E0E"
|
|
30
|
-
},
|
|
31
|
-
five: {
|
|
32
|
-
a: "#01160e",
|
|
33
|
-
b: "#000b07"
|
|
34
32
|
}
|
|
35
33
|
};
|
|
36
34
|
|
|
@@ -1,27 +1,36 @@
|
|
|
1
|
+
import colors from "../miscellaneous/colorpalette";
|
|
2
|
+
|
|
1
3
|
const accordion = {
|
|
2
4
|
"Accordion-primary": {
|
|
3
5
|
width: "100%",
|
|
4
6
|
borderRadius: "8px",
|
|
5
|
-
|
|
7
|
+
border: `1px solid ${colors.two.c}`,
|
|
8
|
+
backgroundTitle: colors.two.g,
|
|
6
9
|
paddingTitle: "16px",
|
|
10
|
+
transition: "all 0.3s ease-in-out",
|
|
7
11
|
hover: {
|
|
8
|
-
background:
|
|
12
|
+
background: `${colors.two.h}`
|
|
9
13
|
},
|
|
10
14
|
focusVisible: {
|
|
11
|
-
outline:
|
|
12
|
-
outlineOffset: "
|
|
15
|
+
outline: `2px solid ${colors.two.a}`,
|
|
16
|
+
outlineOffset: "-8px"
|
|
13
17
|
},
|
|
14
18
|
gap: "10px",
|
|
15
|
-
backgroundDescription:
|
|
19
|
+
backgroundDescription: `${colors.two.g}`,
|
|
16
20
|
atomIcon: {
|
|
17
|
-
variant: "
|
|
21
|
+
variant: "xs",
|
|
22
|
+
size: "12px",
|
|
23
|
+
color: colors.one.b,
|
|
24
|
+
fill: colors.one.b,
|
|
25
|
+
stroke: colors.one.b
|
|
18
26
|
},
|
|
19
27
|
atomHeading: {
|
|
20
|
-
variant: "primary
|
|
21
|
-
|
|
28
|
+
variant: "primary",
|
|
29
|
+
asTag: "h5",
|
|
30
|
+
vColor: ""
|
|
22
31
|
},
|
|
23
32
|
atomText: {
|
|
24
|
-
variant: "
|
|
33
|
+
variant: "primary-light",
|
|
25
34
|
padding: "16px"
|
|
26
35
|
}
|
|
27
36
|
}
|
|
@@ -5,7 +5,7 @@ const cardSimpleRender = {
|
|
|
5
5
|
flexDirection: "column",
|
|
6
6
|
justifyContent: "space-between",
|
|
7
7
|
gap: "20px",
|
|
8
|
-
background: colors.
|
|
8
|
+
background: colors.two.g,
|
|
9
9
|
gradientColor: colors.two.a,
|
|
10
10
|
outline: `2px solid ${colors.two.b}40`,
|
|
11
11
|
borderRadius: "20px",
|
|
@@ -14,15 +14,15 @@ const cardSimpleRender = {
|
|
|
14
14
|
maxWidth: "550px",
|
|
15
15
|
minWidth: "250px",
|
|
16
16
|
focus: {
|
|
17
|
-
|
|
17
|
+
border: "none",
|
|
18
18
|
outline: `2px dashed ${colors.two.c}`,
|
|
19
|
-
|
|
19
|
+
boxShadow: "none",
|
|
20
20
|
transition: "outline 0.5s ease"
|
|
21
21
|
},
|
|
22
22
|
hover: {
|
|
23
|
-
|
|
23
|
+
border: "none",
|
|
24
24
|
outline: `2px solid ${colors.two.c}`,
|
|
25
|
-
|
|
25
|
+
boxShadow: "none",
|
|
26
26
|
transition: "outline 0.5s ease"
|
|
27
27
|
},
|
|
28
28
|
|
|
@@ -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;
|
|
@@ -1247,8 +1247,10 @@ export declare const DavidWebTheme: {
|
|
|
1247
1247
|
"Accordion-primary": {
|
|
1248
1248
|
width: string;
|
|
1249
1249
|
borderRadius: string;
|
|
1250
|
+
border: string;
|
|
1250
1251
|
backgroundTitle: string;
|
|
1251
1252
|
paddingTitle: string;
|
|
1253
|
+
transition: string;
|
|
1252
1254
|
hover: {
|
|
1253
1255
|
background: string;
|
|
1254
1256
|
};
|
|
@@ -1260,10 +1262,15 @@ export declare const DavidWebTheme: {
|
|
|
1260
1262
|
backgroundDescription: string;
|
|
1261
1263
|
atomIcon: {
|
|
1262
1264
|
variant: string;
|
|
1265
|
+
size: string;
|
|
1266
|
+
color: string;
|
|
1267
|
+
fill: string;
|
|
1268
|
+
stroke: string;
|
|
1263
1269
|
};
|
|
1264
1270
|
atomHeading: {
|
|
1265
1271
|
variant: string;
|
|
1266
|
-
|
|
1272
|
+
asTag: string;
|
|
1273
|
+
vColor: string;
|
|
1267
1274
|
};
|
|
1268
1275
|
atomText: {
|
|
1269
1276
|
variant: string;
|
|
@@ -1312,11 +1312,15 @@ export declare const ManamergeTheme: {
|
|
|
1312
1312
|
maxWidth: string;
|
|
1313
1313
|
minWidth: string;
|
|
1314
1314
|
focus: {
|
|
1315
|
+
border: string;
|
|
1315
1316
|
outline: string;
|
|
1317
|
+
boxShadow: string;
|
|
1316
1318
|
transition: string;
|
|
1317
1319
|
};
|
|
1318
1320
|
hover: {
|
|
1321
|
+
border: string;
|
|
1319
1322
|
outline: string;
|
|
1323
|
+
boxShadow: string;
|
|
1320
1324
|
transition: string;
|
|
1321
1325
|
};
|
|
1322
1326
|
atomIcon: {
|
|
@@ -1338,6 +1342,7 @@ export declare const ManamergeTheme: {
|
|
|
1338
1342
|
flexDirection: string;
|
|
1339
1343
|
justifyContent: string;
|
|
1340
1344
|
background: string;
|
|
1345
|
+
border: string;
|
|
1341
1346
|
borderRadius: string;
|
|
1342
1347
|
padding: string;
|
|
1343
1348
|
atomHeading: {
|
|
@@ -1364,8 +1369,10 @@ export declare const ManamergeTheme: {
|
|
|
1364
1369
|
"Accordion-primary": {
|
|
1365
1370
|
width: string;
|
|
1366
1371
|
borderRadius: string;
|
|
1372
|
+
border: string;
|
|
1367
1373
|
backgroundTitle: string;
|
|
1368
1374
|
paddingTitle: string;
|
|
1375
|
+
transition: string;
|
|
1369
1376
|
hover: {
|
|
1370
1377
|
background: string;
|
|
1371
1378
|
};
|
|
@@ -1377,10 +1384,15 @@ export declare const ManamergeTheme: {
|
|
|
1377
1384
|
backgroundDescription: string;
|
|
1378
1385
|
atomIcon: {
|
|
1379
1386
|
variant: string;
|
|
1387
|
+
size: string;
|
|
1388
|
+
color: string;
|
|
1389
|
+
fill: string;
|
|
1390
|
+
stroke: string;
|
|
1380
1391
|
};
|
|
1381
1392
|
atomHeading: {
|
|
1382
1393
|
variant: string;
|
|
1383
|
-
|
|
1394
|
+
asTag: string;
|
|
1395
|
+
vColor: string;
|
|
1384
1396
|
};
|
|
1385
1397
|
atomText: {
|
|
1386
1398
|
variant: string;
|
|
@@ -1455,6 +1467,8 @@ export declare const ManamergeTheme: {
|
|
|
1455
1467
|
d: string;
|
|
1456
1468
|
e: string;
|
|
1457
1469
|
f: string;
|
|
1470
|
+
g: string;
|
|
1471
|
+
h: string;
|
|
1458
1472
|
};
|
|
1459
1473
|
three: {
|
|
1460
1474
|
a: string;
|
|
@@ -1465,10 +1479,6 @@ export declare const ManamergeTheme: {
|
|
|
1465
1479
|
a: string;
|
|
1466
1480
|
b: string;
|
|
1467
1481
|
};
|
|
1468
|
-
five: {
|
|
1469
|
-
a: string;
|
|
1470
|
-
b: string;
|
|
1471
|
-
};
|
|
1472
1482
|
};
|
|
1473
1483
|
pages: {
|
|
1474
1484
|
vod: {
|
|
@@ -18,6 +18,8 @@ declare const colors: {
|
|
|
18
18
|
d: string;
|
|
19
19
|
e: string;
|
|
20
20
|
f: string;
|
|
21
|
+
g: string;
|
|
22
|
+
h: string;
|
|
21
23
|
};
|
|
22
24
|
three: {
|
|
23
25
|
a: string;
|
|
@@ -28,9 +30,5 @@ declare const colors: {
|
|
|
28
30
|
a: string;
|
|
29
31
|
b: string;
|
|
30
32
|
};
|
|
31
|
-
five: {
|
|
32
|
-
a: string;
|
|
33
|
-
b: string;
|
|
34
|
-
};
|
|
35
33
|
};
|
|
36
34
|
export default colors;
|
|
@@ -2,8 +2,10 @@ declare const accordion: {
|
|
|
2
2
|
"Accordion-primary": {
|
|
3
3
|
width: string;
|
|
4
4
|
borderRadius: string;
|
|
5
|
+
border: string;
|
|
5
6
|
backgroundTitle: string;
|
|
6
7
|
paddingTitle: string;
|
|
8
|
+
transition: string;
|
|
7
9
|
hover: {
|
|
8
10
|
background: string;
|
|
9
11
|
};
|
|
@@ -15,10 +17,15 @@ declare const accordion: {
|
|
|
15
17
|
backgroundDescription: string;
|
|
16
18
|
atomIcon: {
|
|
17
19
|
variant: string;
|
|
20
|
+
size: string;
|
|
21
|
+
color: string;
|
|
22
|
+
fill: string;
|
|
23
|
+
stroke: string;
|
|
18
24
|
};
|
|
19
25
|
atomHeading: {
|
|
20
26
|
variant: string;
|
|
21
|
-
|
|
27
|
+
asTag: string;
|
|
28
|
+
vColor: string;
|
|
22
29
|
};
|
|
23
30
|
atomText: {
|
|
24
31
|
variant: string;
|
|
@@ -12,11 +12,15 @@ declare const cardSimpleRender: {
|
|
|
12
12
|
maxWidth: string;
|
|
13
13
|
minWidth: string;
|
|
14
14
|
focus: {
|
|
15
|
+
border: string;
|
|
15
16
|
outline: string;
|
|
17
|
+
boxShadow: string;
|
|
16
18
|
transition: string;
|
|
17
19
|
};
|
|
18
20
|
hover: {
|
|
21
|
+
border: string;
|
|
19
22
|
outline: string;
|
|
23
|
+
boxShadow: string;
|
|
20
24
|
transition: string;
|
|
21
25
|
};
|
|
22
26
|
atomIcon: {
|