@utilitywarehouse/hearth-react-native 0.30.4 → 0.31.1
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +15 -18
- package/CHANGELOG.md +165 -0
- package/build/components/Badge/Badge.js +2 -2
- package/build/components/Badge/Badge.props.d.ts +1 -0
- package/build/components/Badge/BadgeText.d.ts +1 -1
- package/build/components/Badge/BadgeText.js +2 -2
- package/build/components/Container/Container.props.d.ts +2 -2
- package/build/components/ExpandableCard/ExpandableCard.d.ts +1 -1
- package/build/components/ExpandableCard/ExpandableCard.js +13 -2
- package/build/components/ExpandableCard/ExpandableCard.props.d.ts +43 -23
- package/build/components/ExpandableCard/ExpandableCardText.js +1 -1
- package/build/components/ExpandableCard/ExpandableCardTrigger.d.ts +3 -3
- package/build/components/ExpandableCard/ExpandableCardTrigger.props.d.ts +31 -6
- package/build/components/ExpandableCard/ExpandableCardTriggerRoot.d.ts +1 -1
- package/build/components/ExpandableCard/ExpandableCardTriggerRoot.js +13 -2
- package/build/components/Flex/Flex.props.d.ts +2 -2
- package/build/components/FormField/FormField.d.ts +5 -5
- package/build/components/FormField/FormField.js +3 -2
- package/build/components/Modal/Modal.d.ts +1 -1
- package/build/components/Modal/Modal.js +33 -39
- package/build/components/Modal/Modal.props.d.ts +8 -3
- package/build/components/Modal/Modal.shared.types.d.ts +19 -4
- package/build/components/Modal/Modal.web.d.ts +1 -1
- package/build/components/Modal/Modal.web.js +6 -3
- package/build/components/NavModal/NavModal.d.ts +1 -1
- package/build/components/NavModal/NavModal.js +10 -7
- package/build/components/NavModal/NavModal.props.d.ts +4 -3
- package/build/components/Table/TableHeaderCell.js +10 -1
- package/build/components/Textarea/Textarea.d.ts +1 -1
- package/build/components/Textarea/Textarea.js +64 -5
- package/build/components/Textarea/Textarea.props.d.ts +10 -0
- package/build/components/Textarea/TextareaRoot.js +4 -1
- package/build/core/themes.d.ts +92 -88
- package/build/tokens/color.d.ts +82 -80
- package/build/tokens/color.js +41 -40
- package/build/tokens/components/dark/alert.d.ts +6 -6
- package/build/tokens/components/dark/alert.js +6 -6
- package/build/tokens/components/dark/bottom-navigation.d.ts +2 -2
- package/build/tokens/components/dark/bottom-navigation.js +2 -2
- package/build/tokens/components/dark/checkbox.d.ts +1 -1
- package/build/tokens/components/dark/checkbox.js +1 -1
- package/build/tokens/components/dark/icon-button.d.ts +3 -3
- package/build/tokens/components/dark/icon-button.js +3 -3
- package/build/tokens/components/dark/inline-link.d.ts +1 -1
- package/build/tokens/components/dark/inline-link.js +1 -1
- package/build/tokens/components/dark/link.d.ts +3 -3
- package/build/tokens/components/dark/link.js +3 -3
- package/build/tokens/components/dark/navigation.d.ts +2 -2
- package/build/tokens/components/dark/navigation.js +2 -2
- package/build/tokens/components/dark/parts.d.ts +2 -2
- package/build/tokens/components/dark/parts.js +2 -2
- package/build/tokens/components/dark/progress-bar.d.ts +3 -3
- package/build/tokens/components/dark/progress-bar.js +3 -3
- package/build/tokens/components/dark/progress-stepper.d.ts +1 -1
- package/build/tokens/components/dark/progress-stepper.js +1 -1
- package/build/tokens/components/dark/spinner.d.ts +1 -1
- package/build/tokens/components/dark/spinner.js +1 -1
- package/build/tokens/components/dark/table.d.ts +2 -0
- package/build/tokens/components/dark/table.js +2 -0
- package/build/tokens/components/dark/time-picker.d.ts +1 -0
- package/build/tokens/components/dark/time-picker.js +1 -0
- package/build/tokens/components/light/parts.d.ts +3 -3
- package/build/tokens/components/light/parts.js +3 -3
- package/build/tokens/components/light/table.d.ts +2 -0
- package/build/tokens/components/light/table.js +2 -0
- package/build/tokens/components/light/time-picker.d.ts +1 -0
- package/build/tokens/components/light/time-picker.js +1 -0
- package/build/tokens/semantic-dark.d.ts +40 -40
- package/build/tokens/semantic-dark.js +40 -40
- package/docs/changelog.mdx +170 -0
- package/package.json +3 -3
- package/src/components/Badge/Badge.props.ts +1 -0
- package/src/components/Badge/Badge.tsx +6 -1
- package/src/components/Badge/BadgeText.tsx +8 -2
- package/src/components/Container/Container.props.ts +10 -1
- package/src/components/ExpandableCard/ExpandableCard.docs.mdx +89 -37
- package/src/components/ExpandableCard/ExpandableCard.props.ts +51 -27
- package/src/components/ExpandableCard/ExpandableCard.stories.tsx +67 -17
- package/src/components/ExpandableCard/ExpandableCard.tsx +15 -7
- package/src/components/ExpandableCard/ExpandableCardText.tsx +1 -1
- package/src/components/ExpandableCard/ExpandableCardTrigger.props.ts +37 -7
- package/src/components/ExpandableCard/ExpandableCardTriggerRoot.tsx +36 -2
- package/src/components/Flex/Flex.props.ts +16 -2
- package/src/components/FormField/FormField.tsx +2 -1
- package/src/components/List/List.stories.tsx +35 -0
- package/src/components/Modal/Modal.docs.mdx +52 -1
- package/src/components/Modal/Modal.props.ts +21 -6
- package/src/components/Modal/Modal.shared.types.ts +23 -4
- package/src/components/Modal/Modal.stories.tsx +165 -1
- package/src/components/Modal/Modal.tsx +101 -81
- package/src/components/Modal/Modal.web.tsx +29 -23
- package/src/components/NavModal/NavModal.docs.mdx +29 -0
- package/src/components/NavModal/NavModal.props.ts +11 -3
- package/src/components/NavModal/NavModal.stories.tsx +29 -0
- package/src/components/NavModal/NavModal.tsx +39 -33
- package/src/components/Table/TableHeaderCell.tsx +10 -1
- package/src/components/Textarea/Textarea.docs.mdx +33 -1
- package/src/components/Textarea/Textarea.props.ts +11 -2
- package/src/components/Textarea/Textarea.stories.tsx +21 -1
- package/src/components/Textarea/Textarea.tsx +107 -3
- package/src/components/Textarea/TextareaRoot.tsx +6 -2
- package/src/tokens/color.ts +41 -40
- package/src/tokens/components/dark/alert.ts +6 -6
- package/src/tokens/components/dark/bottom-navigation.ts +2 -2
- package/src/tokens/components/dark/checkbox.ts +1 -1
- package/src/tokens/components/dark/icon-button.ts +3 -3
- package/src/tokens/components/dark/inline-link.ts +1 -1
- package/src/tokens/components/dark/link.ts +3 -3
- package/src/tokens/components/dark/navigation.ts +2 -2
- package/src/tokens/components/dark/parts.ts +2 -2
- package/src/tokens/components/dark/progress-bar.ts +3 -3
- package/src/tokens/components/dark/progress-stepper.ts +1 -1
- package/src/tokens/components/dark/spinner.ts +1 -1
- package/src/tokens/components/dark/table.ts +2 -0
- package/src/tokens/components/dark/time-picker.ts +1 -0
- package/src/tokens/components/light/parts.ts +3 -3
- package/src/tokens/components/light/table.ts +2 -0
- package/src/tokens/components/light/time-picker.ts +1 -0
- package/src/tokens/semantic-dark.ts +40 -40
- package/vercel.json +0 -21
package/build/tokens/color.d.ts
CHANGED
|
@@ -88,6 +88,7 @@ export declare const grey: {
|
|
|
88
88
|
readonly '700': "#4c4c4c";
|
|
89
89
|
readonly '800': "#3f3f3f";
|
|
90
90
|
readonly '900': "#3a3837";
|
|
91
|
+
readonly '925': "#2f2d2d";
|
|
91
92
|
readonly '950': "#232323";
|
|
92
93
|
readonly '975': "#191919";
|
|
93
94
|
readonly '1000': "#101010";
|
|
@@ -464,25 +465,25 @@ export declare const light: {
|
|
|
464
465
|
};
|
|
465
466
|
export declare const dark: {
|
|
466
467
|
readonly background: {
|
|
467
|
-
readonly brand: "#
|
|
468
|
+
readonly brand: "#442484";
|
|
468
469
|
readonly loading: "#30302c";
|
|
469
470
|
readonly primary: "#191917";
|
|
470
|
-
readonly secondary: "#
|
|
471
|
+
readonly secondary: "#2f2d2d";
|
|
471
472
|
};
|
|
472
473
|
readonly border: {
|
|
473
|
-
readonly strong: "#
|
|
474
|
-
readonly subtle: "#
|
|
474
|
+
readonly strong: "#888888";
|
|
475
|
+
readonly subtle: "#5b5b5b";
|
|
475
476
|
};
|
|
476
477
|
readonly feedback: {
|
|
477
478
|
readonly danger: {
|
|
478
|
-
readonly border: "#
|
|
479
|
+
readonly border: "#f4412a";
|
|
479
480
|
readonly foreground: {
|
|
480
|
-
readonly default: "#
|
|
481
|
+
readonly default: "#ffffff";
|
|
481
482
|
readonly subtle: "#ff7964";
|
|
482
483
|
};
|
|
483
484
|
readonly surface: {
|
|
484
|
-
readonly default: "#
|
|
485
|
-
readonly subtle: "#
|
|
485
|
+
readonly default: "#de2612";
|
|
486
|
+
readonly subtle: "#6b1f1a";
|
|
486
487
|
};
|
|
487
488
|
};
|
|
488
489
|
readonly functional: {
|
|
@@ -497,36 +498,36 @@ export declare const dark: {
|
|
|
497
498
|
};
|
|
498
499
|
};
|
|
499
500
|
readonly info: {
|
|
500
|
-
readonly border: "#
|
|
501
|
+
readonly border: "#2786f1";
|
|
501
502
|
readonly foreground: {
|
|
502
|
-
readonly default: "#
|
|
503
|
+
readonly default: "#ffffff";
|
|
503
504
|
readonly subtle: "#6bb0ff";
|
|
504
505
|
};
|
|
505
506
|
readonly surface: {
|
|
506
|
-
readonly default: "#
|
|
507
|
-
readonly subtle: "#
|
|
507
|
+
readonly default: "#1c6cd4";
|
|
508
|
+
readonly subtle: "#0b3375";
|
|
508
509
|
};
|
|
509
510
|
};
|
|
510
511
|
readonly positive: {
|
|
511
|
-
readonly border: "#
|
|
512
|
+
readonly border: "#19a660";
|
|
512
513
|
readonly foreground: {
|
|
513
|
-
readonly default: "#
|
|
514
|
+
readonly default: "#ffffff";
|
|
514
515
|
readonly subtle: "#58ca93";
|
|
515
516
|
};
|
|
516
517
|
readonly surface: {
|
|
517
|
-
readonly default: "#
|
|
518
|
-
readonly subtle: "#
|
|
518
|
+
readonly default: "#0f834a";
|
|
519
|
+
readonly subtle: "#074b2a";
|
|
519
520
|
};
|
|
520
521
|
};
|
|
521
522
|
readonly warning: {
|
|
522
|
-
readonly border: "#
|
|
523
|
+
readonly border: "#f56e00";
|
|
523
524
|
readonly foreground: {
|
|
524
|
-
readonly default: "#
|
|
525
|
+
readonly default: "#ffffff";
|
|
525
526
|
readonly subtle: "#ff9639";
|
|
526
527
|
};
|
|
527
528
|
readonly surface: {
|
|
528
|
-
readonly default: "#
|
|
529
|
-
readonly subtle: "#
|
|
529
|
+
readonly default: "#cf5d00";
|
|
530
|
+
readonly subtle: "#893900";
|
|
530
531
|
};
|
|
531
532
|
};
|
|
532
533
|
};
|
|
@@ -569,9 +570,9 @@ export declare const dark: {
|
|
|
569
570
|
};
|
|
570
571
|
readonly surface: {
|
|
571
572
|
readonly strong: {
|
|
572
|
-
readonly active: "#
|
|
573
|
-
readonly default: "#
|
|
574
|
-
readonly hover: "#
|
|
573
|
+
readonly active: "#ddd5eb";
|
|
574
|
+
readonly default: "#af90de";
|
|
575
|
+
readonly hover: "#c6b5e2";
|
|
575
576
|
};
|
|
576
577
|
};
|
|
577
578
|
};
|
|
@@ -654,52 +655,52 @@ export declare const dark: {
|
|
|
654
655
|
};
|
|
655
656
|
};
|
|
656
657
|
readonly shadow: {
|
|
657
|
-
readonly brand: "#
|
|
658
|
-
readonly broadband: "#
|
|
659
|
-
readonly cashback: "#
|
|
660
|
-
readonly default: "#
|
|
661
|
-
readonly energy: "#
|
|
662
|
-
readonly insurance: "#
|
|
663
|
-
readonly mobile: "#
|
|
664
|
-
readonly pig: "#
|
|
658
|
+
readonly brand: "#442484";
|
|
659
|
+
readonly broadband: "#4f6b20";
|
|
660
|
+
readonly cashback: "#7429b5";
|
|
661
|
+
readonly default: "#3f3f3f";
|
|
662
|
+
readonly energy: "#2c6370";
|
|
663
|
+
readonly insurance: "#7f4518";
|
|
664
|
+
readonly mobile: "#8a3260";
|
|
665
|
+
readonly pig: "#7a1f7e";
|
|
665
666
|
};
|
|
666
667
|
readonly surface: {
|
|
667
668
|
readonly brand: {
|
|
668
|
-
readonly default: "#
|
|
669
|
+
readonly default: "#af90de";
|
|
669
670
|
readonly strong: "#26164f";
|
|
670
671
|
readonly subtle: "#442484";
|
|
671
672
|
};
|
|
672
673
|
readonly broadband: {
|
|
673
674
|
readonly default: "#506c21";
|
|
674
|
-
readonly subtle: "#
|
|
675
|
+
readonly subtle: "#4f6b20";
|
|
675
676
|
};
|
|
676
677
|
readonly cashback: {
|
|
677
678
|
readonly default: "#8b2bc9";
|
|
678
|
-
readonly subtle: "#
|
|
679
|
+
readonly subtle: "#7429b5";
|
|
679
680
|
};
|
|
680
681
|
readonly energy: {
|
|
681
682
|
readonly default: "#326e7a";
|
|
682
|
-
readonly subtle: "#
|
|
683
|
+
readonly subtle: "#2c6370";
|
|
683
684
|
};
|
|
684
685
|
readonly highlight: {
|
|
685
686
|
readonly default: "#ffb921";
|
|
686
|
-
readonly subtle: "#
|
|
687
|
+
readonly subtle: "#82692b";
|
|
687
688
|
};
|
|
688
689
|
readonly insurance: {
|
|
689
690
|
readonly default: "#9b4c0e";
|
|
690
|
-
readonly subtle: "#
|
|
691
|
+
readonly subtle: "#7f4518";
|
|
691
692
|
};
|
|
692
693
|
readonly mobile: {
|
|
693
694
|
readonly default: "#a7266d";
|
|
694
|
-
readonly subtle: "#
|
|
695
|
+
readonly subtle: "#8a3260";
|
|
695
696
|
};
|
|
696
697
|
readonly neutral: {
|
|
697
|
-
readonly strong: "#
|
|
698
|
+
readonly strong: "#2f2d2d";
|
|
698
699
|
readonly subtle: "#191917";
|
|
699
700
|
};
|
|
700
701
|
readonly pig: {
|
|
701
702
|
readonly default: "#8f358f";
|
|
702
|
-
readonly subtle: "#
|
|
703
|
+
readonly subtle: "#7a1f7e";
|
|
703
704
|
};
|
|
704
705
|
};
|
|
705
706
|
readonly text: {
|
|
@@ -798,6 +799,7 @@ declare const color: {
|
|
|
798
799
|
readonly '700': "#4c4c4c";
|
|
799
800
|
readonly '800': "#3f3f3f";
|
|
800
801
|
readonly '900': "#3a3837";
|
|
802
|
+
readonly '925': "#2f2d2d";
|
|
801
803
|
readonly '950': "#232323";
|
|
802
804
|
readonly '975': "#191919";
|
|
803
805
|
readonly '1000': "#101010";
|
|
@@ -1174,25 +1176,25 @@ declare const color: {
|
|
|
1174
1176
|
};
|
|
1175
1177
|
readonly dark: {
|
|
1176
1178
|
readonly background: {
|
|
1177
|
-
readonly brand: "#
|
|
1179
|
+
readonly brand: "#442484";
|
|
1178
1180
|
readonly loading: "#30302c";
|
|
1179
1181
|
readonly primary: "#191917";
|
|
1180
|
-
readonly secondary: "#
|
|
1182
|
+
readonly secondary: "#2f2d2d";
|
|
1181
1183
|
};
|
|
1182
1184
|
readonly border: {
|
|
1183
|
-
readonly strong: "#
|
|
1184
|
-
readonly subtle: "#
|
|
1185
|
+
readonly strong: "#888888";
|
|
1186
|
+
readonly subtle: "#5b5b5b";
|
|
1185
1187
|
};
|
|
1186
1188
|
readonly feedback: {
|
|
1187
1189
|
readonly danger: {
|
|
1188
|
-
readonly border: "#
|
|
1190
|
+
readonly border: "#f4412a";
|
|
1189
1191
|
readonly foreground: {
|
|
1190
|
-
readonly default: "#
|
|
1192
|
+
readonly default: "#ffffff";
|
|
1191
1193
|
readonly subtle: "#ff7964";
|
|
1192
1194
|
};
|
|
1193
1195
|
readonly surface: {
|
|
1194
|
-
readonly default: "#
|
|
1195
|
-
readonly subtle: "#
|
|
1196
|
+
readonly default: "#de2612";
|
|
1197
|
+
readonly subtle: "#6b1f1a";
|
|
1196
1198
|
};
|
|
1197
1199
|
};
|
|
1198
1200
|
readonly functional: {
|
|
@@ -1207,36 +1209,36 @@ declare const color: {
|
|
|
1207
1209
|
};
|
|
1208
1210
|
};
|
|
1209
1211
|
readonly info: {
|
|
1210
|
-
readonly border: "#
|
|
1212
|
+
readonly border: "#2786f1";
|
|
1211
1213
|
readonly foreground: {
|
|
1212
|
-
readonly default: "#
|
|
1214
|
+
readonly default: "#ffffff";
|
|
1213
1215
|
readonly subtle: "#6bb0ff";
|
|
1214
1216
|
};
|
|
1215
1217
|
readonly surface: {
|
|
1216
|
-
readonly default: "#
|
|
1217
|
-
readonly subtle: "#
|
|
1218
|
+
readonly default: "#1c6cd4";
|
|
1219
|
+
readonly subtle: "#0b3375";
|
|
1218
1220
|
};
|
|
1219
1221
|
};
|
|
1220
1222
|
readonly positive: {
|
|
1221
|
-
readonly border: "#
|
|
1223
|
+
readonly border: "#19a660";
|
|
1222
1224
|
readonly foreground: {
|
|
1223
|
-
readonly default: "#
|
|
1225
|
+
readonly default: "#ffffff";
|
|
1224
1226
|
readonly subtle: "#58ca93";
|
|
1225
1227
|
};
|
|
1226
1228
|
readonly surface: {
|
|
1227
|
-
readonly default: "#
|
|
1228
|
-
readonly subtle: "#
|
|
1229
|
+
readonly default: "#0f834a";
|
|
1230
|
+
readonly subtle: "#074b2a";
|
|
1229
1231
|
};
|
|
1230
1232
|
};
|
|
1231
1233
|
readonly warning: {
|
|
1232
|
-
readonly border: "#
|
|
1234
|
+
readonly border: "#f56e00";
|
|
1233
1235
|
readonly foreground: {
|
|
1234
|
-
readonly default: "#
|
|
1236
|
+
readonly default: "#ffffff";
|
|
1235
1237
|
readonly subtle: "#ff9639";
|
|
1236
1238
|
};
|
|
1237
1239
|
readonly surface: {
|
|
1238
|
-
readonly default: "#
|
|
1239
|
-
readonly subtle: "#
|
|
1240
|
+
readonly default: "#cf5d00";
|
|
1241
|
+
readonly subtle: "#893900";
|
|
1240
1242
|
};
|
|
1241
1243
|
};
|
|
1242
1244
|
};
|
|
@@ -1279,9 +1281,9 @@ declare const color: {
|
|
|
1279
1281
|
};
|
|
1280
1282
|
readonly surface: {
|
|
1281
1283
|
readonly strong: {
|
|
1282
|
-
readonly active: "#
|
|
1283
|
-
readonly default: "#
|
|
1284
|
-
readonly hover: "#
|
|
1284
|
+
readonly active: "#ddd5eb";
|
|
1285
|
+
readonly default: "#af90de";
|
|
1286
|
+
readonly hover: "#c6b5e2";
|
|
1285
1287
|
};
|
|
1286
1288
|
};
|
|
1287
1289
|
};
|
|
@@ -1364,52 +1366,52 @@ declare const color: {
|
|
|
1364
1366
|
};
|
|
1365
1367
|
};
|
|
1366
1368
|
readonly shadow: {
|
|
1367
|
-
readonly brand: "#
|
|
1368
|
-
readonly broadband: "#
|
|
1369
|
-
readonly cashback: "#
|
|
1370
|
-
readonly default: "#
|
|
1371
|
-
readonly energy: "#
|
|
1372
|
-
readonly insurance: "#
|
|
1373
|
-
readonly mobile: "#
|
|
1374
|
-
readonly pig: "#
|
|
1369
|
+
readonly brand: "#442484";
|
|
1370
|
+
readonly broadband: "#4f6b20";
|
|
1371
|
+
readonly cashback: "#7429b5";
|
|
1372
|
+
readonly default: "#3f3f3f";
|
|
1373
|
+
readonly energy: "#2c6370";
|
|
1374
|
+
readonly insurance: "#7f4518";
|
|
1375
|
+
readonly mobile: "#8a3260";
|
|
1376
|
+
readonly pig: "#7a1f7e";
|
|
1375
1377
|
};
|
|
1376
1378
|
readonly surface: {
|
|
1377
1379
|
readonly brand: {
|
|
1378
|
-
readonly default: "#
|
|
1380
|
+
readonly default: "#af90de";
|
|
1379
1381
|
readonly strong: "#26164f";
|
|
1380
1382
|
readonly subtle: "#442484";
|
|
1381
1383
|
};
|
|
1382
1384
|
readonly broadband: {
|
|
1383
1385
|
readonly default: "#506c21";
|
|
1384
|
-
readonly subtle: "#
|
|
1386
|
+
readonly subtle: "#4f6b20";
|
|
1385
1387
|
};
|
|
1386
1388
|
readonly cashback: {
|
|
1387
1389
|
readonly default: "#8b2bc9";
|
|
1388
|
-
readonly subtle: "#
|
|
1390
|
+
readonly subtle: "#7429b5";
|
|
1389
1391
|
};
|
|
1390
1392
|
readonly energy: {
|
|
1391
1393
|
readonly default: "#326e7a";
|
|
1392
|
-
readonly subtle: "#
|
|
1394
|
+
readonly subtle: "#2c6370";
|
|
1393
1395
|
};
|
|
1394
1396
|
readonly highlight: {
|
|
1395
1397
|
readonly default: "#ffb921";
|
|
1396
|
-
readonly subtle: "#
|
|
1398
|
+
readonly subtle: "#82692b";
|
|
1397
1399
|
};
|
|
1398
1400
|
readonly insurance: {
|
|
1399
1401
|
readonly default: "#9b4c0e";
|
|
1400
|
-
readonly subtle: "#
|
|
1402
|
+
readonly subtle: "#7f4518";
|
|
1401
1403
|
};
|
|
1402
1404
|
readonly mobile: {
|
|
1403
1405
|
readonly default: "#a7266d";
|
|
1404
|
-
readonly subtle: "#
|
|
1406
|
+
readonly subtle: "#8a3260";
|
|
1405
1407
|
};
|
|
1406
1408
|
readonly neutral: {
|
|
1407
|
-
readonly strong: "#
|
|
1409
|
+
readonly strong: "#2f2d2d";
|
|
1408
1410
|
readonly subtle: "#191917";
|
|
1409
1411
|
};
|
|
1410
1412
|
readonly pig: {
|
|
1411
1413
|
readonly default: "#8f358f";
|
|
1412
|
-
readonly subtle: "#
|
|
1414
|
+
readonly subtle: "#7a1f7e";
|
|
1413
1415
|
};
|
|
1414
1416
|
};
|
|
1415
1417
|
readonly text: {
|
package/build/tokens/color.js
CHANGED
|
@@ -88,6 +88,7 @@ export const grey = {
|
|
|
88
88
|
'700': '#4c4c4c',
|
|
89
89
|
'800': '#3f3f3f',
|
|
90
90
|
'900': '#3a3837',
|
|
91
|
+
'925': '#2f2d2d',
|
|
91
92
|
'950': '#232323',
|
|
92
93
|
'975': '#191919',
|
|
93
94
|
'1000': '#101010',
|
|
@@ -464,25 +465,25 @@ export const light = {
|
|
|
464
465
|
};
|
|
465
466
|
export const dark = {
|
|
466
467
|
background: {
|
|
467
|
-
brand: '#
|
|
468
|
+
brand: '#442484',
|
|
468
469
|
loading: '#30302c',
|
|
469
470
|
primary: '#191917',
|
|
470
|
-
secondary: '#
|
|
471
|
+
secondary: '#2f2d2d',
|
|
471
472
|
},
|
|
472
473
|
border: {
|
|
473
|
-
strong: '#
|
|
474
|
-
subtle: '#
|
|
474
|
+
strong: '#888888',
|
|
475
|
+
subtle: '#5b5b5b',
|
|
475
476
|
},
|
|
476
477
|
feedback: {
|
|
477
478
|
danger: {
|
|
478
|
-
border: '#
|
|
479
|
+
border: '#f4412a',
|
|
479
480
|
foreground: {
|
|
480
|
-
default: '#
|
|
481
|
+
default: '#ffffff',
|
|
481
482
|
subtle: '#ff7964',
|
|
482
483
|
},
|
|
483
484
|
surface: {
|
|
484
|
-
default: '#
|
|
485
|
-
subtle: '#
|
|
485
|
+
default: '#de2612',
|
|
486
|
+
subtle: '#6b1f1a',
|
|
486
487
|
},
|
|
487
488
|
},
|
|
488
489
|
functional: {
|
|
@@ -497,36 +498,36 @@ export const dark = {
|
|
|
497
498
|
},
|
|
498
499
|
},
|
|
499
500
|
info: {
|
|
500
|
-
border: '#
|
|
501
|
+
border: '#2786f1',
|
|
501
502
|
foreground: {
|
|
502
|
-
default: '#
|
|
503
|
+
default: '#ffffff',
|
|
503
504
|
subtle: '#6bb0ff',
|
|
504
505
|
},
|
|
505
506
|
surface: {
|
|
506
|
-
default: '#
|
|
507
|
-
subtle: '#
|
|
507
|
+
default: '#1c6cd4',
|
|
508
|
+
subtle: '#0b3375',
|
|
508
509
|
},
|
|
509
510
|
},
|
|
510
511
|
positive: {
|
|
511
|
-
border: '#
|
|
512
|
+
border: '#19a660',
|
|
512
513
|
foreground: {
|
|
513
|
-
default: '#
|
|
514
|
+
default: '#ffffff',
|
|
514
515
|
subtle: '#58ca93',
|
|
515
516
|
},
|
|
516
517
|
surface: {
|
|
517
|
-
default: '#
|
|
518
|
-
subtle: '#
|
|
518
|
+
default: '#0f834a',
|
|
519
|
+
subtle: '#074b2a',
|
|
519
520
|
},
|
|
520
521
|
},
|
|
521
522
|
warning: {
|
|
522
|
-
border: '#
|
|
523
|
+
border: '#f56e00',
|
|
523
524
|
foreground: {
|
|
524
|
-
default: '#
|
|
525
|
+
default: '#ffffff',
|
|
525
526
|
subtle: '#ff9639',
|
|
526
527
|
},
|
|
527
528
|
surface: {
|
|
528
|
-
default: '#
|
|
529
|
-
subtle: '#
|
|
529
|
+
default: '#cf5d00',
|
|
530
|
+
subtle: '#893900',
|
|
530
531
|
},
|
|
531
532
|
},
|
|
532
533
|
},
|
|
@@ -569,9 +570,9 @@ export const dark = {
|
|
|
569
570
|
},
|
|
570
571
|
surface: {
|
|
571
572
|
strong: {
|
|
572
|
-
active: '#
|
|
573
|
-
default: '#
|
|
574
|
-
hover: '#
|
|
573
|
+
active: '#ddd5eb',
|
|
574
|
+
default: '#af90de',
|
|
575
|
+
hover: '#c6b5e2',
|
|
575
576
|
},
|
|
576
577
|
},
|
|
577
578
|
},
|
|
@@ -654,52 +655,52 @@ export const dark = {
|
|
|
654
655
|
},
|
|
655
656
|
},
|
|
656
657
|
shadow: {
|
|
657
|
-
brand: '#
|
|
658
|
-
broadband: '#
|
|
659
|
-
cashback: '#
|
|
660
|
-
default: '#
|
|
661
|
-
energy: '#
|
|
662
|
-
insurance: '#
|
|
663
|
-
mobile: '#
|
|
664
|
-
pig: '#
|
|
658
|
+
brand: '#442484',
|
|
659
|
+
broadband: '#4f6b20',
|
|
660
|
+
cashback: '#7429b5',
|
|
661
|
+
default: '#3f3f3f',
|
|
662
|
+
energy: '#2c6370',
|
|
663
|
+
insurance: '#7f4518',
|
|
664
|
+
mobile: '#8a3260',
|
|
665
|
+
pig: '#7a1f7e',
|
|
665
666
|
},
|
|
666
667
|
surface: {
|
|
667
668
|
brand: {
|
|
668
|
-
default: '#
|
|
669
|
+
default: '#af90de',
|
|
669
670
|
strong: '#26164f',
|
|
670
671
|
subtle: '#442484',
|
|
671
672
|
},
|
|
672
673
|
broadband: {
|
|
673
674
|
default: '#506c21',
|
|
674
|
-
subtle: '#
|
|
675
|
+
subtle: '#4f6b20',
|
|
675
676
|
},
|
|
676
677
|
cashback: {
|
|
677
678
|
default: '#8b2bc9',
|
|
678
|
-
subtle: '#
|
|
679
|
+
subtle: '#7429b5',
|
|
679
680
|
},
|
|
680
681
|
energy: {
|
|
681
682
|
default: '#326e7a',
|
|
682
|
-
subtle: '#
|
|
683
|
+
subtle: '#2c6370',
|
|
683
684
|
},
|
|
684
685
|
highlight: {
|
|
685
686
|
default: '#ffb921',
|
|
686
|
-
subtle: '#
|
|
687
|
+
subtle: '#82692b',
|
|
687
688
|
},
|
|
688
689
|
insurance: {
|
|
689
690
|
default: '#9b4c0e',
|
|
690
|
-
subtle: '#
|
|
691
|
+
subtle: '#7f4518',
|
|
691
692
|
},
|
|
692
693
|
mobile: {
|
|
693
694
|
default: '#a7266d',
|
|
694
|
-
subtle: '#
|
|
695
|
+
subtle: '#8a3260',
|
|
695
696
|
},
|
|
696
697
|
neutral: {
|
|
697
|
-
strong: '#
|
|
698
|
+
strong: '#2f2d2d',
|
|
698
699
|
subtle: '#191917',
|
|
699
700
|
},
|
|
700
701
|
pig: {
|
|
701
702
|
default: '#8f358f',
|
|
702
|
-
subtle: '#
|
|
703
|
+
subtle: '#7a1f7e',
|
|
703
704
|
},
|
|
704
705
|
},
|
|
705
706
|
text: {
|
|
@@ -9,15 +9,15 @@ declare const _default: {
|
|
|
9
9
|
readonly gap: 8;
|
|
10
10
|
readonly iconButton: {
|
|
11
11
|
readonly unstyled: {
|
|
12
|
-
readonly foregroundColor: "#
|
|
13
|
-
readonly foregroundColorActive: "#
|
|
14
|
-
readonly foregroundColorHover: "#
|
|
12
|
+
readonly foregroundColor: "#ebebeb";
|
|
13
|
+
readonly foregroundColorActive: "#b2afae";
|
|
14
|
+
readonly foregroundColorHover: "#d3d3d3";
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
readonly link: {
|
|
18
|
-
readonly color: "#
|
|
19
|
-
readonly colorActive: "#
|
|
20
|
-
readonly colorHover: "#
|
|
18
|
+
readonly color: "#ebebeb";
|
|
19
|
+
readonly colorActive: "#b2afae";
|
|
20
|
+
readonly colorHover: "#d3d3d3";
|
|
21
21
|
};
|
|
22
22
|
readonly padding: 14;
|
|
23
23
|
};
|
|
@@ -9,15 +9,15 @@ export default {
|
|
|
9
9
|
gap: 8,
|
|
10
10
|
iconButton: {
|
|
11
11
|
unstyled: {
|
|
12
|
-
foregroundColor: '#
|
|
13
|
-
foregroundColorActive: '#
|
|
14
|
-
foregroundColorHover: '#
|
|
12
|
+
foregroundColor: '#ebebeb',
|
|
13
|
+
foregroundColorActive: '#b2afae',
|
|
14
|
+
foregroundColorHover: '#d3d3d3',
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
17
|
link: {
|
|
18
|
-
color: '#
|
|
19
|
-
colorActive: '#
|
|
20
|
-
colorHover: '#
|
|
18
|
+
color: '#ebebeb',
|
|
19
|
+
colorActive: '#b2afae',
|
|
20
|
+
colorHover: '#d3d3d3',
|
|
21
21
|
},
|
|
22
22
|
padding: 14,
|
|
23
23
|
};
|
|
@@ -11,10 +11,10 @@ declare const _default: {
|
|
|
11
11
|
readonly item: {
|
|
12
12
|
readonly gap: 2;
|
|
13
13
|
readonly icon: {
|
|
14
|
-
readonly colorActive: "#
|
|
14
|
+
readonly colorActive: "#af90de";
|
|
15
15
|
};
|
|
16
16
|
readonly label: {
|
|
17
|
-
readonly colorActive: "#
|
|
17
|
+
readonly colorActive: "#af90de";
|
|
18
18
|
};
|
|
19
19
|
readonly paddingBottom: 2;
|
|
20
20
|
readonly paddingHorizontal: 0;
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
declare const _default: {
|
|
5
5
|
readonly iconButton: {
|
|
6
6
|
readonly unstyled: {
|
|
7
|
-
readonly foregroundColor: "#
|
|
8
|
-
readonly foregroundColorActive: "#
|
|
9
|
-
readonly foregroundColorHover: "#
|
|
7
|
+
readonly foregroundColor: "#ebebeb";
|
|
8
|
+
readonly foregroundColorActive: "#b2afae";
|
|
9
|
+
readonly foregroundColorHover: "#d3d3d3";
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
12
|
readonly borderRadius: 8;
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
export default {
|
|
5
5
|
iconButton: {
|
|
6
6
|
unstyled: {
|
|
7
|
-
foregroundColor: '#
|
|
8
|
-
foregroundColorActive: '#
|
|
9
|
-
foregroundColorHover: '#
|
|
7
|
+
foregroundColor: '#ebebeb',
|
|
8
|
+
foregroundColorActive: '#b2afae',
|
|
9
|
+
foregroundColorHover: '#d3d3d3',
|
|
10
10
|
},
|
|
11
11
|
},
|
|
12
12
|
borderRadius: 8,
|