@uzum-tech/ui 2.3.6 → 2.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +34 -5
- package/dist/index.mjs +34 -5
- package/dist/index.prod.js +3 -3
- package/dist/index.prod.mjs +3 -3
- package/es/chat/src/Chat.d.ts +124 -0
- package/es/chat/src/ChatListItems.d.ts +48 -0
- package/es/chat/src/ChatMainArea.d.ts +48 -0
- package/es/chat/src/ChatMessages.d.ts +48 -0
- package/es/chat/src/ChatMessages.mjs +2 -0
- package/es/chat/src/ChatParts/Sidebar.d.ts +8 -0
- package/es/chat/src/interface.d.ts +12 -0
- package/es/chat/styles/dark.d.ts +4 -0
- package/es/chat/styles/light.d.ts +6 -0
- package/es/chat/styles/light.mjs +5 -2
- package/es/components.d.ts +244 -0
- package/es/message-bubble/src/MessageBubble.d.ts +12 -0
- package/es/message-bubble/src/MessageBubble.mjs +4 -0
- package/es/message-bubble/src/interface.d.ts +6 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +19 -1
- package/es/message-bubble/styles/dark.d.ts +2 -0
- package/es/message-bubble/styles/light.d.ts +4 -0
- package/es/message-bubble/styles/light.mjs +5 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +124 -0
- package/lib/chat/src/ChatListItems.d.ts +48 -0
- package/lib/chat/src/ChatMainArea.d.ts +48 -0
- package/lib/chat/src/ChatMessages.d.ts +48 -0
- package/lib/chat/src/ChatMessages.js +1 -1
- package/lib/chat/src/ChatParts/Sidebar.d.ts +8 -0
- package/lib/chat/src/interface.d.ts +12 -0
- package/lib/chat/styles/dark.d.ts +4 -0
- package/lib/chat/styles/light.d.ts +6 -0
- package/lib/chat/styles/light.js +4 -2
- package/lib/components.d.ts +244 -0
- package/lib/message-bubble/src/MessageBubble.d.ts +12 -0
- package/lib/message-bubble/src/MessageBubble.js +3 -1
- package/lib/message-bubble/src/interface.d.ts +6 -0
- package/lib/message-bubble/src/styles/index.cssr.js +19 -1
- package/lib/message-bubble/styles/dark.d.ts +2 -0
- package/lib/message-bubble/styles/light.d.ts +4 -0
- package/lib/message-bubble/styles/light.js +4 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
|
@@ -653,6 +653,8 @@ export declare const chatProps: {
|
|
|
653
653
|
markdownQuoteBorderColorOwn: string;
|
|
654
654
|
markdownQuoteBorderColorOther: string;
|
|
655
655
|
markdownQuoteTextColor: string;
|
|
656
|
+
markdownQuoteBackgroundColor: string;
|
|
657
|
+
markdownQuoteMarkerColor: string;
|
|
656
658
|
markdownDividerColorOwn: string;
|
|
657
659
|
markdownDividerColorOther: string;
|
|
658
660
|
typingIndicatorColor: string;
|
|
@@ -1431,6 +1433,8 @@ export declare const chatProps: {
|
|
|
1431
1433
|
markdownQuoteBorderColorOwn: string;
|
|
1432
1434
|
markdownQuoteBorderColorOther: string;
|
|
1433
1435
|
markdownQuoteTextColor: string;
|
|
1436
|
+
markdownQuoteBackgroundColor: string;
|
|
1437
|
+
markdownQuoteMarkerColor: string;
|
|
1434
1438
|
markdownDividerColorOwn: string;
|
|
1435
1439
|
markdownDividerColorOther: string;
|
|
1436
1440
|
markdownH1FontSize: string;
|
|
@@ -1522,6 +1526,8 @@ export declare const chatProps: {
|
|
|
1522
1526
|
markdownQuoteBorderColorOwn: string;
|
|
1523
1527
|
markdownQuoteBorderColorOther: string;
|
|
1524
1528
|
markdownQuoteTextColor: string;
|
|
1529
|
+
markdownQuoteBackgroundColor: string;
|
|
1530
|
+
markdownQuoteMarkerColor: string;
|
|
1525
1531
|
markdownDividerColorOwn: string;
|
|
1526
1532
|
markdownDividerColorOther: string;
|
|
1527
1533
|
typingIndicatorColor: string;
|
|
@@ -2300,6 +2306,8 @@ export declare const chatProps: {
|
|
|
2300
2306
|
markdownQuoteBorderColorOwn: string;
|
|
2301
2307
|
markdownQuoteBorderColorOther: string;
|
|
2302
2308
|
markdownQuoteTextColor: string;
|
|
2309
|
+
markdownQuoteBackgroundColor: string;
|
|
2310
|
+
markdownQuoteMarkerColor: string;
|
|
2303
2311
|
markdownDividerColorOwn: string;
|
|
2304
2312
|
markdownDividerColorOther: string;
|
|
2305
2313
|
markdownH1FontSize: string;
|
|
@@ -2391,6 +2399,8 @@ export declare const chatProps: {
|
|
|
2391
2399
|
markdownQuoteBorderColorOwn: string;
|
|
2392
2400
|
markdownQuoteBorderColorOther: string;
|
|
2393
2401
|
markdownQuoteTextColor: string;
|
|
2402
|
+
markdownQuoteBackgroundColor: string;
|
|
2403
|
+
markdownQuoteMarkerColor: string;
|
|
2394
2404
|
markdownDividerColorOwn: string;
|
|
2395
2405
|
markdownDividerColorOther: string;
|
|
2396
2406
|
typingIndicatorColor: string;
|
|
@@ -3169,6 +3179,8 @@ export declare const chatProps: {
|
|
|
3169
3179
|
markdownQuoteBorderColorOwn: string;
|
|
3170
3180
|
markdownQuoteBorderColorOther: string;
|
|
3171
3181
|
markdownQuoteTextColor: string;
|
|
3182
|
+
markdownQuoteBackgroundColor: string;
|
|
3183
|
+
markdownQuoteMarkerColor: string;
|
|
3172
3184
|
markdownDividerColorOwn: string;
|
|
3173
3185
|
markdownDividerColorOther: string;
|
|
3174
3186
|
markdownH1FontSize: string;
|
package/es/chat/styles/dark.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
32
32
|
markdownQuoteBorderColorOwn: string;
|
|
33
33
|
markdownQuoteBorderColorOther: string;
|
|
34
34
|
markdownQuoteTextColor: string;
|
|
35
|
+
markdownQuoteBackgroundColor: string;
|
|
36
|
+
markdownQuoteMarkerColor: string;
|
|
35
37
|
markdownDividerColorOwn: string;
|
|
36
38
|
markdownDividerColorOther: string;
|
|
37
39
|
typingIndicatorColor: string;
|
|
@@ -810,6 +812,8 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
810
812
|
markdownQuoteBorderColorOwn: string;
|
|
811
813
|
markdownQuoteBorderColorOther: string;
|
|
812
814
|
markdownQuoteTextColor: string;
|
|
815
|
+
markdownQuoteBackgroundColor: string;
|
|
816
|
+
markdownQuoteMarkerColor: string;
|
|
813
817
|
markdownDividerColorOwn: string;
|
|
814
818
|
markdownDividerColorOther: string;
|
|
815
819
|
markdownH1FontSize: string;
|
|
@@ -33,6 +33,8 @@ export declare function self(vars: ThemeCommonVars): {
|
|
|
33
33
|
markdownQuoteBorderColorOwn: string;
|
|
34
34
|
markdownQuoteBorderColorOther: string;
|
|
35
35
|
markdownQuoteTextColor: string;
|
|
36
|
+
markdownQuoteBackgroundColor: string;
|
|
37
|
+
markdownQuoteMarkerColor: string;
|
|
36
38
|
markdownDividerColorOwn: string;
|
|
37
39
|
markdownDividerColorOther: string;
|
|
38
40
|
typingIndicatorColor: string;
|
|
@@ -75,6 +77,8 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
75
77
|
markdownQuoteBorderColorOwn: string;
|
|
76
78
|
markdownQuoteBorderColorOther: string;
|
|
77
79
|
markdownQuoteTextColor: string;
|
|
80
|
+
markdownQuoteBackgroundColor: string;
|
|
81
|
+
markdownQuoteMarkerColor: string;
|
|
78
82
|
markdownDividerColorOwn: string;
|
|
79
83
|
markdownDividerColorOther: string;
|
|
80
84
|
typingIndicatorColor: string;
|
|
@@ -853,6 +857,8 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
853
857
|
markdownQuoteBorderColorOwn: string;
|
|
854
858
|
markdownQuoteBorderColorOther: string;
|
|
855
859
|
markdownQuoteTextColor: string;
|
|
860
|
+
markdownQuoteBackgroundColor: string;
|
|
861
|
+
markdownQuoteMarkerColor: string;
|
|
856
862
|
markdownDividerColorOwn: string;
|
|
857
863
|
markdownDividerColorOther: string;
|
|
858
864
|
markdownH1FontSize: string;
|
package/es/chat/styles/light.mjs
CHANGED
|
@@ -52,8 +52,9 @@ export function self(vars) {
|
|
|
52
52
|
textPrimary,
|
|
53
53
|
textSecondary,
|
|
54
54
|
surfacePrimary,
|
|
55
|
-
|
|
55
|
+
brandPrimary100,
|
|
56
56
|
brandPrimary400,
|
|
57
|
+
brandPrimary500,
|
|
57
58
|
transparencySecondary,
|
|
58
59
|
elementsSecondary,
|
|
59
60
|
elementsDarkQuinary,
|
|
@@ -93,7 +94,9 @@ export function self(vars) {
|
|
|
93
94
|
unreadNotificationTextColor: elementsSecondary,
|
|
94
95
|
markdownQuoteBorderColorOwn: textPrimary,
|
|
95
96
|
markdownQuoteBorderColorOther: textPrimary,
|
|
96
|
-
markdownQuoteTextColor:
|
|
97
|
+
markdownQuoteTextColor: textPrimary,
|
|
98
|
+
markdownQuoteBackgroundColor: brandPrimary100,
|
|
99
|
+
markdownQuoteMarkerColor: brandPrimary500,
|
|
97
100
|
markdownDividerColorOwn: textPrimary,
|
|
98
101
|
markdownDividerColorOther: textPrimary,
|
|
99
102
|
typingIndicatorColor: textSecondary,
|