@uzum-tech/ui 1.11.2 → 1.12.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.
Files changed (279) hide show
  1. package/dist/index.js +10829 -6652
  2. package/dist/index.prod.js +4 -4
  3. package/es/_internal/icons/BurgerMenuIcon.d.ts +2 -0
  4. package/es/_internal/icons/BurgerMenuIcon.js +4 -0
  5. package/es/_internal/icons/Logout.d.ts +2 -0
  6. package/es/_internal/icons/Logout.js +4 -0
  7. package/es/_internal/icons/OzbekFlag.d.ts +2 -0
  8. package/es/_internal/icons/OzbekFlag.js +15 -0
  9. package/es/_internal/icons/RussiaFlag.d.ts +2 -0
  10. package/es/_internal/icons/RussiaFlag.js +11 -0
  11. package/es/_internal/icons/SendFilled.d.ts +2 -0
  12. package/es/_internal/icons/SendFilled.js +9 -0
  13. package/es/_internal/icons/index.d.ts +5 -0
  14. package/es/_internal/icons/index.js +5 -0
  15. package/es/_styles/common/dark.js +1 -1
  16. package/es/_styles/common/light.d.ts +1 -0
  17. package/es/_styles/common/light.js +1 -1
  18. package/es/chat/src/Chat.d.ts +464 -83
  19. package/es/chat/src/Chat.js +17 -2
  20. package/es/chat/src/ChatListItems.d.ts +497 -94
  21. package/es/chat/src/ChatListItems.js +1 -1
  22. package/es/chat/src/ChatMessages.d.ts +501 -94
  23. package/es/chat/src/ChatMessages.js +115 -22
  24. package/es/chat/src/ChatParts/MainArea.d.ts +7 -3
  25. package/es/chat/src/ChatParts/MainArea.js +110 -14
  26. package/es/chat/src/ChatParts/Sidebar.d.ts +64 -11
  27. package/es/chat/src/interface.d.ts +18 -0
  28. package/es/chat/src/interface.js +6 -0
  29. package/es/chat/src/styles/index.cssr.js +22 -1
  30. package/es/chat/styles/dark.d.ts +41 -8
  31. package/es/chat/styles/dark.js +6 -2
  32. package/es/chat/styles/light.d.ts +42 -8
  33. package/es/chat/styles/light.js +7 -2
  34. package/es/components.d.ts +3 -0
  35. package/es/components.js +3 -0
  36. package/es/config-provider/src/internal-interface.d.ts +17 -0
  37. package/es/dialog/src/DialogProvider.d.ts +2 -0
  38. package/es/form/src/FormItemCol.d.ts +2 -2
  39. package/es/form/src/FormItemGridItem.d.ts +2 -2
  40. package/es/form/src/FormItemRow.d.ts +1 -1
  41. package/es/grid/src/Grid.d.ts +1 -1
  42. package/es/grid/src/GridItem.d.ts +2 -2
  43. package/es/header/demos/mock.d.ts +2 -0
  44. package/es/header/demos/mock.js +235 -0
  45. package/es/header/index.d.ts +12 -0
  46. package/es/header/index.js +10 -0
  47. package/es/header/src/Header.d.ts +604 -0
  48. package/es/header/src/Header.js +320 -0
  49. package/es/header/src/HeaderActions.d.ts +120 -0
  50. package/es/header/src/HeaderActions.js +166 -0
  51. package/es/header/src/HeaderDesktopLayout.d.ts +25 -0
  52. package/es/header/src/HeaderDesktopLayout.js +24 -0
  53. package/es/header/src/HeaderMobileLayout.d.ts +25 -0
  54. package/es/header/src/HeaderMobileLayout.js +21 -0
  55. package/es/header/src/HeaderNavigation.d.ts +128 -0
  56. package/es/header/src/HeaderNavigation.js +172 -0
  57. package/es/header/src/HeaderSearchDesktop.d.ts +79 -0
  58. package/es/header/src/HeaderSearchDesktop.js +77 -0
  59. package/es/header/src/HeaderSearchMobile.d.ts +73 -0
  60. package/es/header/src/HeaderSearchMobile.js +126 -0
  61. package/es/header/src/HeaderSearchResults.d.ts +81 -0
  62. package/es/header/src/HeaderSearchResults.js +74 -0
  63. package/es/header/src/constants.d.ts +1 -0
  64. package/es/header/src/constants.js +1 -0
  65. package/es/header/src/interface.d.ts +58 -0
  66. package/es/header/src/interface.js +1 -0
  67. package/es/header/src/mobile/HeaderMobile.d.ts +218 -0
  68. package/es/header/src/mobile/HeaderMobile.js +241 -0
  69. package/es/header/src/styles/index.cssr.d.ts +6 -0
  70. package/es/header/src/styles/index.cssr.js +519 -0
  71. package/es/header/src/utils.d.ts +12 -0
  72. package/es/header/src/utils.js +47 -0
  73. package/es/header/styles/dark.d.ts +36 -0
  74. package/es/header/styles/dark.js +9 -0
  75. package/es/header/styles/index.d.ts +3 -0
  76. package/es/header/styles/index.js +2 -0
  77. package/es/header/styles/light.d.ts +72 -0
  78. package/es/header/styles/light.js +45 -0
  79. package/es/icon/src/Icon.d.ts +3 -0
  80. package/es/icon/src/Icon.js +3 -2
  81. package/es/icon-bar/index.d.ts +4 -0
  82. package/es/icon-bar/index.js +2 -0
  83. package/es/icon-bar/src/IconBar.d.ts +175 -0
  84. package/es/icon-bar/src/IconBar.js +57 -0
  85. package/es/icon-bar/src/IconBarItem.d.ts +163 -0
  86. package/es/icon-bar/src/IconBarItem.js +50 -0
  87. package/es/icon-bar/src/styles/index.cssr.d.ts +2 -0
  88. package/es/icon-bar/src/styles/index.cssr.js +62 -0
  89. package/es/icon-bar/styles/dark.d.ts +3 -0
  90. package/es/icon-bar/styles/dark.js +8 -0
  91. package/es/icon-bar/styles/index.d.ts +3 -0
  92. package/es/icon-bar/styles/index.js +2 -0
  93. package/es/icon-bar/styles/light.d.ts +19 -0
  94. package/es/icon-bar/styles/light.js +23 -0
  95. package/es/locales/common/arDZ.js +11 -1
  96. package/es/locales/common/deDE.js +11 -1
  97. package/es/locales/common/enGB.js +11 -1
  98. package/es/locales/common/enUS.d.ts +10 -0
  99. package/es/locales/common/enUS.js +11 -1
  100. package/es/locales/common/eo.js +11 -1
  101. package/es/locales/common/esAR.js +11 -1
  102. package/es/locales/common/faIR.js +11 -1
  103. package/es/locales/common/frFR.js +11 -1
  104. package/es/locales/common/idID.js +11 -1
  105. package/es/locales/common/itIT.js +11 -1
  106. package/es/locales/common/jaJP.js +11 -1
  107. package/es/locales/common/koKR.js +11 -1
  108. package/es/locales/common/nbNO.js +11 -1
  109. package/es/locales/common/nlNL.js +11 -1
  110. package/es/locales/common/plPL.js +11 -1
  111. package/es/locales/common/ptBR.js +11 -1
  112. package/es/locales/common/ruRU.js +11 -1
  113. package/es/locales/common/skSK.js +11 -1
  114. package/es/locales/common/svSE.js +11 -1
  115. package/es/locales/common/thTH.js +11 -1
  116. package/es/locales/common/trTR.js +11 -1
  117. package/es/locales/common/ukUA.js +11 -1
  118. package/es/locales/common/viVN.js +11 -1
  119. package/es/locales/common/zhCN.js +11 -1
  120. package/es/locales/common/zhTW.js +11 -1
  121. package/es/qr-code/index.d.ts +2 -0
  122. package/es/qr-code/index.js +1 -0
  123. package/es/qr-code/src/QrCode.d.ts +171 -0
  124. package/es/qr-code/src/QrCode.js +229 -0
  125. package/es/qr-code/src/qrcodegen.d.ts +95 -0
  126. package/es/qr-code/src/qrcodegen.js +949 -0
  127. package/es/qr-code/src/styles/index.cssr.d.ts +2 -0
  128. package/es/qr-code/src/styles/index.cssr.js +8 -0
  129. package/es/qr-code/styles/dark.d.ts +3 -0
  130. package/es/qr-code/styles/dark.js +11 -0
  131. package/es/qr-code/styles/index.d.ts +3 -0
  132. package/es/qr-code/styles/index.js +2 -0
  133. package/es/qr-code/styles/light.d.ts +9 -0
  134. package/es/qr-code/styles/light.js +12 -0
  135. package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
  136. package/es/themes/dark.js +7 -1
  137. package/es/themes/light.js +7 -1
  138. package/es/version.d.ts +1 -1
  139. package/es/version.js +1 -1
  140. package/lib/_internal/icons/BurgerMenuIcon.d.ts +2 -0
  141. package/lib/_internal/icons/BurgerMenuIcon.js +6 -0
  142. package/lib/_internal/icons/Logout.d.ts +2 -0
  143. package/lib/_internal/icons/Logout.js +6 -0
  144. package/lib/_internal/icons/OzbekFlag.d.ts +2 -0
  145. package/lib/_internal/icons/OzbekFlag.js +17 -0
  146. package/lib/_internal/icons/RussiaFlag.d.ts +2 -0
  147. package/lib/_internal/icons/RussiaFlag.js +13 -0
  148. package/lib/_internal/icons/SendFilled.d.ts +2 -0
  149. package/lib/_internal/icons/SendFilled.js +11 -0
  150. package/lib/_internal/icons/index.d.ts +5 -0
  151. package/lib/_internal/icons/index.js +11 -1
  152. package/lib/_styles/common/dark.js +1 -1
  153. package/lib/_styles/common/light.d.ts +1 -0
  154. package/lib/_styles/common/light.js +1 -1
  155. package/lib/chat/src/Chat.d.ts +464 -83
  156. package/lib/chat/src/Chat.js +17 -2
  157. package/lib/chat/src/ChatListItems.d.ts +497 -94
  158. package/lib/chat/src/ChatListItems.js +1 -1
  159. package/lib/chat/src/ChatMessages.d.ts +501 -94
  160. package/lib/chat/src/ChatMessages.js +113 -20
  161. package/lib/chat/src/ChatParts/MainArea.d.ts +7 -3
  162. package/lib/chat/src/ChatParts/MainArea.js +108 -12
  163. package/lib/chat/src/ChatParts/Sidebar.d.ts +64 -11
  164. package/lib/chat/src/interface.d.ts +18 -0
  165. package/lib/chat/src/interface.js +7 -1
  166. package/lib/chat/src/styles/index.cssr.js +22 -1
  167. package/lib/chat/styles/dark.d.ts +41 -8
  168. package/lib/chat/styles/dark.js +6 -2
  169. package/lib/chat/styles/light.d.ts +42 -8
  170. package/lib/chat/styles/light.js +7 -2
  171. package/lib/components.d.ts +3 -0
  172. package/lib/components.js +3 -0
  173. package/lib/config-provider/src/internal-interface.d.ts +17 -0
  174. package/lib/dialog/src/DialogProvider.d.ts +2 -0
  175. package/lib/form/src/FormItemCol.d.ts +2 -2
  176. package/lib/form/src/FormItemGridItem.d.ts +2 -2
  177. package/lib/form/src/FormItemRow.d.ts +1 -1
  178. package/lib/grid/src/Grid.d.ts +1 -1
  179. package/lib/grid/src/GridItem.d.ts +2 -2
  180. package/lib/header/demos/mock.d.ts +2 -0
  181. package/lib/header/demos/mock.js +238 -0
  182. package/lib/header/index.d.ts +12 -0
  183. package/lib/header/index.js +48 -0
  184. package/lib/header/src/Header.d.ts +604 -0
  185. package/lib/header/src/Header.js +349 -0
  186. package/lib/header/src/HeaderActions.d.ts +120 -0
  187. package/lib/header/src/HeaderActions.js +172 -0
  188. package/lib/header/src/HeaderDesktopLayout.d.ts +25 -0
  189. package/lib/header/src/HeaderDesktopLayout.js +27 -0
  190. package/lib/header/src/HeaderMobileLayout.d.ts +25 -0
  191. package/lib/header/src/HeaderMobileLayout.js +24 -0
  192. package/lib/header/src/HeaderNavigation.d.ts +128 -0
  193. package/lib/header/src/HeaderNavigation.js +175 -0
  194. package/lib/header/src/HeaderSearchDesktop.d.ts +79 -0
  195. package/lib/header/src/HeaderSearchDesktop.js +83 -0
  196. package/lib/header/src/HeaderSearchMobile.d.ts +73 -0
  197. package/lib/header/src/HeaderSearchMobile.js +132 -0
  198. package/lib/header/src/HeaderSearchResults.d.ts +81 -0
  199. package/lib/header/src/HeaderSearchResults.js +77 -0
  200. package/lib/header/src/constants.d.ts +1 -0
  201. package/lib/header/src/constants.js +4 -0
  202. package/lib/header/src/interface.d.ts +58 -0
  203. package/lib/header/src/interface.js +2 -0
  204. package/lib/header/src/mobile/HeaderMobile.d.ts +218 -0
  205. package/lib/header/src/mobile/HeaderMobile.js +244 -0
  206. package/lib/header/src/styles/index.cssr.d.ts +6 -0
  207. package/lib/header/src/styles/index.cssr.js +525 -0
  208. package/lib/header/src/utils.d.ts +12 -0
  209. package/lib/header/src/utils.js +58 -0
  210. package/lib/header/styles/dark.d.ts +36 -0
  211. package/lib/header/styles/dark.js +11 -0
  212. package/lib/header/styles/index.d.ts +3 -0
  213. package/lib/header/styles/index.js +10 -0
  214. package/lib/header/styles/light.d.ts +72 -0
  215. package/lib/header/styles/light.js +49 -0
  216. package/lib/icon/src/Icon.d.ts +3 -0
  217. package/lib/icon/src/Icon.js +3 -2
  218. package/lib/icon-bar/index.d.ts +4 -0
  219. package/lib/icon-bar/index.js +12 -0
  220. package/lib/icon-bar/src/IconBar.d.ts +175 -0
  221. package/lib/icon-bar/src/IconBar.js +63 -0
  222. package/lib/icon-bar/src/IconBarItem.d.ts +163 -0
  223. package/lib/icon-bar/src/IconBarItem.js +56 -0
  224. package/lib/icon-bar/src/styles/index.cssr.d.ts +2 -0
  225. package/lib/icon-bar/src/styles/index.cssr.js +67 -0
  226. package/lib/icon-bar/styles/dark.d.ts +3 -0
  227. package/lib/icon-bar/styles/dark.js +10 -0
  228. package/lib/icon-bar/styles/index.d.ts +3 -0
  229. package/lib/icon-bar/styles/index.js +10 -0
  230. package/lib/icon-bar/styles/light.d.ts +19 -0
  231. package/lib/icon-bar/styles/light.js +27 -0
  232. package/lib/locales/common/arDZ.js +11 -1
  233. package/lib/locales/common/deDE.js +11 -1
  234. package/lib/locales/common/enGB.js +11 -1
  235. package/lib/locales/common/enUS.d.ts +10 -0
  236. package/lib/locales/common/enUS.js +11 -1
  237. package/lib/locales/common/eo.js +11 -1
  238. package/lib/locales/common/esAR.js +11 -1
  239. package/lib/locales/common/faIR.js +11 -1
  240. package/lib/locales/common/frFR.js +11 -1
  241. package/lib/locales/common/idID.js +11 -1
  242. package/lib/locales/common/itIT.js +11 -1
  243. package/lib/locales/common/jaJP.js +11 -1
  244. package/lib/locales/common/koKR.js +11 -1
  245. package/lib/locales/common/nbNO.js +11 -1
  246. package/lib/locales/common/nlNL.js +11 -1
  247. package/lib/locales/common/plPL.js +11 -1
  248. package/lib/locales/common/ptBR.js +11 -1
  249. package/lib/locales/common/ruRU.js +11 -1
  250. package/lib/locales/common/skSK.js +11 -1
  251. package/lib/locales/common/svSE.js +11 -1
  252. package/lib/locales/common/thTH.js +11 -1
  253. package/lib/locales/common/trTR.js +11 -1
  254. package/lib/locales/common/ukUA.js +11 -1
  255. package/lib/locales/common/viVN.js +11 -1
  256. package/lib/locales/common/zhCN.js +11 -1
  257. package/lib/locales/common/zhTW.js +11 -1
  258. package/lib/qr-code/index.d.ts +2 -0
  259. package/lib/qr-code/index.js +9 -0
  260. package/lib/qr-code/src/QrCode.d.ts +171 -0
  261. package/lib/qr-code/src/QrCode.js +235 -0
  262. package/lib/qr-code/src/qrcodegen.d.ts +95 -0
  263. package/lib/qr-code/src/qrcodegen.js +950 -0
  264. package/lib/qr-code/src/styles/index.cssr.d.ts +2 -0
  265. package/lib/qr-code/src/styles/index.cssr.js +13 -0
  266. package/lib/qr-code/styles/dark.d.ts +3 -0
  267. package/lib/qr-code/styles/dark.js +13 -0
  268. package/lib/qr-code/styles/index.d.ts +3 -0
  269. package/lib/qr-code/styles/index.js +10 -0
  270. package/lib/qr-code/styles/light.d.ts +9 -0
  271. package/lib/qr-code/styles/light.js +14 -0
  272. package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
  273. package/lib/themes/dark.js +7 -1
  274. package/lib/themes/light.js +7 -1
  275. package/lib/version.d.ts +1 -1
  276. package/lib/version.js +1 -1
  277. package/package.json +1 -1
  278. package/volar.d.ts +166 -153
  279. package/web-types.json +854 -2
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ const cssr_1 = require("../../../_utils/cssr");
7
+ // vars
8
+ // '--u-bezier'
9
+ // '--u-icon-bar-item-size'
10
+ // '--u-icon-bar-item-color'
11
+ // '--u-icon-bar-item-icon-size'
12
+ // '--u-icon-bar-item-label-color'
13
+ // '--u-icon-bar-item-label-size-hover'
14
+ // '--u-icon-bar-item-label-color-hover'
15
+ // '--u-icon-bar-item-color-hover'
16
+ // '--u-icon-bar-item-box-shadow'
17
+ // '--u-icon-bar-item-span'
18
+ // '--u-icon-bar-cols'
19
+ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('icon-bar', `
20
+ justify-content: space-between !important;
21
+ grid-template-columns: repeat(var(--u-icon-bar-cols), var(--u-icon-bar-item-size)) !important;
22
+ `), (0, cssr_1.cB)('icon-bar-item-wrapper', `
23
+ display: flex;
24
+ flex-direction: column;
25
+ align-items: center;
26
+ cursor: pointer;
27
+ gap: var(--u-icon-bar-item-gap);
28
+ grid-column: span var(--u-icon-bar-item-span)
29
+ `, [(0, cssr_1.cB)('icon-bar-item', `
30
+ width: 100%;
31
+ height: var(--u-icon-bar-item-size);
32
+ background-color: var(--u-icon-bar-item-color);
33
+ border-radius: 16px;
34
+ display: flex;
35
+ align-items: center;
36
+ box-sizing: border-box;
37
+ justify-content: center;
38
+ box-shadow: var(--u-icon-bar-item-box-shadow);
39
+ transition:
40
+ background-color .3s var(--u-bezier),
41
+ transform .3s var(--u-bezier);
42
+ `, [(0, cssr_1.cE)('icon', `
43
+ width: var(--u-icon-bar-item-icon-size);
44
+ height: var(--u-icon-bar-item-icon-size);
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: center;
48
+ & > * {
49
+ width: 100%;
50
+ height: 100%;
51
+ }
52
+ `)]), (0, cssr_1.cE)('label', `
53
+ color: var(--u-icon-bar-item-label-color);
54
+ font-weight: 400;
55
+ text-align: center;
56
+ transition:
57
+ font-size .2s var(--u-bezier),
58
+ color .2s var(--u-bezier),
59
+ font-weight .2s var(--u-bezier);
60
+ `), (0, cssr_1.c)('&:hover', [(0, cssr_1.cB)('icon-bar-item', `
61
+ background-color: var(--u-icon-bar-item-color-hover);
62
+ transform: scale(1.04);
63
+ `), (0, cssr_1.cE)('label', `
64
+ font-size: var(--u-icon-bar-item-label-size-hover);
65
+ color: var(--u-icon-bar-item-label-color-hover);
66
+ font-weight: 500;
67
+ `)])])]);
@@ -0,0 +1,3 @@
1
+ import type { IconBarTheme } from './light';
2
+ declare const iconBarDark: IconBarTheme;
3
+ export default iconBarDark;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const common_1 = require("../../_styles/common");
4
+ const light_1 = require("./light");
5
+ const iconBarDark = {
6
+ name: 'IconBar',
7
+ common: common_1.commonDark,
8
+ self: light_1.self
9
+ };
10
+ exports.default = iconBarDark;
@@ -0,0 +1,3 @@
1
+ export { default as iconBarDark } from './dark';
2
+ export { default as iconBarLight } from './light';
3
+ export type { IconBarTheme, IconBarThemeVars } from './light';
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.iconBarLight = exports.iconBarDark = void 0;
7
+ var dark_1 = require("./dark");
8
+ Object.defineProperty(exports, "iconBarDark", { enumerable: true, get: function () { return __importDefault(dark_1).default; } });
9
+ var light_1 = require("./light");
10
+ Object.defineProperty(exports, "iconBarLight", { enumerable: true, get: function () { return __importDefault(light_1).default; } });
@@ -0,0 +1,19 @@
1
+ import type { ThemeCommonVars } from '../../_styles/common';
2
+ import type { Theme } from '../../_mixins';
3
+ export declare const self: (vars: ThemeCommonVars) => {
4
+ itemSize: string;
5
+ color: string;
6
+ colorHover: string;
7
+ itemGap: string;
8
+ iconSize: string;
9
+ labelColor: string;
10
+ labelSizeHover: string;
11
+ labelColorHover: string;
12
+ boxShadow: string;
13
+ span: number;
14
+ cols: number;
15
+ };
16
+ export type IconBarThemeVars = ReturnType<typeof self>;
17
+ declare const iconBarLight: Theme<'IconBar', IconBarThemeVars>;
18
+ export default iconBarLight;
19
+ export type IconBarTheme = typeof iconBarLight;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.self = void 0;
4
+ const common_1 = require("../../_styles/common");
5
+ const self = (vars) => {
6
+ const { elementsPrimary, elementsTertiary, brandSecondary400, fontHeadingSmall, transparencySecondary } = vars;
7
+ return {
8
+ itemSize: '200px',
9
+ color: elementsTertiary,
10
+ colorHover: brandSecondary400,
11
+ itemGap: '16px',
12
+ iconSize: '120px',
13
+ labelColor: elementsPrimary,
14
+ labelSizeHover: fontHeadingSmall,
15
+ labelColorHover: elementsPrimary,
16
+ boxShadow: `0 1px 2px ${transparencySecondary}`, // TODO use shadow from variables after it will be added in design
17
+ span: 1,
18
+ cols: 6
19
+ };
20
+ };
21
+ exports.self = self;
22
+ const iconBarLight = {
23
+ name: 'IconBar',
24
+ common: common_1.commonLight,
25
+ self: exports.self
26
+ };
27
+ exports.default = iconBarLight;
@@ -133,7 +133,17 @@ const arDZ = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = arDZ;
@@ -133,7 +133,17 @@ const deDE = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = deDE;
@@ -134,7 +134,17 @@ const enGB = {
134
134
  closeButtonText: 'Close chat',
135
135
  shareButtonTooltip: 'Share chat',
136
136
  profileButtonTooltip: 'View profile',
137
- unreadNotificationText: 'new messages'
137
+ unreadNotificationText: 'new messages',
138
+ editText: 'Edit',
139
+ copyText: 'Copy',
140
+ deleteText: 'Delete',
141
+ editingTitle: 'Editing'
142
+ },
143
+ Header: {
144
+ desktopSearchTitle: 'Search',
145
+ searchPlaceholder: 'Search the site',
146
+ primaryActionText: 'Become a client',
147
+ secondaryActionText: 'Go to the application'
138
148
  }
139
149
  };
140
150
  exports.default = enGB;
@@ -132,6 +132,16 @@ declare const enUS: {
132
132
  shareButtonTooltip: string;
133
133
  profileButtonTooltip: string;
134
134
  unreadNotificationText: string;
135
+ editText: string;
136
+ copyText: string;
137
+ deleteText: string;
138
+ editingTitle: string;
139
+ };
140
+ Header: {
141
+ desktopSearchTitle: string;
142
+ searchPlaceholder: string;
143
+ primaryActionText: string;
144
+ secondaryActionText: string;
135
145
  };
136
146
  };
137
147
  export type ULocale = typeof enUS;
@@ -134,7 +134,17 @@ const enUS = {
134
134
  closeButtonText: 'Close chat',
135
135
  shareButtonTooltip: 'Share chat',
136
136
  profileButtonTooltip: 'View profile',
137
- unreadNotificationText: 'new messages'
137
+ unreadNotificationText: 'new messages',
138
+ editText: 'Edit',
139
+ copyText: 'Copy',
140
+ deleteText: 'Delete',
141
+ editingTitle: 'Editing'
142
+ },
143
+ Header: {
144
+ desktopSearchTitle: 'Search',
145
+ searchPlaceholder: 'Search the site',
146
+ primaryActionText: 'Become a client',
147
+ secondaryActionText: 'Go to the application'
138
148
  }
139
149
  };
140
150
  exports.default = enUS;
@@ -135,7 +135,17 @@ const eo = {
135
135
  closeButtonText: 'Close chat',
136
136
  shareButtonTooltip: 'Share chat',
137
137
  profileButtonTooltip: 'View profile',
138
- unreadNotificationText: 'new messages'
138
+ unreadNotificationText: 'new messages',
139
+ editText: 'Edit',
140
+ copyText: 'Copy',
141
+ deleteText: 'Delete',
142
+ editingTitle: 'Editing'
143
+ },
144
+ Header: {
145
+ desktopSearchTitle: 'Search',
146
+ searchPlaceholder: 'Search the site',
147
+ primaryActionText: 'Become a client',
148
+ secondaryActionText: 'Go to the application'
139
149
  }
140
150
  };
141
151
  exports.default = eo;
@@ -137,7 +137,17 @@ const esAR = {
137
137
  closeButtonText: 'Close chat',
138
138
  shareButtonTooltip: 'Share chat',
139
139
  profileButtonTooltip: 'View profile',
140
- unreadNotificationText: 'new messages'
140
+ unreadNotificationText: 'new messages',
141
+ editText: 'Edit',
142
+ copyText: 'Copy',
143
+ deleteText: 'Delete',
144
+ editingTitle: 'Editing'
145
+ },
146
+ Header: {
147
+ desktopSearchTitle: 'Search',
148
+ searchPlaceholder: 'Search the site',
149
+ primaryActionText: 'Become a client',
150
+ secondaryActionText: 'Go to the application'
141
151
  }
142
152
  };
143
153
  exports.default = esAR;
@@ -133,7 +133,17 @@ const faIR = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = faIR;
@@ -133,7 +133,17 @@ const frFR = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = frFR;
@@ -137,7 +137,17 @@ const idID = {
137
137
  closeButtonText: 'Close chat',
138
138
  shareButtonTooltip: 'Share chat',
139
139
  profileButtonTooltip: 'View profile',
140
- unreadNotificationText: 'new messages'
140
+ unreadNotificationText: 'new messages',
141
+ editText: 'Edit',
142
+ copyText: 'Copy',
143
+ deleteText: 'Delete',
144
+ editingTitle: 'Editing'
145
+ },
146
+ Header: {
147
+ desktopSearchTitle: 'Search',
148
+ searchPlaceholder: 'Search the site',
149
+ primaryActionText: 'Become a client',
150
+ secondaryActionText: 'Go to the application'
141
151
  }
142
152
  };
143
153
  exports.default = idID;
@@ -136,7 +136,17 @@ const itIT = {
136
136
  closeButtonText: 'Close chat',
137
137
  shareButtonTooltip: 'Share chat',
138
138
  profileButtonTooltip: 'View profile',
139
- unreadNotificationText: 'new messages'
139
+ unreadNotificationText: 'new messages',
140
+ editText: 'Edit',
141
+ copyText: 'Copy',
142
+ deleteText: 'Delete',
143
+ editingTitle: 'Editing'
144
+ },
145
+ Header: {
146
+ desktopSearchTitle: 'Search',
147
+ searchPlaceholder: 'Search the site',
148
+ primaryActionText: 'Become a client',
149
+ secondaryActionText: 'Go to the application'
140
150
  }
141
151
  };
142
152
  exports.default = itIT;
@@ -136,7 +136,17 @@ const jaJP = {
136
136
  closeButtonText: 'Close chat',
137
137
  shareButtonTooltip: 'Share chat',
138
138
  profileButtonTooltip: 'View profile',
139
- unreadNotificationText: 'new messages'
139
+ unreadNotificationText: 'new messages',
140
+ editText: 'Edit',
141
+ copyText: 'Copy',
142
+ deleteText: 'Delete',
143
+ editingTitle: 'Editing'
144
+ },
145
+ Header: {
146
+ desktopSearchTitle: 'Search',
147
+ searchPlaceholder: 'Search the site',
148
+ primaryActionText: 'Become a client',
149
+ secondaryActionText: 'Go to the application'
140
150
  }
141
151
  };
142
152
  exports.default = jaJP;
@@ -136,7 +136,17 @@ const koKR = {
136
136
  closeButtonText: 'Close chat',
137
137
  shareButtonTooltip: 'Share chat',
138
138
  profileButtonTooltip: 'View profile',
139
- unreadNotificationText: 'new messages'
139
+ unreadNotificationText: 'new messages',
140
+ editText: 'Edit',
141
+ copyText: 'Copy',
142
+ deleteText: 'Delete',
143
+ editingTitle: 'Editing'
144
+ },
145
+ Header: {
146
+ desktopSearchTitle: 'Search',
147
+ searchPlaceholder: 'Search the site',
148
+ primaryActionText: 'Become a client',
149
+ secondaryActionText: 'Go to the application'
140
150
  }
141
151
  };
142
152
  exports.default = koKR;
@@ -137,7 +137,17 @@ const nbNO = {
137
137
  closeButtonText: 'Close chat',
138
138
  shareButtonTooltip: 'Share chat',
139
139
  profileButtonTooltip: 'View profile',
140
- unreadNotificationText: 'new messages'
140
+ unreadNotificationText: 'new messages',
141
+ editText: 'Edit',
142
+ copyText: 'Copy',
143
+ deleteText: 'Delete',
144
+ editingTitle: 'Editing'
145
+ },
146
+ Header: {
147
+ desktopSearchTitle: 'Search',
148
+ searchPlaceholder: 'Search the site',
149
+ primaryActionText: 'Become a client',
150
+ secondaryActionText: 'Go to the application'
141
151
  }
142
152
  };
143
153
  exports.default = nbNO;
@@ -135,7 +135,17 @@ const nlNL = {
135
135
  closeButtonText: 'Close chat',
136
136
  shareButtonTooltip: 'Share chat',
137
137
  profileButtonTooltip: 'View profile',
138
- unreadNotificationText: 'new messages'
138
+ unreadNotificationText: 'new messages',
139
+ editText: 'Edit',
140
+ copyText: 'Copy',
141
+ deleteText: 'Delete',
142
+ editingTitle: 'Editing'
143
+ },
144
+ Header: {
145
+ desktopSearchTitle: 'Search',
146
+ searchPlaceholder: 'Search the site',
147
+ primaryActionText: 'Become a client',
148
+ secondaryActionText: 'Go to the application'
139
149
  }
140
150
  };
141
151
  exports.default = nlNL;
@@ -136,7 +136,17 @@ const plPL = {
136
136
  closeButtonText: 'Close chat',
137
137
  shareButtonTooltip: 'Share chat',
138
138
  profileButtonTooltip: 'View profile',
139
- unreadNotificationText: 'new messages'
139
+ unreadNotificationText: 'new messages',
140
+ editText: 'Edit',
141
+ copyText: 'Copy',
142
+ deleteText: 'Delete',
143
+ editingTitle: 'Editing'
144
+ },
145
+ Header: {
146
+ desktopSearchTitle: 'Search',
147
+ searchPlaceholder: 'Search the site',
148
+ primaryActionText: 'Become a client',
149
+ secondaryActionText: 'Go to the application'
140
150
  }
141
151
  };
142
152
  exports.default = plPL;
@@ -133,7 +133,17 @@ const ptBR = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = ptBR;
@@ -138,7 +138,17 @@ const ruRu = {
138
138
  closeButtonText: 'Завершить чат',
139
139
  shareButtonTooltip: 'Поделиться чатом',
140
140
  profileButtonTooltip: 'Просмотреть профиль',
141
- unreadNotificationText: 'новых сообщений'
141
+ unreadNotificationText: 'новых сообщений',
142
+ editText: 'Редактировать',
143
+ copyText: 'Скопировать',
144
+ deleteText: 'Удалить',
145
+ editingTitle: 'Редактирование'
146
+ },
147
+ Header: {
148
+ desktopSearchTitle: 'Поиск',
149
+ searchPlaceholder: 'Поиск по сайту',
150
+ primaryActionText: 'Стать клиентом',
151
+ secondaryActionText: 'Перейти в приложение'
142
152
  }
143
153
  };
144
154
  exports.default = ruRu;
@@ -137,7 +137,17 @@ const skSK = {
137
137
  closeButtonText: 'Close chat',
138
138
  shareButtonTooltip: 'Share chat',
139
139
  profileButtonTooltip: 'View profile',
140
- unreadNotificationText: 'new messages'
140
+ unreadNotificationText: 'new messages',
141
+ editText: 'Edit',
142
+ copyText: 'Copy',
143
+ deleteText: 'Delete',
144
+ editingTitle: 'Editing'
145
+ },
146
+ Header: {
147
+ desktopSearchTitle: 'Search',
148
+ searchPlaceholder: 'Search the site',
149
+ primaryActionText: 'Become a client',
150
+ secondaryActionText: 'Go to the application'
141
151
  }
142
152
  };
143
153
  exports.default = skSK;
@@ -133,7 +133,17 @@ const svSE = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = svSE;
@@ -137,7 +137,17 @@ const thTH = {
137
137
  closeButtonText: 'Close chat',
138
138
  shareButtonTooltip: 'Share chat',
139
139
  profileButtonTooltip: 'View profile',
140
- unreadNotificationText: 'new messages'
140
+ unreadNotificationText: 'new messages',
141
+ editText: 'Edit',
142
+ copyText: 'Copy',
143
+ deleteText: 'Delete',
144
+ editingTitle: 'Editing'
145
+ },
146
+ Header: {
147
+ desktopSearchTitle: 'Search',
148
+ searchPlaceholder: 'Search the site',
149
+ primaryActionText: 'Become a client',
150
+ secondaryActionText: 'Go to the application'
141
151
  }
142
152
  };
143
153
  exports.default = thTH;
@@ -134,7 +134,17 @@ const trTR = {
134
134
  closeButtonText: 'Close chat',
135
135
  shareButtonTooltip: 'Share chat',
136
136
  profileButtonTooltip: 'View profile',
137
- unreadNotificationText: 'new messages'
137
+ unreadNotificationText: 'new messages',
138
+ editText: 'Edit',
139
+ copyText: 'Copy',
140
+ deleteText: 'Delete',
141
+ editingTitle: 'Editing'
142
+ },
143
+ Header: {
144
+ desktopSearchTitle: 'Search',
145
+ searchPlaceholder: 'Search the site',
146
+ primaryActionText: 'Become a client',
147
+ secondaryActionText: 'Go to the application'
138
148
  }
139
149
  };
140
150
  exports.default = trTR;
@@ -134,7 +134,17 @@ const ukUA = {
134
134
  closeButtonText: 'Close chat',
135
135
  shareButtonTooltip: 'Share chat',
136
136
  profileButtonTooltip: 'View profile',
137
- unreadNotificationText: 'new messages'
137
+ unreadNotificationText: 'new messages',
138
+ editText: 'Edit',
139
+ copyText: 'Copy',
140
+ deleteText: 'Delete',
141
+ editingTitle: 'Editing'
142
+ },
143
+ Header: {
144
+ desktopSearchTitle: 'Search',
145
+ searchPlaceholder: 'Search the site',
146
+ primaryActionText: 'Become a client',
147
+ secondaryActionText: 'Go to the application'
138
148
  }
139
149
  };
140
150
  exports.default = ukUA;
@@ -133,7 +133,17 @@ const viVN = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = viVN;
@@ -133,7 +133,17 @@ const zhCN = {
133
133
  closeButtonText: 'Close chat',
134
134
  shareButtonTooltip: 'Share chat',
135
135
  profileButtonTooltip: 'View profile',
136
- unreadNotificationText: 'new messages'
136
+ unreadNotificationText: 'new messages',
137
+ editText: 'Edit',
138
+ copyText: 'Copy',
139
+ deleteText: 'Delete',
140
+ editingTitle: 'Editing'
141
+ },
142
+ Header: {
143
+ desktopSearchTitle: 'Search',
144
+ searchPlaceholder: 'Search the site',
145
+ primaryActionText: 'Become a client',
146
+ secondaryActionText: 'Go to the application'
137
147
  }
138
148
  };
139
149
  exports.default = zhCN;