@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.
- package/dist/index.js +10829 -6652
- package/dist/index.prod.js +4 -4
- package/es/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/es/_internal/icons/BurgerMenuIcon.js +4 -0
- package/es/_internal/icons/Logout.d.ts +2 -0
- package/es/_internal/icons/Logout.js +4 -0
- package/es/_internal/icons/OzbekFlag.d.ts +2 -0
- package/es/_internal/icons/OzbekFlag.js +15 -0
- package/es/_internal/icons/RussiaFlag.d.ts +2 -0
- package/es/_internal/icons/RussiaFlag.js +11 -0
- package/es/_internal/icons/SendFilled.d.ts +2 -0
- package/es/_internal/icons/SendFilled.js +9 -0
- package/es/_internal/icons/index.d.ts +5 -0
- package/es/_internal/icons/index.js +5 -0
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +1 -0
- package/es/_styles/common/light.js +1 -1
- package/es/chat/src/Chat.d.ts +464 -83
- package/es/chat/src/Chat.js +17 -2
- package/es/chat/src/ChatListItems.d.ts +497 -94
- package/es/chat/src/ChatListItems.js +1 -1
- package/es/chat/src/ChatMessages.d.ts +501 -94
- package/es/chat/src/ChatMessages.js +115 -22
- package/es/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/es/chat/src/ChatParts/MainArea.js +110 -14
- package/es/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/es/chat/src/interface.d.ts +18 -0
- package/es/chat/src/interface.js +6 -0
- package/es/chat/src/styles/index.cssr.js +22 -1
- package/es/chat/styles/dark.d.ts +41 -8
- package/es/chat/styles/dark.js +6 -2
- package/es/chat/styles/light.d.ts +42 -8
- package/es/chat/styles/light.js +7 -2
- package/es/components.d.ts +3 -0
- package/es/components.js +3 -0
- package/es/config-provider/src/internal-interface.d.ts +17 -0
- package/es/dialog/src/DialogProvider.d.ts +2 -0
- package/es/form/src/FormItemCol.d.ts +2 -2
- package/es/form/src/FormItemGridItem.d.ts +2 -2
- package/es/form/src/FormItemRow.d.ts +1 -1
- package/es/grid/src/Grid.d.ts +1 -1
- package/es/grid/src/GridItem.d.ts +2 -2
- package/es/header/demos/mock.d.ts +2 -0
- package/es/header/demos/mock.js +235 -0
- package/es/header/index.d.ts +12 -0
- package/es/header/index.js +10 -0
- package/es/header/src/Header.d.ts +604 -0
- package/es/header/src/Header.js +320 -0
- package/es/header/src/HeaderActions.d.ts +120 -0
- package/es/header/src/HeaderActions.js +166 -0
- package/es/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/es/header/src/HeaderDesktopLayout.js +24 -0
- package/es/header/src/HeaderMobileLayout.d.ts +25 -0
- package/es/header/src/HeaderMobileLayout.js +21 -0
- package/es/header/src/HeaderNavigation.d.ts +128 -0
- package/es/header/src/HeaderNavigation.js +172 -0
- package/es/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/es/header/src/HeaderSearchDesktop.js +77 -0
- package/es/header/src/HeaderSearchMobile.d.ts +73 -0
- package/es/header/src/HeaderSearchMobile.js +126 -0
- package/es/header/src/HeaderSearchResults.d.ts +81 -0
- package/es/header/src/HeaderSearchResults.js +74 -0
- package/es/header/src/constants.d.ts +1 -0
- package/es/header/src/constants.js +1 -0
- package/es/header/src/interface.d.ts +58 -0
- package/es/header/src/interface.js +1 -0
- package/es/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/es/header/src/mobile/HeaderMobile.js +241 -0
- package/es/header/src/styles/index.cssr.d.ts +6 -0
- package/es/header/src/styles/index.cssr.js +519 -0
- package/es/header/src/utils.d.ts +12 -0
- package/es/header/src/utils.js +47 -0
- package/es/header/styles/dark.d.ts +36 -0
- package/es/header/styles/dark.js +9 -0
- package/es/header/styles/index.d.ts +3 -0
- package/es/header/styles/index.js +2 -0
- package/es/header/styles/light.d.ts +72 -0
- package/es/header/styles/light.js +45 -0
- package/es/icon/src/Icon.d.ts +3 -0
- package/es/icon/src/Icon.js +3 -2
- package/es/icon-bar/index.d.ts +4 -0
- package/es/icon-bar/index.js +2 -0
- package/es/icon-bar/src/IconBar.d.ts +175 -0
- package/es/icon-bar/src/IconBar.js +57 -0
- package/es/icon-bar/src/IconBarItem.d.ts +163 -0
- package/es/icon-bar/src/IconBarItem.js +50 -0
- package/es/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/es/icon-bar/src/styles/index.cssr.js +62 -0
- package/es/icon-bar/styles/dark.d.ts +3 -0
- package/es/icon-bar/styles/dark.js +8 -0
- package/es/icon-bar/styles/index.d.ts +3 -0
- package/es/icon-bar/styles/index.js +2 -0
- package/es/icon-bar/styles/light.d.ts +19 -0
- package/es/icon-bar/styles/light.js +23 -0
- package/es/locales/common/arDZ.js +11 -1
- package/es/locales/common/deDE.js +11 -1
- package/es/locales/common/enGB.js +11 -1
- package/es/locales/common/enUS.d.ts +10 -0
- package/es/locales/common/enUS.js +11 -1
- package/es/locales/common/eo.js +11 -1
- package/es/locales/common/esAR.js +11 -1
- package/es/locales/common/faIR.js +11 -1
- package/es/locales/common/frFR.js +11 -1
- package/es/locales/common/idID.js +11 -1
- package/es/locales/common/itIT.js +11 -1
- package/es/locales/common/jaJP.js +11 -1
- package/es/locales/common/koKR.js +11 -1
- package/es/locales/common/nbNO.js +11 -1
- package/es/locales/common/nlNL.js +11 -1
- package/es/locales/common/plPL.js +11 -1
- package/es/locales/common/ptBR.js +11 -1
- package/es/locales/common/ruRU.js +11 -1
- package/es/locales/common/skSK.js +11 -1
- package/es/locales/common/svSE.js +11 -1
- package/es/locales/common/thTH.js +11 -1
- package/es/locales/common/trTR.js +11 -1
- package/es/locales/common/ukUA.js +11 -1
- package/es/locales/common/viVN.js +11 -1
- package/es/locales/common/zhCN.js +11 -1
- package/es/locales/common/zhTW.js +11 -1
- package/es/qr-code/index.d.ts +2 -0
- package/es/qr-code/index.js +1 -0
- package/es/qr-code/src/QrCode.d.ts +171 -0
- package/es/qr-code/src/QrCode.js +229 -0
- package/es/qr-code/src/qrcodegen.d.ts +95 -0
- package/es/qr-code/src/qrcodegen.js +949 -0
- package/es/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/es/qr-code/src/styles/index.cssr.js +8 -0
- package/es/qr-code/styles/dark.d.ts +3 -0
- package/es/qr-code/styles/dark.js +11 -0
- package/es/qr-code/styles/index.d.ts +3 -0
- package/es/qr-code/styles/index.js +2 -0
- package/es/qr-code/styles/light.d.ts +9 -0
- package/es/qr-code/styles/light.js +12 -0
- package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/es/themes/dark.js +7 -1
- package/es/themes/light.js +7 -1
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/lib/_internal/icons/BurgerMenuIcon.js +6 -0
- package/lib/_internal/icons/Logout.d.ts +2 -0
- package/lib/_internal/icons/Logout.js +6 -0
- package/lib/_internal/icons/OzbekFlag.d.ts +2 -0
- package/lib/_internal/icons/OzbekFlag.js +17 -0
- package/lib/_internal/icons/RussiaFlag.d.ts +2 -0
- package/lib/_internal/icons/RussiaFlag.js +13 -0
- package/lib/_internal/icons/SendFilled.d.ts +2 -0
- package/lib/_internal/icons/SendFilled.js +11 -0
- package/lib/_internal/icons/index.d.ts +5 -0
- package/lib/_internal/icons/index.js +11 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +1 -0
- package/lib/_styles/common/light.js +1 -1
- package/lib/chat/src/Chat.d.ts +464 -83
- package/lib/chat/src/Chat.js +17 -2
- package/lib/chat/src/ChatListItems.d.ts +497 -94
- package/lib/chat/src/ChatListItems.js +1 -1
- package/lib/chat/src/ChatMessages.d.ts +501 -94
- package/lib/chat/src/ChatMessages.js +113 -20
- package/lib/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/lib/chat/src/ChatParts/MainArea.js +108 -12
- package/lib/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/lib/chat/src/interface.d.ts +18 -0
- package/lib/chat/src/interface.js +7 -1
- package/lib/chat/src/styles/index.cssr.js +22 -1
- package/lib/chat/styles/dark.d.ts +41 -8
- package/lib/chat/styles/dark.js +6 -2
- package/lib/chat/styles/light.d.ts +42 -8
- package/lib/chat/styles/light.js +7 -2
- package/lib/components.d.ts +3 -0
- package/lib/components.js +3 -0
- package/lib/config-provider/src/internal-interface.d.ts +17 -0
- package/lib/dialog/src/DialogProvider.d.ts +2 -0
- package/lib/form/src/FormItemCol.d.ts +2 -2
- package/lib/form/src/FormItemGridItem.d.ts +2 -2
- package/lib/form/src/FormItemRow.d.ts +1 -1
- package/lib/grid/src/Grid.d.ts +1 -1
- package/lib/grid/src/GridItem.d.ts +2 -2
- package/lib/header/demos/mock.d.ts +2 -0
- package/lib/header/demos/mock.js +238 -0
- package/lib/header/index.d.ts +12 -0
- package/lib/header/index.js +48 -0
- package/lib/header/src/Header.d.ts +604 -0
- package/lib/header/src/Header.js +349 -0
- package/lib/header/src/HeaderActions.d.ts +120 -0
- package/lib/header/src/HeaderActions.js +172 -0
- package/lib/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/lib/header/src/HeaderDesktopLayout.js +27 -0
- package/lib/header/src/HeaderMobileLayout.d.ts +25 -0
- package/lib/header/src/HeaderMobileLayout.js +24 -0
- package/lib/header/src/HeaderNavigation.d.ts +128 -0
- package/lib/header/src/HeaderNavigation.js +175 -0
- package/lib/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/lib/header/src/HeaderSearchDesktop.js +83 -0
- package/lib/header/src/HeaderSearchMobile.d.ts +73 -0
- package/lib/header/src/HeaderSearchMobile.js +132 -0
- package/lib/header/src/HeaderSearchResults.d.ts +81 -0
- package/lib/header/src/HeaderSearchResults.js +77 -0
- package/lib/header/src/constants.d.ts +1 -0
- package/lib/header/src/constants.js +4 -0
- package/lib/header/src/interface.d.ts +58 -0
- package/lib/header/src/interface.js +2 -0
- package/lib/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/lib/header/src/mobile/HeaderMobile.js +244 -0
- package/lib/header/src/styles/index.cssr.d.ts +6 -0
- package/lib/header/src/styles/index.cssr.js +525 -0
- package/lib/header/src/utils.d.ts +12 -0
- package/lib/header/src/utils.js +58 -0
- package/lib/header/styles/dark.d.ts +36 -0
- package/lib/header/styles/dark.js +11 -0
- package/lib/header/styles/index.d.ts +3 -0
- package/lib/header/styles/index.js +10 -0
- package/lib/header/styles/light.d.ts +72 -0
- package/lib/header/styles/light.js +49 -0
- package/lib/icon/src/Icon.d.ts +3 -0
- package/lib/icon/src/Icon.js +3 -2
- package/lib/icon-bar/index.d.ts +4 -0
- package/lib/icon-bar/index.js +12 -0
- package/lib/icon-bar/src/IconBar.d.ts +175 -0
- package/lib/icon-bar/src/IconBar.js +63 -0
- package/lib/icon-bar/src/IconBarItem.d.ts +163 -0
- package/lib/icon-bar/src/IconBarItem.js +56 -0
- package/lib/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/lib/icon-bar/src/styles/index.cssr.js +67 -0
- package/lib/icon-bar/styles/dark.d.ts +3 -0
- package/lib/icon-bar/styles/dark.js +10 -0
- package/lib/icon-bar/styles/index.d.ts +3 -0
- package/lib/icon-bar/styles/index.js +10 -0
- package/lib/icon-bar/styles/light.d.ts +19 -0
- package/lib/icon-bar/styles/light.js +27 -0
- package/lib/locales/common/arDZ.js +11 -1
- package/lib/locales/common/deDE.js +11 -1
- package/lib/locales/common/enGB.js +11 -1
- package/lib/locales/common/enUS.d.ts +10 -0
- package/lib/locales/common/enUS.js +11 -1
- package/lib/locales/common/eo.js +11 -1
- package/lib/locales/common/esAR.js +11 -1
- package/lib/locales/common/faIR.js +11 -1
- package/lib/locales/common/frFR.js +11 -1
- package/lib/locales/common/idID.js +11 -1
- package/lib/locales/common/itIT.js +11 -1
- package/lib/locales/common/jaJP.js +11 -1
- package/lib/locales/common/koKR.js +11 -1
- package/lib/locales/common/nbNO.js +11 -1
- package/lib/locales/common/nlNL.js +11 -1
- package/lib/locales/common/plPL.js +11 -1
- package/lib/locales/common/ptBR.js +11 -1
- package/lib/locales/common/ruRU.js +11 -1
- package/lib/locales/common/skSK.js +11 -1
- package/lib/locales/common/svSE.js +11 -1
- package/lib/locales/common/thTH.js +11 -1
- package/lib/locales/common/trTR.js +11 -1
- package/lib/locales/common/ukUA.js +11 -1
- package/lib/locales/common/viVN.js +11 -1
- package/lib/locales/common/zhCN.js +11 -1
- package/lib/locales/common/zhTW.js +11 -1
- package/lib/qr-code/index.d.ts +2 -0
- package/lib/qr-code/index.js +9 -0
- package/lib/qr-code/src/QrCode.d.ts +171 -0
- package/lib/qr-code/src/QrCode.js +235 -0
- package/lib/qr-code/src/qrcodegen.d.ts +95 -0
- package/lib/qr-code/src/qrcodegen.js +950 -0
- package/lib/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/lib/qr-code/src/styles/index.cssr.js +13 -0
- package/lib/qr-code/styles/dark.d.ts +3 -0
- package/lib/qr-code/styles/dark.js +13 -0
- package/lib/qr-code/styles/index.d.ts +3 -0
- package/lib/qr-code/styles/index.js +10 -0
- package/lib/qr-code/styles/light.d.ts +9 -0
- package/lib/qr-code/styles/light.js +14 -0
- package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/lib/themes/dark.js +7 -1
- package/lib/themes/light.js +7 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +166 -153
- package/web-types.json +854 -2
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { commonLight } from '../../_styles/common';
|
|
2
|
+
export const self = (vars) => {
|
|
3
|
+
const { elementsPrimary, elementsTertiary, brandSecondary400, fontHeadingSmall, transparencySecondary } = vars;
|
|
4
|
+
return {
|
|
5
|
+
itemSize: '200px',
|
|
6
|
+
color: elementsTertiary,
|
|
7
|
+
colorHover: brandSecondary400,
|
|
8
|
+
itemGap: '16px',
|
|
9
|
+
iconSize: '120px',
|
|
10
|
+
labelColor: elementsPrimary,
|
|
11
|
+
labelSizeHover: fontHeadingSmall,
|
|
12
|
+
labelColorHover: elementsPrimary,
|
|
13
|
+
boxShadow: `0 1px 2px ${transparencySecondary}`, // TODO use shadow from variables after it will be added in design
|
|
14
|
+
span: 1,
|
|
15
|
+
cols: 6
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
const iconBarLight = {
|
|
19
|
+
name: 'IconBar',
|
|
20
|
+
common: commonLight,
|
|
21
|
+
self
|
|
22
|
+
};
|
|
23
|
+
export default iconBarLight;
|
|
@@ -131,7 +131,17 @@ const arDZ = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default arDZ;
|
|
@@ -131,7 +131,17 @@ const deDE = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default deDE;
|
|
@@ -132,7 +132,17 @@ const enGB = {
|
|
|
132
132
|
closeButtonText: 'Close chat',
|
|
133
133
|
shareButtonTooltip: 'Share chat',
|
|
134
134
|
profileButtonTooltip: 'View profile',
|
|
135
|
-
unreadNotificationText: 'new messages'
|
|
135
|
+
unreadNotificationText: 'new messages',
|
|
136
|
+
editText: 'Edit',
|
|
137
|
+
copyText: 'Copy',
|
|
138
|
+
deleteText: 'Delete',
|
|
139
|
+
editingTitle: 'Editing'
|
|
140
|
+
},
|
|
141
|
+
Header: {
|
|
142
|
+
desktopSearchTitle: 'Search',
|
|
143
|
+
searchPlaceholder: 'Search the site',
|
|
144
|
+
primaryActionText: 'Become a client',
|
|
145
|
+
secondaryActionText: 'Go to the application'
|
|
136
146
|
}
|
|
137
147
|
};
|
|
138
148
|
export 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;
|
|
@@ -132,7 +132,17 @@ const enUS = {
|
|
|
132
132
|
closeButtonText: 'Close chat',
|
|
133
133
|
shareButtonTooltip: 'Share chat',
|
|
134
134
|
profileButtonTooltip: 'View profile',
|
|
135
|
-
unreadNotificationText: 'new messages'
|
|
135
|
+
unreadNotificationText: 'new messages',
|
|
136
|
+
editText: 'Edit',
|
|
137
|
+
copyText: 'Copy',
|
|
138
|
+
deleteText: 'Delete',
|
|
139
|
+
editingTitle: 'Editing'
|
|
140
|
+
},
|
|
141
|
+
Header: {
|
|
142
|
+
desktopSearchTitle: 'Search',
|
|
143
|
+
searchPlaceholder: 'Search the site',
|
|
144
|
+
primaryActionText: 'Become a client',
|
|
145
|
+
secondaryActionText: 'Go to the application'
|
|
136
146
|
}
|
|
137
147
|
};
|
|
138
148
|
export default enUS;
|
package/es/locales/common/eo.js
CHANGED
|
@@ -133,7 +133,17 @@ const eo = {
|
|
|
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
|
export default eo;
|
|
@@ -135,7 +135,17 @@ const esAR = {
|
|
|
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
|
export default esAR;
|
|
@@ -131,7 +131,17 @@ const faIR = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default faIR;
|
|
@@ -131,7 +131,17 @@ const frFR = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default frFR;
|
|
@@ -135,7 +135,17 @@ const idID = {
|
|
|
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
|
export default idID;
|
|
@@ -134,7 +134,17 @@ const itIT = {
|
|
|
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
|
export default itIT;
|
|
@@ -134,7 +134,17 @@ const jaJP = {
|
|
|
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
|
export default jaJP;
|
|
@@ -134,7 +134,17 @@ const koKR = {
|
|
|
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
|
export default koKR;
|
|
@@ -135,7 +135,17 @@ const nbNO = {
|
|
|
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
|
export default nbNO;
|
|
@@ -133,7 +133,17 @@ const nlNL = {
|
|
|
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
|
export default nlNL;
|
|
@@ -134,7 +134,17 @@ const plPL = {
|
|
|
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
|
export default plPL;
|
|
@@ -131,7 +131,17 @@ const ptBR = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default ptBR;
|
|
@@ -136,7 +136,17 @@ const ruRu = {
|
|
|
136
136
|
closeButtonText: 'Завершить чат',
|
|
137
137
|
shareButtonTooltip: 'Поделиться чатом',
|
|
138
138
|
profileButtonTooltip: 'Просмотреть профиль',
|
|
139
|
-
unreadNotificationText: 'новых сообщений'
|
|
139
|
+
unreadNotificationText: 'новых сообщений',
|
|
140
|
+
editText: 'Редактировать',
|
|
141
|
+
copyText: 'Скопировать',
|
|
142
|
+
deleteText: 'Удалить',
|
|
143
|
+
editingTitle: 'Редактирование'
|
|
144
|
+
},
|
|
145
|
+
Header: {
|
|
146
|
+
desktopSearchTitle: 'Поиск',
|
|
147
|
+
searchPlaceholder: 'Поиск по сайту',
|
|
148
|
+
primaryActionText: 'Стать клиентом',
|
|
149
|
+
secondaryActionText: 'Перейти в приложение'
|
|
140
150
|
}
|
|
141
151
|
};
|
|
142
152
|
export default ruRu;
|
|
@@ -135,7 +135,17 @@ const skSK = {
|
|
|
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
|
export default skSK;
|
|
@@ -131,7 +131,17 @@ const svSE = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default svSE;
|
|
@@ -135,7 +135,17 @@ const thTH = {
|
|
|
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
|
export default thTH;
|
|
@@ -132,7 +132,17 @@ const trTR = {
|
|
|
132
132
|
closeButtonText: 'Close chat',
|
|
133
133
|
shareButtonTooltip: 'Share chat',
|
|
134
134
|
profileButtonTooltip: 'View profile',
|
|
135
|
-
unreadNotificationText: 'new messages'
|
|
135
|
+
unreadNotificationText: 'new messages',
|
|
136
|
+
editText: 'Edit',
|
|
137
|
+
copyText: 'Copy',
|
|
138
|
+
deleteText: 'Delete',
|
|
139
|
+
editingTitle: 'Editing'
|
|
140
|
+
},
|
|
141
|
+
Header: {
|
|
142
|
+
desktopSearchTitle: 'Search',
|
|
143
|
+
searchPlaceholder: 'Search the site',
|
|
144
|
+
primaryActionText: 'Become a client',
|
|
145
|
+
secondaryActionText: 'Go to the application'
|
|
136
146
|
}
|
|
137
147
|
};
|
|
138
148
|
export default trTR;
|
|
@@ -132,7 +132,17 @@ const ukUA = {
|
|
|
132
132
|
closeButtonText: 'Close chat',
|
|
133
133
|
shareButtonTooltip: 'Share chat',
|
|
134
134
|
profileButtonTooltip: 'View profile',
|
|
135
|
-
unreadNotificationText: 'new messages'
|
|
135
|
+
unreadNotificationText: 'new messages',
|
|
136
|
+
editText: 'Edit',
|
|
137
|
+
copyText: 'Copy',
|
|
138
|
+
deleteText: 'Delete',
|
|
139
|
+
editingTitle: 'Editing'
|
|
140
|
+
},
|
|
141
|
+
Header: {
|
|
142
|
+
desktopSearchTitle: 'Search',
|
|
143
|
+
searchPlaceholder: 'Search the site',
|
|
144
|
+
primaryActionText: 'Become a client',
|
|
145
|
+
secondaryActionText: 'Go to the application'
|
|
136
146
|
}
|
|
137
147
|
};
|
|
138
148
|
export default ukUA;
|
|
@@ -131,7 +131,17 @@ const viVN = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default viVN;
|
|
@@ -131,7 +131,17 @@ const zhCN = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default zhCN;
|
|
@@ -131,7 +131,17 @@ const zhTW = {
|
|
|
131
131
|
closeButtonText: 'Close chat',
|
|
132
132
|
shareButtonTooltip: 'Share chat',
|
|
133
133
|
profileButtonTooltip: 'View profile',
|
|
134
|
-
unreadNotificationText: 'new messages'
|
|
134
|
+
unreadNotificationText: 'new messages',
|
|
135
|
+
editText: 'Edit',
|
|
136
|
+
copyText: 'Copy',
|
|
137
|
+
deleteText: 'Delete',
|
|
138
|
+
editingTitle: 'Editing'
|
|
139
|
+
},
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: 'Search',
|
|
142
|
+
searchPlaceholder: 'Search the site',
|
|
143
|
+
primaryActionText: 'Become a client',
|
|
144
|
+
secondaryActionText: 'Go to the application'
|
|
135
145
|
}
|
|
136
146
|
};
|
|
137
147
|
export default zhTW;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as UQrCode, qrCodeProps } from './src/QrCode';
|