@valtimo/dashboard 10.6.0 → 10.7.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/esm2020/lib/components/dashboard/dashboard.component.mjs +85 -0
- package/esm2020/lib/components/widget-dashboard/widget-dashboard.component.mjs +56 -0
- package/esm2020/lib/components/widget-dashboard-content/widget-dashboard-content.component.mjs +122 -0
- package/esm2020/lib/constants/data-features.constants.mjs +21 -0
- package/esm2020/lib/constants/index.mjs +19 -0
- package/esm2020/lib/constants/injection-tokens.mjs +20 -0
- package/esm2020/lib/constants/layout.constants.mjs +19 -0
- package/esm2020/lib/dashboard-routing.module.mjs +10 -10
- package/esm2020/lib/dashboard.module.mjs +37 -13
- package/esm2020/lib/data-sources/case-count/case-count.module.mjs +61 -0
- package/esm2020/lib/data-sources/case-count/case-count.specification.mjs +74 -0
- package/esm2020/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.mjs +149 -0
- package/esm2020/lib/data-sources/case-count/components/case-count-configuration/index.mjs +17 -0
- package/esm2020/lib/data-sources/case-count/components/index.mjs +17 -0
- package/esm2020/lib/data-sources/case-count/index.mjs +20 -0
- package/esm2020/lib/data-sources/case-count/models/case-count.model.mjs +26 -0
- package/esm2020/lib/data-sources/case-count/models/index.mjs +17 -0
- package/esm2020/lib/data-sources/index.mjs +18 -0
- package/esm2020/lib/data-sources/test/components/index.mjs +17 -0
- package/esm2020/lib/data-sources/test/components/test-configuration/index.mjs +17 -0
- package/esm2020/lib/data-sources/test/components/test-configuration/test-configuration.component.mjs +80 -0
- package/esm2020/lib/data-sources/test/index.mjs +20 -0
- package/esm2020/lib/data-sources/test/models/index.mjs +17 -0
- package/esm2020/lib/data-sources/test/models/test.model.mjs +17 -0
- package/esm2020/lib/data-sources/test/test.module.mjs +39 -0
- package/esm2020/lib/data-sources/test/test.specification.mjs +44 -0
- package/esm2020/lib/display-types/bar-chart/bar-chart.module.mjs +36 -0
- package/esm2020/lib/display-types/bar-chart/bar-chart.specification.mjs +35 -0
- package/esm2020/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.mjs +32 -0
- package/esm2020/lib/display-types/bar-chart/components/bar-chart-display/index.mjs +17 -0
- package/esm2020/lib/display-types/bar-chart/components/index.mjs +17 -0
- package/esm2020/lib/display-types/bar-chart/index.mjs +20 -0
- package/esm2020/lib/display-types/bar-chart/models/bar-chart.model.mjs +17 -0
- package/esm2020/lib/display-types/bar-chart/models/index.mjs +17 -0
- package/esm2020/lib/display-types/big-number/big-number.module.mjs +53 -0
- package/esm2020/lib/display-types/big-number/big-number.specification.mjs +67 -0
- package/esm2020/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.mjs +124 -0
- package/esm2020/lib/display-types/big-number/components/big-number-configuration/index.mjs +17 -0
- package/esm2020/lib/display-types/big-number/components/big-number-display/big-number-display.component.mjs +56 -0
- package/esm2020/lib/display-types/big-number/components/big-number-display/index.mjs +17 -0
- package/esm2020/lib/display-types/big-number/components/index.mjs +18 -0
- package/esm2020/lib/display-types/big-number/index.mjs +20 -0
- package/esm2020/lib/display-types/big-number/models/big-number.model.mjs +17 -0
- package/esm2020/lib/display-types/big-number/models/index.mjs +17 -0
- package/esm2020/lib/display-types/index.mjs +19 -0
- package/esm2020/lib/display-types/meter/components/index.mjs +17 -0
- package/esm2020/lib/display-types/meter/components/meter-display/index.mjs +17 -0
- package/esm2020/lib/display-types/meter/components/meter-display/meter-display.component.mjs +32 -0
- package/esm2020/lib/display-types/meter/index.mjs +20 -0
- package/esm2020/lib/display-types/meter/meter.module.mjs +36 -0
- package/esm2020/lib/display-types/meter/meter.specification.mjs +35 -0
- package/esm2020/lib/display-types/meter/models/index.mjs +17 -0
- package/esm2020/lib/display-types/meter/models/meter.model.mjs +17 -0
- package/esm2020/lib/models/configuration.model.mjs +17 -0
- package/esm2020/lib/models/dashboard.model.mjs +17 -0
- package/esm2020/lib/models/data-source.model.mjs +17 -0
- package/esm2020/lib/models/display-type.model.mjs +17 -0
- package/esm2020/lib/models/index.mjs +23 -0
- package/esm2020/lib/models/layout.model.mjs +17 -0
- package/esm2020/lib/models/widget-data.model.mjs +17 -0
- package/esm2020/lib/models/widget-display.model.mjs +25 -0
- package/esm2020/lib/pipes/index.mjs +17 -0
- package/esm2020/lib/pipes/widget-translate/index.mjs +18 -0
- package/esm2020/lib/pipes/widget-translate/widget-translate-pipe.module.mjs +33 -0
- package/esm2020/lib/pipes/widget-translate/widget-translate.pipe.mjs +35 -0
- package/esm2020/lib/services/dashboard.service.mjs +38 -0
- package/esm2020/lib/services/index.mjs +19 -0
- package/esm2020/lib/services/widget-api.service.mjs +38 -0
- package/esm2020/lib/services/widget-layout.service.mjs +121 -0
- package/esm2020/lib/services/widget-translation.service.mjs +61 -0
- package/esm2020/lib/services/widget.service.mjs +62 -0
- package/esm2020/public_api.mjs +10 -2
- package/fesm2015/valtimo-dashboard.mjs +2047 -90
- package/fesm2015/valtimo-dashboard.mjs.map +1 -1
- package/fesm2020/valtimo-dashboard.mjs +2213 -90
- package/fesm2020/valtimo-dashboard.mjs.map +1 -1
- package/lib/{dashboard.component.d.ts → components/dashboard/dashboard.component.d.ts} +3 -8
- package/lib/components/dashboard/dashboard.component.d.ts.map +1 -0
- package/lib/components/widget-dashboard/widget-dashboard.component.d.ts +20 -0
- package/lib/components/widget-dashboard/widget-dashboard.component.d.ts.map +1 -0
- package/lib/components/widget-dashboard-content/widget-dashboard-content.component.d.ts +34 -0
- package/lib/components/widget-dashboard-content/widget-dashboard-content.component.d.ts.map +1 -0
- package/lib/constants/data-features.constants.d.ts +6 -0
- package/lib/constants/data-features.constants.d.ts.map +1 -0
- package/lib/constants/index.d.ts +4 -0
- package/lib/constants/index.d.ts.map +1 -0
- package/lib/constants/injection-tokens.d.ts +6 -0
- package/lib/constants/injection-tokens.d.ts.map +1 -0
- package/lib/constants/layout.constants.d.ts +4 -0
- package/lib/constants/layout.constants.d.ts.map +1 -0
- package/lib/dashboard-routing.module.d.ts.map +1 -1
- package/lib/dashboard.module.d.ts +12 -8
- package/lib/dashboard.module.d.ts.map +1 -1
- package/lib/data-sources/case-count/case-count.module.d.ts +13 -0
- package/lib/data-sources/case-count/case-count.module.d.ts.map +1 -0
- package/lib/data-sources/case-count/case-count.specification.d.ts +3 -0
- package/lib/data-sources/case-count/case-count.specification.d.ts.map +1 -0
- package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts +44 -0
- package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts.map +1 -0
- package/lib/data-sources/case-count/components/case-count-configuration/index.d.ts +2 -0
- package/lib/data-sources/case-count/components/case-count-configuration/index.d.ts.map +1 -0
- package/lib/data-sources/case-count/components/index.d.ts +2 -0
- package/lib/data-sources/case-count/components/index.d.ts.map +1 -0
- package/lib/data-sources/case-count/index.d.ts +5 -0
- package/lib/data-sources/case-count/index.d.ts.map +1 -0
- package/lib/data-sources/case-count/models/case-count.model.d.ts +19 -0
- package/lib/data-sources/case-count/models/case-count.model.d.ts.map +1 -0
- package/lib/data-sources/case-count/models/index.d.ts +2 -0
- package/lib/data-sources/case-count/models/index.d.ts.map +1 -0
- package/lib/data-sources/index.d.ts +3 -0
- package/lib/data-sources/index.d.ts.map +1 -0
- package/lib/data-sources/test/components/index.d.ts +2 -0
- package/lib/data-sources/test/components/index.d.ts.map +1 -0
- package/lib/data-sources/test/components/test-configuration/index.d.ts +2 -0
- package/lib/data-sources/test/components/test-configuration/index.d.ts.map +1 -0
- package/lib/data-sources/test/components/test-configuration/test-configuration.component.d.ts +26 -0
- package/lib/data-sources/test/components/test-configuration/test-configuration.component.d.ts.map +1 -0
- package/lib/data-sources/test/index.d.ts +5 -0
- package/lib/data-sources/test/index.d.ts.map +1 -0
- package/lib/data-sources/test/models/index.d.ts +2 -0
- package/lib/data-sources/test/models/index.d.ts.map +1 -0
- package/lib/data-sources/test/models/test.model.d.ts +6 -0
- package/lib/data-sources/test/models/test.model.d.ts.map +1 -0
- package/lib/data-sources/test/test.module.d.ts +12 -0
- package/lib/data-sources/test/test.module.d.ts.map +1 -0
- package/lib/data-sources/test/test.specification.d.ts +3 -0
- package/lib/data-sources/test/test.specification.d.ts.map +1 -0
- package/lib/display-types/bar-chart/bar-chart.module.d.ts +9 -0
- package/lib/display-types/bar-chart/bar-chart.module.d.ts.map +1 -0
- package/lib/display-types/bar-chart/bar-chart.specification.d.ts +3 -0
- package/lib/display-types/bar-chart/bar-chart.specification.d.ts.map +1 -0
- package/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.d.ts +11 -0
- package/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.d.ts.map +1 -0
- package/lib/display-types/bar-chart/components/bar-chart-display/index.d.ts +2 -0
- package/lib/display-types/bar-chart/components/bar-chart-display/index.d.ts.map +1 -0
- package/lib/display-types/bar-chart/components/index.d.ts +2 -0
- package/lib/display-types/bar-chart/components/index.d.ts.map +1 -0
- package/lib/display-types/bar-chart/index.d.ts +5 -0
- package/lib/display-types/bar-chart/index.d.ts.map +1 -0
- package/lib/display-types/bar-chart/models/bar-chart.model.d.ts +8 -0
- package/lib/display-types/bar-chart/models/bar-chart.model.d.ts.map +1 -0
- package/lib/display-types/bar-chart/models/index.d.ts +2 -0
- package/lib/display-types/bar-chart/models/index.d.ts.map +1 -0
- package/lib/display-types/big-number/big-number.module.d.ts +13 -0
- package/lib/display-types/big-number/big-number.module.d.ts.map +1 -0
- package/lib/display-types/big-number/big-number.specification.d.ts +3 -0
- package/lib/display-types/big-number/big-number.specification.d.ts.map +1 -0
- package/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.d.ts +37 -0
- package/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.d.ts.map +1 -0
- package/lib/display-types/big-number/components/big-number-configuration/index.d.ts +2 -0
- package/lib/display-types/big-number/components/big-number-configuration/index.d.ts.map +1 -0
- package/lib/display-types/big-number/components/big-number-display/big-number-display.component.d.ts +13 -0
- package/lib/display-types/big-number/components/big-number-display/big-number-display.component.d.ts.map +1 -0
- package/lib/display-types/big-number/components/big-number-display/index.d.ts +2 -0
- package/lib/display-types/big-number/components/big-number-display/index.d.ts.map +1 -0
- package/lib/display-types/big-number/components/index.d.ts +3 -0
- package/lib/display-types/big-number/components/index.d.ts.map +1 -0
- package/lib/display-types/big-number/index.d.ts +5 -0
- package/lib/display-types/big-number/index.d.ts.map +1 -0
- package/lib/display-types/big-number/models/big-number.model.d.ts +14 -0
- package/lib/display-types/big-number/models/big-number.model.d.ts.map +1 -0
- package/lib/display-types/big-number/models/index.d.ts +2 -0
- package/lib/display-types/big-number/models/index.d.ts.map +1 -0
- package/lib/display-types/index.d.ts +4 -0
- package/lib/display-types/index.d.ts.map +1 -0
- package/lib/display-types/meter/components/index.d.ts +2 -0
- package/lib/display-types/meter/components/index.d.ts.map +1 -0
- package/lib/display-types/meter/components/meter-display/index.d.ts +2 -0
- package/lib/display-types/meter/components/meter-display/index.d.ts.map +1 -0
- package/lib/display-types/meter/components/meter-display/meter-display.component.d.ts +11 -0
- package/lib/display-types/meter/components/meter-display/meter-display.component.d.ts.map +1 -0
- package/lib/display-types/meter/index.d.ts +5 -0
- package/lib/display-types/meter/index.d.ts.map +1 -0
- package/lib/display-types/meter/meter.module.d.ts +9 -0
- package/lib/display-types/meter/meter.module.d.ts.map +1 -0
- package/lib/display-types/meter/meter.specification.d.ts +3 -0
- package/lib/display-types/meter/meter.specification.d.ts.map +1 -0
- package/lib/display-types/meter/models/index.d.ts +2 -0
- package/lib/display-types/meter/models/index.d.ts.map +1 -0
- package/lib/display-types/meter/models/meter.model.d.ts +8 -0
- package/lib/display-types/meter/models/meter.model.d.ts.map +1 -0
- package/lib/models/configuration.model.d.ts +18 -0
- package/lib/models/configuration.model.d.ts.map +1 -0
- package/lib/models/dashboard.model.d.ts +15 -0
- package/lib/models/dashboard.model.d.ts.map +1 -0
- package/lib/models/data-source.model.d.ts +14 -0
- package/lib/models/data-source.model.d.ts.map +1 -0
- package/lib/models/display-type.model.d.ts +23 -0
- package/lib/models/display-type.model.d.ts.map +1 -0
- package/lib/models/index.d.ts +8 -0
- package/lib/models/index.d.ts.map +1 -0
- package/lib/models/layout.model.d.ts +18 -0
- package/lib/models/layout.model.d.ts.map +1 -0
- package/lib/models/widget-data.model.d.ts +6 -0
- package/lib/models/widget-data.model.d.ts.map +1 -0
- package/lib/models/widget-display.model.d.ts +9 -0
- package/lib/models/widget-display.model.d.ts.map +1 -0
- package/lib/pipes/index.d.ts +2 -0
- package/lib/pipes/index.d.ts.map +1 -0
- package/lib/pipes/widget-translate/index.d.ts +3 -0
- package/lib/pipes/widget-translate/index.d.ts.map +1 -0
- package/lib/pipes/widget-translate/widget-translate-pipe.module.d.ts +9 -0
- package/lib/pipes/widget-translate/widget-translate-pipe.module.d.ts.map +1 -0
- package/lib/pipes/widget-translate/widget-translate.pipe.d.ts +12 -0
- package/lib/pipes/widget-translate/widget-translate.pipe.d.ts.map +1 -0
- package/lib/services/dashboard.service.d.ts +15 -0
- package/lib/services/dashboard.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +4 -0
- package/lib/services/index.d.ts.map +1 -0
- package/lib/services/widget-api.service.d.ts +15 -0
- package/lib/services/widget-api.service.d.ts.map +1 -0
- package/lib/services/widget-layout.service.d.ts +29 -0
- package/lib/services/widget-layout.service.d.ts.map +1 -0
- package/lib/services/widget-translation.service.d.ts +15 -0
- package/lib/services/widget-translation.service.d.ts.map +1 -0
- package/lib/services/widget.service.d.ts +19 -0
- package/lib/services/widget.service.d.ts.map +1 -0
- package/package.json +7 -6
- package/public_api.d.ts +9 -1
- package/public_api.d.ts.map +1 -1
- package/esm2020/lib/dashboard.component.mjs +0 -89
- package/lib/dashboard.component.d.ts.map +0 -1
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2023 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { Component, ViewChild } from '@angular/core';
|
|
17
|
-
import moment from 'moment';
|
|
18
|
-
import { take } from 'rxjs/operators';
|
|
19
|
-
import { BehaviorSubject } from 'rxjs';
|
|
20
|
-
import * as i0 from "@angular/core";
|
|
21
|
-
import * as i1 from "@angular/router";
|
|
22
|
-
import * as i2 from "@valtimo/context";
|
|
23
|
-
import * as i3 from "@valtimo/task";
|
|
24
|
-
import * as i4 from "@ngx-translate/core";
|
|
25
|
-
import * as i5 from "@angular/common";
|
|
26
|
-
import * as i6 from "@valtimo/components";
|
|
27
|
-
moment.locale(localStorage.getItem('langKey') || '');
|
|
28
|
-
moment.defaultFormat = 'DD MMM YYYY HH:mm';
|
|
29
|
-
export class DashboardComponent {
|
|
30
|
-
constructor(router, contextService, taskService, route, translate) {
|
|
31
|
-
this.router = router;
|
|
32
|
-
this.contextService = contextService;
|
|
33
|
-
this.taskService = taskService;
|
|
34
|
-
this.route = route;
|
|
35
|
-
this.translate = translate;
|
|
36
|
-
this.openTaskFields = [
|
|
37
|
-
{
|
|
38
|
-
key: 'created',
|
|
39
|
-
label: 'Created',
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
key: 'name',
|
|
43
|
-
label: 'Name',
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
key: 'valtimoAssignee.fullName',
|
|
47
|
-
label: 'Assignee',
|
|
48
|
-
},
|
|
49
|
-
];
|
|
50
|
-
this.loading$ = new BehaviorSubject(true);
|
|
51
|
-
}
|
|
52
|
-
ngOnInit() {
|
|
53
|
-
this.getOpenTasks();
|
|
54
|
-
}
|
|
55
|
-
getOpenTasks() {
|
|
56
|
-
this.taskService.getTasks().subscribe(response => {
|
|
57
|
-
this.openTasks = response;
|
|
58
|
-
this.openTasks.map(task => {
|
|
59
|
-
task.created = moment(task.created).format('DD MMM YYYY HH:mm');
|
|
60
|
-
});
|
|
61
|
-
this.checkRouteForTaskId(response);
|
|
62
|
-
this.loading$.next(false);
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
rowOpenTaskClick(task) {
|
|
66
|
-
if (!task.endTime) {
|
|
67
|
-
this.taskDetail.openTaskDetails(task);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
checkRouteForTaskId(tasks) {
|
|
71
|
-
this.route.queryParams.pipe(take(1)).subscribe(params => {
|
|
72
|
-
const taskId = params?.taskId;
|
|
73
|
-
const findTaskFromId = tasks.find(task => task.id === taskId);
|
|
74
|
-
if (findTaskFromId) {
|
|
75
|
-
this.rowOpenTaskClick(findTaskFromId);
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
DashboardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DashboardComponent, deps: [{ token: i1.Router }, { token: i2.ContextService }, { token: i3.TaskService }, { token: i1.ActivatedRoute }, { token: i4.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
81
|
-
DashboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DashboardComponent, selector: "valtimo-dashboard", viewQueries: [{ propertyName: "taskDetail", first: true, predicate: ["taskDetail"], descendants: true }], ngImport: i0, template: "<!--\n ~ Copyright 2015-2023 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"main-content container-fluid\" *ngIf=\"{loading: loading$ | async} as obs\">\n <h4 class=\"title\">\n {{ 'dashboard.openTasks.title' | translate }}\n <sup *ngIf=\"obs.loading === false\" class=\"ml-1 badge badge-pill badge-primary\">{{\n openTasks?.length\n }}</sup>\n </h4>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <valtimo-widget>\n <valtimo-list\n [items]=\"openTasks\"\n [fields]=\"openTaskFields\"\n (rowClicked)=\"rowOpenTaskClick($event)\"\n ></valtimo-list>\n </valtimo-widget>\n </ng-container>\n <valtimo-task-detail-modal\n #taskDetail\n (formSubmit)=\"getOpenTasks()\"\n (assignmentOfTaskChanged)=\"getOpenTasks()\"\n ></valtimo-task-detail-modal>\n</div>\n\n<ng-template #loading>\n <valtimo-spinner></valtimo-spinner>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i6.WidgetComponent, selector: "valtimo-widget", inputs: ["type", "name", "icon", "contrast", "divider", "title", "subtitle", "collapseAble", "collapse", "additionalClasses"] }, { kind: "component", type: i6.ListComponent, selector: "valtimo-list", inputs: ["items", "fields", "pagination", "viewMode", "isSearchable", "header", "actions", "paginationIdentifier", "initialSortState", "lastColumnTemplate"], outputs: ["rowClicked", "paginationClicked", "paginationSet", "search", "sortChanged"] }, { kind: "component", type: i3.TaskDetailModalComponent, selector: "valtimo-task-detail-modal", outputs: ["formSubmit", "assignmentOfTaskChanged"] }, { kind: "component", type: i6.SpinnerComponent, selector: "valtimo-spinner", inputs: ["useBootstrapSpinner", "name", "type", "size", "color", "bdColor", "fullScreen", "noMarginTop"] }, { kind: "pipe", type: i5.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }] });
|
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DashboardComponent, decorators: [{
|
|
83
|
-
type: Component,
|
|
84
|
-
args: [{ selector: 'valtimo-dashboard', template: "<!--\n ~ Copyright 2015-2023 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"main-content container-fluid\" *ngIf=\"{loading: loading$ | async} as obs\">\n <h4 class=\"title\">\n {{ 'dashboard.openTasks.title' | translate }}\n <sup *ngIf=\"obs.loading === false\" class=\"ml-1 badge badge-pill badge-primary\">{{\n openTasks?.length\n }}</sup>\n </h4>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <valtimo-widget>\n <valtimo-list\n [items]=\"openTasks\"\n [fields]=\"openTaskFields\"\n (rowClicked)=\"rowOpenTaskClick($event)\"\n ></valtimo-list>\n </valtimo-widget>\n </ng-container>\n <valtimo-task-detail-modal\n #taskDetail\n (formSubmit)=\"getOpenTasks()\"\n (assignmentOfTaskChanged)=\"getOpenTasks()\"\n ></valtimo-task-detail-modal>\n</div>\n\n<ng-template #loading>\n <valtimo-spinner></valtimo-spinner>\n</ng-template>\n" }]
|
|
85
|
-
}], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.ContextService }, { type: i3.TaskService }, { type: i1.ActivatedRoute }, { type: i4.TranslateService }]; }, propDecorators: { taskDetail: [{
|
|
86
|
-
type: ViewChild,
|
|
87
|
-
args: ['taskDetail']
|
|
88
|
-
}] } });
|
|
89
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGFzaGJvYXJkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ZhbHRpbW8vZGFzaGJvYXJkL3NyYy9saWIvZGFzaGJvYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ZhbHRpbW8vZGFzaGJvYXJkL3NyYy9saWIvZGFzaGJvYXJkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7Ozs7OztHQWNHO0FBRUgsT0FBTyxFQUFDLFNBQVMsRUFBVSxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFLM0QsT0FBTyxNQUFNLE1BQU0sUUFBUSxDQUFDO0FBQzVCLE9BQU8sRUFBQyxJQUFJLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUVwQyxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sTUFBTSxDQUFDOzs7Ozs7OztBQUdyQyxNQUFNLENBQUMsTUFBTSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsU0FBUyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUM7QUFDckQsTUFBTSxDQUFDLGFBQWEsR0FBRyxtQkFBbUIsQ0FBQztBQU8zQyxNQUFNLE9BQU8sa0JBQWtCO0lBcUI3QixZQUNVLE1BQWMsRUFDZCxjQUE4QixFQUM5QixXQUF3QixFQUNmLEtBQXFCLEVBQy9CLFNBQTJCO1FBSjFCLFdBQU0sR0FBTixNQUFNLENBQVE7UUFDZCxtQkFBYyxHQUFkLGNBQWMsQ0FBZ0I7UUFDOUIsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFDZixVQUFLLEdBQUwsS0FBSyxDQUFnQjtRQUMvQixjQUFTLEdBQVQsU0FBUyxDQUFrQjtRQXZCN0IsbUJBQWMsR0FBRztZQUN0QjtnQkFDRSxHQUFHLEVBQUUsU0FBUztnQkFDZCxLQUFLLEVBQUUsU0FBUzthQUNqQjtZQUNEO2dCQUNFLEdBQUcsRUFBRSxNQUFNO2dCQUNYLEtBQUssRUFBRSxNQUFNO2FBQ2Q7WUFDRDtnQkFDRSxHQUFHLEVBQUUsMEJBQTBCO2dCQUMvQixLQUFLLEVBQUUsVUFBVTthQUNsQjtTQUNGLENBQUM7UUFHRixhQUFRLEdBQUcsSUFBSSxlQUFlLENBQVUsSUFBSSxDQUFDLENBQUM7SUFRM0MsQ0FBQztJQUVKLFFBQVE7UUFDTixJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUVNLFlBQVk7UUFDakIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLEVBQUU7WUFDL0MsSUFBSSxDQUFDLFNBQVMsR0FBRyxRQUFRLENBQUM7WUFDMUIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUU7Z0JBQ3hCLElBQUksQ0FBQyxPQUFPLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLENBQUMsbUJBQW1CLENBQUMsQ0FBQztZQUNsRSxDQUFDLENBQUMsQ0FBQztZQUNILElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxRQUFRLENBQUMsQ0FBQztZQUNuQyxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM1QixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxJQUFJO1FBQzFCLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQ2pCLElBQUksQ0FBQyxVQUFVLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ3ZDO0lBQ0gsQ0FBQztJQUVPLG1CQUFtQixDQUFDLEtBQWtCO1FBQzVDLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLEVBQUU7WUFDdEQsTUFBTSxNQUFNLEdBQUcsTUFBTSxFQUFFLE1BQU0sQ0FBQztZQUM5QixNQUFNLGNBQWMsR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsS0FBSyxNQUFNLENBQUMsQ0FBQztZQUU5RCxJQUFJLGNBQWMsRUFBRTtnQkFDbEIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLGNBQWMsQ0FBQyxDQUFDO2FBQ3ZDO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDOztnSEEzRFUsa0JBQWtCO29HQUFsQixrQkFBa0IsbUtDbkMvQix1K0NBMENBOzRGRFBhLGtCQUFrQjtrQkFMOUIsU0FBUzsrQkFDRSxtQkFBbUI7Z05BcUJKLFVBQVU7c0JBQWxDLFNBQVM7dUJBQUMsWUFBWSIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBDb3B5cmlnaHQgMjAxNS0yMDIzIFJpdGVuc2UgQlYsIHRoZSBOZXRoZXJsYW5kcy5cbiAqXG4gKiBMaWNlbnNlZCB1bmRlciBFVVBMLCBWZXJzaW9uIDEuMiAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqIGh0dHBzOi8vam9pbnVwLmVjLmV1cm9wYS5ldS9jb2xsZWN0aW9uL2V1cGwvZXVwbC10ZXh0LWV1cGwtMTJcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgYmFzaXMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5cbmltcG9ydCB7Q29tcG9uZW50LCBPbkluaXQsIFZpZXdDaGlsZH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RyYW5zbGF0ZVNlcnZpY2V9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuaW1wb3J0IHtDb250ZXh0U2VydmljZX0gZnJvbSAnQHZhbHRpbW8vY29udGV4dCc7XG5pbXBvcnQge0FjdGl2YXRlZFJvdXRlLCBSb3V0ZXJ9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge1Rhc2tEZXRhaWxNb2RhbENvbXBvbmVudCwgVGFza1NlcnZpY2V9IGZyb20gJ0B2YWx0aW1vL3Rhc2snO1xuaW1wb3J0IG1vbWVudCBmcm9tICdtb21lbnQnO1xuaW1wb3J0IHt0YWtlfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQge1Rhc2t9IGZyb20gJ0B2YWx0aW1vL3Rhc2snO1xuaW1wb3J0IHtCZWhhdmlvclN1YmplY3R9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtOZ3hTcGlubmVyU2VydmljZX0gZnJvbSAnbmd4LXNwaW5uZXInO1xuXG5tb21lbnQubG9jYWxlKGxvY2FsU3RvcmFnZS5nZXRJdGVtKCdsYW5nS2V5JykgfHwgJycpO1xubW9tZW50LmRlZmF1bHRGb3JtYXQgPSAnREQgTU1NIFlZWVkgSEg6bW0nO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd2YWx0aW1vLWRhc2hib2FyZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXNoYm9hcmQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXNoYm9hcmQuY29tcG9uZW50LmNzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBEYXNoYm9hcmRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBwdWJsaWMgcHJvY2Vzc0RlZmluaXRpb25zOiBBcnJheTxhbnk+O1xuICBwdWJsaWMgb3BlblRhc2tzOiBBcnJheTxhbnk+O1xuICBwdWJsaWMgb3BlblRhc2tGaWVsZHMgPSBbXG4gICAge1xuICAgICAga2V5OiAnY3JlYXRlZCcsXG4gICAgICBsYWJlbDogJ0NyZWF0ZWQnLFxuICAgIH0sXG4gICAge1xuICAgICAga2V5OiAnbmFtZScsXG4gICAgICBsYWJlbDogJ05hbWUnLFxuICAgIH0sXG4gICAge1xuICAgICAga2V5OiAndmFsdGltb0Fzc2lnbmVlLmZ1bGxOYW1lJyxcbiAgICAgIGxhYmVsOiAnQXNzaWduZWUnLFxuICAgIH0sXG4gIF07XG4gIEBWaWV3Q2hpbGQoJ3Rhc2tEZXRhaWwnKSB0YXNrRGV0YWlsOiBUYXNrRGV0YWlsTW9kYWxDb21wb25lbnQ7XG5cbiAgbG9hZGluZyQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+KHRydWUpO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcm91dGVyOiBSb3V0ZXIsXG4gICAgcHJpdmF0ZSBjb250ZXh0U2VydmljZTogQ29udGV4dFNlcnZpY2UsXG4gICAgcHJpdmF0ZSB0YXNrU2VydmljZTogVGFza1NlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSByb3V0ZTogQWN0aXZhdGVkUm91dGUsXG4gICAgcHVibGljIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZVxuICApIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5nZXRPcGVuVGFza3MoKTtcbiAgfVxuXG4gIHB1YmxpYyBnZXRPcGVuVGFza3MoKSB7XG4gICAgdGhpcy50YXNrU2VydmljZS5nZXRUYXNrcygpLnN1YnNjcmliZShyZXNwb25zZSA9PiB7XG4gICAgICB0aGlzLm9wZW5UYXNrcyA9IHJlc3BvbnNlO1xuICAgICAgdGhpcy5vcGVuVGFza3MubWFwKHRhc2sgPT4ge1xuICAgICAgICB0YXNrLmNyZWF0ZWQgPSBtb21lbnQodGFzay5jcmVhdGVkKS5mb3JtYXQoJ0REIE1NTSBZWVlZIEhIOm1tJyk7XG4gICAgICB9KTtcbiAgICAgIHRoaXMuY2hlY2tSb3V0ZUZvclRhc2tJZChyZXNwb25zZSk7XG4gICAgICB0aGlzLmxvYWRpbmckLm5leHQoZmFsc2UpO1xuICAgIH0pO1xuICB9XG5cbiAgcHVibGljIHJvd09wZW5UYXNrQ2xpY2sodGFzaykge1xuICAgIGlmICghdGFzay5lbmRUaW1lKSB7XG4gICAgICB0aGlzLnRhc2tEZXRhaWwub3BlblRhc2tEZXRhaWxzKHRhc2spO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgY2hlY2tSb3V0ZUZvclRhc2tJZCh0YXNrczogQXJyYXk8VGFzaz4pOiB2b2lkIHtcbiAgICB0aGlzLnJvdXRlLnF1ZXJ5UGFyYW1zLnBpcGUodGFrZSgxKSkuc3Vic2NyaWJlKHBhcmFtcyA9PiB7XG4gICAgICBjb25zdCB0YXNrSWQgPSBwYXJhbXM/LnRhc2tJZDtcbiAgICAgIGNvbnN0IGZpbmRUYXNrRnJvbUlkID0gdGFza3MuZmluZCh0YXNrID0+IHRhc2suaWQgPT09IHRhc2tJZCk7XG5cbiAgICAgIGlmIChmaW5kVGFza0Zyb21JZCkge1xuICAgICAgICB0aGlzLnJvd09wZW5UYXNrQ2xpY2soZmluZFRhc2tGcm9tSWQpO1xuICAgICAgfVxuICAgIH0pO1xuICB9XG59XG4iLCI8IS0tXG4gIH4gQ29weXJpZ2h0IDIwMTUtMjAyMyBSaXRlbnNlIEJWLCB0aGUgTmV0aGVybGFuZHMuXG4gIH5cbiAgfiBMaWNlbnNlZCB1bmRlciBFVVBMLCBWZXJzaW9uIDEuMiAodGhlIFwiTGljZW5zZVwiKTtcbiAgfiB5b3UgbWF5IG5vdCB1c2UgdGhpcyBmaWxlIGV4Y2VwdCBpbiBjb21wbGlhbmNlIHdpdGggdGhlIExpY2Vuc2UuXG4gIH4gWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gIH5cbiAgfiBodHRwczovL2pvaW51cC5lYy5ldXJvcGEuZXUvY29sbGVjdGlvbi9ldXBsL2V1cGwtdGV4dC1ldXBsLTEyXG4gIH5cbiAgfiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gIH4gZGlzdHJpYnV0ZWQgdW5kZXIgdGhlIExpY2Vuc2UgaXMgZGlzdHJpYnV0ZWQgb24gYW4gXCJBUyBJU1wiIGJhc2lzLFxuICB+IFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICB+IFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAgfiBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS5cbiAgLS0+XG5cbjxkaXYgY2xhc3M9XCJtYWluLWNvbnRlbnQgY29udGFpbmVyLWZsdWlkXCIgKm5nSWY9XCJ7bG9hZGluZzogbG9hZGluZyQgfCBhc3luY30gYXMgb2JzXCI+XG4gIDxoNCBjbGFzcz1cInRpdGxlXCI+XG4gICAge3sgJ2Rhc2hib2FyZC5vcGVuVGFza3MudGl0bGUnIHwgdHJhbnNsYXRlIH19XG4gICAgPHN1cCAqbmdJZj1cIm9icy5sb2FkaW5nID09PSBmYWxzZVwiIGNsYXNzPVwibWwtMSBiYWRnZSBiYWRnZS1waWxsIGJhZGdlLXByaW1hcnlcIj57e1xuICAgICAgb3BlblRhc2tzPy5sZW5ndGhcbiAgICB9fTwvc3VwPlxuICA8L2g0PlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwib2JzLmxvYWRpbmcgPT09IGZhbHNlOyBlbHNlIGxvYWRpbmdcIj5cbiAgICA8dmFsdGltby13aWRnZXQ+XG4gICAgICA8dmFsdGltby1saXN0XG4gICAgICAgIFtpdGVtc109XCJvcGVuVGFza3NcIlxuICAgICAgICBbZmllbGRzXT1cIm9wZW5UYXNrRmllbGRzXCJcbiAgICAgICAgKHJvd0NsaWNrZWQpPVwicm93T3BlblRhc2tDbGljaygkZXZlbnQpXCJcbiAgICAgID48L3ZhbHRpbW8tbGlzdD5cbiAgICA8L3ZhbHRpbW8td2lkZ2V0PlxuICA8L25nLWNvbnRhaW5lcj5cbiAgPHZhbHRpbW8tdGFzay1kZXRhaWwtbW9kYWxcbiAgICAjdGFza0RldGFpbFxuICAgIChmb3JtU3VibWl0KT1cImdldE9wZW5UYXNrcygpXCJcbiAgICAoYXNzaWdubWVudE9mVGFza0NoYW5nZWQpPVwiZ2V0T3BlblRhc2tzKClcIlxuICA+PC92YWx0aW1vLXRhc2stZGV0YWlsLW1vZGFsPlxuPC9kaXY+XG5cbjxuZy10ZW1wbGF0ZSAjbG9hZGluZz5cbiAgPHZhbHRpbW8tc3Bpbm5lcj48L3ZhbHRpbW8tc3Bpbm5lcj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard.component.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dashboard/src/lib/dashboard.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAY,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,wBAAwB,EAAE,WAAW,EAAC,MAAM,eAAe,CAAC;AAIpE,OAAO,EAAC,eAAe,EAAC,MAAM,MAAM,CAAC;;AAMrC,qBAKa,kBAAmB,YAAW,MAAM;IAsB7C,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,QAAQ,CAAC,KAAK;IACf,SAAS,EAAE,gBAAgB;IAzB7B,kBAAkB,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IAC/B,SAAS,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACtB,cAAc;;;QAanB;IACuB,UAAU,EAAE,wBAAwB,CAAC;IAE9D,QAAQ,2BAAsC;gBAGpC,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,WAAW,EAAE,WAAW,EACf,KAAK,EAAE,cAAc,EAC/B,SAAS,EAAE,gBAAgB;IAGpC,QAAQ;IAID,YAAY;IAWZ,gBAAgB,CAAC,IAAI,KAAA;IAM5B,OAAO,CAAC,mBAAmB;yCAlDhB,kBAAkB;2CAAlB,kBAAkB;CA4D9B"}
|