@webitel/ui-sdk 25.8.68 → 25.8.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.8.68",
3
+ "version": "25.8.69",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
@@ -15,28 +15,34 @@
15
15
  </div>
16
16
  </template>
17
17
 
18
- <script setup>
18
+ <script lang="ts" setup>
19
19
  import { computed } from 'vue';
20
20
 
21
21
  import StartPageCard from './start-page-card.vue';
22
22
  import StartPageLogo from './start-page-logo.vue';
23
23
 
24
- const props = defineProps({
25
- /** entire navigation hierarchy. Value: `{ value: string, route: string, name: string, text: string, images: object - { light: string, dark: string } }`
26
- **/
27
-
28
- nav: {
29
- type: Array,
30
- required: true,
31
- },
32
- appLogo: {
33
- type: Object,
34
- },
35
- darkMode: {
36
- type: Boolean,
37
- default: false,
38
- },
39
- });
24
+ interface NavCard {
25
+ value: string;
26
+ route: string;
27
+ name: string;
28
+ text: string;
29
+ disabled: boolean;
30
+ images: {
31
+ light: string;
32
+ dark: string;
33
+ };
34
+ }
35
+
36
+ interface AppLogo {
37
+ light: string;
38
+ dark: string;
39
+ }
40
+
41
+ const props = defineProps<{
42
+ nav: NavCard[];
43
+ appLogo: AppLogo;
44
+ darkMode?: boolean;
45
+ }>();
40
46
 
41
47
  const logo = computed(() => {
42
48
  return props.darkMode ? props.appLogo.dark : props.appLogo.light;
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Contact | Contacts',
132
132
  column: 'Column | Columns',
133
133
  notification: 'Notification | Notifications',
134
+ screencast: 'Screencast',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -280,11 +281,17 @@ export default {
280
281
  [WebitelApplications.CRM]: {
281
282
  sections: {
282
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
283
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
284
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
285
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
286
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
287
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
288
295
  },
289
296
  },
290
297
  },
@@ -129,6 +129,7 @@ export default {
129
129
  contact: 'Contacto | Contactos',
130
130
  column: 'Columna | Columnas',
131
131
  notification: 'Notificación | Notificaciones',
132
+ screencast: 'Videotutorial de pantalla',
132
133
  },
133
134
  date: {
134
135
  sec: 'Seg',
@@ -274,11 +275,17 @@ export default {
274
275
  [WebitelApplications.CRM]: {
275
276
  sections: {
276
277
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
277
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
278
+ linked('objects.customization.customization') +
279
+ ': ' +
280
+ linked('objects.case'),
278
281
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
279
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
282
+ linked('objects.customization.customization') +
283
+ ': ' +
284
+ linked('objects.contact'),
280
285
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
281
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
286
+ linked('objects.customization.customization') +
287
+ ': ' +
288
+ linked('objects.customLookup'),
282
289
  },
283
290
  },
284
291
  },
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Байланыс | Байланыстар',
132
132
  column: 'Баған | Бағандар',
133
133
  notification: 'Хабарландыру | Хабарландырулар',
134
+ screencast: 'Экран жазбасы',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -280,11 +281,17 @@ export default {
280
281
  [WebitelApplications.CRM]: {
281
282
  sections: {
282
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
283
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
284
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
285
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
286
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
287
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
288
295
  },
289
296
  },
290
297
  },
@@ -407,7 +414,8 @@ export default {
407
414
  regExpValidator: 'Бұл тұрақты өрнек жарамсыз',
408
415
  domainValidator: 'Қате домен',
409
416
  decimalValidator: 'Ондық дәлдік { count } таңбадан артық болмауы керек',
410
- latinWithNumber: 'Код тек әріптерден (A-Z, a-z) және сандардан (0-9) тұруы керек және әріптен басталуы керек',
417
+ latinWithNumber:
418
+ 'Код тек әріптерден (A-Z, a-z) және сандардан (0-9) тұруы керек және әріптен басталуы керек',
411
419
  integer: 'Өріс тек бүтін сандарды қамтуы керек',
412
420
  nameAlreadyInUse: 'Бұл атау қолданыста',
413
421
  },
@@ -539,7 +547,8 @@ export default {
539
547
  empty: {
540
548
  text: {
541
549
  empty: 'Әзірге жазбалар жоқ',
542
- filters: 'Өкінішке орай, сіздің критерийлеріңізге сәйкес жазбалар табылмады',
550
+ filters:
551
+ 'Өкінішке орай, сіздің критерийлеріңізге сәйкес жазбалар табылмады',
543
552
  },
544
553
  },
545
554
  agentStatusSelect: {
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Kontakt | Kontakty',
132
132
  column: 'Kolumna | Kolumny',
133
133
  notification: 'Powiadomienie | Powiadomienia',
134
+ screencast: 'Nagranie ekranu',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -280,11 +281,17 @@ export default {
280
281
  [WebitelApplications.CRM]: {
281
282
  sections: {
282
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
283
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
284
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
285
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
286
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
287
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
288
295
  },
289
296
  },
290
297
  },
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Contact | Contacte',
132
132
  column: 'Coloană | Coloane',
133
133
  notification: 'Notificare | Notificări',
134
+ screencast: 'Înregistrare ecran',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -280,11 +281,17 @@ export default {
280
281
  [WebitelApplications.CRM]: {
281
282
  sections: {
282
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
283
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
284
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
285
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
286
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
287
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
288
295
  },
289
296
  },
290
297
  },
@@ -130,6 +130,7 @@ export default {
130
130
  emptyResultSearch: 'Поиск не дал результатов',
131
131
  contact: 'Контакт | Контакты',
132
132
  notification: 'Уведомление | Уведомления',
133
+ screencast: 'Запись экрана',
133
134
  },
134
135
  // date-related texts
135
136
  date: {
@@ -179,7 +180,8 @@ export default {
179
180
  customization: 'Персонализация | Персонализации',
180
181
  },
181
182
  customLookup: {
182
- customLookup: 'Пользовательский справочник | Пользовательские справочники',
183
+ customLookup:
184
+ 'Пользовательский справочник | Пользовательские справочники',
183
185
  },
184
186
  queue: {
185
187
  queue: 'Очередь | Очереди',
@@ -279,11 +281,17 @@ export default {
279
281
  [WebitelApplications.CRM]: {
280
282
  sections: {
281
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
282
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
283
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
284
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
285
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
286
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
287
295
  },
288
296
  },
289
297
  },
@@ -130,6 +130,7 @@ export default {
130
130
  emptyResultSearch: 'Пошук не дав результатів',
131
131
  contact: 'Контакт | Контакти',
132
132
  notification: 'Сповіщення',
133
+ screencast: 'Запис екрану',
133
134
  },
134
135
  // date-related texts
135
136
  date: {
@@ -279,11 +280,17 @@ export default {
279
280
  [WebitelApplications.CRM]: {
280
281
  sections: {
281
282
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
282
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
283
+ linked('objects.customization.customization') +
284
+ ': ' +
285
+ linked('objects.case'),
283
286
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
284
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
287
+ linked('objects.customization.customization') +
288
+ ': ' +
289
+ linked('objects.contact'),
285
290
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
286
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
291
+ linked('objects.customization.customization') +
292
+ ': ' +
293
+ linked('objects.customLookup'),
287
294
  },
288
295
  },
289
296
  },
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Kontakt | Kontaktlar',
132
132
  column: 'Ustun | Ustunlar',
133
133
  notification: 'Bildirishnoma | Bildirishnomalar',
134
+ screencast: 'Ekran yozuvi',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -279,11 +280,17 @@ export default {
279
280
  [WebitelApplications.CRM]: {
280
281
  sections: {
281
282
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
282
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
283
+ linked('objects.customization.customization') +
284
+ ': ' +
285
+ linked('objects.case'),
283
286
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
284
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
287
+ linked('objects.customization.customization') +
288
+ ': ' +
289
+ linked('objects.contact'),
285
290
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
286
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
291
+ linked('objects.customization.customization') +
292
+ ': ' +
293
+ linked('objects.customLookup'),
287
294
  },
288
295
  },
289
296
  },
@@ -131,6 +131,7 @@ export default {
131
131
  contact: 'Liên hệ | Các liên hệ',
132
132
  column: 'Cột | Các cột',
133
133
  notification: 'Thông báo | Các thông báo',
134
+ screencast: 'Ekran yozuvi',
134
135
  },
135
136
  // date-related texts
136
137
  date: {
@@ -280,11 +281,17 @@ export default {
280
281
  [WebitelApplications.CRM]: {
281
282
  sections: {
282
283
  [CrmSectionsNew.CasesExtensions]: ({ linked }) =>
283
- linked('objects.customization.customization') + ': ' + linked('objects.case'),
284
+ linked('objects.customization.customization') +
285
+ ': ' +
286
+ linked('objects.case'),
284
287
  [CrmSectionsNew.ContactsExtensions]: ({ linked }) =>
285
- linked('objects.customization.customization') + ': ' + linked('objects.contact'),
288
+ linked('objects.customization.customization') +
289
+ ': ' +
290
+ linked('objects.contact'),
286
291
  [CrmSectionsNew.CustomLookups]: ({ linked }) =>
287
- linked('objects.customization.customization') + ': ' + linked('objects.customLookup'),
292
+ linked('objects.customization.customization') +
293
+ ': ' +
294
+ linked('objects.customLookup'),
288
295
  },
289
296
  },
290
297
  },
@@ -135,6 +135,7 @@ export const createUserAccessStore = ({
135
135
  hasCreateAccess,
136
136
  hasUpdateAccess,
137
137
  hasDeleteAccess,
138
+ hasSectionVisibility,
138
139
 
139
140
  routeAccessGuard,
140
141
  hasSpecialGlobalActionAccess,
@@ -20,6 +20,7 @@ export const createUserinfoStore = () => {
20
20
  initialize: initializeAccessStore,
21
21
  routeAccessGuard,
22
22
  hasSpecialGlobalActionAccess,
23
+ hasSectionVisibility,
23
24
  } = accessStore;
24
25
 
25
26
  const userId = ref();
@@ -46,6 +47,7 @@ export const createUserinfoStore = () => {
46
47
  hasUpdateAccess,
47
48
  hasDeleteAccess,
48
49
 
50
+ hasSectionVisibility,
49
51
  routeAccessGuard,
50
52
  hasSpecialGlobalActionAccess,
51
53
  };
@@ -116,5 +116,5 @@ export interface UserAccessStore {
116
116
  hasSpecialGlobalActionAccess: (id: SpecialGlobalAction) => boolean;
117
117
 
118
118
  // hasApplicationVisibility: (app: WtApplication) => boolean;
119
- // hasSectionVisibility: (section: UiSection) => boolean;
119
+ hasSectionVisibility: (section: UiSection, object: WtObject) => boolean;
120
120
  }
@@ -1,11 +1,22 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- nav: unknown[];
3
- darkMode: boolean;
4
- appLogo?: Record<string, any>;
5
- $props: {
6
- readonly nav?: unknown[];
7
- readonly darkMode?: boolean;
8
- readonly appLogo?: Record<string, any>;
1
+ interface NavCard {
2
+ value: string;
3
+ route: string;
4
+ name: string;
5
+ text: string;
6
+ disabled: boolean;
7
+ images: {
8
+ light: string;
9
+ dark: string;
9
10
  };
10
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ }
12
+ interface AppLogo {
13
+ light: string;
14
+ dark: string;
15
+ }
16
+ type __VLS_Props = {
17
+ nav: NavCard[];
18
+ appLogo: AppLogo;
19
+ darkMode?: boolean;
20
+ };
21
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
22
  export default _default;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -107,6 +107,7 @@ declare const _default: import("vue-i18n").I18n<{
107
107
  contact: string;
108
108
  column: string;
109
109
  notification: string;
110
+ screencast: string;
110
111
  };
111
112
  date: {
112
113
  sec: string;
@@ -971,6 +972,7 @@ declare const _default: import("vue-i18n").I18n<{
971
972
  contact: string;
972
973
  column: string;
973
974
  notification: string;
975
+ screencast: string;
974
976
  };
975
977
  date: {
976
978
  sec: string;
@@ -1833,6 +1835,7 @@ declare const _default: import("vue-i18n").I18n<{
1833
1835
  emptyResultSearch: string;
1834
1836
  contact: string;
1835
1837
  notification: string;
1838
+ screencast: string;
1836
1839
  };
1837
1840
  date: {
1838
1841
  sec: string;
@@ -2697,6 +2700,7 @@ declare const _default: import("vue-i18n").I18n<{
2697
2700
  contact: string;
2698
2701
  column: string;
2699
2702
  notification: string;
2703
+ screencast: string;
2700
2704
  };
2701
2705
  date: {
2702
2706
  sec: string;
@@ -3559,6 +3563,7 @@ declare const _default: import("vue-i18n").I18n<{
3559
3563
  emptyResultSearch: string;
3560
3564
  contact: string;
3561
3565
  notification: string;
3566
+ screencast: string;
3562
3567
  };
3563
3568
  date: {
3564
3569
  sec: string;
@@ -4423,6 +4428,7 @@ declare const _default: import("vue-i18n").I18n<{
4423
4428
  contact: string;
4424
4429
  column: string;
4425
4430
  notification: string;
4431
+ screencast: string;
4426
4432
  };
4427
4433
  date: {
4428
4434
  sec: string;
@@ -5287,6 +5293,7 @@ declare const _default: import("vue-i18n").I18n<{
5287
5293
  contact: string;
5288
5294
  column: string;
5289
5295
  notification: string;
5296
+ screencast: string;
5290
5297
  };
5291
5298
  date: {
5292
5299
  sec: string;
@@ -6151,6 +6158,7 @@ declare const _default: import("vue-i18n").I18n<{
6151
6158
  contact: string;
6152
6159
  column: string;
6153
6160
  notification: string;
6161
+ screencast: string;
6154
6162
  };
6155
6163
  date: {
6156
6164
  sec: string;
@@ -7015,6 +7023,7 @@ declare const _default: import("vue-i18n").I18n<{
7015
7023
  contact: string;
7016
7024
  column: string;
7017
7025
  notification: string;
7026
+ screencast: string;
7018
7027
  };
7019
7028
  date: {
7020
7029
  sec: string;
@@ -116,6 +116,7 @@ export declare const messages: {
116
116
  contact: string;
117
117
  column: string;
118
118
  notification: string;
119
+ screencast: string;
119
120
  };
120
121
  date: {
121
122
  sec: string;
@@ -980,6 +981,7 @@ export declare const messages: {
980
981
  contact: string;
981
982
  column: string;
982
983
  notification: string;
984
+ screencast: string;
983
985
  };
984
986
  date: {
985
987
  sec: string;
@@ -1842,6 +1844,7 @@ export declare const messages: {
1842
1844
  emptyResultSearch: string;
1843
1845
  contact: string;
1844
1846
  notification: string;
1847
+ screencast: string;
1845
1848
  };
1846
1849
  date: {
1847
1850
  sec: string;
@@ -2706,6 +2709,7 @@ export declare const messages: {
2706
2709
  contact: string;
2707
2710
  column: string;
2708
2711
  notification: string;
2712
+ screencast: string;
2709
2713
  };
2710
2714
  date: {
2711
2715
  sec: string;
@@ -3568,6 +3572,7 @@ export declare const messages: {
3568
3572
  emptyResultSearch: string;
3569
3573
  contact: string;
3570
3574
  notification: string;
3575
+ screencast: string;
3571
3576
  };
3572
3577
  date: {
3573
3578
  sec: string;
@@ -4432,6 +4437,7 @@ export declare const messages: {
4432
4437
  contact: string;
4433
4438
  column: string;
4434
4439
  notification: string;
4440
+ screencast: string;
4435
4441
  };
4436
4442
  date: {
4437
4443
  sec: string;
@@ -5296,6 +5302,7 @@ export declare const messages: {
5296
5302
  contact: string;
5297
5303
  column: string;
5298
5304
  notification: string;
5305
+ screencast: string;
5299
5306
  };
5300
5307
  date: {
5301
5308
  sec: string;
@@ -6160,6 +6167,7 @@ export declare const messages: {
6160
6167
  contact: string;
6161
6168
  column: string;
6162
6169
  notification: string;
6170
+ screencast: string;
6163
6171
  };
6164
6172
  date: {
6165
6173
  sec: string;
@@ -7024,6 +7032,7 @@ export declare const messages: {
7024
7032
  contact: string;
7025
7033
  column: string;
7026
7034
  notification: string;
7035
+ screencast: string;
7027
7036
  };
7028
7037
  date: {
7029
7038
  sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -109,6 +109,7 @@ declare namespace _default {
109
109
  let emptyResultSearch: string;
110
110
  let contact: string;
111
111
  let notification: string;
112
+ let screencast: string;
112
113
  }
113
114
  export namespace date {
114
115
  let sec: string;
@@ -109,6 +109,7 @@ declare namespace _default {
109
109
  let emptyResultSearch: string;
110
110
  let contact: string;
111
111
  let notification: string;
112
+ let screencast: string;
112
113
  }
113
114
  export namespace date {
114
115
  let sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;
@@ -111,6 +111,7 @@ declare namespace _default {
111
111
  let contact: string;
112
112
  let column: string;
113
113
  let notification: string;
114
+ let screencast: string;
114
115
  }
115
116
  export namespace date {
116
117
  let sec: string;