@carbon/themes 11.32.0 → 11.33.0
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/README.md +9 -0
- package/es/index.js +224 -224
- package/lib/index.js +236 -245
- package/package.json +9 -7
- package/scss/generated/_tag-tokens.scss +82 -12
- package/scss/generated/_themes.scss +64 -100
- package/scss/generated/_tokens.scss +38 -85
- package/src/component-tokens/tag/tokens.js +108 -15
- package/src/g10.js +19 -32
- package/src/g100.js +19 -31
- package/src/g90.js +19 -31
- package/src/tokens/components.js +10 -0
- package/src/tokens/v11TokenGroup.js +15 -23
- package/src/white.js +19 -32
- package/telemetry.yml +7 -0
- package/umd/index.js +236 -245
package/lib/index.js
CHANGED
|
@@ -711,41 +711,22 @@ var aiAuraHoverBackground$3 = colors$1.blue10;
|
|
|
711
711
|
var aiAuraHoverStart$3 = colors$1.rgba(colors$1.blue50, 0.4);
|
|
712
712
|
var aiAuraHoverEnd$3 = colors$1.rgba(colors$1.white, 0);
|
|
713
713
|
|
|
714
|
-
//
|
|
715
|
-
var
|
|
716
|
-
var
|
|
714
|
+
// AI Popover
|
|
715
|
+
var aiPopoverShadowOuter01$3 = colors$1.rgba(colors$1.blue70, 0.25);
|
|
716
|
+
var aiPopoverShadowOuter02$3 = colors$1.rgba(colors$1.black, 0.1);
|
|
717
717
|
|
|
718
718
|
// AI skeleton
|
|
719
|
-
var aiSkeletonBackground$3 = colors$1.
|
|
720
|
-
var aiSkeletonElementBackground$3 = colors$1.
|
|
719
|
+
var aiSkeletonBackground$3 = colors$1.blue20;
|
|
720
|
+
var aiSkeletonElementBackground$3 = colors$1.blue50;
|
|
721
721
|
|
|
722
722
|
// AI Modal tokens
|
|
723
723
|
var aiOverlay$3 = colors$1.rgba(colors$1.blue100, 0.5);
|
|
724
724
|
|
|
725
|
-
//// Not used in phase 2 / possibly remove?
|
|
726
|
-
var slugCalloutGradientTop$3 = colors$1.rgba(colors$1.gray10, 0.85);
|
|
727
|
-
var slugCalloutGradientBottom$3 = colors$1.rgba(colors$1.gray20, 0.85);
|
|
728
|
-
var aiGradientStart01$3 = colors$1.rgba(colors$1.coolGray10, 0.5);
|
|
729
|
-
var aiGradientStart02$3 = colors$1.rgba(colors$1.blue10, 0.5);
|
|
730
|
-
var aiGradientEnd$3 = colors$1.rgba(colors$1.white, 0);
|
|
731
|
-
var slugCalloutAuraStart$3 = aiAuraStart$3;
|
|
732
|
-
var slugCalloutAuraEnd$3 = aiAuraEnd$3;
|
|
733
|
-
var slugCalloutGradientTopHover$3 = colors$1.rgba(colors$1.gray20, 0.55);
|
|
734
|
-
var slugCalloutGradientBottomHover$3 = colors$1.rgba(colors$1.gray20Hover, 0.55);
|
|
735
|
-
var slugCalloutAuraStartHover01$3 = colors$1.rgba(colors$1.white, 0.5);
|
|
736
|
-
var slugCalloutAuraEndHover01$3 = colors$1.rgba(colors$1.white, 0);
|
|
737
|
-
var slugCalloutAuraStartHover02$3 = colors$1.rgba(colors$1.blue20, 0.5);
|
|
738
|
-
var slugCalloutAuraEndHover02$3 = colors$1.rgba(colors$1.white, 0);
|
|
739
|
-
var slugCalloutGradientTopSelected$3 = colors$1.rgba(colors$1.gray20, 0.85);
|
|
740
|
-
var slugCalloutGradientBottomSelected$3 = colors$1.rgba(colors$1.gray20Hover, 0.85);
|
|
741
|
-
var slugCalloutAuraStartSelected$3 = colors$1.rgba(colors$1.blue10, 0.6);
|
|
742
|
-
var slugCalloutAuraEndSelected$3 = colors$1.rgba(colors$1.white, 0);
|
|
743
|
-
|
|
744
725
|
// One off tokens for caret
|
|
745
|
-
var
|
|
746
|
-
var
|
|
747
|
-
var
|
|
748
|
-
var
|
|
726
|
+
var aiPopoverCaretCenter$3 = '#A7C7FF';
|
|
727
|
+
var aiPopoverCaretBottom$3 = colors$1.blue20;
|
|
728
|
+
var aiPopoverCaretBottomBackgroundActions$3 = '#DAE5F8';
|
|
729
|
+
var aiPopoverCaretBottomBackground$3 = '#D5E5FF';
|
|
749
730
|
|
|
750
731
|
// Chat tokens
|
|
751
732
|
var chatPromptBackground$3 = colors$1.white;
|
|
@@ -757,6 +738,16 @@ var chatBubbleAgentBorder$3 = colors$1.gray20;
|
|
|
757
738
|
var chatAvatarBot$3 = colors$1.gray60;
|
|
758
739
|
var chatAvatarAgent$3 = colors$1.gray80;
|
|
759
740
|
var chatAvatarUser$3 = colors$1.blue60;
|
|
741
|
+
var chatShellBackground$3 = colors$1.white;
|
|
742
|
+
var chatHeaderBackground$3 = colors$1.white;
|
|
743
|
+
|
|
744
|
+
// Chat button tokens
|
|
745
|
+
var chatButton$3 = linkPrimary$7;
|
|
746
|
+
var chatButtonHover$3 = backgroundHover$7;
|
|
747
|
+
var chatButtonTextHover$3 = linkPrimaryHover$7;
|
|
748
|
+
var chatButtonActive$3 = backgroundActive$7;
|
|
749
|
+
var chatButtonSelected$3 = backgroundSelected$7;
|
|
750
|
+
var chatButtonTextSelected$3 = textSecondary$7;
|
|
760
751
|
|
|
761
752
|
var white$1 = /*#__PURE__*/Object.freeze({
|
|
762
753
|
__proto__: null,
|
|
@@ -876,32 +867,15 @@ var white$1 = /*#__PURE__*/Object.freeze({
|
|
|
876
867
|
aiAuraHoverBackground: aiAuraHoverBackground$3,
|
|
877
868
|
aiAuraHoverStart: aiAuraHoverStart$3,
|
|
878
869
|
aiAuraHoverEnd: aiAuraHoverEnd$3,
|
|
879
|
-
|
|
880
|
-
|
|
870
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$3,
|
|
871
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$3,
|
|
881
872
|
aiSkeletonBackground: aiSkeletonBackground$3,
|
|
882
873
|
aiSkeletonElementBackground: aiSkeletonElementBackground$3,
|
|
883
874
|
aiOverlay: aiOverlay$3,
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
aiGradientEnd: aiGradientEnd$3,
|
|
889
|
-
slugCalloutAuraStart: slugCalloutAuraStart$3,
|
|
890
|
-
slugCalloutAuraEnd: slugCalloutAuraEnd$3,
|
|
891
|
-
slugCalloutGradientTopHover: slugCalloutGradientTopHover$3,
|
|
892
|
-
slugCalloutGradientBottomHover: slugCalloutGradientBottomHover$3,
|
|
893
|
-
slugCalloutAuraStartHover01: slugCalloutAuraStartHover01$3,
|
|
894
|
-
slugCalloutAuraEndHover01: slugCalloutAuraEndHover01$3,
|
|
895
|
-
slugCalloutAuraStartHover02: slugCalloutAuraStartHover02$3,
|
|
896
|
-
slugCalloutAuraEndHover02: slugCalloutAuraEndHover02$3,
|
|
897
|
-
slugCalloutGradientTopSelected: slugCalloutGradientTopSelected$3,
|
|
898
|
-
slugCalloutGradientBottomSelected: slugCalloutGradientBottomSelected$3,
|
|
899
|
-
slugCalloutAuraStartSelected: slugCalloutAuraStartSelected$3,
|
|
900
|
-
slugCalloutAuraEndSelected: slugCalloutAuraEndSelected$3,
|
|
901
|
-
slugCalloutCaretCenter: slugCalloutCaretCenter$3,
|
|
902
|
-
slugCalloutCaretBottom: slugCalloutCaretBottom$3,
|
|
903
|
-
slugCalloutCaretBottomBackgroundActions: slugCalloutCaretBottomBackgroundActions$3,
|
|
904
|
-
slugCalloutCaretBottomBackground: slugCalloutCaretBottomBackground$3,
|
|
875
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$3,
|
|
876
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$3,
|
|
877
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$3,
|
|
878
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$3,
|
|
905
879
|
chatPromptBackground: chatPromptBackground$3,
|
|
906
880
|
chatPromptBorderStart: chatPromptBorderStart$3,
|
|
907
881
|
chatPromptBorderEnd: chatPromptBorderEnd$3,
|
|
@@ -911,6 +885,14 @@ var white$1 = /*#__PURE__*/Object.freeze({
|
|
|
911
885
|
chatAvatarBot: chatAvatarBot$3,
|
|
912
886
|
chatAvatarAgent: chatAvatarAgent$3,
|
|
913
887
|
chatAvatarUser: chatAvatarUser$3,
|
|
888
|
+
chatShellBackground: chatShellBackground$3,
|
|
889
|
+
chatHeaderBackground: chatHeaderBackground$3,
|
|
890
|
+
chatButton: chatButton$3,
|
|
891
|
+
chatButtonHover: chatButtonHover$3,
|
|
892
|
+
chatButtonTextHover: chatButtonTextHover$3,
|
|
893
|
+
chatButtonActive: chatButtonActive$3,
|
|
894
|
+
chatButtonSelected: chatButtonSelected$3,
|
|
895
|
+
chatButtonTextSelected: chatButtonTextSelected$3,
|
|
914
896
|
caption01: type$2.caption01,
|
|
915
897
|
caption02: type$2.caption02,
|
|
916
898
|
label01: type$2.label01,
|
|
@@ -1170,41 +1152,22 @@ var aiAuraHoverBackground$2 = colors$1.blue10;
|
|
|
1170
1152
|
var aiAuraHoverStart$2 = colors$1.rgba(colors$1.blue50, 0.4);
|
|
1171
1153
|
var aiAuraHoverEnd$2 = colors$1.rgba(colors$1.white, 0);
|
|
1172
1154
|
|
|
1173
|
-
//
|
|
1174
|
-
var
|
|
1175
|
-
var
|
|
1155
|
+
// AI Popover
|
|
1156
|
+
var aiPopoverShadowOuter01$2 = colors$1.rgba(colors$1.blue70, 0.25);
|
|
1157
|
+
var aiPopoverShadowOuter02$2 = colors$1.rgba(colors$1.black, 0.1);
|
|
1176
1158
|
|
|
1177
1159
|
// AI skeleton
|
|
1178
|
-
var aiSkeletonBackground$2 = colors$1.
|
|
1179
|
-
var aiSkeletonElementBackground$2 = colors$1.
|
|
1160
|
+
var aiSkeletonBackground$2 = colors$1.blue20;
|
|
1161
|
+
var aiSkeletonElementBackground$2 = colors$1.blue50;
|
|
1180
1162
|
|
|
1181
1163
|
// AI Modal tokens
|
|
1182
1164
|
var aiOverlay$2 = colors$1.rgba(colors$1.blue100, 0.5);
|
|
1183
1165
|
|
|
1184
|
-
//// Not used in phase 2 / possibly remove?
|
|
1185
|
-
var slugCalloutGradientTop$2 = colors$1.rgba(colors$1.gray10, 0.85);
|
|
1186
|
-
var slugCalloutGradientBottom$2 = colors$1.rgba(colors$1.gray20, 0.85);
|
|
1187
|
-
var aiGradientStart01$2 = colors$1.rgba(colors$1.coolGray10, 0.5);
|
|
1188
|
-
var aiGradientStart02$2 = colors$1.rgba(colors$1.blue10, 0.5);
|
|
1189
|
-
var aiGradientEnd$2 = colors$1.rgba(colors$1.white, 0);
|
|
1190
|
-
var slugCalloutAuraStart$2 = aiAuraStart$2;
|
|
1191
|
-
var slugCalloutAuraEnd$2 = aiAuraEnd$2;
|
|
1192
|
-
var slugCalloutGradientTopHover$2 = colors$1.rgba(colors$1.gray20, 0.55);
|
|
1193
|
-
var slugCalloutGradientBottomHover$2 = colors$1.rgba(colors$1.gray20Hover, 0.55);
|
|
1194
|
-
var slugCalloutAuraStartHover01$2 = colors$1.rgba(colors$1.white, 0.5);
|
|
1195
|
-
var slugCalloutAuraEndHover01$2 = colors$1.rgba(colors$1.white, 0);
|
|
1196
|
-
var slugCalloutAuraStartHover02$2 = colors$1.rgba(colors$1.blue20, 0.5);
|
|
1197
|
-
var slugCalloutAuraEndHover02$2 = colors$1.rgba(colors$1.white, 0);
|
|
1198
|
-
var slugCalloutGradientTopSelected$2 = colors$1.rgba(colors$1.gray20, 0.85);
|
|
1199
|
-
var slugCalloutGradientBottomSelected$2 = colors$1.rgba(colors$1.gray20Hover, 0.85);
|
|
1200
|
-
var slugCalloutAuraStartSelected$2 = colors$1.rgba(colors$1.blue10, 0.6);
|
|
1201
|
-
var slugCalloutAuraEndSelected$2 = colors$1.rgba(colors$1.white, 0);
|
|
1202
|
-
|
|
1203
1166
|
// One off tokens for caret
|
|
1204
|
-
var
|
|
1205
|
-
var
|
|
1206
|
-
var
|
|
1207
|
-
var
|
|
1167
|
+
var aiPopoverCaretCenter$2 = '#A7C7FF';
|
|
1168
|
+
var aiPopoverCaretBottom$2 = colors$1.blue20;
|
|
1169
|
+
var aiPopoverCaretBottomBackgroundActions$2 = '#D2DCEE';
|
|
1170
|
+
var aiPopoverCaretBottomBackground$2 = '#CCDBF8';
|
|
1208
1171
|
|
|
1209
1172
|
// Chat tokens
|
|
1210
1173
|
var chatPromptBackground$2 = colors$1.white;
|
|
@@ -1216,6 +1179,16 @@ var chatBubbleAgentBorder$2 = colors$1.gray20;
|
|
|
1216
1179
|
var chatAvatarBot$2 = colors$1.gray60;
|
|
1217
1180
|
var chatAvatarAgent$2 = colors$1.gray80;
|
|
1218
1181
|
var chatAvatarUser$2 = colors$1.blue60;
|
|
1182
|
+
var chatShellBackground$2 = colors$1.white;
|
|
1183
|
+
var chatHeaderBackground$2 = colors$1.white;
|
|
1184
|
+
|
|
1185
|
+
// Chat button tokens
|
|
1186
|
+
var chatButton$2 = linkPrimary$6;
|
|
1187
|
+
var chatButtonHover$2 = backgroundHover$6;
|
|
1188
|
+
var chatButtonTextHover$2 = linkPrimaryHover$6;
|
|
1189
|
+
var chatButtonActive$2 = backgroundActive$6;
|
|
1190
|
+
var chatButtonSelected$2 = backgroundSelected$6;
|
|
1191
|
+
var chatButtonTextSelected$2 = textSecondary$6;
|
|
1219
1192
|
|
|
1220
1193
|
var g10$1 = /*#__PURE__*/Object.freeze({
|
|
1221
1194
|
__proto__: null,
|
|
@@ -1335,32 +1308,15 @@ var g10$1 = /*#__PURE__*/Object.freeze({
|
|
|
1335
1308
|
aiAuraHoverBackground: aiAuraHoverBackground$2,
|
|
1336
1309
|
aiAuraHoverStart: aiAuraHoverStart$2,
|
|
1337
1310
|
aiAuraHoverEnd: aiAuraHoverEnd$2,
|
|
1338
|
-
|
|
1339
|
-
|
|
1311
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$2,
|
|
1312
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$2,
|
|
1340
1313
|
aiSkeletonBackground: aiSkeletonBackground$2,
|
|
1341
1314
|
aiSkeletonElementBackground: aiSkeletonElementBackground$2,
|
|
1342
1315
|
aiOverlay: aiOverlay$2,
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
aiGradientEnd: aiGradientEnd$2,
|
|
1348
|
-
slugCalloutAuraStart: slugCalloutAuraStart$2,
|
|
1349
|
-
slugCalloutAuraEnd: slugCalloutAuraEnd$2,
|
|
1350
|
-
slugCalloutGradientTopHover: slugCalloutGradientTopHover$2,
|
|
1351
|
-
slugCalloutGradientBottomHover: slugCalloutGradientBottomHover$2,
|
|
1352
|
-
slugCalloutAuraStartHover01: slugCalloutAuraStartHover01$2,
|
|
1353
|
-
slugCalloutAuraEndHover01: slugCalloutAuraEndHover01$2,
|
|
1354
|
-
slugCalloutAuraStartHover02: slugCalloutAuraStartHover02$2,
|
|
1355
|
-
slugCalloutAuraEndHover02: slugCalloutAuraEndHover02$2,
|
|
1356
|
-
slugCalloutGradientTopSelected: slugCalloutGradientTopSelected$2,
|
|
1357
|
-
slugCalloutGradientBottomSelected: slugCalloutGradientBottomSelected$2,
|
|
1358
|
-
slugCalloutAuraStartSelected: slugCalloutAuraStartSelected$2,
|
|
1359
|
-
slugCalloutAuraEndSelected: slugCalloutAuraEndSelected$2,
|
|
1360
|
-
slugCalloutCaretCenter: slugCalloutCaretCenter$2,
|
|
1361
|
-
slugCalloutCaretBottom: slugCalloutCaretBottom$2,
|
|
1362
|
-
slugCalloutCaretBottomBackgroundActions: slugCalloutCaretBottomBackgroundActions$2,
|
|
1363
|
-
slugCalloutCaretBottomBackground: slugCalloutCaretBottomBackground$2,
|
|
1316
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$2,
|
|
1317
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$2,
|
|
1318
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$2,
|
|
1319
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$2,
|
|
1364
1320
|
chatPromptBackground: chatPromptBackground$2,
|
|
1365
1321
|
chatPromptBorderStart: chatPromptBorderStart$2,
|
|
1366
1322
|
chatPromptBorderEnd: chatPromptBorderEnd$2,
|
|
@@ -1370,6 +1326,14 @@ var g10$1 = /*#__PURE__*/Object.freeze({
|
|
|
1370
1326
|
chatAvatarBot: chatAvatarBot$2,
|
|
1371
1327
|
chatAvatarAgent: chatAvatarAgent$2,
|
|
1372
1328
|
chatAvatarUser: chatAvatarUser$2,
|
|
1329
|
+
chatShellBackground: chatShellBackground$2,
|
|
1330
|
+
chatHeaderBackground: chatHeaderBackground$2,
|
|
1331
|
+
chatButton: chatButton$2,
|
|
1332
|
+
chatButtonHover: chatButtonHover$2,
|
|
1333
|
+
chatButtonTextHover: chatButtonTextHover$2,
|
|
1334
|
+
chatButtonActive: chatButtonActive$2,
|
|
1335
|
+
chatButtonSelected: chatButtonSelected$2,
|
|
1336
|
+
chatButtonTextSelected: chatButtonTextSelected$2,
|
|
1373
1337
|
caption01: type$2.caption01,
|
|
1374
1338
|
caption02: type$2.caption02,
|
|
1375
1339
|
label01: type$2.label01,
|
|
@@ -1629,41 +1593,22 @@ var aiAuraHoverBackground$1 = layerHover01$1;
|
|
|
1629
1593
|
var aiAuraHoverStart$1 = colors$1.rgba(colors$1.blue50, 0.4);
|
|
1630
1594
|
var aiAuraHoverEnd$1 = colors$1.rgba(colors$1.black, 0);
|
|
1631
1595
|
|
|
1632
|
-
//
|
|
1633
|
-
var
|
|
1634
|
-
var
|
|
1596
|
+
// AI Popover
|
|
1597
|
+
var aiPopoverShadowOuter01$1 = colors$1.rgba(colors$1.blue80, 0.25);
|
|
1598
|
+
var aiPopoverShadowOuter02$1 = colors$1.rgba(colors$1.black, 0.65);
|
|
1635
1599
|
|
|
1636
1600
|
// AI skeleton
|
|
1637
|
-
var aiSkeletonBackground$1 = colors$1.
|
|
1638
|
-
var aiSkeletonElementBackground$1 = colors$1.
|
|
1601
|
+
var aiSkeletonBackground$1 = colors$1.blue30;
|
|
1602
|
+
var aiSkeletonElementBackground$1 = colors$1.blue80;
|
|
1639
1603
|
|
|
1640
1604
|
// AI Modal tokens
|
|
1641
1605
|
var aiOverlay$1 = colors$1.rgba(colors$1.blue100, 0.5);
|
|
1642
1606
|
|
|
1643
|
-
//// Not used in phase 2 / possibly remove?
|
|
1644
|
-
var slugCalloutGradientTop$1 = colors$1.rgba(colors$1.gray100, 0.85);
|
|
1645
|
-
var slugCalloutGradientBottom$1 = colors$1.rgba(colors$1.gray90, 0.85);
|
|
1646
|
-
var aiGradientStart01$1 = colors$1.rgba(colors$1.blue20, 0.2);
|
|
1647
|
-
var aiGradientStart02$1 = 'transparent';
|
|
1648
|
-
var aiGradientEnd$1 = 'rgba(38, 38, 38, 0)';
|
|
1649
|
-
var slugCalloutAuraStart$1 = aiAuraStart$1;
|
|
1650
|
-
var slugCalloutAuraEnd$1 = aiAuraEnd$1;
|
|
1651
|
-
var slugCalloutGradientTopHover$1 = colors$1.rgba(colors$1.gray80, 0.55);
|
|
1652
|
-
var slugCalloutGradientBottomHover$1 = colors$1.rgba(colors$1.gray80Hover, 0.55);
|
|
1653
|
-
var slugCalloutAuraStartHover01$1 = colors$1.rgba(colors$1.blue20Hover, 0.3);
|
|
1654
|
-
var slugCalloutAuraEndHover01$1 = colors$1.rgba(colors$1.gray100, 0);
|
|
1655
|
-
var slugCalloutAuraStartHover02$1 = 'transparent';
|
|
1656
|
-
var slugCalloutAuraEndHover02$1 = 'transparent';
|
|
1657
|
-
var slugCalloutGradientTopSelected$1 = colors$1.rgba(colors$1.gray80, 0.85);
|
|
1658
|
-
var slugCalloutGradientBottomSelected$1 = colors$1.rgba(colors$1.gray80Hover, 0.85);
|
|
1659
|
-
var slugCalloutAuraStartSelected$1 = colors$1.rgba(colors$1.blue20, 0.2);
|
|
1660
|
-
var slugCalloutAuraEndSelected$1 = colors$1.rgba(colors$1.gray100, 0);
|
|
1661
|
-
|
|
1662
1607
|
// One off tokens for caret
|
|
1663
|
-
var
|
|
1664
|
-
var
|
|
1665
|
-
var
|
|
1666
|
-
var
|
|
1608
|
+
var aiPopoverCaretCenter$1 = '#456FB5';
|
|
1609
|
+
var aiPopoverCaretBottom$1 = '#465060';
|
|
1610
|
+
var aiPopoverCaretBottomBackgroundActions$1 = '#253042';
|
|
1611
|
+
var aiPopoverCaretBottomBackground$1 = '#2D3F5C';
|
|
1667
1612
|
|
|
1668
1613
|
// Chat tokens
|
|
1669
1614
|
var chatPromptBackground$1 = colors$1.gray100;
|
|
@@ -1675,6 +1620,16 @@ var chatBubbleAgentBorder$1 = colors$1.gray70;
|
|
|
1675
1620
|
var chatAvatarBot$1 = colors$1.gray50;
|
|
1676
1621
|
var chatAvatarAgent$1 = colors$1.gray30;
|
|
1677
1622
|
var chatAvatarUser$1 = colors$1.blue50;
|
|
1623
|
+
var chatShellBackground$1 = colors$1.gray90;
|
|
1624
|
+
var chatHeaderBackground$1 = colors$1.gray90;
|
|
1625
|
+
|
|
1626
|
+
// Chat button tokens
|
|
1627
|
+
var chatButton$1 = linkPrimary$5;
|
|
1628
|
+
var chatButtonHover$1 = backgroundHover$5;
|
|
1629
|
+
var chatButtonTextHover$1 = linkPrimaryHover$5;
|
|
1630
|
+
var chatButtonActive$1 = backgroundActive$5;
|
|
1631
|
+
var chatButtonSelected$1 = backgroundSelected$5;
|
|
1632
|
+
var chatButtonTextSelected$1 = textSecondary$5;
|
|
1678
1633
|
|
|
1679
1634
|
var g90$1 = /*#__PURE__*/Object.freeze({
|
|
1680
1635
|
__proto__: null,
|
|
@@ -1794,32 +1749,15 @@ var g90$1 = /*#__PURE__*/Object.freeze({
|
|
|
1794
1749
|
aiAuraHoverBackground: aiAuraHoverBackground$1,
|
|
1795
1750
|
aiAuraHoverStart: aiAuraHoverStart$1,
|
|
1796
1751
|
aiAuraHoverEnd: aiAuraHoverEnd$1,
|
|
1797
|
-
|
|
1798
|
-
|
|
1752
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$1,
|
|
1753
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$1,
|
|
1799
1754
|
aiSkeletonBackground: aiSkeletonBackground$1,
|
|
1800
1755
|
aiSkeletonElementBackground: aiSkeletonElementBackground$1,
|
|
1801
1756
|
aiOverlay: aiOverlay$1,
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
aiGradientEnd: aiGradientEnd$1,
|
|
1807
|
-
slugCalloutAuraStart: slugCalloutAuraStart$1,
|
|
1808
|
-
slugCalloutAuraEnd: slugCalloutAuraEnd$1,
|
|
1809
|
-
slugCalloutGradientTopHover: slugCalloutGradientTopHover$1,
|
|
1810
|
-
slugCalloutGradientBottomHover: slugCalloutGradientBottomHover$1,
|
|
1811
|
-
slugCalloutAuraStartHover01: slugCalloutAuraStartHover01$1,
|
|
1812
|
-
slugCalloutAuraEndHover01: slugCalloutAuraEndHover01$1,
|
|
1813
|
-
slugCalloutAuraStartHover02: slugCalloutAuraStartHover02$1,
|
|
1814
|
-
slugCalloutAuraEndHover02: slugCalloutAuraEndHover02$1,
|
|
1815
|
-
slugCalloutGradientTopSelected: slugCalloutGradientTopSelected$1,
|
|
1816
|
-
slugCalloutGradientBottomSelected: slugCalloutGradientBottomSelected$1,
|
|
1817
|
-
slugCalloutAuraStartSelected: slugCalloutAuraStartSelected$1,
|
|
1818
|
-
slugCalloutAuraEndSelected: slugCalloutAuraEndSelected$1,
|
|
1819
|
-
slugCalloutCaretCenter: slugCalloutCaretCenter$1,
|
|
1820
|
-
slugCalloutCaretBottom: slugCalloutCaretBottom$1,
|
|
1821
|
-
slugCalloutCaretBottomBackgroundActions: slugCalloutCaretBottomBackgroundActions$1,
|
|
1822
|
-
slugCalloutCaretBottomBackground: slugCalloutCaretBottomBackground$1,
|
|
1757
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$1,
|
|
1758
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$1,
|
|
1759
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$1,
|
|
1760
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$1,
|
|
1823
1761
|
chatPromptBackground: chatPromptBackground$1,
|
|
1824
1762
|
chatPromptBorderStart: chatPromptBorderStart$1,
|
|
1825
1763
|
chatPromptBorderEnd: chatPromptBorderEnd$1,
|
|
@@ -1829,6 +1767,14 @@ var g90$1 = /*#__PURE__*/Object.freeze({
|
|
|
1829
1767
|
chatAvatarBot: chatAvatarBot$1,
|
|
1830
1768
|
chatAvatarAgent: chatAvatarAgent$1,
|
|
1831
1769
|
chatAvatarUser: chatAvatarUser$1,
|
|
1770
|
+
chatShellBackground: chatShellBackground$1,
|
|
1771
|
+
chatHeaderBackground: chatHeaderBackground$1,
|
|
1772
|
+
chatButton: chatButton$1,
|
|
1773
|
+
chatButtonHover: chatButtonHover$1,
|
|
1774
|
+
chatButtonTextHover: chatButtonTextHover$1,
|
|
1775
|
+
chatButtonActive: chatButtonActive$1,
|
|
1776
|
+
chatButtonSelected: chatButtonSelected$1,
|
|
1777
|
+
chatButtonTextSelected: chatButtonTextSelected$1,
|
|
1832
1778
|
caption01: type$2.caption01,
|
|
1833
1779
|
caption02: type$2.caption02,
|
|
1834
1780
|
label01: type$2.label01,
|
|
@@ -2088,41 +2034,22 @@ var aiAuraHoverBackground = layerHover01;
|
|
|
2088
2034
|
var aiAuraHoverStart = colors$1.rgba(colors$1.blue50, 0.4);
|
|
2089
2035
|
var aiAuraHoverEnd = colors$1.rgba(colors$1.black, 0);
|
|
2090
2036
|
|
|
2091
|
-
//
|
|
2092
|
-
var
|
|
2093
|
-
var
|
|
2037
|
+
// AI Popover
|
|
2038
|
+
var aiPopoverShadowOuter01 = colors$1.rgba(colors$1.blue80, 0.25);
|
|
2039
|
+
var aiPopoverShadowOuter02 = colors$1.rgba(colors$1.black, 0.65);
|
|
2094
2040
|
|
|
2095
2041
|
// AI skeleton
|
|
2096
|
-
var aiSkeletonBackground = colors$1.
|
|
2097
|
-
var aiSkeletonElementBackground = colors$1.
|
|
2042
|
+
var aiSkeletonBackground = colors$1.blue30;
|
|
2043
|
+
var aiSkeletonElementBackground = colors$1.blue80;
|
|
2098
2044
|
|
|
2099
2045
|
// AI Modal tokens
|
|
2100
2046
|
var aiOverlay = colors$1.rgba(colors$1.blue100, 0.5);
|
|
2101
2047
|
|
|
2102
|
-
//// Not used in phase 2 / possibly remove?
|
|
2103
|
-
var slugCalloutGradientTop = colors$1.rgba(colors$1.gray100, 0.85);
|
|
2104
|
-
var slugCalloutGradientBottom = colors$1.rgba(colors$1.gray90, 0.85);
|
|
2105
|
-
var aiGradientStart01 = colors$1.rgba(colors$1.blue20, 0.2);
|
|
2106
|
-
var aiGradientStart02 = 'transparent';
|
|
2107
|
-
var aiGradientEnd = 'rgba(38, 38, 38, 0)';
|
|
2108
|
-
var slugCalloutAuraStart = aiAuraStart;
|
|
2109
|
-
var slugCalloutAuraEnd = aiAuraEnd;
|
|
2110
|
-
var slugCalloutGradientTopHover = colors$1.rgba(colors$1.gray80, 0.55);
|
|
2111
|
-
var slugCalloutGradientBottomHover = colors$1.rgba(colors$1.gray80Hover, 0.55);
|
|
2112
|
-
var slugCalloutAuraStartHover01 = colors$1.rgba(colors$1.blue20Hover, 0.3);
|
|
2113
|
-
var slugCalloutAuraEndHover01 = colors$1.rgba(colors$1.gray100, 0);
|
|
2114
|
-
var slugCalloutAuraStartHover02 = 'transparent';
|
|
2115
|
-
var slugCalloutAuraEndHover02 = 'transparent';
|
|
2116
|
-
var slugCalloutGradientTopSelected = colors$1.rgba(colors$1.gray80, 0.85);
|
|
2117
|
-
var slugCalloutGradientBottomSelected = colors$1.rgba(colors$1.gray80Hover, 0.85);
|
|
2118
|
-
var slugCalloutAuraStartSelected = colors$1.rgba(colors$1.blue20, 0.2);
|
|
2119
|
-
var slugCalloutAuraEndSelected = colors$1.rgba(colors$1.gray100, 0);
|
|
2120
|
-
|
|
2121
2048
|
// One off tokens for caret
|
|
2122
|
-
var
|
|
2123
|
-
var
|
|
2124
|
-
var
|
|
2125
|
-
var
|
|
2049
|
+
var aiPopoverCaretCenter = '#3F68AF';
|
|
2050
|
+
var aiPopoverCaretBottom = '#3D4655';
|
|
2051
|
+
var aiPopoverCaretBottomBackgroundActions = '#192436';
|
|
2052
|
+
var aiPopoverCaretBottomBackground = '#213250';
|
|
2126
2053
|
|
|
2127
2054
|
// Chat tokens
|
|
2128
2055
|
var chatPromptBackground = colors$1.gray100;
|
|
@@ -2134,6 +2061,16 @@ var chatBubbleAgentBorder = colors$1.gray70;
|
|
|
2134
2061
|
var chatAvatarBot = colors$1.gray50;
|
|
2135
2062
|
var chatAvatarAgent = colors$1.gray30;
|
|
2136
2063
|
var chatAvatarUser = colors$1.blue50;
|
|
2064
|
+
var chatShellBackground = colors$1.gray90;
|
|
2065
|
+
var chatHeaderBackground = colors$1.gray90;
|
|
2066
|
+
|
|
2067
|
+
// Chat button tokens
|
|
2068
|
+
var chatButton = linkPrimary$4;
|
|
2069
|
+
var chatButtonHover = backgroundHover$4;
|
|
2070
|
+
var chatButtonTextHover = linkPrimaryHover$4;
|
|
2071
|
+
var chatButtonActive = backgroundActive$4;
|
|
2072
|
+
var chatButtonSelected = backgroundSelected$4;
|
|
2073
|
+
var chatButtonTextSelected = textSecondary$4;
|
|
2137
2074
|
|
|
2138
2075
|
var g100$1 = /*#__PURE__*/Object.freeze({
|
|
2139
2076
|
__proto__: null,
|
|
@@ -2253,32 +2190,15 @@ var g100$1 = /*#__PURE__*/Object.freeze({
|
|
|
2253
2190
|
aiAuraHoverBackground: aiAuraHoverBackground,
|
|
2254
2191
|
aiAuraHoverStart: aiAuraHoverStart,
|
|
2255
2192
|
aiAuraHoverEnd: aiAuraHoverEnd,
|
|
2256
|
-
|
|
2257
|
-
|
|
2193
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01,
|
|
2194
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02,
|
|
2258
2195
|
aiSkeletonBackground: aiSkeletonBackground,
|
|
2259
2196
|
aiSkeletonElementBackground: aiSkeletonElementBackground,
|
|
2260
2197
|
aiOverlay: aiOverlay,
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
aiGradientEnd: aiGradientEnd,
|
|
2266
|
-
slugCalloutAuraStart: slugCalloutAuraStart,
|
|
2267
|
-
slugCalloutAuraEnd: slugCalloutAuraEnd,
|
|
2268
|
-
slugCalloutGradientTopHover: slugCalloutGradientTopHover,
|
|
2269
|
-
slugCalloutGradientBottomHover: slugCalloutGradientBottomHover,
|
|
2270
|
-
slugCalloutAuraStartHover01: slugCalloutAuraStartHover01,
|
|
2271
|
-
slugCalloutAuraEndHover01: slugCalloutAuraEndHover01,
|
|
2272
|
-
slugCalloutAuraStartHover02: slugCalloutAuraStartHover02,
|
|
2273
|
-
slugCalloutAuraEndHover02: slugCalloutAuraEndHover02,
|
|
2274
|
-
slugCalloutGradientTopSelected: slugCalloutGradientTopSelected,
|
|
2275
|
-
slugCalloutGradientBottomSelected: slugCalloutGradientBottomSelected,
|
|
2276
|
-
slugCalloutAuraStartSelected: slugCalloutAuraStartSelected,
|
|
2277
|
-
slugCalloutAuraEndSelected: slugCalloutAuraEndSelected,
|
|
2278
|
-
slugCalloutCaretCenter: slugCalloutCaretCenter,
|
|
2279
|
-
slugCalloutCaretBottom: slugCalloutCaretBottom,
|
|
2280
|
-
slugCalloutCaretBottomBackgroundActions: slugCalloutCaretBottomBackgroundActions,
|
|
2281
|
-
slugCalloutCaretBottomBackground: slugCalloutCaretBottomBackground,
|
|
2198
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter,
|
|
2199
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom,
|
|
2200
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions,
|
|
2201
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground,
|
|
2282
2202
|
chatPromptBackground: chatPromptBackground,
|
|
2283
2203
|
chatPromptBorderStart: chatPromptBorderStart,
|
|
2284
2204
|
chatPromptBorderEnd: chatPromptBorderEnd,
|
|
@@ -2288,6 +2208,14 @@ var g100$1 = /*#__PURE__*/Object.freeze({
|
|
|
2288
2208
|
chatAvatarBot: chatAvatarBot,
|
|
2289
2209
|
chatAvatarAgent: chatAvatarAgent,
|
|
2290
2210
|
chatAvatarUser: chatAvatarUser,
|
|
2211
|
+
chatShellBackground: chatShellBackground,
|
|
2212
|
+
chatHeaderBackground: chatHeaderBackground,
|
|
2213
|
+
chatButton: chatButton,
|
|
2214
|
+
chatButtonHover: chatButtonHover,
|
|
2215
|
+
chatButtonTextHover: chatButtonTextHover,
|
|
2216
|
+
chatButtonActive: chatButtonActive,
|
|
2217
|
+
chatButtonSelected: chatButtonSelected,
|
|
2218
|
+
chatButtonTextSelected: chatButtonTextSelected,
|
|
2291
2219
|
caption01: type$2.caption01,
|
|
2292
2220
|
caption02: type$2.caption02,
|
|
2293
2221
|
label01: type$2.label01,
|
|
@@ -4528,10 +4456,10 @@ var tagBackgroundGray = {
|
|
|
4528
4456
|
g100: colors$1.gray70
|
|
4529
4457
|
};
|
|
4530
4458
|
var tagColorGray = {
|
|
4531
|
-
whiteTheme: colors$1.
|
|
4532
|
-
g10: colors$1.
|
|
4533
|
-
g90: colors$1.
|
|
4534
|
-
g100: colors$1.
|
|
4459
|
+
whiteTheme: colors$1.gray100,
|
|
4460
|
+
g10: colors$1.gray100,
|
|
4461
|
+
g90: colors$1.gray10,
|
|
4462
|
+
g100: colors$1.gray10
|
|
4535
4463
|
};
|
|
4536
4464
|
var tagHoverGray = {
|
|
4537
4465
|
whiteTheme: colors$1.gray20Hover,
|
|
@@ -4546,10 +4474,10 @@ var tagBackgroundCoolGray = {
|
|
|
4546
4474
|
g100: colors$1.coolGray70
|
|
4547
4475
|
};
|
|
4548
4476
|
var tagColorCoolGray = {
|
|
4549
|
-
whiteTheme: colors$1.
|
|
4550
|
-
g10: colors$1.
|
|
4551
|
-
g90: colors$1.
|
|
4552
|
-
g100: colors$1.
|
|
4477
|
+
whiteTheme: colors$1.coolGray100,
|
|
4478
|
+
g10: colors$1.coolGray100,
|
|
4479
|
+
g90: colors$1.coolGray10,
|
|
4480
|
+
g100: colors$1.coolGray10
|
|
4553
4481
|
};
|
|
4554
4482
|
var tagHoverCoolGray = {
|
|
4555
4483
|
whiteTheme: colors$1.coolGray20Hover,
|
|
@@ -4564,10 +4492,10 @@ var tagBackgroundWarmGray = {
|
|
|
4564
4492
|
g100: colors$1.warmGray70
|
|
4565
4493
|
};
|
|
4566
4494
|
var tagColorWarmGray = {
|
|
4567
|
-
whiteTheme: colors$1.
|
|
4568
|
-
g10: colors$1.
|
|
4569
|
-
g90: colors$1.
|
|
4570
|
-
g100: colors$1.
|
|
4495
|
+
whiteTheme: colors$1.warmGray100,
|
|
4496
|
+
g10: colors$1.warmGray100,
|
|
4497
|
+
g90: colors$1.warmGray10,
|
|
4498
|
+
g100: colors$1.warmGray10
|
|
4571
4499
|
};
|
|
4572
4500
|
var tagHoverWarmGray = {
|
|
4573
4501
|
whiteTheme: colors$1.warmGray20Hover,
|
|
@@ -4575,6 +4503,66 @@ var tagHoverWarmGray = {
|
|
|
4575
4503
|
g90: colors$1.warmGray70Hover,
|
|
4576
4504
|
g100: colors$1.warmGray70Hover
|
|
4577
4505
|
};
|
|
4506
|
+
var tagBorderRed = {
|
|
4507
|
+
whiteTheme: colors$1.red40,
|
|
4508
|
+
g10: colors$1.red40,
|
|
4509
|
+
g90: colors$1.red50,
|
|
4510
|
+
g100: colors$1.red50
|
|
4511
|
+
};
|
|
4512
|
+
var tagBorderBlue = {
|
|
4513
|
+
whiteTheme: colors$1.blue40,
|
|
4514
|
+
g10: colors$1.blue40,
|
|
4515
|
+
g90: colors$1.blue50,
|
|
4516
|
+
g100: colors$1.blue50
|
|
4517
|
+
};
|
|
4518
|
+
var tagBorderCyan = {
|
|
4519
|
+
whiteTheme: colors$1.cyan40,
|
|
4520
|
+
g10: colors$1.cyan40,
|
|
4521
|
+
g90: colors$1.cyan50,
|
|
4522
|
+
g100: colors$1.cyan50
|
|
4523
|
+
};
|
|
4524
|
+
var tagBorderTeal = {
|
|
4525
|
+
whiteTheme: colors$1.teal40,
|
|
4526
|
+
g10: colors$1.teal40,
|
|
4527
|
+
g90: colors$1.teal50,
|
|
4528
|
+
g100: colors$1.teal50
|
|
4529
|
+
};
|
|
4530
|
+
var tagBorderGreen = {
|
|
4531
|
+
whiteTheme: colors$1.green40,
|
|
4532
|
+
g10: colors$1.green40,
|
|
4533
|
+
g90: colors$1.green50,
|
|
4534
|
+
g100: colors$1.green50
|
|
4535
|
+
};
|
|
4536
|
+
var tagBorderMagenta = {
|
|
4537
|
+
whiteTheme: colors$1.magenta40,
|
|
4538
|
+
g10: colors$1.magenta40,
|
|
4539
|
+
g90: colors$1.magenta50,
|
|
4540
|
+
g100: colors$1.magenta50
|
|
4541
|
+
};
|
|
4542
|
+
var tagBorderPurple = {
|
|
4543
|
+
whiteTheme: colors$1.purple40,
|
|
4544
|
+
g10: colors$1.purple40,
|
|
4545
|
+
g90: colors$1.purple50,
|
|
4546
|
+
g100: colors$1.purple50
|
|
4547
|
+
};
|
|
4548
|
+
var tagBorderGray = {
|
|
4549
|
+
whiteTheme: colors$1.gray40,
|
|
4550
|
+
g10: colors$1.gray40,
|
|
4551
|
+
g90: colors$1.gray50,
|
|
4552
|
+
g100: colors$1.gray50
|
|
4553
|
+
};
|
|
4554
|
+
var tagBorderCoolGray = {
|
|
4555
|
+
whiteTheme: colors$1.coolGray40,
|
|
4556
|
+
g10: colors$1.coolGray40,
|
|
4557
|
+
g90: colors$1.coolGray50,
|
|
4558
|
+
g100: colors$1.coolGray50
|
|
4559
|
+
};
|
|
4560
|
+
var tagBorderWarmGray = {
|
|
4561
|
+
whiteTheme: colors$1.warmGray40,
|
|
4562
|
+
g10: colors$1.warmGray40,
|
|
4563
|
+
g90: colors$1.warmGray50,
|
|
4564
|
+
g100: colors$1.warmGray50
|
|
4565
|
+
};
|
|
4578
4566
|
|
|
4579
4567
|
var tokens$1 = /*#__PURE__*/Object.freeze({
|
|
4580
4568
|
__proto__: null,
|
|
@@ -4607,7 +4595,17 @@ var tokens$1 = /*#__PURE__*/Object.freeze({
|
|
|
4607
4595
|
tagHoverCoolGray: tagHoverCoolGray,
|
|
4608
4596
|
tagBackgroundWarmGray: tagBackgroundWarmGray,
|
|
4609
4597
|
tagColorWarmGray: tagColorWarmGray,
|
|
4610
|
-
tagHoverWarmGray: tagHoverWarmGray
|
|
4598
|
+
tagHoverWarmGray: tagHoverWarmGray,
|
|
4599
|
+
tagBorderRed: tagBorderRed,
|
|
4600
|
+
tagBorderBlue: tagBorderBlue,
|
|
4601
|
+
tagBorderCyan: tagBorderCyan,
|
|
4602
|
+
tagBorderTeal: tagBorderTeal,
|
|
4603
|
+
tagBorderGreen: tagBorderGreen,
|
|
4604
|
+
tagBorderMagenta: tagBorderMagenta,
|
|
4605
|
+
tagBorderPurple: tagBorderPurple,
|
|
4606
|
+
tagBorderGray: tagBorderGray,
|
|
4607
|
+
tagBorderCoolGray: tagBorderCoolGray,
|
|
4608
|
+
tagBorderWarmGray: tagBorderWarmGray
|
|
4611
4609
|
});
|
|
4612
4610
|
|
|
4613
4611
|
var index$1 = /*#__PURE__*/Object.freeze({
|
|
@@ -5184,15 +5182,17 @@ var contextual = TokenGroup.create({
|
|
|
5184
5182
|
var ai = TokenGroup.create({
|
|
5185
5183
|
name: 'AI',
|
|
5186
5184
|
properties: ['background'],
|
|
5187
|
-
tokens: ['slug-background', 'slug-gradient', 'slug-background-hover', 'slug-gradient-hover', 'slug-hollow-hover',
|
|
5185
|
+
tokens: ['slug-background', 'slug-gradient', 'slug-background-hover', 'slug-gradient-hover', 'slug-hollow-hover',
|
|
5188
5186
|
// Phase 2
|
|
5189
|
-
'
|
|
5187
|
+
'ai-popover-shadow-outer-01', 'ai-popover-shadow-outer-02',
|
|
5190
5188
|
// Linear gradient refactor
|
|
5191
5189
|
'ai-inner-shadow', 'ai-aura-start', 'ai-aura-start-table', 'ai-aura-end', 'ai-aura-hover-background', 'ai-aura-hover-start', 'ai-aura-hover-end', 'ai-border-strong', 'ai-border-start', 'ai-border-end', 'ai-drop-shadow', 'ai-skeleton-background', 'ai-skeleton-element-background', 'ai-overlay',
|
|
5192
5190
|
// Caret tokens
|
|
5193
|
-
'
|
|
5191
|
+
'ai-popover-caret-center', 'ai-popover-caret-bottom', 'ai-popover-caret-bottom-background', 'ai-popover-caret-bottom-background-actions',
|
|
5194
5192
|
// Chat tokens
|
|
5195
|
-
'chat-prompt-background', 'chat-prompt-border-start', 'chat-prompt-border-end', 'chat-bubble-user', 'chat-bubble-agent', 'chat-bubble-agent-border', 'chat-avatar-bot', 'chat-avatar-agent', 'chat-avatar-user'
|
|
5193
|
+
'chat-prompt-background', 'chat-prompt-border-start', 'chat-prompt-border-end', 'chat-bubble-user', 'chat-bubble-agent', 'chat-bubble-agent-border', 'chat-avatar-bot', 'chat-avatar-agent', 'chat-avatar-user', 'chat-shell-background', 'chat-header-background',
|
|
5194
|
+
// Chat button tokens
|
|
5195
|
+
'chat-button', 'chat-button-hover', 'chat-button-text-hover', 'chat-button-active', 'chat-button-selected', 'chat-button-text-selected']
|
|
5196
5196
|
});
|
|
5197
5197
|
var group = TokenGroup.create({
|
|
5198
5198
|
name: 'All',
|
|
@@ -5234,7 +5234,7 @@ var notification = TokenGroup.create({
|
|
|
5234
5234
|
var tag = TokenGroup.create({
|
|
5235
5235
|
name: 'Tag',
|
|
5236
5236
|
properties: [],
|
|
5237
|
-
tokens: ['tag-background-red', 'tag-color-red', 'tag-hover-red', 'tag-background-magenta', 'tag-color-magenta', 'tag-hover-magenta', 'tag-background-purple', 'tag-color-purple', 'tag-hover-purple', 'tag-background-blue', 'tag-color-blue', 'tag-hover-blue', 'tag-background-cyan', 'tag-color-cyan', 'tag-hover-cyan', 'tag-background-teal', 'tag-color-teal', 'tag-hover-teal', 'tag-background-green', 'tag-color-green', 'tag-hover-green', 'tag-background-gray', 'tag-color-gray', 'tag-hover-gray', 'tag-background-cool-gray', 'tag-color-cool-gray', 'tag-hover-cool-gray', 'tag-background-warm-gray', 'tag-color-warm-gray', 'tag-hover-warm-gray']
|
|
5237
|
+
tokens: ['tag-background-red', 'tag-color-red', 'tag-hover-red', 'tag-background-magenta', 'tag-color-magenta', 'tag-hover-magenta', 'tag-background-purple', 'tag-color-purple', 'tag-hover-purple', 'tag-background-blue', 'tag-color-blue', 'tag-hover-blue', 'tag-background-cyan', 'tag-color-cyan', 'tag-hover-cyan', 'tag-background-teal', 'tag-color-teal', 'tag-hover-teal', 'tag-background-green', 'tag-color-green', 'tag-hover-green', 'tag-background-gray', 'tag-color-gray', 'tag-hover-gray', 'tag-border-red', 'tag-border-blue', 'tag-border-cyan', 'tag-border-teal', 'tag-border-green', 'tag-border-magenta', 'tag-border-purple', 'tag-border-gray', 'tag-border-cool-gray', 'tag-border-warm-gray', 'tag-background-cool-gray', 'tag-color-cool-gray', 'tag-hover-cool-gray', 'tag-background-warm-gray', 'tag-color-warm-gray', 'tag-hover-warm-gray']
|
|
5238
5238
|
});
|
|
5239
5239
|
|
|
5240
5240
|
var components = /*#__PURE__*/Object.freeze({
|
|
@@ -5642,11 +5642,14 @@ exports.aiBorderEnd = aiBorderEnd$3;
|
|
|
5642
5642
|
exports.aiBorderStart = aiBorderStart$3;
|
|
5643
5643
|
exports.aiBorderStrong = aiBorderStrong$3;
|
|
5644
5644
|
exports.aiDropShadow = aiDropShadow$3;
|
|
5645
|
-
exports.aiGradientEnd = aiGradientEnd$3;
|
|
5646
|
-
exports.aiGradientStart01 = aiGradientStart01$3;
|
|
5647
|
-
exports.aiGradientStart02 = aiGradientStart02$3;
|
|
5648
5645
|
exports.aiInnerShadow = aiInnerShadow$3;
|
|
5649
5646
|
exports.aiOverlay = aiOverlay$3;
|
|
5647
|
+
exports.aiPopoverCaretBottom = aiPopoverCaretBottom$3;
|
|
5648
|
+
exports.aiPopoverCaretBottomBackground = aiPopoverCaretBottomBackground$3;
|
|
5649
|
+
exports.aiPopoverCaretBottomBackgroundActions = aiPopoverCaretBottomBackgroundActions$3;
|
|
5650
|
+
exports.aiPopoverCaretCenter = aiPopoverCaretCenter$3;
|
|
5651
|
+
exports.aiPopoverShadowOuter01 = aiPopoverShadowOuter01$3;
|
|
5652
|
+
exports.aiPopoverShadowOuter02 = aiPopoverShadowOuter02$3;
|
|
5650
5653
|
exports.aiSkeletonBackground = aiSkeletonBackground$3;
|
|
5651
5654
|
exports.aiSkeletonElementBackground = aiSkeletonElementBackground$3;
|
|
5652
5655
|
exports.background = background$8;
|
|
@@ -5680,9 +5683,17 @@ exports.chatAvatarUser = chatAvatarUser$3;
|
|
|
5680
5683
|
exports.chatBubbleAgent = chatBubbleAgent$3;
|
|
5681
5684
|
exports.chatBubbleAgentBorder = chatBubbleAgentBorder$3;
|
|
5682
5685
|
exports.chatBubbleUser = chatBubbleUser$3;
|
|
5686
|
+
exports.chatButton = chatButton$3;
|
|
5687
|
+
exports.chatButtonActive = chatButtonActive$3;
|
|
5688
|
+
exports.chatButtonHover = chatButtonHover$3;
|
|
5689
|
+
exports.chatButtonSelected = chatButtonSelected$3;
|
|
5690
|
+
exports.chatButtonTextHover = chatButtonTextHover$3;
|
|
5691
|
+
exports.chatButtonTextSelected = chatButtonTextSelected$3;
|
|
5692
|
+
exports.chatHeaderBackground = chatHeaderBackground$3;
|
|
5683
5693
|
exports.chatPromptBackground = chatPromptBackground$3;
|
|
5684
5694
|
exports.chatPromptBorderEnd = chatPromptBorderEnd$3;
|
|
5685
5695
|
exports.chatPromptBorderStart = chatPromptBorderStart$3;
|
|
5696
|
+
exports.chatShellBackground = chatShellBackground$3;
|
|
5686
5697
|
exports.field01 = field01$7;
|
|
5687
5698
|
exports.field02 = field02$7;
|
|
5688
5699
|
exports.field03 = field03$3;
|
|
@@ -5745,26 +5756,6 @@ exports.skeletonBackground = skeletonBackground$7;
|
|
|
5745
5756
|
exports.skeletonElement = skeletonElement$7;
|
|
5746
5757
|
exports.slugBackground = slugBackground$3;
|
|
5747
5758
|
exports.slugBackgroundHover = slugBackgroundHover$3;
|
|
5748
|
-
exports.slugCalloutAuraEnd = slugCalloutAuraEnd$3;
|
|
5749
|
-
exports.slugCalloutAuraEndHover01 = slugCalloutAuraEndHover01$3;
|
|
5750
|
-
exports.slugCalloutAuraEndHover02 = slugCalloutAuraEndHover02$3;
|
|
5751
|
-
exports.slugCalloutAuraEndSelected = slugCalloutAuraEndSelected$3;
|
|
5752
|
-
exports.slugCalloutAuraStart = slugCalloutAuraStart$3;
|
|
5753
|
-
exports.slugCalloutAuraStartHover01 = slugCalloutAuraStartHover01$3;
|
|
5754
|
-
exports.slugCalloutAuraStartHover02 = slugCalloutAuraStartHover02$3;
|
|
5755
|
-
exports.slugCalloutAuraStartSelected = slugCalloutAuraStartSelected$3;
|
|
5756
|
-
exports.slugCalloutCaretBottom = slugCalloutCaretBottom$3;
|
|
5757
|
-
exports.slugCalloutCaretBottomBackground = slugCalloutCaretBottomBackground$3;
|
|
5758
|
-
exports.slugCalloutCaretBottomBackgroundActions = slugCalloutCaretBottomBackgroundActions$3;
|
|
5759
|
-
exports.slugCalloutCaretCenter = slugCalloutCaretCenter$3;
|
|
5760
|
-
exports.slugCalloutGradientBottom = slugCalloutGradientBottom$3;
|
|
5761
|
-
exports.slugCalloutGradientBottomHover = slugCalloutGradientBottomHover$3;
|
|
5762
|
-
exports.slugCalloutGradientBottomSelected = slugCalloutGradientBottomSelected$3;
|
|
5763
|
-
exports.slugCalloutGradientTop = slugCalloutGradientTop$3;
|
|
5764
|
-
exports.slugCalloutGradientTopHover = slugCalloutGradientTopHover$3;
|
|
5765
|
-
exports.slugCalloutGradientTopSelected = slugCalloutGradientTopSelected$3;
|
|
5766
|
-
exports.slugCalloutShadowOuter01 = slugCalloutShadowOuter01$3;
|
|
5767
|
-
exports.slugCalloutShadowOuter02 = slugCalloutShadowOuter02$3;
|
|
5768
5759
|
exports.slugGradient = slugGradient$3;
|
|
5769
5760
|
exports.slugGradientHover = slugGradientHover$3;
|
|
5770
5761
|
exports.slugHollowHover = slugHollowHover$3;
|