@valtimo/dashboard 12.6.0 → 12.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/esm2022/lib/data-sources/case-count/case-count.specification.mjs +4 -4
- package/esm2022/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.mjs +8 -6
- package/esm2022/lib/data-sources/case-counts/case-counts.specification.mjs +4 -4
- package/esm2022/lib/data-sources/case-counts/components/case-counts-configuration/case-counts-configuration.component.mjs +12 -8
- package/esm2022/lib/data-sources/case-group-by/case-group-by.module.mjs +7 -4
- package/esm2022/lib/data-sources/case-group-by/case-group-by.specification.mjs +4 -4
- package/esm2022/lib/data-sources/case-group-by/components/case-group-by-configuration/case-group-by-configuration.component.mjs +11 -8
- package/esm2022/lib/data-sources/data-sources.module.mjs +16 -4
- package/esm2022/lib/data-sources/index.mjs +2 -1
- package/esm2022/lib/data-sources/shared/conditions.mjs +4 -4
- package/esm2022/lib/data-sources/task-count/components/index.mjs +17 -0
- package/esm2022/lib/data-sources/task-count/components/task-count-configuration/index.mjs +17 -0
- package/esm2022/lib/data-sources/task-count/components/task-count-configuration/task-count-configuration.component.mjs +122 -0
- package/esm2022/lib/data-sources/task-count/index.mjs +20 -0
- package/esm2022/lib/data-sources/task-count/models/index.mjs +17 -0
- package/esm2022/lib/data-sources/task-count/models/task-count.model.mjs +17 -0
- package/esm2022/lib/data-sources/task-count/task-count.module.mjs +57 -0
- package/esm2022/lib/data-sources/task-count/task-count.specification.mjs +69 -0
- package/fesm2022/valtimo-dashboard.mjs +363 -38
- package/fesm2022/valtimo-dashboard.mjs.map +1 -1
- package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts +3 -2
- package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts.map +1 -1
- package/lib/data-sources/case-counts/components/case-counts-configuration/case-counts-configuration.component.d.ts +4 -3
- package/lib/data-sources/case-counts/components/case-counts-configuration/case-counts-configuration.component.d.ts.map +1 -1
- package/lib/data-sources/case-group-by/case-group-by.module.d.ts +1 -1
- package/lib/data-sources/case-group-by/case-group-by.module.d.ts.map +1 -1
- package/lib/data-sources/case-group-by/components/case-group-by-configuration/case-group-by-configuration.component.d.ts +4 -3
- package/lib/data-sources/case-group-by/components/case-group-by-configuration/case-group-by-configuration.component.d.ts.map +1 -1
- package/lib/data-sources/data-sources.module.d.ts +2 -1
- package/lib/data-sources/data-sources.module.d.ts.map +1 -1
- package/lib/data-sources/index.d.ts +1 -0
- package/lib/data-sources/index.d.ts.map +1 -1
- package/lib/data-sources/shared/conditions.d.ts +3 -3
- package/lib/data-sources/shared/conditions.d.ts.map +1 -1
- package/lib/data-sources/task-count/components/index.d.ts +2 -0
- package/lib/data-sources/task-count/components/index.d.ts.map +1 -0
- package/lib/data-sources/task-count/components/task-count-configuration/index.d.ts +2 -0
- package/lib/data-sources/task-count/components/task-count-configuration/index.d.ts.map +1 -0
- package/lib/data-sources/task-count/components/task-count-configuration/task-count-configuration.component.d.ts +36 -0
- package/lib/data-sources/task-count/components/task-count-configuration/task-count-configuration.component.d.ts.map +1 -0
- package/lib/data-sources/task-count/index.d.ts +5 -0
- package/lib/data-sources/task-count/index.d.ts.map +1 -0
- package/lib/data-sources/task-count/models/index.d.ts +2 -0
- package/lib/data-sources/task-count/models/index.d.ts.map +1 -0
- package/lib/data-sources/task-count/models/task-count.model.d.ts +6 -0
- package/lib/data-sources/task-count/models/task-count.model.d.ts.map +1 -0
- package/lib/data-sources/task-count/task-count.module.d.ts +13 -0
- package/lib/data-sources/task-count/task-count.module.d.ts.map +1 -0
- package/lib/data-sources/task-count/task-count.specification.d.ts +3 -0
- package/lib/data-sources/task-count/task-count.specification.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { FormBuilder } from '@angular/forms';
|
|
|
5
5
|
import { CaseCountConfiguration } from '../../models';
|
|
6
6
|
import { DocumentService } from '@valtimo/document';
|
|
7
7
|
import { ListItem } from 'carbon-components-angular';
|
|
8
|
-
import { ListItemWithId, MultiInputKeyValue, MultiInputValues } from '@valtimo/components';
|
|
8
|
+
import { ListItemWithId, MultiInputKeyValue, MultiInputValues, ValuePathSelectorPrefix } from '@valtimo/components';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import { WidgetTranslationService } from '../../../../services';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
@@ -20,7 +20,7 @@ export declare class CaseCountConfigurationComponent implements OnInit, OnDestro
|
|
|
20
20
|
queryConditions: import("@angular/forms").FormControl<any>;
|
|
21
21
|
}>;
|
|
22
22
|
set disabled(disabledValue: boolean);
|
|
23
|
-
|
|
23
|
+
readonly selectedDocumentDefinition$: BehaviorSubject<string>;
|
|
24
24
|
readonly documentItems$: Observable<Array<ListItem>>;
|
|
25
25
|
private readonly _OPERATORS;
|
|
26
26
|
readonly operatorItems$: Observable<Array<ListItemWithId>>;
|
|
@@ -30,6 +30,7 @@ export declare class CaseCountConfigurationComponent implements OnInit, OnDestro
|
|
|
30
30
|
get queryConditions(): import("@angular/forms").AbstractControl<any, any>;
|
|
31
31
|
set prefillConfiguration(configurationValue: CaseCountConfiguration);
|
|
32
32
|
configurationEvent: EventEmitter<ConfigurationOutput<CaseCountConfiguration>>;
|
|
33
|
+
readonly ValuePathSelectorPrefix: typeof ValuePathSelectorPrefix;
|
|
33
34
|
private _subscriptions;
|
|
34
35
|
constructor(fb: FormBuilder, documentService: DocumentService, translateService: TranslateService, widgetTranslationService: WidgetTranslationService);
|
|
35
36
|
ngOnInit(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-count-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAW,MAAM,oBAAoB,CAAC;AACnG,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA0B,MAAM,MAAM,CAAC;AAC9F,OAAO,EAAC,WAAW,EAAa,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,sBAAsB,EAAC,MAAM,cAAc,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,
|
|
1
|
+
{"version":3,"file":"case-count-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAW,MAAM,oBAAoB,CAAC;AACnG,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA0B,MAAM,MAAM,CAAC;AAC9F,OAAO,EAAC,WAAW,EAAa,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,sBAAsB,EAAC,MAAM,cAAc,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EACL,cAAc,EACd,kBAAkB,EAClB,gBAAgB,EAChB,uBAAuB,EACxB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAE9D,qBAKa,+BACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IAyF5D,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IA1F3B,aAAa,EAAE,MAAM,CAAC;IAEtC,SAAgB,IAAI;;;OAGjB;IAEH,IAAoB,QAAQ,CAAC,aAAa,EAAE,OAAO,EAMlD;IAED,SAAgB,2BAA2B,0BAAmC;IAE9E,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAUzD;IAEF,OAAO,CAAC,QAAQ,CAAC,UAAU,CAOzB;IAEF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAU7D;IAEJ,SAAgB,uBAAuB,oCAAsD;IAC7F,SAAgB,mBAAmB,2BAAsC;IAEzE,IAAW,kBAAkB,uDAE5B;IAED,IAAW,eAAe,uDAEzB;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,sBAAsB,EAe3E;IAEgB,kBAAkB,4DAE/B;IAEJ,SAAgB,uBAAuB,iCAA2B;IAElE,OAAO,CAAC,cAAc,CAAsB;gBAGzB,EAAE,EAAE,WAAW,EACf,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAG9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,0BAA0B,CAAC,sBAAsB,EAAE,QAAQ,GAAG,IAAI;IASlE,qBAAqB,CAAC,MAAM,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI;IAcrE,oBAAoB,CAAC,kBAAkB,EAAE,OAAO,GAAG,IAAI;IAIvD,OAAO,CAAC,oBAAoB;yCAnIjB,+BAA+B;2CAA/B,+BAA+B;CAgJ3C"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ConfigurationOutput, DataSourceConfigurationComponent } from '../../../../models';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
4
|
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
5
5
|
import { CaseCountsConfiguration, CaseCountsQueryItemForm } from '../../models';
|
|
6
6
|
import { DocumentService } from '@valtimo/document';
|
|
7
7
|
import { IconService, ListItem } from 'carbon-components-angular';
|
|
8
|
-
import { ListItemWithId, MultiInputValues } from '@valtimo/components';
|
|
8
|
+
import { ListItemWithId, MultiInputValues, ValuePathSelectorPrefix } from '@valtimo/components';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import { WidgetTranslationService } from '../../../../services';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
@@ -29,10 +29,11 @@ export declare class CaseCountsConfigurationComponent implements OnInit, OnDestr
|
|
|
29
29
|
get formDisabled(): boolean;
|
|
30
30
|
set prefillConfiguration(configurationValue: CaseCountsConfiguration);
|
|
31
31
|
configurationEvent: EventEmitter<ConfigurationOutput<CaseCountsConfiguration>>;
|
|
32
|
-
|
|
32
|
+
readonly selectedDocumentDefinition$: BehaviorSubject<string>;
|
|
33
33
|
readonly documentItems$: Observable<Array<ListItem>>;
|
|
34
34
|
private readonly _OPERATORS;
|
|
35
35
|
readonly operatorItems$: Observable<Array<ListItemWithId>>;
|
|
36
|
+
readonly ValuePathSelectorPrefix: typeof ValuePathSelectorPrefix;
|
|
36
37
|
private _subscriptions;
|
|
37
38
|
constructor(fb: FormBuilder, documentService: DocumentService, translateService: TranslateService, widgetTranslationService: WidgetTranslationService, iconService: IconService);
|
|
38
39
|
ngOnInit(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-counts-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-counts/components/case-counts-configuration/case-counts-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAW,MAAM,oBAAoB,CAAC;AACnG,OAAO,
|
|
1
|
+
{"version":3,"file":"case-counts-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-counts/components/case-counts-configuration/case-counts-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAW,MAAM,oBAAoB,CAAC;AACnG,OAAO,EACL,eAAe,EAIf,UAAU,EAGX,MAAM,MAAM,CAAC;AACd,OAAO,EACL,eAAe,EACf,WAAW,EAIZ,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAC,uBAAuB,EAAuB,uBAAuB,EAAC,MAAM,cAAc,CAAC;AACnG,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAE,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAC,cAAc,EAAE,gBAAgB,EAAE,uBAAuB,EAAC,MAAM,qBAAqB,CAAC;AAC9F,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAI9D,qBAKa,gCACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IAyG5D,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IACzC,OAAO,CAAC,QAAQ,CAAC,WAAW;IA3Gd,aAAa,EAAE,MAAM,CAAC;IAEtC,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAGtC;IAEF,SAAgB,IAAI;;;OAMjB;IAEH,IAAoB,QAAQ,CAAC,aAAa,EAAE,OAAO,EAMlD;IAED,IAAW,UAAU,IAAI,eAAe,CAAC,uBAAuB,EAAE,CAAC,CAElE;IAED,IAAW,gBAAgB,IAAI,UAAU,CAAC,uBAAuB,EAAE,CAAC,CAEnE;IAED,IAAW,eAAe,IAAI,UAAU,CAAC,IAAI,EAAE,CAAC,CAK/C;IAED,IAAW,kBAAkB,8BAE5B;IAED,IAAW,YAAY,IAAI,OAAO,CAEjC;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,uBAAuB,EAW5E;IAEgB,kBAAkB,6DAE/B;IAEJ,SAAgB,2BAA2B,0BAAmC;IAE9E,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAUzD;IAEF,OAAO,CAAC,QAAQ,CAAC,UAAU,CAOzB;IAEF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAU7D;IAEJ,SAAgB,uBAAuB,iCAA2B;IAElE,OAAO,CAAC,cAAc,CAAsB;gBAGzB,EAAE,EAAE,WAAW,EACf,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB,EAClD,WAAW,EAAE,WAAW;IAKpC,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,0BAA0B,CAAC,sBAAsB,EAAE,QAAQ,GAAG,IAAI;IAWlE,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAYpE,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAYpD,YAAY,IAAI,IAAI;IAKpB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI;IAKnC,OAAO,CAAC,oBAAoB;IAc5B,OAAO,CAAC,4BAA4B;IAapC,OAAO,CAAC,4BAA4B;IAapC,OAAO,CAAC,mBAAmB;yCAhNhB,gCAAgC;2CAAhC,gCAAgC;CAuO5C"}
|
|
@@ -7,7 +7,7 @@ import * as i5 from "carbon-components-angular";
|
|
|
7
7
|
import * as i6 from "@valtimo/components";
|
|
8
8
|
export declare class CaseGroupByDataSourceModule {
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseGroupByDataSourceModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseGroupByDataSourceModule, [typeof i1.CaseGroupByConfigurationComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.WidgetTranslatePipeModule, typeof i5.InputModule, typeof i5.DropdownModule, typeof i6.CarbonMultiInputModule], [typeof i1.CaseGroupByConfigurationComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseGroupByDataSourceModule, [typeof i1.CaseGroupByConfigurationComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.WidgetTranslatePipeModule, typeof i5.InputModule, typeof i5.DropdownModule, typeof i6.CarbonMultiInputModule, typeof i6.ValuePathSelectorComponent], [typeof i1.CaseGroupByConfigurationComponent]>;
|
|
11
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaseGroupByDataSourceModule>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=case-group-by.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-group-by.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-group-by/case-group-by.module.ts"],"names":[],"mappings":";;;;;;;AA0BA,
|
|
1
|
+
{"version":3,"file":"case-group-by.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-group-by/case-group-by.module.ts"],"names":[],"mappings":";;;;;;;AA0BA,qBAgBa,2BAA2B;yCAA3B,2BAA2B;0CAA3B,2BAA2B;0CAA3B,2BAA2B;CAAG"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ConfigurationOutput, DataSourceConfigurationComponent } from '../../../../models';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
4
|
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
5
5
|
import { CaseGroupByConfiguration, CaseGroupByConfigurationFormValue } from '../../models';
|
|
6
6
|
import { DocumentService } from '@valtimo/document';
|
|
7
7
|
import { ListItem } from 'carbon-components-angular';
|
|
8
|
-
import { ListItemWithId, MultiInputValues } from '@valtimo/components';
|
|
8
|
+
import { ListItemWithId, MultiInputValues, ValuePathSelectorPrefix } from '@valtimo/components';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import { WidgetTranslationService } from '../../../../services';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
@@ -28,12 +28,13 @@ export declare class CaseGroupByConfigurationComponent implements OnInit, OnDest
|
|
|
28
28
|
get formDisabled(): boolean;
|
|
29
29
|
get formValue$(): Observable<Partial<CaseGroupByConfigurationFormValue>>;
|
|
30
30
|
set disabled(disabledValue: boolean);
|
|
31
|
-
|
|
31
|
+
readonly selectedDocumentDefinition$: BehaviorSubject<string>;
|
|
32
32
|
readonly documentItems$: Observable<Array<ListItem>>;
|
|
33
33
|
private readonly _OPERATORS;
|
|
34
34
|
readonly operatorItems$: Observable<Array<ListItemWithId>>;
|
|
35
35
|
set prefillConfiguration(configurationValue: CaseGroupByConfiguration);
|
|
36
36
|
configurationEvent: EventEmitter<ConfigurationOutput<CaseGroupByConfiguration>>;
|
|
37
|
+
readonly ValuePathSelectorPrefix: typeof ValuePathSelectorPrefix;
|
|
37
38
|
private _subscriptions;
|
|
38
39
|
constructor(fb: FormBuilder, documentService: DocumentService, translateService: TranslateService, widgetTranslationService: WidgetTranslationService);
|
|
39
40
|
ngOnInit(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-group-by-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-group-by/components/case-group-by-configuration/case-group-by-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,mBAAmB,EACnB,gCAAgC,EAGjC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,
|
|
1
|
+
{"version":3,"file":"case-group-by-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-group-by/components/case-group-by-configuration/case-group-by-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,mBAAmB,EACnB,gCAAgC,EAGjC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA0B,MAAM,MAAM,CAAC;AAC9F,OAAO,EACL,eAAe,EACf,WAAW,EAIZ,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,wBAAwB,EACxB,iCAAiC,EAElC,MAAM,cAAc,CAAC;AACtB,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,cAAc,EAAE,gBAAgB,EAAE,uBAAuB,EAAC,MAAM,qBAAqB,CAAC;AAC9F,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAG9D,qBAKa,iCACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IAuG5D,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IAxG3B,aAAa,EAAE,MAAM,CAAC;IAEtC,SAAgB,IAAI;;;;;OAKjB;IAEH,IAAW,kBAAkB,IAAI,eAAe,CAAC,MAAM,CAAC,CAEvD;IAED,IAAW,IAAI,IAAI,eAAe,CAAC,MAAM,CAAC,CAEzC;IAED,IAAW,eAAe,IAAI,eAAe,CAAC,gBAAgB,CAAC,CAE9D;IAED,IAAW,IAAI,IAAI,eAAe,CAAC,gBAAgB,CAAC,CAEnD;IAED,IAAW,YAAY,IAAI,OAAO,CAEjC;IAED,IAAW,UAAU,IAAI,UAAU,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAE9E;IAED,IAAoB,QAAQ,CAAC,aAAa,EAAE,OAAO,EAMlD;IAED,SAAgB,2BAA2B,0BAAmC;IAE9E,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAUzD;IAEF,OAAO,CAAC,QAAQ,CAAC,UAAU,CAOzB;IAEF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAU7D;IAEJ,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,wBAAwB,EAc7E;IAEgB,kBAAkB,8DAE/B;IAEJ,SAAgB,uBAAuB,iCAA2B;IAElE,OAAO,CAAC,cAAc,CAAsB;gBAGzB,EAAE,EAAE,WAAW,EACf,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAG9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,0BAA0B,CAAC,sBAAsB,EAAE,QAAQ,GAAG,IAAI;IAWlE,qBAAqB,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAUrD,eAAe,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAUtD,OAAO,CAAC,oBAAoB;IAe5B,OAAO,CAAC,wBAAwB;IAehC,OAAO,CAAC,aAAa;IAerB,OAAO,CAAC,sBAAsB;IAO9B,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,iCAAiC;IAQzC,OAAO,CAAC,iCAAiC;yCArN9B,iCAAiC;2CAAjC,iCAAiC;CA4N7C"}
|
|
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./case-count/case-count.module";
|
|
3
3
|
import * as i2 from "./case-counts/case-counts.module";
|
|
4
4
|
import * as i3 from "./case-group-by/case-group-by.module";
|
|
5
|
+
import * as i4 from "./task-count/task-count.module";
|
|
5
6
|
export declare class DataSourcesModule {
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourcesModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DataSourcesModule, never, [typeof i1.CaseCountDataSourceModule, typeof i2.CaseCountsDataSourceModule, typeof i3.CaseGroupByDataSourceModule], never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataSourcesModule, never, [typeof i1.CaseCountDataSourceModule, typeof i2.CaseCountsDataSourceModule, typeof i3.CaseGroupByDataSourceModule, typeof i4.TaskCountDataSourceModule], never>;
|
|
8
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<DataSourcesModule>;
|
|
9
10
|
}
|
|
10
11
|
//# sourceMappingURL=data-sources.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-sources.module.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/data-sources/data-sources.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"data-sources.module.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/data-sources/data-sources.module.ts"],"names":[],"mappings":";;;;;AAMA,qBAQa,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/data-sources/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/data-sources/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const CONDITIONS_HELPER_TEXTS: {
|
|
2
|
-
|
|
3
|
-
NL: string;
|
|
4
|
-
|
|
2
|
+
DE: (example?: string) => string;
|
|
3
|
+
NL: (example?: string) => string;
|
|
4
|
+
EN: (example?: string) => string;
|
|
5
5
|
};
|
|
6
6
|
export { CONDITIONS_HELPER_TEXTS };
|
|
7
7
|
//# sourceMappingURL=conditions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conditions.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/shared/conditions.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,uBAAuB;;;;
|
|
1
|
+
{"version":3,"file":"conditions.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/shared/conditions.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,uBAAuB;;;;CAO5B,CAAC;AAEF,OAAO,EAAC,uBAAuB,EAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/components/index.ts"],"names":[],"mappings":"AAgBA,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/components/task-count-configuration/index.ts"],"names":[],"mappings":"AAgBA,cAAc,sCAAsC,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ConfigurationOutput, DataSourceConfigurationComponent, QueryCondition } from '../../../../models';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
+
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
5
|
+
import { TaskCountConfiguration } from '../../models';
|
|
6
|
+
import { ListItemWithId, MultiInputKeyValue, MultiInputValues } from '@valtimo/components';
|
|
7
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
8
|
+
import { WidgetTranslationService } from '../../../../services';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class TaskCountConfigurationComponent implements OnInit, OnDestroy, DataSourceConfigurationComponent {
|
|
11
|
+
private readonly fb;
|
|
12
|
+
private readonly translateService;
|
|
13
|
+
private readonly widgetTranslationService;
|
|
14
|
+
dataSourceKey: string;
|
|
15
|
+
readonly form: import("@angular/forms").FormGroup<{
|
|
16
|
+
queryConditions: import("@angular/forms").FormControl<any>;
|
|
17
|
+
}>;
|
|
18
|
+
set disabled(disabledValue: boolean);
|
|
19
|
+
private readonly _OPERATORS;
|
|
20
|
+
readonly operatorItems$: Observable<Array<ListItemWithId>>;
|
|
21
|
+
readonly defaultConditionValues$: BehaviorSubject<MultiInputValues>;
|
|
22
|
+
readonly allConditionsValid$: BehaviorSubject<boolean>;
|
|
23
|
+
get queryConditions(): AbstractControl<QueryCondition[]>;
|
|
24
|
+
set prefillConfiguration(configurationValue: TaskCountConfiguration);
|
|
25
|
+
configurationEvent: EventEmitter<ConfigurationOutput<TaskCountConfiguration>>;
|
|
26
|
+
private readonly _subscriptions;
|
|
27
|
+
constructor(fb: FormBuilder, translateService: TranslateService, widgetTranslationService: WidgetTranslationService);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
conditionsValueChange(values: Array<MultiInputKeyValue>): void;
|
|
31
|
+
onAllConditionsValid(allConditionsValid: boolean): void;
|
|
32
|
+
private openFormSubscription;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskCountConfigurationComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaskCountConfigurationComponent, "ng-component", never, { "dataSourceKey": { "alias": "dataSourceKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "prefillConfiguration": { "alias": "prefillConfiguration"; "required": false; }; }, { "configurationEvent": "configurationEvent"; }, never, never, false, never>;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=task-count-configuration.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-count-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/components/task-count-configuration/task-count-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,mBAAmB,EACnB,gCAAgC,EAEhC,cAAc,EACf,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA0B,MAAM,MAAM,CAAC;AAC9F,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC5D,OAAO,EAAC,sBAAsB,EAAC,MAAM,cAAc,CAAC;AACpD,OAAO,EAAC,cAAc,EAAE,kBAAkB,EAAE,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACzF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAE9D,qBAKa,+BACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IA+D5D,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IA/D3B,aAAa,EAAE,MAAM,CAAC;IAEtC,SAAgB,IAAI;;OAEjB;IAEH,IAAoB,QAAQ,CAAC,aAAa,EAAE,OAAO,EAMlD;IAED,OAAO,CAAC,QAAQ,CAAC,UAAU,CAOzB;IAEF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAU7D;IAEJ,SAAgB,uBAAuB,oCAAsD;IAC7F,SAAgB,mBAAmB,2BAAsC;IAEzE,IAAW,eAAe,IAAI,eAAe,CAAC,cAAc,EAAE,CAAC,CAE9D;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,sBAAsB,EAU3E;IAEgB,kBAAkB,4DAE/B;IAEJ,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAGlC,EAAE,EAAE,WAAW,EACf,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAG9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,qBAAqB,CAAC,MAAM,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI;IAc9D,oBAAoB,CAAC,kBAAkB,EAAE,OAAO,GAAG,IAAI;IAI9D,OAAO,CAAC,oBAAoB;yCA/FjB,+BAA+B;2CAA/B,+BAA+B;CA4G3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-count.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/models/task-count.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAE/C,UAAU,sBAAsB;IAC9B,eAAe,EAAE,cAAc,EAAE,CAAC;CACnC;AAED,OAAO,EAAC,sBAAsB,EAAC,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/task-count-configuration/task-count-configuration.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../../pipes/widget-translate/widget-translate-pipe.module";
|
|
6
|
+
import * as i5 from "carbon-components-angular";
|
|
7
|
+
import * as i6 from "@valtimo/components";
|
|
8
|
+
export declare class TaskCountDataSourceModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskCountDataSourceModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TaskCountDataSourceModule, [typeof i1.TaskCountConfigurationComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.WidgetTranslatePipeModule, typeof i5.InputModule, typeof i5.DropdownModule, typeof i6.CarbonMultiInputModule], [typeof i1.TaskCountConfigurationComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TaskCountDataSourceModule>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=task-count.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-count.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/task-count.module.ts"],"names":[],"mappings":";;;;;;;AA0BA,qBAaa,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-count.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/task-count/task-count.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAIrD,eAAO,MAAM,sBAAsB,EAAE,uBAkDpC,CAAC"}
|