@cloudscape-design/components 3.0.791 → 3.0.793
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/app-layout/visual-refresh-toolbar/skeleton/styles.css.js +19 -19
- package/app-layout/visual-refresh-toolbar/skeleton/styles.scoped.css +40 -40
- package/app-layout/visual-refresh-toolbar/skeleton/styles.selectors.js +19 -19
- package/collection-preferences/content-display/index.d.ts.map +1 -1
- package/collection-preferences/content-display/index.js +15 -8
- package/collection-preferences/content-display/index.js.map +1 -1
- package/collection-preferences/content-display/utils.d.ts +2 -2
- package/collection-preferences/content-display/utils.d.ts.map +1 -1
- package/collection-preferences/content-display/utils.js +13 -4
- package/collection-preferences/content-display/utils.js.map +1 -1
- package/form/index.d.ts.map +1 -1
- package/form/index.js +3 -3
- package/form/index.js.map +1 -1
- package/internal/analytics/components/analytics-funnel.d.ts +2 -0
- package/internal/analytics/components/analytics-funnel.d.ts.map +1 -1
- package/internal/analytics/components/analytics-funnel.js +48 -5
- package/internal/analytics/components/analytics-funnel.js.map +1 -1
- package/internal/analytics/hooks/use-funnel.d.ts +6 -21
- package/internal/analytics/hooks/use-funnel.d.ts.map +1 -1
- package/internal/analytics/hooks/use-funnel.js +0 -7
- package/internal/analytics/hooks/use-funnel.js.map +1 -1
- package/internal/analytics/interfaces.d.ts +3 -2
- package/internal/analytics/interfaces.d.ts.map +1 -1
- package/internal/analytics/interfaces.js.map +1 -1
- package/internal/base-component/styles.scoped.css +23 -0
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/generated/styles/tokens.d.ts +5 -0
- package/internal/generated/styles/tokens.js +5 -0
- package/internal/generated/theming/index.cjs +134 -0
- package/internal/generated/theming/index.cjs.d.ts +16 -0
- package/internal/generated/theming/index.d.ts +16 -0
- package/internal/generated/theming/index.js +134 -0
- package/internal/manifest.json +1 -1
- package/modal/index.d.ts.map +1 -1
- package/modal/index.js +22 -2
- package/modal/index.js.map +1 -1
- package/modal/interfaces.d.ts +14 -0
- package/modal/interfaces.d.ts.map +1 -1
- package/modal/interfaces.js.map +1 -1
- package/modal/internal.d.ts +9 -0
- package/modal/internal.d.ts.map +1 -1
- package/modal/internal.js +20 -6
- package/modal/internal.js.map +1 -1
- package/package.json +1 -1
|
@@ -1069,6 +1069,22 @@ module.exports.preset = {
|
|
|
1069
1069
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
1070
1070
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
1071
1071
|
},
|
|
1072
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
1073
|
+
"light": "transparent",
|
|
1074
|
+
"dark": "transparent"
|
|
1075
|
+
},
|
|
1076
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
1077
|
+
"light": "{colorGrey150}",
|
|
1078
|
+
"dark": "{colorGrey850}"
|
|
1079
|
+
},
|
|
1080
|
+
"colorTextChatBubbleOutgoing": {
|
|
1081
|
+
"light": "{colorTextBodyDefault}",
|
|
1082
|
+
"dark": "{colorTextBodyDefault}"
|
|
1083
|
+
},
|
|
1084
|
+
"colorTextChatBubbleIncoming": {
|
|
1085
|
+
"light": "{colorTextBodyDefault}",
|
|
1086
|
+
"dark": "{colorTextBodyDefault}"
|
|
1087
|
+
},
|
|
1072
1088
|
"colorBorderButtonNormalActive": {
|
|
1073
1089
|
"light": "{colorBlue800}",
|
|
1074
1090
|
"dark": "{colorBlue400}"
|
|
@@ -1855,6 +1871,7 @@ module.exports.preset = {
|
|
|
1855
1871
|
"borderRadiusTabsFocusRing": "20px",
|
|
1856
1872
|
"borderRadiusTiles": "{borderRadiusInput}",
|
|
1857
1873
|
"borderRadiusToken": "{borderRadiusInput}",
|
|
1874
|
+
"borderRadiusChatBubble": "2px",
|
|
1858
1875
|
"borderRadiusTutorialPanelItem": "{borderRadiusInput}",
|
|
1859
1876
|
"borderTableStickyWidth": "1px",
|
|
1860
1877
|
"borderLinkFocusRingOutline": "0",
|
|
@@ -3287,6 +3304,22 @@ module.exports.preset = {
|
|
|
3287
3304
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
3288
3305
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
3289
3306
|
},
|
|
3307
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
3308
|
+
"light": "transparent",
|
|
3309
|
+
"dark": "transparent"
|
|
3310
|
+
},
|
|
3311
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
3312
|
+
"light": "{colorGrey850}",
|
|
3313
|
+
"dark": "{colorGrey850}"
|
|
3314
|
+
},
|
|
3315
|
+
"colorTextChatBubbleOutgoing": {
|
|
3316
|
+
"light": "{colorTextBodyDefault}",
|
|
3317
|
+
"dark": "{colorTextBodyDefault}"
|
|
3318
|
+
},
|
|
3319
|
+
"colorTextChatBubbleIncoming": {
|
|
3320
|
+
"light": "{colorTextBodyDefault}",
|
|
3321
|
+
"dark": "{colorTextBodyDefault}"
|
|
3322
|
+
},
|
|
3290
3323
|
"colorBorderButtonNormalActive": {
|
|
3291
3324
|
"light": "{colorBlue400}",
|
|
3292
3325
|
"dark": "{colorBlue400}"
|
|
@@ -4425,6 +4458,22 @@ module.exports.preset = {
|
|
|
4425
4458
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
4426
4459
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
4427
4460
|
},
|
|
4461
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
4462
|
+
"light": "transparent",
|
|
4463
|
+
"dark": "transparent"
|
|
4464
|
+
},
|
|
4465
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
4466
|
+
"light": "{colorGrey850}",
|
|
4467
|
+
"dark": "{colorGrey850}"
|
|
4468
|
+
},
|
|
4469
|
+
"colorTextChatBubbleOutgoing": {
|
|
4470
|
+
"light": "{colorTextBodyDefault}",
|
|
4471
|
+
"dark": "{colorTextBodyDefault}"
|
|
4472
|
+
},
|
|
4473
|
+
"colorTextChatBubbleIncoming": {
|
|
4474
|
+
"light": "{colorTextBodyDefault}",
|
|
4475
|
+
"dark": "{colorTextBodyDefault}"
|
|
4476
|
+
},
|
|
4428
4477
|
"colorBorderButtonNormalActive": {
|
|
4429
4478
|
"light": "{colorBlue400}",
|
|
4430
4479
|
"dark": "{colorBlue400}"
|
|
@@ -5495,6 +5544,22 @@ module.exports.preset = {
|
|
|
5495
5544
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
5496
5545
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
5497
5546
|
},
|
|
5547
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
5548
|
+
"light": "transparent",
|
|
5549
|
+
"dark": "transparent"
|
|
5550
|
+
},
|
|
5551
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
5552
|
+
"light": "{colorGrey150}",
|
|
5553
|
+
"dark": "{colorGrey850}"
|
|
5554
|
+
},
|
|
5555
|
+
"colorTextChatBubbleOutgoing": {
|
|
5556
|
+
"light": "{colorTextBodyDefault}",
|
|
5557
|
+
"dark": "{colorTextBodyDefault}"
|
|
5558
|
+
},
|
|
5559
|
+
"colorTextChatBubbleIncoming": {
|
|
5560
|
+
"light": "{colorTextBodyDefault}",
|
|
5561
|
+
"dark": "{colorTextBodyDefault}"
|
|
5562
|
+
},
|
|
5498
5563
|
"colorBorderButtonNormalActive": {
|
|
5499
5564
|
"light": "{colorWhite}",
|
|
5500
5565
|
"dark": "{colorWhite}"
|
|
@@ -6565,6 +6630,22 @@ module.exports.preset = {
|
|
|
6565
6630
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
6566
6631
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
6567
6632
|
},
|
|
6633
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
6634
|
+
"light": "transparent",
|
|
6635
|
+
"dark": "transparent"
|
|
6636
|
+
},
|
|
6637
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
6638
|
+
"light": "{colorGrey150}",
|
|
6639
|
+
"dark": "{colorGrey850}"
|
|
6640
|
+
},
|
|
6641
|
+
"colorTextChatBubbleOutgoing": {
|
|
6642
|
+
"light": "{colorTextBodyDefault}",
|
|
6643
|
+
"dark": "{colorTextBodyDefault}"
|
|
6644
|
+
},
|
|
6645
|
+
"colorTextChatBubbleIncoming": {
|
|
6646
|
+
"light": "{colorTextBodyDefault}",
|
|
6647
|
+
"dark": "{colorTextBodyDefault}"
|
|
6648
|
+
},
|
|
6568
6649
|
"colorBorderButtonNormalActive": {
|
|
6569
6650
|
"light": "{colorTextButtonNormalHover}",
|
|
6570
6651
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -7635,6 +7716,22 @@ module.exports.preset = {
|
|
|
7635
7716
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
7636
7717
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
7637
7718
|
},
|
|
7719
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
7720
|
+
"light": "transparent",
|
|
7721
|
+
"dark": "transparent"
|
|
7722
|
+
},
|
|
7723
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
7724
|
+
"light": "{colorGrey150}",
|
|
7725
|
+
"dark": "{colorGrey850}"
|
|
7726
|
+
},
|
|
7727
|
+
"colorTextChatBubbleOutgoing": {
|
|
7728
|
+
"light": "{colorTextBodyDefault}",
|
|
7729
|
+
"dark": "{colorTextBodyDefault}"
|
|
7730
|
+
},
|
|
7731
|
+
"colorTextChatBubbleIncoming": {
|
|
7732
|
+
"light": "{colorTextBodyDefault}",
|
|
7733
|
+
"dark": "{colorTextBodyDefault}"
|
|
7734
|
+
},
|
|
7638
7735
|
"colorBorderButtonNormalActive": {
|
|
7639
7736
|
"light": "{colorTextButtonNormalHover}",
|
|
7640
7737
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -8707,6 +8804,22 @@ module.exports.preset = {
|
|
|
8707
8804
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
8708
8805
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
8709
8806
|
},
|
|
8807
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
8808
|
+
"light": "transparent",
|
|
8809
|
+
"dark": "transparent"
|
|
8810
|
+
},
|
|
8811
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
8812
|
+
"light": "{colorGrey850}",
|
|
8813
|
+
"dark": "{colorGrey850}"
|
|
8814
|
+
},
|
|
8815
|
+
"colorTextChatBubbleOutgoing": {
|
|
8816
|
+
"light": "{colorTextBodyDefault}",
|
|
8817
|
+
"dark": "{colorTextBodyDefault}"
|
|
8818
|
+
},
|
|
8819
|
+
"colorTextChatBubbleIncoming": {
|
|
8820
|
+
"light": "{colorTextBodyDefault}",
|
|
8821
|
+
"dark": "{colorTextBodyDefault}"
|
|
8822
|
+
},
|
|
8710
8823
|
"colorBorderButtonNormalActive": {
|
|
8711
8824
|
"light": "{colorTextButtonNormalHover}",
|
|
8712
8825
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -9659,6 +9772,10 @@ module.exports.preset = {
|
|
|
9659
9772
|
"colorBackgroundAvatarDefault": "color",
|
|
9660
9773
|
"colorTextAvatar": "color",
|
|
9661
9774
|
"colorBackgroundLoadingBarGenAi": "color",
|
|
9775
|
+
"colorBackgroundChatBubbleOutgoing": "color",
|
|
9776
|
+
"colorBackgroundChatBubbleIncoming": "color",
|
|
9777
|
+
"colorTextChatBubbleOutgoing": "color",
|
|
9778
|
+
"colorTextChatBubbleIncoming": "color",
|
|
9662
9779
|
"colorBorderButtonNormalActive": "color",
|
|
9663
9780
|
"colorBorderButtonNormalDefault": "color",
|
|
9664
9781
|
"colorBorderToggleButtonNormalPressed": "color",
|
|
@@ -10109,6 +10226,8 @@ module.exports.preset = {
|
|
|
10109
10226
|
"colorBackgroundStatusSuccess",
|
|
10110
10227
|
"colorBackgroundStatusWarning",
|
|
10111
10228
|
"colorBackgroundToggleCheckedDisabled",
|
|
10229
|
+
"colorTextChatBubbleOutgoing",
|
|
10230
|
+
"colorTextChatBubbleIncoming",
|
|
10112
10231
|
"colorBorderButtonNormalActive",
|
|
10113
10232
|
"colorBorderButtonNormalDefault",
|
|
10114
10233
|
"colorBorderToggleButtonNormalPressed",
|
|
@@ -10435,6 +10554,10 @@ module.exports.preset = {
|
|
|
10435
10554
|
"colorBackgroundAvatarDefault",
|
|
10436
10555
|
"colorTextAvatar",
|
|
10437
10556
|
"colorBackgroundLoadingBarGenAi",
|
|
10557
|
+
"colorBackgroundChatBubbleOutgoing",
|
|
10558
|
+
"colorBackgroundChatBubbleIncoming",
|
|
10559
|
+
"colorTextChatBubbleOutgoing",
|
|
10560
|
+
"colorTextChatBubbleIncoming",
|
|
10438
10561
|
"colorBorderButtonNormalActive",
|
|
10439
10562
|
"colorBorderButtonNormalDefault",
|
|
10440
10563
|
"colorBorderToggleButtonNormalPressed",
|
|
@@ -10558,6 +10681,7 @@ module.exports.preset = {
|
|
|
10558
10681
|
"borderRadiusTabsFocusRing",
|
|
10559
10682
|
"borderRadiusTiles",
|
|
10560
10683
|
"borderRadiusToken",
|
|
10684
|
+
"borderRadiusChatBubble",
|
|
10561
10685
|
"borderRadiusTutorialPanelItem",
|
|
10562
10686
|
"motionDurationAvatarGenAiGradient",
|
|
10563
10687
|
"motionDurationAvatarLoadingDots",
|
|
@@ -10893,6 +11017,10 @@ module.exports.preset = {
|
|
|
10893
11017
|
"colorBackgroundAvatarDefault": "color-background-avatar-default",
|
|
10894
11018
|
"colorTextAvatar": "color-text-avatar",
|
|
10895
11019
|
"colorBackgroundLoadingBarGenAi": "color-background-loading-bar-gen-ai",
|
|
11020
|
+
"colorBackgroundChatBubbleOutgoing": "color-background-chat-bubble-outgoing",
|
|
11021
|
+
"colorBackgroundChatBubbleIncoming": "color-background-chat-bubble-incoming",
|
|
11022
|
+
"colorTextChatBubbleOutgoing": "color-text-chat-bubble-outgoing",
|
|
11023
|
+
"colorTextChatBubbleIncoming": "color-text-chat-bubble-incoming",
|
|
10896
11024
|
"colorBorderButtonNormalActive": "color-border-button-normal-active",
|
|
10897
11025
|
"colorBorderButtonNormalDefault": "color-border-button-normal-default",
|
|
10898
11026
|
"colorBorderToggleButtonNormalPressed": "color-border-toggle-button-normal-pressed",
|
|
@@ -11151,6 +11279,7 @@ module.exports.preset = {
|
|
|
11151
11279
|
"borderRadiusTabsFocusRing": "border-radius-tabs-focus-ring",
|
|
11152
11280
|
"borderRadiusTiles": "border-radius-tiles",
|
|
11153
11281
|
"borderRadiusToken": "border-radius-token",
|
|
11282
|
+
"borderRadiusChatBubble": "border-radius-chat-bubble",
|
|
11154
11283
|
"borderRadiusTutorialPanelItem": "border-radius-tutorial-panel-item",
|
|
11155
11284
|
"borderTableStickyWidth": "border-table-sticky-width",
|
|
11156
11285
|
"borderLinkFocusRingOutline": "border-link-focus-ring-outline",
|
|
@@ -11620,6 +11749,10 @@ module.exports.preset = {
|
|
|
11620
11749
|
"colorBackgroundAvatarDefault": "--color-background-avatar-default-rci9zy",
|
|
11621
11750
|
"colorTextAvatar": "--color-text-avatar-jddpvm",
|
|
11622
11751
|
"colorBackgroundLoadingBarGenAi": "--color-background-loading-bar-gen-ai-7qfi9s",
|
|
11752
|
+
"colorBackgroundChatBubbleOutgoing": "--color-background-chat-bubble-outgoing-pfqan2",
|
|
11753
|
+
"colorBackgroundChatBubbleIncoming": "--color-background-chat-bubble-incoming-brq006",
|
|
11754
|
+
"colorTextChatBubbleOutgoing": "--color-text-chat-bubble-outgoing-bvbr0v",
|
|
11755
|
+
"colorTextChatBubbleIncoming": "--color-text-chat-bubble-incoming-x2kig8",
|
|
11623
11756
|
"colorBorderButtonNormalActive": "--color-border-button-normal-active-mn0ayd",
|
|
11624
11757
|
"colorBorderButtonNormalDefault": "--color-border-button-normal-default-uzqi0v",
|
|
11625
11758
|
"colorBorderToggleButtonNormalPressed": "--color-border-toggle-button-normal-pressed-lylxt2",
|
|
@@ -11878,6 +12011,7 @@ module.exports.preset = {
|
|
|
11878
12011
|
"borderRadiusTabsFocusRing": "--border-radius-tabs-focus-ring-1q0rjo",
|
|
11879
12012
|
"borderRadiusTiles": "--border-radius-tiles-60y8e6",
|
|
11880
12013
|
"borderRadiusToken": "--border-radius-token-923jqq",
|
|
12014
|
+
"borderRadiusChatBubble": "--border-radius-chat-bubble-ur269r",
|
|
11881
12015
|
"borderRadiusTutorialPanelItem": "--border-radius-tutorial-panel-item-b44p0a",
|
|
11882
12016
|
"borderTableStickyWidth": "--border-table-sticky-width-87kf12",
|
|
11883
12017
|
"borderLinkFocusRingOutline": "--border-link-focus-ring-outline-kkfop6",
|
|
@@ -107,6 +107,8 @@ export declare interface TypedOverride {
|
|
|
107
107
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
108
108
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
109
109
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
110
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
111
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
110
112
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
111
113
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
112
114
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -338,6 +340,8 @@ export declare interface TypedOverride {
|
|
|
338
340
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
339
341
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
340
342
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
343
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
344
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
341
345
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
342
346
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
343
347
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -569,6 +573,8 @@ export declare interface TypedOverride {
|
|
|
569
573
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
570
574
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
571
575
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
576
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
577
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
572
578
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
573
579
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
574
580
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -800,6 +806,8 @@ export declare interface TypedOverride {
|
|
|
800
806
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
801
807
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
802
808
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
809
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
810
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
803
811
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
804
812
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
805
813
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1031,6 +1039,8 @@ export declare interface TypedOverride {
|
|
|
1031
1039
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1032
1040
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1033
1041
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1042
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1043
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1034
1044
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1035
1045
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1036
1046
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1262,6 +1272,8 @@ export declare interface TypedOverride {
|
|
|
1262
1272
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1263
1273
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1264
1274
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1275
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1276
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1265
1277
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1266
1278
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1267
1279
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1493,6 +1505,8 @@ export declare interface TypedOverride {
|
|
|
1493
1505
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1494
1506
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1495
1507
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1508
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1509
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1496
1510
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1497
1511
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1498
1512
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1724,6 +1738,8 @@ export declare interface TypedOverride {
|
|
|
1724
1738
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1725
1739
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1726
1740
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1741
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1742
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1727
1743
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1728
1744
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1729
1745
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -107,6 +107,8 @@ export declare interface TypedOverride {
|
|
|
107
107
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
108
108
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
109
109
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
110
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
111
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
110
112
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
111
113
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
112
114
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -338,6 +340,8 @@ export declare interface TypedOverride {
|
|
|
338
340
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
339
341
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
340
342
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
343
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
344
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
341
345
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
342
346
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
343
347
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -569,6 +573,8 @@ export declare interface TypedOverride {
|
|
|
569
573
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
570
574
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
571
575
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
576
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
577
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
572
578
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
573
579
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
574
580
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -800,6 +806,8 @@ export declare interface TypedOverride {
|
|
|
800
806
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
801
807
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
802
808
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
809
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
810
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
803
811
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
804
812
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
805
813
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1031,6 +1039,8 @@ export declare interface TypedOverride {
|
|
|
1031
1039
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1032
1040
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1033
1041
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1042
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1043
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1034
1044
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1035
1045
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1036
1046
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1262,6 +1272,8 @@ export declare interface TypedOverride {
|
|
|
1262
1272
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1263
1273
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1264
1274
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1275
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1276
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1265
1277
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1266
1278
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1267
1279
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1493,6 +1505,8 @@ export declare interface TypedOverride {
|
|
|
1493
1505
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1494
1506
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1495
1507
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1508
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1509
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1496
1510
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1497
1511
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1498
1512
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1724,6 +1738,8 @@ export declare interface TypedOverride {
|
|
|
1724
1738
|
colorBackgroundStatusSuccess?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1725
1739
|
colorBackgroundStatusWarning?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1726
1740
|
colorBackgroundToggleCheckedDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1741
|
+
colorTextChatBubbleOutgoing?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1742
|
+
colorTextChatBubbleIncoming?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1727
1743
|
colorBorderButtonNormalActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1728
1744
|
colorBorderButtonNormalDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1729
1745
|
colorBorderToggleButtonNormalPressed?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1069,6 +1069,22 @@ export var preset = {
|
|
|
1069
1069
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
1070
1070
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
1071
1071
|
},
|
|
1072
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
1073
|
+
"light": "transparent",
|
|
1074
|
+
"dark": "transparent"
|
|
1075
|
+
},
|
|
1076
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
1077
|
+
"light": "{colorGrey150}",
|
|
1078
|
+
"dark": "{colorGrey850}"
|
|
1079
|
+
},
|
|
1080
|
+
"colorTextChatBubbleOutgoing": {
|
|
1081
|
+
"light": "{colorTextBodyDefault}",
|
|
1082
|
+
"dark": "{colorTextBodyDefault}"
|
|
1083
|
+
},
|
|
1084
|
+
"colorTextChatBubbleIncoming": {
|
|
1085
|
+
"light": "{colorTextBodyDefault}",
|
|
1086
|
+
"dark": "{colorTextBodyDefault}"
|
|
1087
|
+
},
|
|
1072
1088
|
"colorBorderButtonNormalActive": {
|
|
1073
1089
|
"light": "{colorBlue800}",
|
|
1074
1090
|
"dark": "{colorBlue400}"
|
|
@@ -1855,6 +1871,7 @@ export var preset = {
|
|
|
1855
1871
|
"borderRadiusTabsFocusRing": "20px",
|
|
1856
1872
|
"borderRadiusTiles": "{borderRadiusInput}",
|
|
1857
1873
|
"borderRadiusToken": "{borderRadiusInput}",
|
|
1874
|
+
"borderRadiusChatBubble": "2px",
|
|
1858
1875
|
"borderRadiusTutorialPanelItem": "{borderRadiusInput}",
|
|
1859
1876
|
"borderTableStickyWidth": "1px",
|
|
1860
1877
|
"borderLinkFocusRingOutline": "0",
|
|
@@ -3287,6 +3304,22 @@ export var preset = {
|
|
|
3287
3304
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
3288
3305
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
3289
3306
|
},
|
|
3307
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
3308
|
+
"light": "transparent",
|
|
3309
|
+
"dark": "transparent"
|
|
3310
|
+
},
|
|
3311
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
3312
|
+
"light": "{colorGrey850}",
|
|
3313
|
+
"dark": "{colorGrey850}"
|
|
3314
|
+
},
|
|
3315
|
+
"colorTextChatBubbleOutgoing": {
|
|
3316
|
+
"light": "{colorTextBodyDefault}",
|
|
3317
|
+
"dark": "{colorTextBodyDefault}"
|
|
3318
|
+
},
|
|
3319
|
+
"colorTextChatBubbleIncoming": {
|
|
3320
|
+
"light": "{colorTextBodyDefault}",
|
|
3321
|
+
"dark": "{colorTextBodyDefault}"
|
|
3322
|
+
},
|
|
3290
3323
|
"colorBorderButtonNormalActive": {
|
|
3291
3324
|
"light": "{colorBlue400}",
|
|
3292
3325
|
"dark": "{colorBlue400}"
|
|
@@ -4425,6 +4458,22 @@ export var preset = {
|
|
|
4425
4458
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
4426
4459
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
4427
4460
|
},
|
|
4461
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
4462
|
+
"light": "transparent",
|
|
4463
|
+
"dark": "transparent"
|
|
4464
|
+
},
|
|
4465
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
4466
|
+
"light": "{colorGrey850}",
|
|
4467
|
+
"dark": "{colorGrey850}"
|
|
4468
|
+
},
|
|
4469
|
+
"colorTextChatBubbleOutgoing": {
|
|
4470
|
+
"light": "{colorTextBodyDefault}",
|
|
4471
|
+
"dark": "{colorTextBodyDefault}"
|
|
4472
|
+
},
|
|
4473
|
+
"colorTextChatBubbleIncoming": {
|
|
4474
|
+
"light": "{colorTextBodyDefault}",
|
|
4475
|
+
"dark": "{colorTextBodyDefault}"
|
|
4476
|
+
},
|
|
4428
4477
|
"colorBorderButtonNormalActive": {
|
|
4429
4478
|
"light": "{colorBlue400}",
|
|
4430
4479
|
"dark": "{colorBlue400}"
|
|
@@ -5495,6 +5544,22 @@ export var preset = {
|
|
|
5495
5544
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
5496
5545
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
5497
5546
|
},
|
|
5547
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
5548
|
+
"light": "transparent",
|
|
5549
|
+
"dark": "transparent"
|
|
5550
|
+
},
|
|
5551
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
5552
|
+
"light": "{colorGrey150}",
|
|
5553
|
+
"dark": "{colorGrey850}"
|
|
5554
|
+
},
|
|
5555
|
+
"colorTextChatBubbleOutgoing": {
|
|
5556
|
+
"light": "{colorTextBodyDefault}",
|
|
5557
|
+
"dark": "{colorTextBodyDefault}"
|
|
5558
|
+
},
|
|
5559
|
+
"colorTextChatBubbleIncoming": {
|
|
5560
|
+
"light": "{colorTextBodyDefault}",
|
|
5561
|
+
"dark": "{colorTextBodyDefault}"
|
|
5562
|
+
},
|
|
5498
5563
|
"colorBorderButtonNormalActive": {
|
|
5499
5564
|
"light": "{colorWhite}",
|
|
5500
5565
|
"dark": "{colorWhite}"
|
|
@@ -6565,6 +6630,22 @@ export var preset = {
|
|
|
6565
6630
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
6566
6631
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
6567
6632
|
},
|
|
6633
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
6634
|
+
"light": "transparent",
|
|
6635
|
+
"dark": "transparent"
|
|
6636
|
+
},
|
|
6637
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
6638
|
+
"light": "{colorGrey150}",
|
|
6639
|
+
"dark": "{colorGrey850}"
|
|
6640
|
+
},
|
|
6641
|
+
"colorTextChatBubbleOutgoing": {
|
|
6642
|
+
"light": "{colorTextBodyDefault}",
|
|
6643
|
+
"dark": "{colorTextBodyDefault}"
|
|
6644
|
+
},
|
|
6645
|
+
"colorTextChatBubbleIncoming": {
|
|
6646
|
+
"light": "{colorTextBodyDefault}",
|
|
6647
|
+
"dark": "{colorTextBodyDefault}"
|
|
6648
|
+
},
|
|
6568
6649
|
"colorBorderButtonNormalActive": {
|
|
6569
6650
|
"light": "{colorTextButtonNormalHover}",
|
|
6570
6651
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -7635,6 +7716,22 @@ export var preset = {
|
|
|
7635
7716
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
7636
7717
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
7637
7718
|
},
|
|
7719
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
7720
|
+
"light": "transparent",
|
|
7721
|
+
"dark": "transparent"
|
|
7722
|
+
},
|
|
7723
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
7724
|
+
"light": "{colorGrey150}",
|
|
7725
|
+
"dark": "{colorGrey850}"
|
|
7726
|
+
},
|
|
7727
|
+
"colorTextChatBubbleOutgoing": {
|
|
7728
|
+
"light": "{colorTextBodyDefault}",
|
|
7729
|
+
"dark": "{colorTextBodyDefault}"
|
|
7730
|
+
},
|
|
7731
|
+
"colorTextChatBubbleIncoming": {
|
|
7732
|
+
"light": "{colorTextBodyDefault}",
|
|
7733
|
+
"dark": "{colorTextBodyDefault}"
|
|
7734
|
+
},
|
|
7638
7735
|
"colorBorderButtonNormalActive": {
|
|
7639
7736
|
"light": "{colorTextButtonNormalHover}",
|
|
7640
7737
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -8707,6 +8804,22 @@ export var preset = {
|
|
|
8707
8804
|
"light": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)",
|
|
8708
8805
|
"dark": "linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%)"
|
|
8709
8806
|
},
|
|
8807
|
+
"colorBackgroundChatBubbleOutgoing": {
|
|
8808
|
+
"light": "transparent",
|
|
8809
|
+
"dark": "transparent"
|
|
8810
|
+
},
|
|
8811
|
+
"colorBackgroundChatBubbleIncoming": {
|
|
8812
|
+
"light": "{colorGrey850}",
|
|
8813
|
+
"dark": "{colorGrey850}"
|
|
8814
|
+
},
|
|
8815
|
+
"colorTextChatBubbleOutgoing": {
|
|
8816
|
+
"light": "{colorTextBodyDefault}",
|
|
8817
|
+
"dark": "{colorTextBodyDefault}"
|
|
8818
|
+
},
|
|
8819
|
+
"colorTextChatBubbleIncoming": {
|
|
8820
|
+
"light": "{colorTextBodyDefault}",
|
|
8821
|
+
"dark": "{colorTextBodyDefault}"
|
|
8822
|
+
},
|
|
8710
8823
|
"colorBorderButtonNormalActive": {
|
|
8711
8824
|
"light": "{colorTextButtonNormalHover}",
|
|
8712
8825
|
"dark": "{colorTextButtonNormalHover}"
|
|
@@ -9659,6 +9772,10 @@ export var preset = {
|
|
|
9659
9772
|
"colorBackgroundAvatarDefault": "color",
|
|
9660
9773
|
"colorTextAvatar": "color",
|
|
9661
9774
|
"colorBackgroundLoadingBarGenAi": "color",
|
|
9775
|
+
"colorBackgroundChatBubbleOutgoing": "color",
|
|
9776
|
+
"colorBackgroundChatBubbleIncoming": "color",
|
|
9777
|
+
"colorTextChatBubbleOutgoing": "color",
|
|
9778
|
+
"colorTextChatBubbleIncoming": "color",
|
|
9662
9779
|
"colorBorderButtonNormalActive": "color",
|
|
9663
9780
|
"colorBorderButtonNormalDefault": "color",
|
|
9664
9781
|
"colorBorderToggleButtonNormalPressed": "color",
|
|
@@ -10109,6 +10226,8 @@ export var preset = {
|
|
|
10109
10226
|
"colorBackgroundStatusSuccess",
|
|
10110
10227
|
"colorBackgroundStatusWarning",
|
|
10111
10228
|
"colorBackgroundToggleCheckedDisabled",
|
|
10229
|
+
"colorTextChatBubbleOutgoing",
|
|
10230
|
+
"colorTextChatBubbleIncoming",
|
|
10112
10231
|
"colorBorderButtonNormalActive",
|
|
10113
10232
|
"colorBorderButtonNormalDefault",
|
|
10114
10233
|
"colorBorderToggleButtonNormalPressed",
|
|
@@ -10435,6 +10554,10 @@ export var preset = {
|
|
|
10435
10554
|
"colorBackgroundAvatarDefault",
|
|
10436
10555
|
"colorTextAvatar",
|
|
10437
10556
|
"colorBackgroundLoadingBarGenAi",
|
|
10557
|
+
"colorBackgroundChatBubbleOutgoing",
|
|
10558
|
+
"colorBackgroundChatBubbleIncoming",
|
|
10559
|
+
"colorTextChatBubbleOutgoing",
|
|
10560
|
+
"colorTextChatBubbleIncoming",
|
|
10438
10561
|
"colorBorderButtonNormalActive",
|
|
10439
10562
|
"colorBorderButtonNormalDefault",
|
|
10440
10563
|
"colorBorderToggleButtonNormalPressed",
|
|
@@ -10558,6 +10681,7 @@ export var preset = {
|
|
|
10558
10681
|
"borderRadiusTabsFocusRing",
|
|
10559
10682
|
"borderRadiusTiles",
|
|
10560
10683
|
"borderRadiusToken",
|
|
10684
|
+
"borderRadiusChatBubble",
|
|
10561
10685
|
"borderRadiusTutorialPanelItem",
|
|
10562
10686
|
"motionDurationAvatarGenAiGradient",
|
|
10563
10687
|
"motionDurationAvatarLoadingDots",
|
|
@@ -10893,6 +11017,10 @@ export var preset = {
|
|
|
10893
11017
|
"colorBackgroundAvatarDefault": "color-background-avatar-default",
|
|
10894
11018
|
"colorTextAvatar": "color-text-avatar",
|
|
10895
11019
|
"colorBackgroundLoadingBarGenAi": "color-background-loading-bar-gen-ai",
|
|
11020
|
+
"colorBackgroundChatBubbleOutgoing": "color-background-chat-bubble-outgoing",
|
|
11021
|
+
"colorBackgroundChatBubbleIncoming": "color-background-chat-bubble-incoming",
|
|
11022
|
+
"colorTextChatBubbleOutgoing": "color-text-chat-bubble-outgoing",
|
|
11023
|
+
"colorTextChatBubbleIncoming": "color-text-chat-bubble-incoming",
|
|
10896
11024
|
"colorBorderButtonNormalActive": "color-border-button-normal-active",
|
|
10897
11025
|
"colorBorderButtonNormalDefault": "color-border-button-normal-default",
|
|
10898
11026
|
"colorBorderToggleButtonNormalPressed": "color-border-toggle-button-normal-pressed",
|
|
@@ -11151,6 +11279,7 @@ export var preset = {
|
|
|
11151
11279
|
"borderRadiusTabsFocusRing": "border-radius-tabs-focus-ring",
|
|
11152
11280
|
"borderRadiusTiles": "border-radius-tiles",
|
|
11153
11281
|
"borderRadiusToken": "border-radius-token",
|
|
11282
|
+
"borderRadiusChatBubble": "border-radius-chat-bubble",
|
|
11154
11283
|
"borderRadiusTutorialPanelItem": "border-radius-tutorial-panel-item",
|
|
11155
11284
|
"borderTableStickyWidth": "border-table-sticky-width",
|
|
11156
11285
|
"borderLinkFocusRingOutline": "border-link-focus-ring-outline",
|
|
@@ -11620,6 +11749,10 @@ export var preset = {
|
|
|
11620
11749
|
"colorBackgroundAvatarDefault": "--color-background-avatar-default-rci9zy",
|
|
11621
11750
|
"colorTextAvatar": "--color-text-avatar-jddpvm",
|
|
11622
11751
|
"colorBackgroundLoadingBarGenAi": "--color-background-loading-bar-gen-ai-7qfi9s",
|
|
11752
|
+
"colorBackgroundChatBubbleOutgoing": "--color-background-chat-bubble-outgoing-pfqan2",
|
|
11753
|
+
"colorBackgroundChatBubbleIncoming": "--color-background-chat-bubble-incoming-brq006",
|
|
11754
|
+
"colorTextChatBubbleOutgoing": "--color-text-chat-bubble-outgoing-bvbr0v",
|
|
11755
|
+
"colorTextChatBubbleIncoming": "--color-text-chat-bubble-incoming-x2kig8",
|
|
11623
11756
|
"colorBorderButtonNormalActive": "--color-border-button-normal-active-mn0ayd",
|
|
11624
11757
|
"colorBorderButtonNormalDefault": "--color-border-button-normal-default-uzqi0v",
|
|
11625
11758
|
"colorBorderToggleButtonNormalPressed": "--color-border-toggle-button-normal-pressed-lylxt2",
|
|
@@ -11878,6 +12011,7 @@ export var preset = {
|
|
|
11878
12011
|
"borderRadiusTabsFocusRing": "--border-radius-tabs-focus-ring-1q0rjo",
|
|
11879
12012
|
"borderRadiusTiles": "--border-radius-tiles-60y8e6",
|
|
11880
12013
|
"borderRadiusToken": "--border-radius-token-923jqq",
|
|
12014
|
+
"borderRadiusChatBubble": "--border-radius-chat-bubble-ur269r",
|
|
11881
12015
|
"borderRadiusTutorialPanelItem": "--border-radius-tutorial-panel-item-b44p0a",
|
|
11882
12016
|
"borderTableStickyWidth": "--border-table-sticky-width-87kf12",
|
|
11883
12017
|
"borderLinkFocusRingOutline": "--border-link-focus-ring-outline-kkfop6",
|
package/internal/manifest.json
CHANGED
package/modal/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modal/index.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modal/index.tsx"],"names":[],"mappings":";AAaA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAK1C,OAAO,EAAE,UAAU,EAAE,CAAC;AA0CtB,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAE,IAAe,EAAE,GAAG,KAAK,EAAE,EAAE,UAAU,eA2BtE"}
|