@uzum-tech/ui 2.3.5 → 2.3.6
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 +5967 -64
- package/dist/index.mjs +5967 -64
- package/dist/index.prod.js +4 -2
- package/dist/index.prod.mjs +4 -2
- package/es/_utils/markdown/constants.d.ts +27 -0
- package/es/_utils/markdown/constants.mjs +26 -0
- package/es/_utils/markdown/create-markdown-renderer.d.ts +3 -0
- package/es/_utils/markdown/create-markdown-renderer.mjs +65 -0
- package/es/_utils/markdown/index.d.ts +2 -0
- package/es/_utils/markdown/index.mjs +1 -0
- package/es/_utils/markdown/interface.d.ts +14 -0
- package/es/_utils/markdown/interface.mjs +7 -0
- package/es/_utils/markdown/render-markdown.d.ts +3 -0
- package/es/_utils/markdown/render-markdown.mjs +31 -0
- package/es/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
- package/es/_utils/markdown/rulers/clamp-heading.mjs +25 -0
- package/es/_utils/markdown/rulers/equals-divider.d.ts +2 -0
- package/es/_utils/markdown/rulers/equals-divider.mjs +19 -0
- package/es/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
- package/es/_utils/markdown/rulers/prune-empty-blocks.mjs +31 -0
- package/es/_utils/markdown/rulers/strikethrough.d.ts +3 -0
- package/es/_utils/markdown/rulers/strikethrough.mjs +38 -0
- package/es/_utils/markdown/rulers/strip-html.d.ts +2 -0
- package/es/_utils/markdown/rulers/strip-html.mjs +7 -0
- package/es/chat/src/Chat.d.ts +515 -23
- package/es/chat/src/Chat.mjs +2 -0
- package/es/chat/src/ChatListItems.d.ts +172 -4
- package/es/chat/src/ChatListItems.mjs +3 -2
- package/es/chat/src/ChatMainArea.d.ts +200 -5
- package/es/chat/src/ChatMainArea.mjs +27 -13
- package/es/chat/src/ChatMessages.d.ts +198 -3
- package/es/chat/src/ChatMessages.mjs +20 -2
- package/es/chat/src/ChatParts/Sidebar.d.ts +28 -0
- package/es/chat/src/interface.d.ts +56 -0
- package/es/chat/src/interface.mjs +8 -0
- package/es/chat/styles/dark.d.ts +14 -0
- package/es/chat/styles/light.d.ts +19 -0
- package/es/chat/styles/light.mjs +5 -0
- package/es/components.d.ts +1396 -418
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
- package/es/data-table/src/TableParts/Header.mjs +1 -1
- package/es/data-table/src/use-sorter.d.ts +2 -5
- package/es/data-table/src/use-table-data.d.ts +1 -4
- package/es/layout/src/LayoutSider.d.ts +1 -1
- package/es/message-bubble/index.d.ts +1 -0
- package/es/message-bubble/src/MessageBubble.d.ts +78 -6
- package/es/message-bubble/src/MessageBubble.mjs +49 -7
- package/es/message-bubble/src/interface.d.ts +36 -0
- package/es/message-bubble/src/interface.mjs +8 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +17 -1
- package/es/message-bubble/styles/dark.d.ts +9 -0
- package/es/message-bubble/styles/light.d.ts +18 -0
- package/es/message-bubble/styles/light.mjs +10 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_utils/markdown/constants.d.ts +27 -0
- package/lib/_utils/markdown/constants.js +55 -0
- package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
- package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
- package/lib/_utils/markdown/index.d.ts +2 -0
- package/lib/_utils/markdown/index.js +6 -0
- package/lib/_utils/markdown/interface.d.ts +14 -0
- package/lib/_utils/markdown/interface.js +10 -0
- package/lib/_utils/markdown/render-markdown.d.ts +3 -0
- package/lib/_utils/markdown/render-markdown.js +38 -0
- package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
- package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
- package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
- package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
- package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
- package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
- package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
- package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
- package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
- package/lib/_utils/markdown/rulers/strip-html.js +15 -0
- package/lib/chat/src/Chat.d.ts +515 -23
- package/lib/chat/src/Chat.js +2 -0
- package/lib/chat/src/ChatListItems.d.ts +172 -4
- package/lib/chat/src/ChatListItems.js +7 -2
- package/lib/chat/src/ChatMainArea.d.ts +200 -5
- package/lib/chat/src/ChatMainArea.js +26 -14
- package/lib/chat/src/ChatMessages.d.ts +198 -3
- package/lib/chat/src/ChatMessages.js +11 -4
- package/lib/chat/src/ChatParts/Sidebar.d.ts +28 -0
- package/lib/chat/src/interface.d.ts +56 -0
- package/lib/chat/src/interface.js +6 -0
- package/lib/chat/styles/dark.d.ts +14 -0
- package/lib/chat/styles/light.d.ts +19 -0
- package/lib/chat/styles/light.js +5 -0
- package/lib/components.d.ts +1014 -36
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
- package/lib/data-table/src/TableParts/Header.js +1 -1
- package/lib/data-table/src/use-sorter.d.ts +2 -5
- package/lib/data-table/src/use-table-data.d.ts +1 -4
- package/lib/layout/src/LayoutSider.d.ts +1 -1
- package/lib/message-bubble/index.d.ts +1 -0
- package/lib/message-bubble/src/MessageBubble.d.ts +78 -6
- package/lib/message-bubble/src/MessageBubble.js +39 -7
- package/lib/message-bubble/src/interface.d.ts +36 -0
- package/lib/message-bubble/src/interface.js +6 -0
- package/lib/message-bubble/src/styles/index.cssr.js +17 -1
- package/lib/message-bubble/styles/dark.d.ts +9 -0
- package/lib/message-bubble/styles/light.d.ts +18 -0
- package/lib/message-bubble/styles/light.js +10 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -1
- package/web-types.json +29 -1
|
@@ -29,6 +29,11 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
29
29
|
inputSuffixColor: string;
|
|
30
30
|
unreadNotificationBackgroundColor: string;
|
|
31
31
|
unreadNotificationTextColor: string;
|
|
32
|
+
markdownQuoteBorderColorOwn: string;
|
|
33
|
+
markdownQuoteBorderColorOther: string;
|
|
34
|
+
markdownQuoteTextColor: string;
|
|
35
|
+
markdownDividerColorOwn: string;
|
|
36
|
+
markdownDividerColorOther: string;
|
|
32
37
|
typingIndicatorColor: string;
|
|
33
38
|
dateSeparatorColor: string;
|
|
34
39
|
dateSeparatorBackgroundColor: string;
|
|
@@ -802,6 +807,15 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
802
807
|
serviceMessageTextColor: string;
|
|
803
808
|
serviceMessageBackgroundColor: string;
|
|
804
809
|
messageTitleColor: string;
|
|
810
|
+
markdownQuoteBorderColorOwn: string;
|
|
811
|
+
markdownQuoteBorderColorOther: string;
|
|
812
|
+
markdownQuoteTextColor: string;
|
|
813
|
+
markdownDividerColorOwn: string;
|
|
814
|
+
markdownDividerColorOther: string;
|
|
815
|
+
markdownH1FontSize: string;
|
|
816
|
+
markdownH2FontSize: string;
|
|
817
|
+
markdownH3FontSize: string;
|
|
818
|
+
markdownTextFontSize: string;
|
|
805
819
|
}, {
|
|
806
820
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
807
821
|
color: string;
|
|
@@ -30,6 +30,11 @@ export declare function self(vars: ThemeCommonVars): {
|
|
|
30
30
|
inputSuffixColor: string;
|
|
31
31
|
unreadNotificationBackgroundColor: string;
|
|
32
32
|
unreadNotificationTextColor: string;
|
|
33
|
+
markdownQuoteBorderColorOwn: string;
|
|
34
|
+
markdownQuoteBorderColorOther: string;
|
|
35
|
+
markdownQuoteTextColor: string;
|
|
36
|
+
markdownDividerColorOwn: string;
|
|
37
|
+
markdownDividerColorOther: string;
|
|
33
38
|
typingIndicatorColor: string;
|
|
34
39
|
dateSeparatorColor: string;
|
|
35
40
|
dateSeparatorBackgroundColor: string;
|
|
@@ -67,6 +72,11 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
67
72
|
inputSuffixColor: string;
|
|
68
73
|
unreadNotificationBackgroundColor: string;
|
|
69
74
|
unreadNotificationTextColor: string;
|
|
75
|
+
markdownQuoteBorderColorOwn: string;
|
|
76
|
+
markdownQuoteBorderColorOther: string;
|
|
77
|
+
markdownQuoteTextColor: string;
|
|
78
|
+
markdownDividerColorOwn: string;
|
|
79
|
+
markdownDividerColorOther: string;
|
|
70
80
|
typingIndicatorColor: string;
|
|
71
81
|
dateSeparatorColor: string;
|
|
72
82
|
dateSeparatorBackgroundColor: string;
|
|
@@ -840,6 +850,15 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
840
850
|
serviceMessageTextColor: string;
|
|
841
851
|
serviceMessageBackgroundColor: string;
|
|
842
852
|
messageTitleColor: string;
|
|
853
|
+
markdownQuoteBorderColorOwn: string;
|
|
854
|
+
markdownQuoteBorderColorOther: string;
|
|
855
|
+
markdownQuoteTextColor: string;
|
|
856
|
+
markdownDividerColorOwn: string;
|
|
857
|
+
markdownDividerColorOther: string;
|
|
858
|
+
markdownH1FontSize: string;
|
|
859
|
+
markdownH2FontSize: string;
|
|
860
|
+
markdownH3FontSize: string;
|
|
861
|
+
markdownTextFontSize: string;
|
|
843
862
|
}, {
|
|
844
863
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
845
864
|
color: string;
|
package/lib/chat/styles/light.js
CHANGED
|
@@ -58,6 +58,11 @@ function self(vars) {
|
|
|
58
58
|
inputSuffixColor: brandPrimary400,
|
|
59
59
|
unreadNotificationBackgroundColor: brandPrimary400,
|
|
60
60
|
unreadNotificationTextColor: elementsSecondary,
|
|
61
|
+
markdownQuoteBorderColorOwn: textPrimary,
|
|
62
|
+
markdownQuoteBorderColorOther: textPrimary,
|
|
63
|
+
markdownQuoteTextColor: textSecondary,
|
|
64
|
+
markdownDividerColorOwn: textPrimary,
|
|
65
|
+
markdownDividerColorOther: textPrimary,
|
|
61
66
|
typingIndicatorColor: textSecondary,
|
|
62
67
|
dateSeparatorColor: textTertiary,
|
|
63
68
|
dateSeparatorBackgroundColor: 'transparent',
|