@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,2 @@
1
+ declare const _default: import("css-render").CNode;
2
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { c, cB } from '../../../_utils/cssr';
2
+ // vars:
3
+ // --u-border-radius
4
+ export default c([cB('qr-code', `
5
+ background: #fff;
6
+ border-radius: var(--u-border-radius);
7
+ display: inline-flex;
8
+ `)]);
@@ -0,0 +1,3 @@
1
+ import type { QrCodeTheme } from './light';
2
+ declare const qrcodeDark: QrCodeTheme;
3
+ export default qrcodeDark;
@@ -0,0 +1,11 @@
1
+ import { commonDark } from '../../_styles/common';
2
+ const qrcodeDark = {
3
+ name: 'QrCode',
4
+ common: commonDark,
5
+ self: (vars) => {
6
+ return {
7
+ borderRadius: vars.borderRadius
8
+ };
9
+ }
10
+ };
11
+ export default qrcodeDark;
@@ -0,0 +1,3 @@
1
+ export { default as qrcodeDark } from './dark';
2
+ export { default as qrcodeLight } from './light';
3
+ export type { QrCodeTheme, QrCodeThemeVars } from './light';
@@ -0,0 +1,2 @@
1
+ export { default as qrcodeDark } from './dark';
2
+ export { default as qrcodeLight } from './light';
@@ -0,0 +1,9 @@
1
+ import type { Theme } from '../../_mixins';
2
+ import type { ThemeCommonVars } from '../../_styles/common';
3
+ declare function self(vars: ThemeCommonVars): {
4
+ borderRadius: string;
5
+ };
6
+ export type QrCodeThemeVars = ReturnType<typeof self>;
7
+ declare const themeLight: Theme<'QrCode', QrCodeThemeVars>;
8
+ export default themeLight;
9
+ export type QrCodeTheme = typeof themeLight;
@@ -0,0 +1,12 @@
1
+ import { commonLight } from '../../_styles/common';
2
+ function self(vars) {
3
+ return {
4
+ borderRadius: vars.borderRadius
5
+ };
6
+ }
7
+ const themeLight = {
8
+ name: 'QrCode',
9
+ common: commonLight,
10
+ self
11
+ };
12
+ export default themeLight;
@@ -28,6 +28,7 @@ declare const _default: import("vue").DefineComponent<{}, {
28
28
  brandPrimary500: string;
29
29
  brandPrimary550: string;
30
30
  brandPrimary600: string;
31
+ brandSecondary400: string;
31
32
  brandSecondary500: string;
32
33
  brandSecondary300: string;
33
34
  brandSecondary600: string;
package/es/themes/dark.js CHANGED
@@ -91,6 +91,9 @@ import { chatDark } from '../chat/styles';
91
91
  import { modalFullscreenDark } from '../modal-fullscreen/styles';
92
92
  import { cropDark } from '../crop/styles';
93
93
  import safeTopScrollbarDark from '../_internal/safe-top-scrollbar/styles/dark';
94
+ import { headerDark } from '../header/styles';
95
+ import { iconBarDark } from '../icon-bar/styles';
96
+ import { qrcodeDark } from '../qr-code/styles';
94
97
  export const darkTheme = {
95
98
  name: 'dark',
96
99
  common: commonDark,
@@ -185,5 +188,8 @@ export const darkTheme = {
185
188
  Flex: flexDark,
186
189
  Chat: chatDark,
187
190
  ModalFullscreen: modalFullscreenDark,
188
- Crop: cropDark
191
+ Crop: cropDark,
192
+ Header: headerDark,
193
+ IconBar: iconBarDark,
194
+ QrCode: qrcodeDark
189
195
  };
@@ -92,7 +92,10 @@ import { inputOtpLight } from '../input-otp/styles';
92
92
  import { chatLight } from '../chat/styles';
93
93
  import { modalFullscreenLight } from '../modal-fullscreen/styles';
94
94
  import { cropLight } from '../crop/styles';
95
+ import { qrcodeLight } from '../qr-code/styles';
95
96
  import safeTopScrollbarLight from '../_internal/safe-top-scrollbar/styles/light';
97
+ import { headerLight } from '../header/styles';
98
+ import { iconBarLight } from '../icon-bar/styles';
96
99
  export const lightTheme = {
97
100
  name: 'light',
98
101
  common: commonLight,
@@ -187,5 +190,8 @@ export const lightTheme = {
187
190
  Flex: flexLight,
188
191
  Chat: chatLight,
189
192
  ModalFullscreen: modalFullscreenLight,
190
- Crop: cropLight
193
+ Crop: cropLight,
194
+ Header: headerLight,
195
+ IconBar: iconBarLight,
196
+ QrCode: qrcodeLight
191
197
  };
package/es/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.11.2";
1
+ declare const _default: "1.12.0";
2
2
  export default _default;
package/es/version.js CHANGED
@@ -1 +1 @@
1
- export default '1.11.2';
1
+ export default '1.12.0';
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vue_1 = require("vue");
4
+ const replaceable_1 = require("./replaceable");
5
+ exports.default = (0, replaceable_1.replaceable)('burgerMenu', (0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" },
6
+ (0, vue_1.h)("path", { d: "M3 12H15M3 6H21M3 18H21", stroke: "#101010", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })));
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vue_1 = require("vue");
4
+ const replaceable_1 = require("./replaceable");
5
+ exports.default = (0, replaceable_1.replaceable)('logout', (0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" },
6
+ (0, vue_1.h)("path", { d: "M16 17L21 12M21 12L16 7M21 12H9M9 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H9", stroke: "#101010", "stroke-width": "1.66667", "stroke-linecap": "round", "stroke-linejoin": "round" })));
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vue_1 = require("vue");
4
+ const replaceable_1 = require("./replaceable");
5
+ exports.default = (0, replaceable_1.replaceable)('ozbekFlag', (0, vue_1.h)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
6
+ (0, vue_1.h)("g", { "clip-path": "url(#clip0_1120_2014)" },
7
+ (0, vue_1.h)("rect", { width: "24", height: "24", rx: "12", fill: "#FBFBFB" }),
8
+ (0, vue_1.h)("path", { d: "M23.3798 15.818C23.7821 14.6186 24 13.3347 24 11.9998C24 10.665 23.7821 9.38103 23.3798 8.18164L0.620206 8.18164C0.21795 9.38103 0 10.665 0 11.9998C0 13.3347 0.21795 14.6186 0.620206 15.818H23.3798Z", fill: "#FBFBFB" }),
9
+ (0, vue_1.h)("path", { d: "M23.3797 8.18182H0.620117C2.21503 3.42632 6.70734 0 11.9999 0C17.2925 0 21.7848 3.42632 23.3797 8.18182Z", fill: "#0099B5" }),
10
+ (0, vue_1.h)("path", { d: "M9.18066 2.39209C9.33998 2.39209 9.49554 2.40845 9.64551 2.43994C9.81623 2.47583 9.82506 2.70343 9.68262 2.8042C9.10672 3.21169 8.73047 3.88294 8.73047 4.64209C8.73047 5.40124 9.10672 6.07249 9.68262 6.47998C9.82506 6.58075 9.81623 6.80835 9.64551 6.84424C9.49554 6.87573 9.33998 6.89209 9.18066 6.89209C7.938 6.89209 6.93066 5.88473 6.93066 4.64209C6.93066 3.39945 7.938 2.39209 9.18066 2.39209ZM11.5498 5.38525C11.5797 5.29312 11.7103 5.29312 11.7402 5.38525L11.8691 5.77979H12.2842C12.3807 5.78008 12.4209 5.90353 12.3428 5.96045L12.0068 6.20459L12.1348 6.59912C12.1647 6.69113 12.0598 6.76795 11.9814 6.71143L11.6455 6.46729L11.3096 6.71143C11.2312 6.76835 11.1253 6.69125 11.1553 6.59912L11.2842 6.20459L10.9482 5.96045C10.8699 5.90351 10.91 5.77979 11.0068 5.77979H11.4219L11.5498 5.38525ZM13.8926 5.38525C13.9225 5.29312 14.0531 5.29312 14.083 5.38525L14.2109 5.77979H14.627C14.7235 5.78012 14.7636 5.90353 14.6855 5.96045L14.3496 6.20459L14.4775 6.59912C14.5074 6.69112 14.4026 6.7679 14.3242 6.71143L13.9883 6.46729L13.6523 6.71143C13.574 6.76837 13.4681 6.69125 13.498 6.59912L13.627 6.20459L13.291 5.96045C13.2126 5.90351 13.2527 5.77979 13.3496 5.77979H13.7646L13.8926 5.38525ZM16.2354 5.38525C16.2653 5.29312 16.3958 5.29312 16.4258 5.38525L16.5537 5.77979H16.9697C17.0662 5.78016 17.1063 5.90353 17.0283 5.96045L16.6924 6.20459L16.8203 6.59912C16.8502 6.69111 16.7453 6.76786 16.667 6.71143L16.3311 6.46729L15.9951 6.71143C15.9167 6.76837 15.8109 6.69125 15.8408 6.59912L15.9697 6.20459L15.6338 5.96045C15.5554 5.90351 15.5955 5.77979 15.6924 5.77979H16.1074L16.2354 5.38525ZM13.8926 2.68506C13.9225 2.59293 14.0531 2.59293 14.083 2.68506L14.2109 3.07959H14.627C14.7234 3.07993 14.7635 3.2033 14.6855 3.26025L14.3496 3.50439L14.4775 3.89893C14.5074 3.99096 14.4026 4.06783 14.3242 4.01123L13.9883 3.76709L13.6523 4.01123C13.574 4.06817 13.4681 3.99106 13.498 3.89893L13.627 3.50439L13.291 3.26025C13.2126 3.20331 13.2527 3.07959 13.3496 3.07959H13.7646L13.8926 2.68506ZM16.2354 2.68506C16.2653 2.59293 16.3958 2.59293 16.4258 2.68506L16.5537 3.07959H16.9697C17.0662 3.07997 17.1062 3.2033 17.0283 3.26025L16.6924 3.50439L16.8203 3.89893C16.8502 3.99095 16.7453 4.06779 16.667 4.01123L16.3311 3.76709L15.9951 4.01123C15.9167 4.06817 15.8109 3.99106 15.8408 3.89893L15.9697 3.50439L15.6338 3.26025C15.5554 3.20331 15.5955 3.07959 15.6924 3.07959H16.1074L16.2354 2.68506Z", fill: "#FBFBFB" }),
11
+ (0, vue_1.h)("path", { d: "M23.3797 15.8184C21.7848 20.5739 17.2925 24.0002 11.9999 24.0002C6.70734 24.0002 2.21503 20.5739 0.620117 15.8184L23.3797 15.8184Z", fill: "#00C853" }),
12
+ (0, vue_1.h)("path", { d: "M23.3797 8.18164C23.4401 8.36159 23.4963 8.54345 23.5482 8.7271H0.45166C0.503602 8.54345 0.559806 8.36159 0.620159 8.18164L23.3797 8.18164Z", fill: "#F44336" }),
13
+ (0, vue_1.h)("path", { d: "M23.3797 15.818C23.4401 15.6381 23.4963 15.4562 23.5482 15.2726H0.45166C0.503602 15.4562 0.559806 15.6381 0.620159 15.818H23.3797Z", fill: "#F44336" })),
14
+ (0, vue_1.h)("rect", { x: "0.5", y: "0.5", width: "23", height: "23", rx: "11.5", stroke: "black", "stroke-opacity": "0.08" }),
15
+ (0, vue_1.h)("defs", null,
16
+ (0, vue_1.h)("clipPath", { id: "clip0_1120_2014" },
17
+ (0, vue_1.h)("rect", { width: "24", height: "24", rx: "12", fill: "white" })))));
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vue_1 = require("vue");
4
+ const replaceable_1 = require("./replaceable");
5
+ exports.default = (0, replaceable_1.replaceable)('russiaFlag', (0, vue_1.h)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
6
+ (0, vue_1.h)("g", { "clip-path": "url(#clip0_1120_1297)" },
7
+ (0, vue_1.h)("path", { d: "M12.0001 0C6.85271 0 2.47511 3.2472 0.770508 7.8H23.2291C21.5251 3.2472 17.1475 0 12.0001 0Z", fill: "#FBFBFB" }),
8
+ (0, vue_1.h)("path", { d: "M24 12C24 10.5198 23.7192 9.10925 23.2296 7.80005H0.7704C0.2808 9.10925 0 10.5198 0 12C0 13.4802 0.2808 14.8908 0.7704 16.2H23.229C23.7192 14.8908 24 13.4802 24 12Z", fill: "#3F51B5" }),
9
+ (0, vue_1.h)("path", { d: "M23.2297 16.2002H0.770508C2.47511 20.753 6.85271 24.0002 12.0001 24.0002C17.1475 24.0002 21.5251 20.753 23.2297 16.2002Z", fill: "#D90026" })),
10
+ (0, vue_1.h)("rect", { x: "0.5", y: "0.5", width: "23", height: "23", rx: "11.5", stroke: "black", "stroke-opacity": "0.08" }),
11
+ (0, vue_1.h)("defs", null,
12
+ (0, vue_1.h)("clipPath", { id: "clip0_1120_1297" },
13
+ (0, vue_1.h)("rect", { width: "24", height: "24", rx: "12", fill: "white" })))));
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const vue_1 = require("vue");
4
+ exports.default = (0, vue_1.defineComponent)({
5
+ name: 'SendFilled',
6
+ render() {
7
+ return ((0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
8
+ (0, vue_1.h)("g", { fill: "none" },
9
+ (0, vue_1.h)("path", { d: "M12.815 12.197l-7.532 1.255a.5.5 0 0 0-.386.318L2.3 20.728c-.248.64.421 1.25 1.035.942l18-9a.75.75 0 0 0 0-1.341l-18-9c-.614-.307-1.283.303-1.035.942l2.598 6.958a.5.5 0 0 0 .386.318l7.532 1.255a.2.2 0 0 1 0 .395z", fill: "currentColor" }))));
10
+ }
11
+ });
@@ -56,3 +56,8 @@ export { default as CheckmarkDoneSharp } from './CheckmarkDoneSharp';
56
56
  export { default as PersonOutline } from './PersonOutline';
57
57
  export { default as ArrowHookUpRight } from './ArrowHookUpRight';
58
58
  export { default as PersonNote } from './PersonNote';
59
+ export { default as SendFilled } from './SendFilled';
60
+ export { default as RussiaFlag } from './RussiaFlag';
61
+ export { default as OzbekFlag } from './OzbekFlag';
62
+ export { default as LogoutIcon } from './Logout';
63
+ export { default as BurgerMenuIcon } from './BurgerMenuIcon';
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.FileHeart = exports.DismissCircleIcon = exports.CheckmarkCircleIcon = exports.EditIcon = exports.ClearSmallIcon = exports.InactiveIcon = exports.InfoOutlineIcon = exports.ResizeSmallIcon = exports.PhotoIcon = exports.FileIcon = exports.ZoomOutIcon = exports.ZoomInIcon = exports.RotateCounterclockwiseIcon = exports.RotateClockwiseIcon = exports.ArrowBackIcon = exports.RetryIcon = exports.ToIcon = exports.ChevronDownFilledIcon = exports.ClearIcon = exports.ChevronDownIcon = exports.CancelIcon = exports.WarningIcon = exports.TimeIcon = exports.SwitcherIcon = exports.SuccessIcon = exports.SearchIcon = exports.RemoveIcon = exports.MoreIcon = exports.InfoIcon = exports.ForwardIcon = exports.FilterIcon = exports.FastForwardIcon = exports.FastBackwardIcon = exports.ErrorIcon = exports.EmptyIcon = exports.DownloadIcon = exports.TrashIcon = exports.EyeOffIcon = exports.EyeIcon = exports.CloseIcon = exports.ChevronDownOutline = exports.ChevronRightIcon = exports.ChevronLeftIcon = exports.CheckmarkIcon = exports.DateIcon = exports.BackwardIcon = exports.AttachIcon = exports.ArrowUpIcon = exports.ArrowDownIcon = exports.AddIcon = void 0;
7
- exports.PersonNote = exports.ArrowHookUpRight = exports.PersonOutline = exports.CheckmarkDoneSharp = exports.Refresh = exports.MdTime = exports.SiderUnionBorder = exports.ContentCopy = void 0;
7
+ exports.BurgerMenuIcon = exports.LogoutIcon = exports.OzbekFlag = exports.RussiaFlag = exports.SendFilled = exports.PersonNote = exports.ArrowHookUpRight = exports.PersonOutline = exports.CheckmarkDoneSharp = exports.Refresh = exports.MdTime = exports.SiderUnionBorder = exports.ContentCopy = void 0;
8
8
  var Add_1 = require("./Add");
9
9
  Object.defineProperty(exports, "AddIcon", { enumerable: true, get: function () { return __importDefault(Add_1).default; } });
10
10
  var ArrowDown_1 = require("./ArrowDown");
@@ -121,3 +121,13 @@ var ArrowHookUpRight_1 = require("./ArrowHookUpRight");
121
121
  Object.defineProperty(exports, "ArrowHookUpRight", { enumerable: true, get: function () { return __importDefault(ArrowHookUpRight_1).default; } });
122
122
  var PersonNote_1 = require("./PersonNote");
123
123
  Object.defineProperty(exports, "PersonNote", { enumerable: true, get: function () { return __importDefault(PersonNote_1).default; } });
124
+ var SendFilled_1 = require("./SendFilled");
125
+ Object.defineProperty(exports, "SendFilled", { enumerable: true, get: function () { return __importDefault(SendFilled_1).default; } });
126
+ var RussiaFlag_1 = require("./RussiaFlag");
127
+ Object.defineProperty(exports, "RussiaFlag", { enumerable: true, get: function () { return __importDefault(RussiaFlag_1).default; } });
128
+ var OzbekFlag_1 = require("./OzbekFlag");
129
+ Object.defineProperty(exports, "OzbekFlag", { enumerable: true, get: function () { return __importDefault(OzbekFlag_1).default; } });
130
+ var Logout_1 = require("./Logout");
131
+ Object.defineProperty(exports, "LogoutIcon", { enumerable: true, get: function () { return __importDefault(Logout_1).default; } });
132
+ var BurgerMenuIcon_1 = require("./BurgerMenuIcon");
133
+ Object.defineProperty(exports, "BurgerMenuIcon", { enumerable: true, get: function () { return __importDefault(BurgerMenuIcon_1).default; } });
@@ -4,6 +4,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const _common_1 = __importDefault(require("./_common"));
7
- const derived = Object.assign(Object.assign({ name: 'common' }, _common_1.default), { scrollbarColor: 'rgba(255, 255, 255, 0.25)', scrollbarColorHover: 'rgba(255, 255, 255, 0.4)', scrollbarWidth: '5px', scrollbarHeight: '5px', scrollbarBorderRadius: '5px', opacityDisabled: '0.5', brand150: '#FFF3D3', brand350: '#F1F9DF', brand550: '#FFF3F4', brandPrimary50: '#2B204E', brandPrimary100: '#412A89', brandPrimary200: '#6A40ED', brandPrimary300: '#BBA2FD', brandPrimary400: '#7748F1', brandPrimary500: '#8967F1', brandPrimary550: '#6607DF', brandPrimary600: '#5D46A6', brandSecondary500: '#FFFF54', brandSecondary300: '#FDF5A6', brandSecondary600: '#F9DE6D', brandTertiary500: '#C4ED70', brandTertiary300: '#DCF0AF', brandTertiary600: '#9DED70', brandQuaternary500: '#90DDFB', brandQuaternary300: '#C5ECFD', brandQuaternary600: '#54B8F9', brandQuinary500: '#EC616A', brandQuinary300: '#F19EDA', brandQuinary600: '#EA3E68', brandQuinary100: '#FAD6D9', surfacePrimary: '#101010', surfaceSecondary: '#1D1D1D', containerPrimary: '#1D1D1D', containerSecondary: '#313135', textPrimary: '#F3F4F6', textSecondary: '#808080', textTertiary: '#999999', textQuaternary: '#101010', textBrand: '#F3F4F6', elementsPrimary: '#F3F4F6', elementsSecondary: '#101010', elementsTertiary: '#222222', elementsQuaternary: '#424247', elementsQuinary: '#707479', elementsDarkQuinary: '#919396', elementsSenary: '#DFDFDF', elementsOnContainer: '#101010', transparencyPrimary: 'rgba(255, 255, 255, 0.1)', transparencySecondary: 'rgba(255, 255, 255, 0.07)', transparencyTertiary: 'rgba(255, 255, 255, 0.16)', transparencyQuinary: 'rgba(255, 255, 255, 0.32)', transparencyModal: 'rgba(0, 0, 0, 0.75)', staticBlack: '#101010', staticDarkGrey: '#2C2C2D', staticWhite: '#FFFFFF', staticRed: '#F24835', staticOrange: '#F48C2C', staticGreen: '#09B849', staticDeepBlue: '#2F53CD', staticErrorAccent: '#CB0000', shadowDepth2: '0 0 0 1px #424247', shadowDepth: '0px 8px 8px 0px rgba(255, 255, 255, 0.25)' // В дизайне тень вообще отсутствует, пока что пусть побудет визуально как border
7
+ const derived = Object.assign(Object.assign({ name: 'common' }, _common_1.default), { scrollbarColor: 'rgba(255, 255, 255, 0.25)', scrollbarColorHover: 'rgba(255, 255, 255, 0.4)', scrollbarWidth: '5px', scrollbarHeight: '5px', scrollbarBorderRadius: '5px', opacityDisabled: '0.5', brand150: '#FFF3D3', brand350: '#F1F9DF', brand550: '#FFF3F4', brandPrimary50: '#2B204E', brandPrimary100: '#412A89', brandPrimary200: '#6A40ED', brandPrimary300: '#BBA2FD', brandPrimary400: '#7748F1', brandPrimary500: '#8967F1', brandPrimary550: '#6607DF', brandPrimary600: '#5D46A6', brandSecondary400: '#FFF8E3', brandSecondary500: '#FFFF54', brandSecondary300: '#FDF5A6', brandSecondary600: '#F9DE6D', brandTertiary500: '#C4ED70', brandTertiary300: '#DCF0AF', brandTertiary600: '#9DED70', brandQuaternary500: '#90DDFB', brandQuaternary300: '#C5ECFD', brandQuaternary600: '#54B8F9', brandQuinary500: '#EC616A', brandQuinary300: '#F19EDA', brandQuinary600: '#EA3E68', brandQuinary100: '#FAD6D9', surfacePrimary: '#101010', surfaceSecondary: '#1D1D1D', containerPrimary: '#1D1D1D', containerSecondary: '#313135', textPrimary: '#F3F4F6', textSecondary: '#808080', textTertiary: '#999999', textQuaternary: '#101010', textBrand: '#F3F4F6', elementsPrimary: '#F3F4F6', elementsSecondary: '#101010', elementsTertiary: '#222222', elementsQuaternary: '#424247', elementsQuinary: '#707479', elementsDarkQuinary: '#919396', elementsSenary: '#DFDFDF', elementsOnContainer: '#101010', transparencyPrimary: 'rgba(255, 255, 255, 0.1)', transparencySecondary: 'rgba(255, 255, 255, 0.07)', transparencyTertiary: 'rgba(255, 255, 255, 0.16)', transparencyQuinary: 'rgba(255, 255, 255, 0.32)', transparencyModal: 'rgba(0, 0, 0, 0.75)', staticBlack: '#101010', staticDarkGrey: '#2C2C2D', staticWhite: '#FFFFFF', staticRed: '#F24835', staticOrange: '#F48C2C', staticGreen: '#09B849', staticDeepBlue: '#2F53CD', staticErrorAccent: '#CB0000', shadowDepth2: '0 0 0 1px #424247', shadowDepth: '0px 8px 8px 0px rgba(255, 255, 255, 0.25)' // В дизайне тень вообще отсутствует, пока что пусть побудет визуально как border
8
8
  });
9
9
  exports.default = derived;
@@ -16,6 +16,7 @@ declare const derived: {
16
16
  brandPrimary500: string;
17
17
  brandPrimary550: string;
18
18
  brandPrimary600: string;
19
+ brandSecondary400: string;
19
20
  brandSecondary500: string;
20
21
  brandSecondary300: string;
21
22
  brandSecondary600: string;
@@ -4,5 +4,5 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const _common_1 = __importDefault(require("./_common"));
7
- const derived = Object.assign(Object.assign({ name: 'common' }, _common_1.default), { scrollbarColor: 'rgba(0, 0, 0, 0.25)', scrollbarColorHover: 'rgba(0, 0, 0, 0.4)', scrollbarWidth: '5px', scrollbarHeight: '5px', scrollbarBorderRadius: '5px', opacityDisabled: '0.5', brand150: '#FFF3D3', brand350: '#F1F9DF', brand550: '#FFF3F4', brandPrimary50: '#F8F2FF', brandPrimary100: '#EAE2FF', brandPrimary200: '#DACCFF', brandPrimary300: '#BBA2FD', brandPrimary400: '#7748F1', brandPrimary500: '#7000FF', brandPrimary550: '#6607DF', brandPrimary600: '#5B34C1', brandSecondary500: '#FFFF54', brandSecondary300: '#FDF5A6', brandSecondary600: '#F9DE6D', brandTertiary500: '#C4ED70', brandTertiary300: '#DCF0AF', brandTertiary600: '#9DED70', brandQuaternary500: '#90DDFB', brandQuaternary300: '#C5ECFD', brandQuaternary600: '#54B8F9', brandQuinary500: '#EC616A', brandQuinary300: '#F19EDA', brandQuinary600: '#EA3E68', brandQuinary100: '#FAD6D9', surfacePrimary: '#fff', surfaceSecondary: '#1d1d1d', containerPrimary: '#fff', containerSecondary: '#F3F4F6', textPrimary: '#101010', textSecondary: '#808080', textTertiary: '#999999', textQuaternary: '#FFFFFF', textBrand: '#7000FF', elementsPrimary: '#101010', elementsSecondary: '#fff', elementsTertiary: '#F3F4F6', elementsQuaternary: '#E7E8EA', elementsQuinary: '#C5C7CA', elementsDarkQuinary: '#919396', elementsSenary: '#4E4D4D', elementsOnContainer: '#fff', transparencyPrimary: 'rgba(0, 0, 0, 0.35)', transparencySecondary: 'rgba(0, 0, 0, 0.07)', transparencyTertiary: 'rgba(255, 255, 255, 0.16)', transparencyQuinary: 'rgba(255, 255, 255, 0.32)', transparencyModal: 'rgba(0, 0, 0, 0.40)', staticBlack: '#101010', staticDarkGrey: '#2C2C2D', staticWhite: '#FFFFFF', staticRed: '#F24835', staticOrange: '#F48C2C', staticGreen: '#09B849', staticDeepBlue: '#2F53CD', staticErrorAccent: '#CB0000', shadowDepth2: '0px 20px 80px 0px rgba(0, 0, 0, 0.07)', shadowDepth: '0px 8px 8px 0px rgba(0, 0, 0, 0.25)' });
7
+ const derived = Object.assign(Object.assign({ name: 'common' }, _common_1.default), { scrollbarColor: 'rgba(0, 0, 0, 0.25)', scrollbarColorHover: 'rgba(0, 0, 0, 0.4)', scrollbarWidth: '5px', scrollbarHeight: '5px', scrollbarBorderRadius: '5px', opacityDisabled: '0.5', brand150: '#FFF3D3', brand350: '#F1F9DF', brand550: '#FFF3F4', brandPrimary50: '#F8F2FF', brandPrimary100: '#EAE2FF', brandPrimary200: '#DACCFF', brandPrimary300: '#BBA2FD', brandPrimary400: '#7748F1', brandPrimary500: '#7000FF', brandPrimary550: '#6607DF', brandPrimary600: '#5B34C1', brandSecondary400: '#FFF8E3', brandSecondary500: '#FFFF54', brandSecondary300: '#FDF5A6', brandSecondary600: '#F9DE6D', brandTertiary500: '#C4ED70', brandTertiary300: '#DCF0AF', brandTertiary600: '#9DED70', brandQuaternary500: '#90DDFB', brandQuaternary300: '#C5ECFD', brandQuaternary600: '#54B8F9', brandQuinary500: '#EC616A', brandQuinary300: '#F19EDA', brandQuinary600: '#EA3E68', brandQuinary100: '#FAD6D9', surfacePrimary: '#fff', surfaceSecondary: '#1d1d1d', containerPrimary: '#fff', containerSecondary: '#F3F4F6', textPrimary: '#101010', textSecondary: '#808080', textTertiary: '#999999', textQuaternary: '#FFFFFF', textBrand: '#7000FF', elementsPrimary: '#101010', elementsSecondary: '#fff', elementsTertiary: '#F3F4F6', elementsQuaternary: '#E7E8EA', elementsQuinary: '#C5C7CA', elementsDarkQuinary: '#919396', elementsSenary: '#4E4D4D', elementsOnContainer: '#fff', transparencyPrimary: 'rgba(0, 0, 0, 0.35)', transparencySecondary: 'rgba(0, 0, 0, 0.07)', transparencyTertiary: 'rgba(255, 255, 255, 0.16)', transparencyQuinary: 'rgba(255, 255, 255, 0.32)', transparencyModal: 'rgba(0, 0, 0, 0.40)', staticBlack: '#101010', staticDarkGrey: '#2C2C2D', staticWhite: '#FFFFFF', staticRed: '#F24835', staticOrange: '#F48C2C', staticGreen: '#09B849', staticDeepBlue: '#2F53CD', staticErrorAccent: '#CB0000', shadowDepth2: '0px 20px 80px 0px rgba(0, 0, 0, 0.07)', shadowDepth: '0px 8px 8px 0px rgba(0, 0, 0, 0.25)' });
8
8
  exports.default = derived;