@dxs-ts/eveli-ide 2.0.22 → 2.0.24
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/gitlog.json +474 -94
- package/dist/index.css +1 -1
- package/dist/index.d.ts +358 -13
- package/dist/index.js +26839 -26303
- package/dist/trace.json +0 -5
- package/package.json +1 -4
package/dist/index.d.ts
CHANGED
|
@@ -198,11 +198,17 @@ export declare interface CsrfShape {
|
|
|
198
198
|
|
|
199
199
|
export declare const CustomDatePicker: default_2.FC<CustomDatePickerProps>;
|
|
200
200
|
|
|
201
|
-
export declare
|
|
202
|
-
value
|
|
203
|
-
onChange
|
|
204
|
-
|
|
205
|
-
|
|
201
|
+
export declare type CustomDatePickerProps = Omit<XuiProps_2, 'value' | 'onChange'> & {
|
|
202
|
+
value?: string | Date | null;
|
|
203
|
+
onChange?: (d: Date | null) => void;
|
|
204
|
+
label?: default_2.ReactNode;
|
|
205
|
+
fullWidth?: boolean;
|
|
206
|
+
readonly?: boolean;
|
|
207
|
+
handleDateClear?: () => void;
|
|
208
|
+
error?: boolean;
|
|
209
|
+
size?: 'small' | 'medium';
|
|
210
|
+
onKeyDown?: default_2.KeyboardEventHandler;
|
|
211
|
+
};
|
|
206
212
|
|
|
207
213
|
export declare interface DashboardItem {
|
|
208
214
|
id: string;
|
|
@@ -262,6 +268,25 @@ export declare const DateField: default_2.FC<StyledInputFieldProps<string>>;
|
|
|
262
268
|
|
|
263
269
|
export declare const dateOptions: Intl.DateTimeFormatOptions;
|
|
264
270
|
|
|
271
|
+
declare const DatePicker: default_2.FC<DatePickerProps>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* DatePicker
|
|
275
|
+
* - Default visual behaviour remains the existing one ("classic")
|
|
276
|
+
* - Opt-in "mui-like" variant aligns visuals with MUI OutlinedInput
|
|
277
|
+
*/
|
|
278
|
+
declare interface DatePickerProps {
|
|
279
|
+
value: Date | null;
|
|
280
|
+
onChange: (newDate: Date | null) => void;
|
|
281
|
+
/** Stretch to container width (used in "mui-like" UIs) */
|
|
282
|
+
fullWidth?: boolean;
|
|
283
|
+
/** Control input height similar to MUI TextField */
|
|
284
|
+
size?: 'small' | 'medium';
|
|
285
|
+
/** Extra Box sx for outer wrapper */
|
|
286
|
+
sx?: SxProps<Theme>;
|
|
287
|
+
onValidity?: (isError: boolean) => void;
|
|
288
|
+
}
|
|
289
|
+
|
|
265
290
|
export declare const DateTimeField: default_2.FC<StyledInputFieldProps<string>>;
|
|
266
291
|
|
|
267
292
|
export declare const DEFAULT_CONFIGURATION_FILTERS: FormConfigurationFilters;
|
|
@@ -598,18 +623,21 @@ export declare type EveliComponentsVariants = {
|
|
|
598
623
|
}>;
|
|
599
624
|
};
|
|
600
625
|
|
|
601
|
-
export declare const EveliDatePicker:
|
|
626
|
+
export declare const EveliDatePicker: React_2.FC<EveliDatePickerProps>;
|
|
602
627
|
|
|
603
|
-
export declare type EveliDatePickerProps = {
|
|
604
|
-
|
|
605
|
-
|
|
628
|
+
export declare type EveliDatePickerProps = Omit<XuiProps, 'value' | 'onChange'> & {
|
|
629
|
+
/** Slot contract: allow string | Date | null | undefined */
|
|
630
|
+
value?: string | Date | null;
|
|
631
|
+
onChange?: (d: Date | null) => void;
|
|
632
|
+
/** Legacy ergonomics from old wrapper */
|
|
633
|
+
label?: React_2.ReactNode;
|
|
606
634
|
fullWidth?: boolean;
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
onKeyDown?:
|
|
635
|
+
readonly?: boolean;
|
|
636
|
+
/** Slots often pass this through; accept it to satisfy ElementType signature */
|
|
637
|
+
onKeyDown?: React_2.KeyboardEventHandler;
|
|
610
638
|
};
|
|
611
639
|
|
|
612
|
-
export declare const EveliDateTimeFormatter:
|
|
640
|
+
export declare const EveliDateTimeFormatter: React_2.FC<{
|
|
613
641
|
value: any;
|
|
614
642
|
variant?: 'text';
|
|
615
643
|
}>;
|
|
@@ -1549,6 +1577,9 @@ export declare const messages: {
|
|
|
1549
1577
|
'task.statistics.priorityCount': string;
|
|
1550
1578
|
'task.statistics.daily': string;
|
|
1551
1579
|
'task.statistics.overdue': string;
|
|
1580
|
+
'task.statistics.new_task_by_role': string;
|
|
1581
|
+
'task.statistics.task_by_questionnaire': string;
|
|
1582
|
+
'task.statistics.open_task_by_role': string;
|
|
1552
1583
|
'feedback.create.title': string;
|
|
1553
1584
|
'feedback.update.title': string;
|
|
1554
1585
|
'feedback.taskReferenceId': string;
|
|
@@ -2101,9 +2132,28 @@ export declare const messages: {
|
|
|
2101
2132
|
'queue.all_messages.status': string;
|
|
2102
2133
|
'queue.all_messages.body': string;
|
|
2103
2134
|
'queue.all_messages.created': string;
|
|
2135
|
+
workflows: string;
|
|
2104
2136
|
'explorer.pages': string;
|
|
2105
2137
|
'articles.searchAll': string;
|
|
2106
2138
|
'composer.article.selected': string;
|
|
2139
|
+
'resource.edit.workflows': string;
|
|
2140
|
+
'workflow.delete': string;
|
|
2141
|
+
'workflow.edit': string;
|
|
2142
|
+
'eveli.table.menu.filter.filterBy': string;
|
|
2143
|
+
'eveli.table.menu.filter.showAllItems': string;
|
|
2144
|
+
'eveli.table.menu.sort.ascending': string;
|
|
2145
|
+
'eveli.table.menu.sort.descending': string;
|
|
2146
|
+
'eveli.table.menu.sort.clearSorting': string;
|
|
2147
|
+
'eveli.table.menu.sort.chooseCols': string;
|
|
2148
|
+
'eveli.table.menu.sort.colsReset': string;
|
|
2149
|
+
'eveli.table.dialog.columns.chooseCols': string;
|
|
2150
|
+
'eveli.table.footer.tasks.total': string;
|
|
2151
|
+
'eveli.table.footer.tasks.rowsPerPage': string;
|
|
2152
|
+
'eveli.table.footer.pageNumber': string;
|
|
2153
|
+
'eveli.table.footer.rowsPerPage': string;
|
|
2154
|
+
'eveli.table.drawer.buttons.colsButton': string;
|
|
2155
|
+
'eveli.table.drawer.buttons.filtersButton': string;
|
|
2156
|
+
'eveli.table.resetAll': string;
|
|
2107
2157
|
'eveli.table.drawer.title.columns': string;
|
|
2108
2158
|
'eveli.table.drawer.title.filters': string;
|
|
2109
2159
|
'eveli.table.drawer.title.saved-filters': string;
|
|
@@ -2154,6 +2204,16 @@ export declare const messages: {
|
|
|
2154
2204
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
2155
2205
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
2156
2206
|
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
2207
|
+
'taskTable.col.header.priority': string;
|
|
2208
|
+
'taskTable.col.header.subject': string;
|
|
2209
|
+
'taskTable.col.header.addInfo': string;
|
|
2210
|
+
'taskTable.col.header.client': string;
|
|
2211
|
+
'taskTable.col.header.status': string;
|
|
2212
|
+
'taskTable.col.header.roles': string;
|
|
2213
|
+
'taskTable.col.header.assignee': string;
|
|
2214
|
+
'taskTable.col.header.due': string;
|
|
2215
|
+
'taskTable.col.header.created': string;
|
|
2216
|
+
'taskTable.col.header.archive': string;
|
|
2157
2217
|
'eveli.batches.batchView.averageRunTime': string;
|
|
2158
2218
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2159
2219
|
'taskcard.style.COMPACT': string;
|
|
@@ -2181,6 +2241,13 @@ export declare const messages: {
|
|
|
2181
2241
|
'task.priority.low': string;
|
|
2182
2242
|
'task.priority.normal': string;
|
|
2183
2243
|
'task.priority.high': string;
|
|
2244
|
+
'task.dueDate': string;
|
|
2245
|
+
'task.customerMessages': string;
|
|
2246
|
+
'task.edit': string;
|
|
2247
|
+
'task.customerName': string;
|
|
2248
|
+
'task.subject': string;
|
|
2249
|
+
'task.additionalInfo': string;
|
|
2250
|
+
'task.metaData': string;
|
|
2184
2251
|
'task.status.new': string;
|
|
2185
2252
|
'task.status.open': string;
|
|
2186
2253
|
'task.status.completed': string;
|
|
@@ -2335,6 +2402,9 @@ export declare const messages: {
|
|
|
2335
2402
|
'task.statistics.priorityCount': string;
|
|
2336
2403
|
'task.statistics.daily': string;
|
|
2337
2404
|
'task.statistics.overdue': string;
|
|
2405
|
+
'task.statistics.new_task_by_role': string;
|
|
2406
|
+
'task.statistics.task_by_questionnaire': string;
|
|
2407
|
+
'task.statistics.open_task_by_role': string;
|
|
2338
2408
|
'feedback.create.title': string;
|
|
2339
2409
|
'feedback.update.title': string;
|
|
2340
2410
|
'feedback.taskReferenceId': string;
|
|
@@ -2352,7 +2422,18 @@ export declare const messages: {
|
|
|
2352
2422
|
'feedback.isPublished': string;
|
|
2353
2423
|
'feedback.delete.confirmTitle': string;
|
|
2354
2424
|
'feedback.delete.confirmText': string;
|
|
2425
|
+
'feedback.main_topic.employmentimmigration': string;
|
|
2355
2426
|
'feedback.main_topic.youthservice': string;
|
|
2427
|
+
'feedback.main_topic.freetimeculture': string;
|
|
2428
|
+
'feedback.main_topic.cityconstruction': string;
|
|
2429
|
+
'feedback.main_topic.exercise': string;
|
|
2430
|
+
'feedback.main_topic.communication': string;
|
|
2431
|
+
'feedback.sub_topic.otherfeedback': string;
|
|
2432
|
+
'feedback.sub_topic.familywithchildren': string;
|
|
2433
|
+
'feedback.sub_topic.libraryservices': string;
|
|
2434
|
+
'feedback.sub_topic.streetmaintservices': string;
|
|
2435
|
+
'feedback.sub_topic.exercise': string;
|
|
2436
|
+
'feedback.sub_topic.brand': string;
|
|
2356
2437
|
'help.title': string;
|
|
2357
2438
|
'attachmentView.title': string;
|
|
2358
2439
|
'attachmentTableHeader.size': string;
|
|
@@ -2410,17 +2491,28 @@ export declare const messages: {
|
|
|
2410
2491
|
status: string;
|
|
2411
2492
|
created: string;
|
|
2412
2493
|
remove: string;
|
|
2494
|
+
'site.content.empty': string;
|
|
2413
2495
|
'composer.select.article': string;
|
|
2496
|
+
'search.field.placeholder': string;
|
|
2497
|
+
'search.results.title': string;
|
|
2414
2498
|
'search.field.label': string;
|
|
2499
|
+
'search.all': string;
|
|
2415
2500
|
'search.articles': string;
|
|
2416
2501
|
'search.services': string;
|
|
2417
2502
|
'search.links': string;
|
|
2418
2503
|
'search.templates': string;
|
|
2504
|
+
'search.flows': string;
|
|
2505
|
+
'search.decisions': string;
|
|
2419
2506
|
'activities.article.title': string;
|
|
2507
|
+
'activities.article.desc': string;
|
|
2420
2508
|
'activities.locale.title': string;
|
|
2509
|
+
'activities.locale.desc': string;
|
|
2421
2510
|
'activities.page.title': string;
|
|
2511
|
+
'activities.page.desc': string;
|
|
2422
2512
|
'activities.link.title': string;
|
|
2513
|
+
'activities.link.desc': string;
|
|
2423
2514
|
'activities.release.title': string;
|
|
2515
|
+
'activities.release.desc': string;
|
|
2424
2516
|
'activities.migration.title': string;
|
|
2425
2517
|
'migration.create': string;
|
|
2426
2518
|
'activities.migration.desc': string;
|
|
@@ -2428,6 +2520,8 @@ export declare const messages: {
|
|
|
2428
2520
|
'activities.version.composer': string;
|
|
2429
2521
|
'activities.version.core': string;
|
|
2430
2522
|
'dialog.about.title': string;
|
|
2523
|
+
'dialog.about.preamble': string;
|
|
2524
|
+
'dialog.about.trademark': string;
|
|
2431
2525
|
templates: string;
|
|
2432
2526
|
'template.name': string;
|
|
2433
2527
|
'template.name.desc': string;
|
|
@@ -2435,14 +2529,26 @@ export declare const messages: {
|
|
|
2435
2529
|
'template.edit': string;
|
|
2436
2530
|
'template.type': string;
|
|
2437
2531
|
'template.page': string;
|
|
2532
|
+
'template.page.desc': string;
|
|
2533
|
+
'template.description': string;
|
|
2438
2534
|
'template.desc': string;
|
|
2535
|
+
'template.description.desc': string;
|
|
2439
2536
|
'template.delete': string;
|
|
2537
|
+
'template.delete.message': string;
|
|
2538
|
+
'template.newpage.none': string;
|
|
2539
|
+
'templates.templatesview.description': string;
|
|
2540
|
+
'templates.intro': string;
|
|
2440
2541
|
services: string;
|
|
2441
2542
|
'services.create': string;
|
|
2543
|
+
'services.desc': string;
|
|
2442
2544
|
'services.add': string;
|
|
2545
|
+
'services.change': string;
|
|
2546
|
+
'services.edit': string;
|
|
2443
2547
|
'services.technicalname': string;
|
|
2548
|
+
'services.selected': string;
|
|
2444
2549
|
'services.modeselect.title': string;
|
|
2445
2550
|
'services.modeselect.label': string;
|
|
2551
|
+
'services.devmode.helper': string;
|
|
2446
2552
|
'services.devmode.label': string;
|
|
2447
2553
|
'services.devmode.tooltip': string;
|
|
2448
2554
|
'services.disabledmode.label': string;
|
|
@@ -2454,6 +2560,7 @@ export declare const messages: {
|
|
|
2454
2560
|
'services.none.label': string;
|
|
2455
2561
|
'services.none.helper': string;
|
|
2456
2562
|
'services.none.tooltip': string;
|
|
2563
|
+
'services.anonmode.helper': string;
|
|
2457
2564
|
'services.anonmode.label': string;
|
|
2458
2565
|
'services.anonmode.tooltip': string;
|
|
2459
2566
|
'services.flowName': string;
|
|
@@ -2466,12 +2573,29 @@ export declare const messages: {
|
|
|
2466
2573
|
'services.enddate': string;
|
|
2467
2574
|
'services.enddate.description': string;
|
|
2468
2575
|
'services.delete': string;
|
|
2576
|
+
'services.delete.desc': string;
|
|
2469
2577
|
'snack.article.createdMessage': string;
|
|
2470
2578
|
'snack.article.deletedMessage': string;
|
|
2471
2579
|
'snack.article.editedMessage': string;
|
|
2472
2580
|
'snack.page.createdMessage': string;
|
|
2473
2581
|
'snack.page.deletedMessage': string;
|
|
2474
2582
|
'snack.page.savedMessage': string;
|
|
2583
|
+
'snack.page.missingTitle': string;
|
|
2584
|
+
'snack.link.createdMessage': string;
|
|
2585
|
+
'snack.link.deletedMessage': string;
|
|
2586
|
+
'snack.link.editedMessage': string;
|
|
2587
|
+
'snack.workflow.createdMessage': string;
|
|
2588
|
+
'snack.workflow.deletedMessage': string;
|
|
2589
|
+
'snack.workflow.editedMessage': string;
|
|
2590
|
+
'snack.locale.createdMessage': string;
|
|
2591
|
+
'snack.locale.enabled': string;
|
|
2592
|
+
'snack.locale.disabled': string;
|
|
2593
|
+
'snack.template.createdMessage': string;
|
|
2594
|
+
'snack.template.deletedMessage': string;
|
|
2595
|
+
'snack.template.editedMessage': string;
|
|
2596
|
+
'snack.release.createdMessage': string;
|
|
2597
|
+
'snack.release.deletedMessage': string;
|
|
2598
|
+
'snack.migration.createdMessage': string;
|
|
2475
2599
|
'toolbar.save': string;
|
|
2476
2600
|
'toolbar.stencil': string;
|
|
2477
2601
|
'toolbar.wrench': string;
|
|
@@ -2489,7 +2613,11 @@ export declare const messages: {
|
|
|
2489
2613
|
'sitelocale.label.select.alreadyDefined': string;
|
|
2490
2614
|
'sitelocale.label.table.editLocaleValue': string;
|
|
2491
2615
|
'locales.label.table.title': string;
|
|
2616
|
+
'locales.label.title.helper': string;
|
|
2492
2617
|
'locales.label.table.value': string;
|
|
2618
|
+
'locales.label.table.noneSet': string;
|
|
2619
|
+
'locales.enabledMessage': string;
|
|
2620
|
+
'locales.disabledMessage': string;
|
|
2493
2621
|
'transferlist.noItemsSelected': string;
|
|
2494
2622
|
'transferlist.search': string;
|
|
2495
2623
|
'transferlist.noSearchResults': string;
|
|
@@ -2503,6 +2631,7 @@ export declare const messages: {
|
|
|
2503
2631
|
'article.links.selectedlinks': string;
|
|
2504
2632
|
'article.composer.title': string;
|
|
2505
2633
|
'article.composer.parent': string;
|
|
2634
|
+
'article.parent.helper': string;
|
|
2506
2635
|
'article.composer.parent.unselected': string;
|
|
2507
2636
|
'article.create': string;
|
|
2508
2637
|
'article.name': string;
|
|
@@ -2515,6 +2644,7 @@ export declare const messages: {
|
|
|
2515
2644
|
articleservices: string;
|
|
2516
2645
|
articlelinks: string;
|
|
2517
2646
|
'article.composer.orderhelper': string;
|
|
2647
|
+
'article.timestamps.title': string;
|
|
2518
2648
|
'button.create': string;
|
|
2519
2649
|
'button.add': string;
|
|
2520
2650
|
'button.disable': string;
|
|
@@ -2545,6 +2675,7 @@ export declare const messages: {
|
|
|
2545
2675
|
'locale.composer.placeholder': string;
|
|
2546
2676
|
'locale.composer.helper': string;
|
|
2547
2677
|
'locale.overview': string;
|
|
2678
|
+
'locales.overview.description': string;
|
|
2548
2679
|
'locales.content': string;
|
|
2549
2680
|
'locales.nocontent': string;
|
|
2550
2681
|
'locales.nopage': string;
|
|
@@ -2824,13 +2955,86 @@ export declare const messages: {
|
|
|
2824
2955
|
'queue.all_messages.created': string;
|
|
2825
2956
|
workflows: string;
|
|
2826
2957
|
'explorer.pages': string;
|
|
2958
|
+
'articles.searchAll': string;
|
|
2959
|
+
'composer.article.selected': string;
|
|
2827
2960
|
'resource.edit.workflows': string;
|
|
2828
2961
|
'workflow.delete': string;
|
|
2829
2962
|
'workflow.edit': string;
|
|
2963
|
+
'eveli.table.menu.filter.filterBy': string;
|
|
2964
|
+
'eveli.table.menu.filter.showAllItems': string;
|
|
2965
|
+
'eveli.table.menu.sort.ascending': string;
|
|
2966
|
+
'eveli.table.menu.sort.descending': string;
|
|
2967
|
+
'eveli.table.menu.sort.clearSorting': string;
|
|
2968
|
+
'eveli.table.menu.sort.chooseCols': string;
|
|
2969
|
+
'eveli.table.menu.sort.colsReset': string;
|
|
2970
|
+
'eveli.table.dialog.columns.chooseCols': string;
|
|
2971
|
+
'eveli.table.footer.tasks.total': string;
|
|
2972
|
+
'eveli.table.footer.tasks.rowsPerPage': string;
|
|
2973
|
+
'eveli.table.footer.pageNumber': string;
|
|
2974
|
+
'eveli.table.footer.rowsPerPage': string;
|
|
2975
|
+
'eveli.table.drawer.buttons.colsButton': string;
|
|
2976
|
+
'eveli.table.drawer.buttons.filtersButton': string;
|
|
2977
|
+
'eveli.table.resetAll': string;
|
|
2830
2978
|
'eveli.table.drawer.title.columns': string;
|
|
2831
2979
|
'eveli.table.drawer.title.filters': string;
|
|
2832
2980
|
'eveli.table.drawer.title.saved-filters': string;
|
|
2833
2981
|
'eveli.table.drawer.title.export-data': string;
|
|
2982
|
+
'eveli.error.general': string;
|
|
2983
|
+
'eveli.error.notFound': string;
|
|
2984
|
+
'eveli.error.backToHome': string;
|
|
2985
|
+
'eveli.userProfile.title': string;
|
|
2986
|
+
'eveli.userProfile.id': string;
|
|
2987
|
+
'eveli.userProfile.displayName': string;
|
|
2988
|
+
'eveli.userProfile.firstAndLastName': string;
|
|
2989
|
+
'eveli.userProfile.created': string;
|
|
2990
|
+
'eveli.userProfile.updated': string;
|
|
2991
|
+
'eveli.userProfile.firstName': string;
|
|
2992
|
+
'eveli.userProfile.lastName': string;
|
|
2993
|
+
'eveli.userProfile.email': string;
|
|
2994
|
+
'eveli.userProfile.notificationSettings': string;
|
|
2995
|
+
'eveli.userProfile.userRoles': string;
|
|
2996
|
+
'eveli.userProfile.userPermissions': string;
|
|
2997
|
+
'eveli.userProfile.editDetails': string;
|
|
2998
|
+
'eveli.userProfile.currentDetails': string;
|
|
2999
|
+
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
3000
|
+
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
3001
|
+
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
3002
|
+
'eveli.userProfile.tenantConfig.select.feedback-visually-disabled': string;
|
|
3003
|
+
'eveli.userProfile.tenantConfig.select.feedback-visually-disabled.desc': string;
|
|
3004
|
+
'eveli.userProfile.tenantConfig.select.queues-visually-disabled': string;
|
|
3005
|
+
'eveli.userProfile.tenantConfig.select.queues-visually-disabled.desc': string;
|
|
3006
|
+
'eveli.userProfile.tenantConfig.select.stencil-disabled': string;
|
|
3007
|
+
'eveli.userProfile.tenantConfig.select.stencil-disabled.desc': string;
|
|
3008
|
+
'eveli.userProfile.tenantConfig.select.wrench-disabled': string;
|
|
3009
|
+
'eveli.userProfile.tenantConfig.select.wrench-disabled.desc': string;
|
|
3010
|
+
'eveli.userProfile.tenantConfig.select.wrench-only': string;
|
|
3011
|
+
'eveli.userProfile.tenantConfig.select.wrench-only.desc': string;
|
|
3012
|
+
'eveli.userProfile.tenantConfig.select.batches': string;
|
|
3013
|
+
'eveli.userProfile.tenantConfig.select.batches.desc': string;
|
|
3014
|
+
'eveli.userProfile.tenantConfig.select.eveli_publication_only': string;
|
|
3015
|
+
'eveli.userProfile.tenantConfig.select.eveli_publication_only.desc': string;
|
|
3016
|
+
'eveli.userProfile.tenantConfig.select.smart_tables': string;
|
|
3017
|
+
'eveli.userProfile.tenantConfig.select.smart_tables.desc': string;
|
|
3018
|
+
'eveli.userProfile.tenantConfig.select.stencil_locale_filter': string;
|
|
3019
|
+
'eveli.userProfile.tenantConfig.select.stencil_locale_filter.desc': string;
|
|
3020
|
+
'eveli.userProfile.tenantConfig.select.user_profile': string;
|
|
3021
|
+
'eveli.userProfile.tenantConfig.select.user_profile.desc': string;
|
|
3022
|
+
'eveli.userProfile.tenantConfig.select.smart_task': string;
|
|
3023
|
+
'eveli.userProfile.tenantConfig.select.smart_task.desc': string;
|
|
3024
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit': string;
|
|
3025
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
3026
|
+
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
3027
|
+
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
3028
|
+
'taskTable.col.header.priority': string;
|
|
3029
|
+
'taskTable.col.header.subject': string;
|
|
3030
|
+
'taskTable.col.header.addInfo': string;
|
|
3031
|
+
'taskTable.col.header.client': string;
|
|
3032
|
+
'taskTable.col.header.status': string;
|
|
3033
|
+
'taskTable.col.header.roles': string;
|
|
3034
|
+
'taskTable.col.header.assignee': string;
|
|
3035
|
+
'taskTable.col.header.due': string;
|
|
3036
|
+
'taskTable.col.header.created': string;
|
|
3037
|
+
'taskTable.col.header.archive': string;
|
|
2834
3038
|
'eveli.batches.batchView.averageRunTime': string;
|
|
2835
3039
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2836
3040
|
'taskcard.style.COMPACT': string;
|
|
@@ -2858,6 +3062,13 @@ export declare const messages: {
|
|
|
2858
3062
|
'task.priority.low': string;
|
|
2859
3063
|
'task.priority.normal': string;
|
|
2860
3064
|
'task.priority.high': string;
|
|
3065
|
+
'task.dueDate': string;
|
|
3066
|
+
'task.customerMessages': string;
|
|
3067
|
+
'task.edit': string;
|
|
3068
|
+
'task.customerName': string;
|
|
3069
|
+
'task.subject': string;
|
|
3070
|
+
'task.additionalInfo': string;
|
|
3071
|
+
'task.metaData': string;
|
|
2861
3072
|
'task.status.new': string;
|
|
2862
3073
|
'task.status.open': string;
|
|
2863
3074
|
'task.status.completed': string;
|
|
@@ -2951,6 +3162,7 @@ export declare const messages: {
|
|
|
2951
3162
|
'button.save': string;
|
|
2952
3163
|
'button.dismiss': string;
|
|
2953
3164
|
'button.select': string;
|
|
3165
|
+
'button.startBatch': string;
|
|
2954
3166
|
'error.minTextLength': string;
|
|
2955
3167
|
'error.maxTextLength': string;
|
|
2956
3168
|
'error.valueRequired': string;
|
|
@@ -2980,6 +3192,7 @@ export declare const messages: {
|
|
|
2980
3192
|
'processTableHeader.status': string;
|
|
2981
3193
|
'processTableHeader.created': string;
|
|
2982
3194
|
'processTableHeader.questionnaireId': string;
|
|
3195
|
+
'processTableHeader.taskRef': string;
|
|
2983
3196
|
'process.status.ANSWERED': string;
|
|
2984
3197
|
'process.status.CREATED': string;
|
|
2985
3198
|
'process.status.ANSWERING': string;
|
|
@@ -3010,6 +3223,9 @@ export declare const messages: {
|
|
|
3010
3223
|
'task.statistics.priorityCount': string;
|
|
3011
3224
|
'task.statistics.daily': string;
|
|
3012
3225
|
'task.statistics.overdue': string;
|
|
3226
|
+
'task.statistics.new_task_by_role': string;
|
|
3227
|
+
'task.statistics.task_by_questionnaire': string;
|
|
3228
|
+
'task.statistics.open_task_by_role': string;
|
|
3013
3229
|
'feedback.create.title': string;
|
|
3014
3230
|
'feedback.update.title': string;
|
|
3015
3231
|
'feedback.taskReferenceId': string;
|
|
@@ -3027,6 +3243,18 @@ export declare const messages: {
|
|
|
3027
3243
|
'feedback.isPublished': string;
|
|
3028
3244
|
'feedback.delete.confirmTitle': string;
|
|
3029
3245
|
'feedback.delete.confirmText': string;
|
|
3246
|
+
'feedback.main_topic.employmentimmigration': string;
|
|
3247
|
+
'feedback.main_topic.youthservice': string;
|
|
3248
|
+
'feedback.main_topic.freetimeculture': string;
|
|
3249
|
+
'feedback.main_topic.cityconstruction': string;
|
|
3250
|
+
'feedback.main_topic.exercise': string;
|
|
3251
|
+
'feedback.main_topic.communication': string;
|
|
3252
|
+
'feedback.sub_topic.otherfeedback': string;
|
|
3253
|
+
'feedback.sub_topic.familywithchildren': string;
|
|
3254
|
+
'feedback.sub_topic.libraryservices': string;
|
|
3255
|
+
'feedback.sub_topic.streetmaintservices': string;
|
|
3256
|
+
'feedback.sub_topic.exercise': string;
|
|
3257
|
+
'feedback.sub_topic.brand': string;
|
|
3030
3258
|
'help.title': string;
|
|
3031
3259
|
'attachmentView.title': string;
|
|
3032
3260
|
'attachmentTableHeader.size': string;
|
|
@@ -3209,6 +3437,7 @@ export declare const messages: {
|
|
|
3209
3437
|
'locales.label.table.title': string;
|
|
3210
3438
|
'locales.label.title.helper': string;
|
|
3211
3439
|
'locales.label.table.value': string;
|
|
3440
|
+
'locales.label.table.noneSet': string;
|
|
3212
3441
|
'locales.enabledMessage': string;
|
|
3213
3442
|
'locales.disabledMessage': string;
|
|
3214
3443
|
'transferlist.noItemsSelected': string;
|
|
@@ -3237,6 +3466,7 @@ export declare const messages: {
|
|
|
3237
3466
|
articleservices: string;
|
|
3238
3467
|
articlelinks: string;
|
|
3239
3468
|
'article.composer.orderhelper': string;
|
|
3469
|
+
'article.timestamps.title': string;
|
|
3240
3470
|
'button.create': string;
|
|
3241
3471
|
'button.add': string;
|
|
3242
3472
|
'button.disable': string;
|
|
@@ -3548,10 +3778,93 @@ export declare const messages: {
|
|
|
3548
3778
|
'queue.all_messages.status': string;
|
|
3549
3779
|
'queue.all_messages.body': string;
|
|
3550
3780
|
'queue.all_messages.created': string;
|
|
3781
|
+
workflows: string;
|
|
3782
|
+
'explorer.pages': string;
|
|
3783
|
+
'articles.searchAll': string;
|
|
3784
|
+
'composer.article.selected': string;
|
|
3785
|
+
'resource.edit.workflows': string;
|
|
3786
|
+
'workflow.delete': string;
|
|
3787
|
+
'workflow.edit': string;
|
|
3788
|
+
'eveli.table.menu.filter.filterBy': string;
|
|
3789
|
+
'eveli.table.menu.filter.showAllItems': string;
|
|
3790
|
+
'eveli.table.menu.sort.ascending': string;
|
|
3791
|
+
'eveli.table.menu.sort.descending': string;
|
|
3792
|
+
'eveli.table.menu.sort.clearSorting': string;
|
|
3793
|
+
'eveli.table.menu.sort.chooseCols': string;
|
|
3794
|
+
'eveli.table.menu.sort.colsReset': string;
|
|
3795
|
+
'eveli.table.dialog.columns.chooseCols': string;
|
|
3796
|
+
'eveli.table.footer.tasks.total': string;
|
|
3797
|
+
'eveli.table.footer.tasks.rowsPerPage': string;
|
|
3798
|
+
'eveli.table.footer.pageNumber': string;
|
|
3799
|
+
'eveli.table.footer.rowsPerPage': string;
|
|
3800
|
+
'eveli.table.drawer.buttons.colsButton': string;
|
|
3801
|
+
'eveli.table.drawer.buttons.filtersButton': string;
|
|
3802
|
+
'eveli.table.resetAll': string;
|
|
3551
3803
|
'eveli.table.drawer.title.columns': string;
|
|
3552
3804
|
'eveli.table.drawer.title.filters': string;
|
|
3553
3805
|
'eveli.table.drawer.title.saved-filters': string;
|
|
3554
3806
|
'eveli.table.drawer.title.export-data': string;
|
|
3807
|
+
'eveli.error.general': string;
|
|
3808
|
+
'eveli.error.notFound': string;
|
|
3809
|
+
'eveli.error.backToHome': string;
|
|
3810
|
+
'eveli.userProfile.title': string;
|
|
3811
|
+
'eveli.userProfile.id': string;
|
|
3812
|
+
'eveli.userProfile.displayName': string;
|
|
3813
|
+
'eveli.userProfile.firstAndLastName': string;
|
|
3814
|
+
'eveli.userProfile.created': string;
|
|
3815
|
+
'eveli.userProfile.updated': string;
|
|
3816
|
+
'eveli.userProfile.firstName': string;
|
|
3817
|
+
'eveli.userProfile.lastName': string;
|
|
3818
|
+
'eveli.userProfile.email': string;
|
|
3819
|
+
'eveli.userProfile.notificationSettings': string;
|
|
3820
|
+
'eveli.userProfile.userRoles': string;
|
|
3821
|
+
'eveli.userProfile.userPermissions': string;
|
|
3822
|
+
'eveli.userProfile.editDetails': string;
|
|
3823
|
+
'eveli.userProfile.currentDetails': string;
|
|
3824
|
+
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
3825
|
+
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
3826
|
+
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
3827
|
+
'eveli.userProfile.tenantConfig.select.feedback-visually-disabled': string;
|
|
3828
|
+
'eveli.userProfile.tenantConfig.select.feedback-visually-disabled.desc': string;
|
|
3829
|
+
'eveli.userProfile.tenantConfig.select.queues-visually-disabled': string;
|
|
3830
|
+
'eveli.userProfile.tenantConfig.select.queues-visually-disabled.desc': string;
|
|
3831
|
+
'eveli.userProfile.tenantConfig.select.stencil-disabled': string;
|
|
3832
|
+
'eveli.userProfile.tenantConfig.select.stencil-disabled.desc': string;
|
|
3833
|
+
'eveli.userProfile.tenantConfig.select.wrench-disabled': string;
|
|
3834
|
+
'eveli.userProfile.tenantConfig.select.wrench-disabled.desc': string;
|
|
3835
|
+
'eveli.userProfile.tenantConfig.select.wrench-only': string;
|
|
3836
|
+
'eveli.userProfile.tenantConfig.select.wrench-only.desc': string;
|
|
3837
|
+
'eveli.userProfile.tenantConfig.select.batches': string;
|
|
3838
|
+
'eveli.userProfile.tenantConfig.select.batches.desc': string;
|
|
3839
|
+
'eveli.userProfile.tenantConfig.select.eveli_publication_only': string;
|
|
3840
|
+
'eveli.userProfile.tenantConfig.select.eveli_publication_only.desc': string;
|
|
3841
|
+
'eveli.userProfile.tenantConfig.select.smart_tables': string;
|
|
3842
|
+
'eveli.userProfile.tenantConfig.select.smart_tables.desc': string;
|
|
3843
|
+
'eveli.userProfile.tenantConfig.select.stencil_locale_filter': string;
|
|
3844
|
+
'eveli.userProfile.tenantConfig.select.stencil_locale_filter.desc': string;
|
|
3845
|
+
'eveli.userProfile.tenantConfig.select.user_profile': string;
|
|
3846
|
+
'eveli.userProfile.tenantConfig.select.user_profile.desc': string;
|
|
3847
|
+
'eveli.userProfile.tenantConfig.select.smart_task': string;
|
|
3848
|
+
'eveli.userProfile.tenantConfig.select.smart_task.desc': string;
|
|
3849
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit': string;
|
|
3850
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
3851
|
+
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
3852
|
+
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
3853
|
+
'taskTable.col.header.priority': string;
|
|
3854
|
+
'taskTable.col.header.subject': string;
|
|
3855
|
+
'taskTable.col.header.addInfo': string;
|
|
3856
|
+
'taskTable.col.header.client': string;
|
|
3857
|
+
'taskTable.col.header.status': string;
|
|
3858
|
+
'taskTable.col.header.roles': string;
|
|
3859
|
+
'taskTable.col.header.assignee': string;
|
|
3860
|
+
'taskTable.col.header.due': string;
|
|
3861
|
+
'taskTable.col.header.created': string;
|
|
3862
|
+
'taskTable.col.header.archive': string;
|
|
3863
|
+
'eveli.batches.batchView.averageRunTime': string;
|
|
3864
|
+
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3865
|
+
'taskcard.style.COMPACT': string;
|
|
3866
|
+
'taskcard.style.DEFAULT': string;
|
|
3867
|
+
'taskcard.style.LARGE': string;
|
|
3555
3868
|
};
|
|
3556
3869
|
};
|
|
3557
3870
|
|
|
@@ -4594,6 +4907,34 @@ declare class RootFileFetch_2 {
|
|
|
4594
4907
|
}, {}, {
|
|
4595
4908
|
addAttachment: (taskId: string, file: File) => Promise<Response | void>;
|
|
4596
4909
|
}>;
|
|
4910
|
+
} | {
|
|
4911
|
+
id: "worker/rest/api/tasks/$taskId/form-assignments.GET";
|
|
4912
|
+
path: "worker/rest/api/tasks/$taskId/form-assignments";
|
|
4913
|
+
method: "GET";
|
|
4914
|
+
params: {
|
|
4915
|
+
taskId: string;
|
|
4916
|
+
};
|
|
4917
|
+
hook: HookImpl<"worker/rest/api/tasks/$taskId/form-assignments.GET", Hook<{}, {
|
|
4918
|
+
getTaskFormAssignment: (taskId: string) => Promise<TaskApi.FormAssignment[]>;
|
|
4919
|
+
}>, "worker/rest/api/tasks/$taskId/form-assignments", "GET", {
|
|
4920
|
+
taskId: string;
|
|
4921
|
+
}, {}, {
|
|
4922
|
+
getTaskFormAssignment: (taskId: string) => Promise<TaskApi.FormAssignment[]>;
|
|
4923
|
+
}>;
|
|
4924
|
+
} | {
|
|
4925
|
+
id: "worker/rest/api/tasks/$taskId/form-assignments.POST";
|
|
4926
|
+
path: "worker/rest/api/tasks/$taskId/form-assignments";
|
|
4927
|
+
method: "POST";
|
|
4928
|
+
params: {
|
|
4929
|
+
taskId: string;
|
|
4930
|
+
};
|
|
4931
|
+
hook: HookImpl<"worker/rest/api/tasks/$taskId/form-assignments.POST", Hook<{}, {
|
|
4932
|
+
createManyTaskCustomerAssignments: (taskId: string, request: TaskApi.CreateTaskCustomerAssignmentCommand[]) => Promise<TaskApi.Task>;
|
|
4933
|
+
}>, "worker/rest/api/tasks/$taskId/form-assignments", "POST", {
|
|
4934
|
+
taskId: string;
|
|
4935
|
+
}, {}, {
|
|
4936
|
+
createManyTaskCustomerAssignments: (taskId: string, request: TaskApi.CreateTaskCustomerAssignmentCommand[]) => Promise<TaskApi.Task>;
|
|
4937
|
+
}>;
|
|
4597
4938
|
} | {
|
|
4598
4939
|
id: "worker/rest/api/tasks/$taskId.GET";
|
|
4599
4940
|
path: "worker/rest/api/tasks/$taskId";
|
|
@@ -5353,6 +5694,10 @@ export declare class Visitor_UploadFormJson {
|
|
|
5353
5694
|
private handleFailure;
|
|
5354
5695
|
}
|
|
5355
5696
|
|
|
5697
|
+
declare type XuiProps = React_2.ComponentProps<typeof DatePicker>;
|
|
5698
|
+
|
|
5699
|
+
declare type XuiProps_2 = default_2.ComponentProps<typeof DatePicker>;
|
|
5700
|
+
|
|
5356
5701
|
export { }
|
|
5357
5702
|
|
|
5358
5703
|
|