@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.
Files changed (108) hide show
  1. package/dist/index.js +5967 -64
  2. package/dist/index.mjs +5967 -64
  3. package/dist/index.prod.js +4 -2
  4. package/dist/index.prod.mjs +4 -2
  5. package/es/_utils/markdown/constants.d.ts +27 -0
  6. package/es/_utils/markdown/constants.mjs +26 -0
  7. package/es/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  8. package/es/_utils/markdown/create-markdown-renderer.mjs +65 -0
  9. package/es/_utils/markdown/index.d.ts +2 -0
  10. package/es/_utils/markdown/index.mjs +1 -0
  11. package/es/_utils/markdown/interface.d.ts +14 -0
  12. package/es/_utils/markdown/interface.mjs +7 -0
  13. package/es/_utils/markdown/render-markdown.d.ts +3 -0
  14. package/es/_utils/markdown/render-markdown.mjs +31 -0
  15. package/es/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  16. package/es/_utils/markdown/rulers/clamp-heading.mjs +25 -0
  17. package/es/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  18. package/es/_utils/markdown/rulers/equals-divider.mjs +19 -0
  19. package/es/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  20. package/es/_utils/markdown/rulers/prune-empty-blocks.mjs +31 -0
  21. package/es/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  22. package/es/_utils/markdown/rulers/strikethrough.mjs +38 -0
  23. package/es/_utils/markdown/rulers/strip-html.d.ts +2 -0
  24. package/es/_utils/markdown/rulers/strip-html.mjs +7 -0
  25. package/es/chat/src/Chat.d.ts +515 -23
  26. package/es/chat/src/Chat.mjs +2 -0
  27. package/es/chat/src/ChatListItems.d.ts +172 -4
  28. package/es/chat/src/ChatListItems.mjs +3 -2
  29. package/es/chat/src/ChatMainArea.d.ts +200 -5
  30. package/es/chat/src/ChatMainArea.mjs +27 -13
  31. package/es/chat/src/ChatMessages.d.ts +198 -3
  32. package/es/chat/src/ChatMessages.mjs +20 -2
  33. package/es/chat/src/ChatParts/Sidebar.d.ts +28 -0
  34. package/es/chat/src/interface.d.ts +56 -0
  35. package/es/chat/src/interface.mjs +8 -0
  36. package/es/chat/styles/dark.d.ts +14 -0
  37. package/es/chat/styles/light.d.ts +19 -0
  38. package/es/chat/styles/light.mjs +5 -0
  39. package/es/components.d.ts +1396 -418
  40. package/es/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  41. package/es/data-table/src/TableParts/Header.mjs +1 -1
  42. package/es/data-table/src/use-sorter.d.ts +2 -5
  43. package/es/data-table/src/use-table-data.d.ts +1 -4
  44. package/es/layout/src/LayoutSider.d.ts +1 -1
  45. package/es/message-bubble/index.d.ts +1 -0
  46. package/es/message-bubble/src/MessageBubble.d.ts +78 -6
  47. package/es/message-bubble/src/MessageBubble.mjs +49 -7
  48. package/es/message-bubble/src/interface.d.ts +36 -0
  49. package/es/message-bubble/src/interface.mjs +8 -0
  50. package/es/message-bubble/src/styles/index.cssr.mjs +17 -1
  51. package/es/message-bubble/styles/dark.d.ts +9 -0
  52. package/es/message-bubble/styles/light.d.ts +18 -0
  53. package/es/message-bubble/styles/light.mjs +10 -1
  54. package/es/version.d.ts +1 -1
  55. package/es/version.mjs +1 -1
  56. package/lib/_utils/markdown/constants.d.ts +27 -0
  57. package/lib/_utils/markdown/constants.js +55 -0
  58. package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  59. package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
  60. package/lib/_utils/markdown/index.d.ts +2 -0
  61. package/lib/_utils/markdown/index.js +6 -0
  62. package/lib/_utils/markdown/interface.d.ts +14 -0
  63. package/lib/_utils/markdown/interface.js +10 -0
  64. package/lib/_utils/markdown/render-markdown.d.ts +3 -0
  65. package/lib/_utils/markdown/render-markdown.js +38 -0
  66. package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  67. package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
  68. package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  69. package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
  70. package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  71. package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
  72. package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  73. package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
  74. package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
  75. package/lib/_utils/markdown/rulers/strip-html.js +15 -0
  76. package/lib/chat/src/Chat.d.ts +515 -23
  77. package/lib/chat/src/Chat.js +2 -0
  78. package/lib/chat/src/ChatListItems.d.ts +172 -4
  79. package/lib/chat/src/ChatListItems.js +7 -2
  80. package/lib/chat/src/ChatMainArea.d.ts +200 -5
  81. package/lib/chat/src/ChatMainArea.js +26 -14
  82. package/lib/chat/src/ChatMessages.d.ts +198 -3
  83. package/lib/chat/src/ChatMessages.js +11 -4
  84. package/lib/chat/src/ChatParts/Sidebar.d.ts +28 -0
  85. package/lib/chat/src/interface.d.ts +56 -0
  86. package/lib/chat/src/interface.js +6 -0
  87. package/lib/chat/styles/dark.d.ts +14 -0
  88. package/lib/chat/styles/light.d.ts +19 -0
  89. package/lib/chat/styles/light.js +5 -0
  90. package/lib/components.d.ts +1014 -36
  91. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  92. package/lib/data-table/src/TableParts/Header.js +1 -1
  93. package/lib/data-table/src/use-sorter.d.ts +2 -5
  94. package/lib/data-table/src/use-table-data.d.ts +1 -4
  95. package/lib/layout/src/LayoutSider.d.ts +1 -1
  96. package/lib/message-bubble/index.d.ts +1 -0
  97. package/lib/message-bubble/src/MessageBubble.d.ts +78 -6
  98. package/lib/message-bubble/src/MessageBubble.js +39 -7
  99. package/lib/message-bubble/src/interface.d.ts +36 -0
  100. package/lib/message-bubble/src/interface.js +6 -0
  101. package/lib/message-bubble/src/styles/index.cssr.js +17 -1
  102. package/lib/message-bubble/styles/dark.d.ts +9 -0
  103. package/lib/message-bubble/styles/light.d.ts +18 -0
  104. package/lib/message-bubble/styles/light.js +10 -1
  105. package/lib/version.d.ts +1 -1
  106. package/lib/version.js +1 -1
  107. package/package.json +2 -1
  108. 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;
@@ -91,6 +91,11 @@ export function self(vars) {
91
91
  inputSuffixColor: brandPrimary400,
92
92
  unreadNotificationBackgroundColor: brandPrimary400,
93
93
  unreadNotificationTextColor: elementsSecondary,
94
+ markdownQuoteBorderColorOwn: textPrimary,
95
+ markdownQuoteBorderColorOther: textPrimary,
96
+ markdownQuoteTextColor: textSecondary,
97
+ markdownDividerColorOwn: textPrimary,
98
+ markdownDividerColorOther: textPrimary,
94
99
  typingIndicatorColor: textSecondary,
95
100
  dateSeparatorColor: textTertiary,
96
101
  dateSeparatorBackgroundColor: 'transparent',