@manamerge/mana-atomic-ui 1.0.187 → 1.0.188
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 +13 -16
- package/dist/index.js.map +1 -1
- 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/miscellaneous/colorpalette.ts +2 -5
- package/dist/themes/themes/manamerge/molecules/accordion.ts +17 -9
- package/dist/themes/themes/manamerge/molecules/cardBanner.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +5 -5
- package/dist/types/themes/DavidWebTheme.d.ts +7 -1
- package/dist/types/themes/ManamergeTheme.d.ts +13 -5
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -4
- package/dist/types/themes/manamerge/molecules/accordion.d.ts +7 -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
|
@@ -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}`,
|
|
@@ -17,7 +17,8 @@ const colors = {
|
|
|
17
17
|
c: "#80C3BA",
|
|
18
18
|
d: "#6FA58E",
|
|
19
19
|
e: "#5E876B",
|
|
20
|
-
f: "#4D694C"
|
|
20
|
+
f: "#4D694C",
|
|
21
|
+
g: "#01160e"
|
|
21
22
|
},
|
|
22
23
|
three: {
|
|
23
24
|
a: "#FFD166",
|
|
@@ -27,10 +28,6 @@ const colors = {
|
|
|
27
28
|
four: {
|
|
28
29
|
a: "#FF1A1A",
|
|
29
30
|
b: "#590E0E"
|
|
30
|
-
},
|
|
31
|
-
five: {
|
|
32
|
-
a: "#01160e",
|
|
33
|
-
b: "#000b07"
|
|
34
31
|
}
|
|
35
32
|
};
|
|
36
33
|
|
|
@@ -1,27 +1,35 @@
|
|
|
1
|
+
import colors from "../miscellaneous/colorpalette";
|
|
2
|
+
|
|
1
3
|
const accordion = {
|
|
2
4
|
"Accordion-primary": {
|
|
3
5
|
width: "100%",
|
|
4
6
|
borderRadius: "8px",
|
|
5
|
-
backgroundTitle:
|
|
7
|
+
backgroundTitle: colors.two.g,
|
|
6
8
|
paddingTitle: "16px",
|
|
9
|
+
transition: "all 0.3s ease-in-out",
|
|
7
10
|
hover: {
|
|
8
|
-
background:
|
|
11
|
+
background: `${colors.two.g}b3`
|
|
9
12
|
},
|
|
10
13
|
focusVisible: {
|
|
11
|
-
outline:
|
|
12
|
-
outlineOffset: "
|
|
14
|
+
outline: `2px solid ${colors.two.a}`,
|
|
15
|
+
outlineOffset: "-8px"
|
|
13
16
|
},
|
|
14
17
|
gap: "10px",
|
|
15
|
-
backgroundDescription:
|
|
18
|
+
backgroundDescription: `${colors.two.g}80`,
|
|
16
19
|
atomIcon: {
|
|
17
|
-
variant: "
|
|
20
|
+
variant: "xs",
|
|
21
|
+
size: "12px",
|
|
22
|
+
color: colors.one.b,
|
|
23
|
+
fill: colors.one.b,
|
|
24
|
+
stroke: colors.one.b
|
|
18
25
|
},
|
|
19
26
|
atomHeading: {
|
|
20
|
-
variant: "primary
|
|
21
|
-
|
|
27
|
+
variant: "primary",
|
|
28
|
+
asTag: "h5",
|
|
29
|
+
vColor: "none"
|
|
22
30
|
},
|
|
23
31
|
atomText: {
|
|
24
|
-
variant: "
|
|
32
|
+
variant: "primary-light",
|
|
25
33
|
padding: "16px"
|
|
26
34
|
}
|
|
27
35
|
}
|
|
@@ -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
|
|
|
@@ -1249,6 +1249,7 @@ export declare const DavidWebTheme: {
|
|
|
1249
1249
|
borderRadius: string;
|
|
1250
1250
|
backgroundTitle: string;
|
|
1251
1251
|
paddingTitle: string;
|
|
1252
|
+
transition: string;
|
|
1252
1253
|
hover: {
|
|
1253
1254
|
background: string;
|
|
1254
1255
|
};
|
|
@@ -1260,10 +1261,15 @@ export declare const DavidWebTheme: {
|
|
|
1260
1261
|
backgroundDescription: string;
|
|
1261
1262
|
atomIcon: {
|
|
1262
1263
|
variant: string;
|
|
1264
|
+
size: string;
|
|
1265
|
+
color: string;
|
|
1266
|
+
fill: string;
|
|
1267
|
+
stroke: string;
|
|
1263
1268
|
};
|
|
1264
1269
|
atomHeading: {
|
|
1265
1270
|
variant: string;
|
|
1266
|
-
|
|
1271
|
+
asTag: string;
|
|
1272
|
+
vColor: string;
|
|
1267
1273
|
};
|
|
1268
1274
|
atomText: {
|
|
1269
1275
|
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: {
|
|
@@ -1366,6 +1371,7 @@ export declare const ManamergeTheme: {
|
|
|
1366
1371
|
borderRadius: string;
|
|
1367
1372
|
backgroundTitle: string;
|
|
1368
1373
|
paddingTitle: string;
|
|
1374
|
+
transition: string;
|
|
1369
1375
|
hover: {
|
|
1370
1376
|
background: string;
|
|
1371
1377
|
};
|
|
@@ -1377,10 +1383,15 @@ export declare const ManamergeTheme: {
|
|
|
1377
1383
|
backgroundDescription: string;
|
|
1378
1384
|
atomIcon: {
|
|
1379
1385
|
variant: string;
|
|
1386
|
+
size: string;
|
|
1387
|
+
color: string;
|
|
1388
|
+
fill: string;
|
|
1389
|
+
stroke: string;
|
|
1380
1390
|
};
|
|
1381
1391
|
atomHeading: {
|
|
1382
1392
|
variant: string;
|
|
1383
|
-
|
|
1393
|
+
asTag: string;
|
|
1394
|
+
vColor: string;
|
|
1384
1395
|
};
|
|
1385
1396
|
atomText: {
|
|
1386
1397
|
variant: string;
|
|
@@ -1455,6 +1466,7 @@ export declare const ManamergeTheme: {
|
|
|
1455
1466
|
d: string;
|
|
1456
1467
|
e: string;
|
|
1457
1468
|
f: string;
|
|
1469
|
+
g: string;
|
|
1458
1470
|
};
|
|
1459
1471
|
three: {
|
|
1460
1472
|
a: string;
|
|
@@ -1465,10 +1477,6 @@ export declare const ManamergeTheme: {
|
|
|
1465
1477
|
a: string;
|
|
1466
1478
|
b: string;
|
|
1467
1479
|
};
|
|
1468
|
-
five: {
|
|
1469
|
-
a: string;
|
|
1470
|
-
b: string;
|
|
1471
|
-
};
|
|
1472
1480
|
};
|
|
1473
1481
|
pages: {
|
|
1474
1482
|
vod: {
|
|
@@ -18,6 +18,7 @@ declare const colors: {
|
|
|
18
18
|
d: string;
|
|
19
19
|
e: string;
|
|
20
20
|
f: string;
|
|
21
|
+
g: string;
|
|
21
22
|
};
|
|
22
23
|
three: {
|
|
23
24
|
a: string;
|
|
@@ -28,9 +29,5 @@ declare const colors: {
|
|
|
28
29
|
a: string;
|
|
29
30
|
b: string;
|
|
30
31
|
};
|
|
31
|
-
five: {
|
|
32
|
-
a: string;
|
|
33
|
-
b: string;
|
|
34
|
-
};
|
|
35
32
|
};
|
|
36
33
|
export default colors;
|
|
@@ -4,6 +4,7 @@ declare const accordion: {
|
|
|
4
4
|
borderRadius: string;
|
|
5
5
|
backgroundTitle: string;
|
|
6
6
|
paddingTitle: string;
|
|
7
|
+
transition: string;
|
|
7
8
|
hover: {
|
|
8
9
|
background: string;
|
|
9
10
|
};
|
|
@@ -15,10 +16,15 @@ declare const accordion: {
|
|
|
15
16
|
backgroundDescription: string;
|
|
16
17
|
atomIcon: {
|
|
17
18
|
variant: string;
|
|
19
|
+
size: string;
|
|
20
|
+
color: string;
|
|
21
|
+
fill: string;
|
|
22
|
+
stroke: string;
|
|
18
23
|
};
|
|
19
24
|
atomHeading: {
|
|
20
25
|
variant: string;
|
|
21
|
-
|
|
26
|
+
asTag: string;
|
|
27
|
+
vColor: string;
|
|
22
28
|
};
|
|
23
29
|
atomText: {
|
|
24
30
|
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: {
|