@netgrif/components-core 6.3.0-beta.1 → 6.3.0-beta.3
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/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.mjs +49 -7
- package/esm2020/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.mjs +6 -0
- package/esm2020/lib/data-fields/filter-field/abstract-filter-field-tab-view-content.component.mjs +60 -0
- package/esm2020/lib/data-fields/filter-field/abstract-filter-field-tab-view.component.mjs +53 -0
- package/esm2020/lib/data-fields/filter-field/abstract-filter-field.component.mjs +4 -1
- package/esm2020/lib/data-fields/models/abstract-data-field.mjs +4 -1
- package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.mjs +28 -1
- package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.mjs +6 -0
- package/esm2020/lib/data-fields/public-api.mjs +6 -1
- package/esm2020/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-component-registry.service.mjs +11 -1
- package/esm2020/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-view-constants.mjs +10 -0
- package/esm2020/lib/public/factories/get-net-and-create-case.mjs +2 -2
- package/esm2020/lib/resources/engine-endpoint/public/public-petri-net-resource.service.mjs +2 -2
- package/esm2020/lib/resources/engine-endpoint/public/public-task-resource.service.mjs +3 -3
- package/esm2020/lib/utility/public-api.mjs +2 -1
- package/esm2020/lib/utility/tests/mocks/mock-user.service.mjs +38 -0
- package/fesm2015/netgrif-components-core.mjs +309 -68
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +301 -66
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.d.ts +13 -5
- package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.d.ts +4 -0
- package/lib/data-fields/filter-field/abstract-filter-field-tab-view-content.component.d.ts +17 -0
- package/lib/data-fields/filter-field/abstract-filter-field-tab-view.component.d.ts +17 -0
- package/lib/data-fields/filter-field/abstract-filter-field.component.d.ts +1 -0
- package/lib/data-fields/models/abstract-data-field.d.ts +1 -0
- package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.d.ts +5 -1
- package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.d.ts +4 -0
- package/lib/data-fields/public-api.d.ts +5 -0
- package/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-component-registry.service.d.ts +4 -1
- package/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-view-constants.d.ts +8 -0
- package/lib/resources/engine-endpoint/public/public-task-resource.service.d.ts +2 -1
- package/lib/utility/public-api.d.ts +1 -0
- package/lib/utility/tests/mocks/mock-user.service.d.ts +16 -0
- package/package.json +1 -1
|
@@ -3852,6 +3852,9 @@ class DataField {
|
|
|
3852
3852
|
set touch(set) {
|
|
3853
3853
|
this._touch.next(set);
|
|
3854
3854
|
}
|
|
3855
|
+
get touch$() {
|
|
3856
|
+
return this._touch.asObservable();
|
|
3857
|
+
}
|
|
3855
3858
|
get component() {
|
|
3856
3859
|
return this._component;
|
|
3857
3860
|
}
|
|
@@ -5012,6 +5015,12 @@ class EnumerationField extends DataField {
|
|
|
5012
5015
|
}
|
|
5013
5016
|
}
|
|
5014
5017
|
|
|
5018
|
+
var EnumerationAutocompleteFilterProperty;
|
|
5019
|
+
(function (EnumerationAutocompleteFilterProperty) {
|
|
5020
|
+
EnumerationAutocompleteFilterProperty["PREFIX"] = "prefix";
|
|
5021
|
+
EnumerationAutocompleteFilterProperty["SUBSTRING"] = "substring";
|
|
5022
|
+
})(EnumerationAutocompleteFilterProperty || (EnumerationAutocompleteFilterProperty = {}));
|
|
5023
|
+
|
|
5015
5024
|
class AbstractEnumerationAutocompleteSelectFieldComponent {
|
|
5016
5025
|
constructor(_translate) {
|
|
5017
5026
|
this._translate = _translate;
|
|
@@ -5025,26 +5034,69 @@ class AbstractEnumerationAutocompleteSelectFieldComponent {
|
|
|
5025
5034
|
};
|
|
5026
5035
|
}
|
|
5027
5036
|
ngOnInit() {
|
|
5037
|
+
var _a;
|
|
5038
|
+
this.tmpValue = (_a = this.formControlRef.value) !== null && _a !== void 0 ? _a : '';
|
|
5028
5039
|
this.filteredOptions = this.formControlRef.valueChanges.pipe(startWith(''), map(value => this._filter(value)));
|
|
5040
|
+
this.enumerationField.touch$.subscribe(touch => {
|
|
5041
|
+
if (touch) {
|
|
5042
|
+
this.text.control.markAsTouched();
|
|
5043
|
+
}
|
|
5044
|
+
});
|
|
5045
|
+
this.formControlRef.valueChanges.subscribe(it => {
|
|
5046
|
+
this.tmpValue = it !== null && it !== void 0 ? it : '';
|
|
5047
|
+
});
|
|
5029
5048
|
}
|
|
5030
5049
|
ngOnDestroy() {
|
|
5031
5050
|
this.filteredOptions = undefined;
|
|
5032
5051
|
}
|
|
5052
|
+
change() {
|
|
5053
|
+
if (this.text.value !== undefined) {
|
|
5054
|
+
this.filteredOptions = of(this._filter(this.text.value));
|
|
5055
|
+
}
|
|
5056
|
+
}
|
|
5057
|
+
select(event) {
|
|
5058
|
+
this.formControlRef.setValue(event.option.value);
|
|
5059
|
+
}
|
|
5060
|
+
isInvalid() {
|
|
5061
|
+
return !this.formControlRef.disabled && !this.formControlRef.valid && this.text.control.touched;
|
|
5062
|
+
}
|
|
5063
|
+
checkPropertyInComponent(property) {
|
|
5064
|
+
return !!this.enumerationField.component && !!this.enumerationField.component.properties && property in this.enumerationField.component.properties;
|
|
5065
|
+
}
|
|
5066
|
+
filterType() {
|
|
5067
|
+
if (this.checkPropertyInComponent('filter')) {
|
|
5068
|
+
return this.enumerationField.component.properties.filter;
|
|
5069
|
+
}
|
|
5070
|
+
}
|
|
5071
|
+
_filter(value) {
|
|
5072
|
+
var _a;
|
|
5073
|
+
let filterType = (_a = this.filterType()) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
5074
|
+
switch (filterType) {
|
|
5075
|
+
case EnumerationAutocompleteFilterProperty.SUBSTRING:
|
|
5076
|
+
return this._filterInclude(value);
|
|
5077
|
+
case EnumerationAutocompleteFilterProperty.PREFIX:
|
|
5078
|
+
return this._filterIndexOf(value);
|
|
5079
|
+
default:
|
|
5080
|
+
return this._filterIndexOf(value);
|
|
5081
|
+
}
|
|
5082
|
+
}
|
|
5083
|
+
_filterInclude(value) {
|
|
5084
|
+
const filterValue = value === null || value === void 0 ? void 0 : value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
5085
|
+
return this.enumerationField.choices.filter(option => option.value.toLowerCase()
|
|
5086
|
+
.normalize('NFD')
|
|
5087
|
+
.replace(/[\u0300-\u036f]/g, '')
|
|
5088
|
+
.includes(filterValue));
|
|
5089
|
+
}
|
|
5033
5090
|
/**
|
|
5034
5091
|
* Function to filter out matchless options without accent and case-sensitive differences
|
|
5035
5092
|
* @param value to compare matching options
|
|
5036
5093
|
* @return return matched options
|
|
5037
5094
|
*/
|
|
5038
|
-
|
|
5095
|
+
_filterIndexOf(value) {
|
|
5039
5096
|
const filterValue = value === null || value === void 0 ? void 0 : value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
5040
5097
|
return this.enumerationField.choices.filter(option => option.value.toLowerCase().normalize('NFD')
|
|
5041
5098
|
.replace(/[\u0300-\u036f]/g, '').indexOf(filterValue) === 0);
|
|
5042
5099
|
}
|
|
5043
|
-
change() {
|
|
5044
|
-
if (this.text.nativeElement.value !== undefined) {
|
|
5045
|
-
this.filteredOptions = of(this._filter(this.text.nativeElement.value));
|
|
5046
|
-
}
|
|
5047
|
-
}
|
|
5048
5100
|
buildErrorMessage() {
|
|
5049
5101
|
if (this.formControlRef.hasError(EnumerationFieldValidation.REQUIRED)) {
|
|
5050
5102
|
return this._translate.instant('dataField.validations.required');
|
|
@@ -7274,6 +7326,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7274
7326
|
type: Input
|
|
7275
7327
|
}] } });
|
|
7276
7328
|
|
|
7329
|
+
var MultichoiceAutocompleteFilterProperty;
|
|
7330
|
+
(function (MultichoiceAutocompleteFilterProperty) {
|
|
7331
|
+
MultichoiceAutocompleteFilterProperty["PREFIX"] = "prefix";
|
|
7332
|
+
MultichoiceAutocompleteFilterProperty["SUBSTRING"] = "substring";
|
|
7333
|
+
})(MultichoiceAutocompleteFilterProperty || (MultichoiceAutocompleteFilterProperty = {}));
|
|
7334
|
+
|
|
7277
7335
|
class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
7278
7336
|
constructor() {
|
|
7279
7337
|
this.separatorKeysCodes = [ENTER, COMMA];
|
|
@@ -7320,7 +7378,34 @@ class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
|
7320
7378
|
this.filteredOptions = of(this._filter(this.input.nativeElement.value).filter((option) => !this.multichoiceField.value.includes(option.key)));
|
|
7321
7379
|
}
|
|
7322
7380
|
}
|
|
7381
|
+
checkPropertyInComponent(property) {
|
|
7382
|
+
return !!this.multichoiceField.component && !!this.multichoiceField.component.properties && property in this.multichoiceField.component.properties;
|
|
7383
|
+
}
|
|
7384
|
+
filterType() {
|
|
7385
|
+
if (this.checkPropertyInComponent('filter')) {
|
|
7386
|
+
return this.multichoiceField.component.properties.filter;
|
|
7387
|
+
}
|
|
7388
|
+
}
|
|
7323
7389
|
_filter(value) {
|
|
7390
|
+
var _a;
|
|
7391
|
+
let filterType = (_a = this.filterType()) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
7392
|
+
switch (filterType) {
|
|
7393
|
+
case MultichoiceAutocompleteFilterProperty.SUBSTRING:
|
|
7394
|
+
return this._filterInclude(value);
|
|
7395
|
+
case MultichoiceAutocompleteFilterProperty.PREFIX:
|
|
7396
|
+
return this._filterIndexOf(value);
|
|
7397
|
+
default:
|
|
7398
|
+
return this._filterIndexOf(value);
|
|
7399
|
+
}
|
|
7400
|
+
}
|
|
7401
|
+
_filterInclude(value) {
|
|
7402
|
+
if (Array.isArray(value)) {
|
|
7403
|
+
value = '';
|
|
7404
|
+
}
|
|
7405
|
+
const filterValue = value === null || value === void 0 ? void 0 : value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
7406
|
+
return this.multichoiceField.choices.filter(option => option.value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '').includes(filterValue));
|
|
7407
|
+
}
|
|
7408
|
+
_filterIndexOf(value) {
|
|
7324
7409
|
if (Array.isArray(value)) {
|
|
7325
7410
|
value = '';
|
|
7326
7411
|
}
|
|
@@ -8296,6 +8381,9 @@ class AbstractFilterFieldComponent extends AbstractDataFieldComponent {
|
|
|
8296
8381
|
this.portal = new ComponentPortal(this.getFilterContentComponent(), null, injector);
|
|
8297
8382
|
this.initialized = true;
|
|
8298
8383
|
}
|
|
8384
|
+
get editable() {
|
|
8385
|
+
return !!this.dataField.behavior.editable;
|
|
8386
|
+
}
|
|
8299
8387
|
}
|
|
8300
8388
|
AbstractFilterFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldComponent, deps: [{ token: i0.Injector }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
8301
8389
|
AbstractFilterFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldComponent, selector: "ncc-abstract-filter-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
@@ -13278,6 +13366,181 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
13278
13366
|
}] }, { type: SearchService }];
|
|
13279
13367
|
} });
|
|
13280
13368
|
|
|
13369
|
+
var Dashboard;
|
|
13370
|
+
(function (Dashboard) {
|
|
13371
|
+
Dashboard["FILTER_TAB_VIEW_ID"] = "filter-tab-view";
|
|
13372
|
+
Dashboard["FILTER_CASE_VIEW_ID"] = "filter-case-view";
|
|
13373
|
+
Dashboard["FILTER_TASK_VIEW_ID"] = "filter-task-view";
|
|
13374
|
+
Dashboard["FILTER_TAB_VIEW_TITLE_KEY"] = "tabTitle";
|
|
13375
|
+
Dashboard["FILTER_TAB_VIEW_ICON_KEY"] = "tabIcon";
|
|
13376
|
+
Dashboard["FILTER_TAB_VIEW_COMPONENT_ID"] = "filter-tab-view";
|
|
13377
|
+
})(Dashboard || (Dashboard = {}));
|
|
13378
|
+
|
|
13379
|
+
class DashboardPortalComponentRegistryService {
|
|
13380
|
+
constructor() {
|
|
13381
|
+
this.registry = new Map();
|
|
13382
|
+
this.typeRegistry = new Map();
|
|
13383
|
+
}
|
|
13384
|
+
register(component, factory) {
|
|
13385
|
+
this.registry.set(component, factory);
|
|
13386
|
+
}
|
|
13387
|
+
registerType(key, type) {
|
|
13388
|
+
this.typeRegistry.set(key, type);
|
|
13389
|
+
}
|
|
13390
|
+
get(component, injector) {
|
|
13391
|
+
if (!this.registry.has(component)) {
|
|
13392
|
+
return undefined;
|
|
13393
|
+
}
|
|
13394
|
+
return this.registry.get(component)(injector);
|
|
13395
|
+
}
|
|
13396
|
+
getType(key) {
|
|
13397
|
+
if (!this.typeRegistry.has(key)) {
|
|
13398
|
+
return undefined;
|
|
13399
|
+
}
|
|
13400
|
+
return this.typeRegistry.get(key);
|
|
13401
|
+
}
|
|
13402
|
+
}
|
|
13403
|
+
DashboardPortalComponentRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13404
|
+
DashboardPortalComponentRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, providedIn: 'root' });
|
|
13405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, decorators: [{
|
|
13406
|
+
type: Injectable,
|
|
13407
|
+
args: [{
|
|
13408
|
+
providedIn: 'root'
|
|
13409
|
+
}]
|
|
13410
|
+
}], ctorParameters: function () { return []; } });
|
|
13411
|
+
|
|
13412
|
+
class AbstractFilterFieldTabViewComponent {
|
|
13413
|
+
constructor(_registry, _filterField, _tabContentComponent, _tabViewComponent) {
|
|
13414
|
+
var _a, _b;
|
|
13415
|
+
this._registry = _registry;
|
|
13416
|
+
this._filterField = _filterField;
|
|
13417
|
+
this._tabContentComponent = _tabContentComponent;
|
|
13418
|
+
this._tabViewComponent = _tabViewComponent;
|
|
13419
|
+
this.tabs = [
|
|
13420
|
+
{
|
|
13421
|
+
label: {
|
|
13422
|
+
text: (_a = this._filterField.filterMetadata[Dashboard.FILTER_TAB_VIEW_TITLE_KEY]) !== null && _a !== void 0 ? _a : this._filterField.title,
|
|
13423
|
+
icon: (_b = this._filterField.filterMetadata[Dashboard.FILTER_TAB_VIEW_ICON_KEY]) !== null && _b !== void 0 ? _b : 'home'
|
|
13424
|
+
},
|
|
13425
|
+
canBeClosed: false,
|
|
13426
|
+
tabContentComponent: this.tabContentComponent(),
|
|
13427
|
+
injectedObject: {
|
|
13428
|
+
tabViewComponent: this.tabViewComponent(),
|
|
13429
|
+
tabViewOrder: 0,
|
|
13430
|
+
}
|
|
13431
|
+
}
|
|
13432
|
+
];
|
|
13433
|
+
}
|
|
13434
|
+
tabContentComponent() {
|
|
13435
|
+
let tabContentComponent = this._tabContentComponent;
|
|
13436
|
+
if (!!this._registry.getType(Dashboard.FILTER_CASE_VIEW_ID)) {
|
|
13437
|
+
tabContentComponent = this._registry.getType(Dashboard.FILTER_CASE_VIEW_ID);
|
|
13438
|
+
}
|
|
13439
|
+
return tabContentComponent;
|
|
13440
|
+
}
|
|
13441
|
+
;
|
|
13442
|
+
tabViewComponent() {
|
|
13443
|
+
let tabViewComponent = this._tabViewComponent;
|
|
13444
|
+
if (!!this._registry.getType(Dashboard.FILTER_TASK_VIEW_ID)) {
|
|
13445
|
+
tabViewComponent = this._registry.getType(Dashboard.FILTER_TASK_VIEW_ID);
|
|
13446
|
+
}
|
|
13447
|
+
return tabViewComponent;
|
|
13448
|
+
}
|
|
13449
|
+
;
|
|
13450
|
+
}
|
|
13451
|
+
AbstractFilterFieldTabViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewComponent, deps: [{ token: DashboardPortalComponentRegistryService }, { token: FilterField }, { token: i0.Type }, { token: i0.Type }], target: i0.ɵɵFactoryTarget.Component });
|
|
13452
|
+
AbstractFilterFieldTabViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldTabViewComponent, selector: "ncc-abstract-filter-field-tab-view", ngImport: i0, template: '', isInline: true });
|
|
13453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewComponent, decorators: [{
|
|
13454
|
+
type: Component,
|
|
13455
|
+
args: [{
|
|
13456
|
+
selector: 'ncc-abstract-filter-field-tab-view',
|
|
13457
|
+
template: ''
|
|
13458
|
+
}]
|
|
13459
|
+
}], ctorParameters: function () { return [{ type: DashboardPortalComponentRegistryService }, { type: FilterField }, { type: i0.Type }, { type: i0.Type }]; } });
|
|
13460
|
+
|
|
13461
|
+
const NAE_VIEW_ID = new InjectionToken('NaeViewId');
|
|
13462
|
+
const NAE_VIEW_ID_SEGMENT = new InjectionToken('NaeViewIdSegment');
|
|
13463
|
+
|
|
13464
|
+
class ViewIdService {
|
|
13465
|
+
constructor(parentInjector, idSegment) {
|
|
13466
|
+
this._viewId = '';
|
|
13467
|
+
if (parentInjector !== null) {
|
|
13468
|
+
const parentIdService = parentInjector.get(ViewIdService, null);
|
|
13469
|
+
if (parentIdService !== null) {
|
|
13470
|
+
this._viewId = parentIdService.viewId + ViewIdService.VIEW_ID_SEGMENT_SEPARATOR;
|
|
13471
|
+
}
|
|
13472
|
+
}
|
|
13473
|
+
this._viewId += idSegment;
|
|
13474
|
+
}
|
|
13475
|
+
get viewId() {
|
|
13476
|
+
return this._viewId;
|
|
13477
|
+
}
|
|
13478
|
+
}
|
|
13479
|
+
ViewIdService.VIEW_ID_SEGMENT_SEPARATOR = '-';
|
|
13480
|
+
ViewIdService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, deps: [{ token: i0.Injector, optional: true, skipSelf: true }, { token: NAE_VIEW_ID_SEGMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13481
|
+
ViewIdService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService });
|
|
13482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, decorators: [{
|
|
13483
|
+
type: Injectable
|
|
13484
|
+
}], ctorParameters: function () {
|
|
13485
|
+
return [{ type: i0.Injector, decorators: [{
|
|
13486
|
+
type: Optional
|
|
13487
|
+
}, {
|
|
13488
|
+
type: SkipSelf
|
|
13489
|
+
}] }, { type: undefined, decorators: [{
|
|
13490
|
+
type: Inject,
|
|
13491
|
+
args: [NAE_VIEW_ID_SEGMENT]
|
|
13492
|
+
}] }];
|
|
13493
|
+
} });
|
|
13494
|
+
|
|
13495
|
+
class AbstractFilterFieldTabViewContentComponent extends AbstractFilterFieldContentComponent {
|
|
13496
|
+
constructor(registry, injector, filterField, searchService) {
|
|
13497
|
+
super(filterField, searchService);
|
|
13498
|
+
this.registry = registry;
|
|
13499
|
+
this.injector = injector;
|
|
13500
|
+
}
|
|
13501
|
+
ngAfterViewInit() {
|
|
13502
|
+
this.createFilter();
|
|
13503
|
+
this._filterField.valueChanges().subscribe(() => {
|
|
13504
|
+
this.createFilter();
|
|
13505
|
+
});
|
|
13506
|
+
}
|
|
13507
|
+
createFilter() {
|
|
13508
|
+
const portalInjector = Injector.create({
|
|
13509
|
+
providers: [
|
|
13510
|
+
{
|
|
13511
|
+
provide: NAE_FILTER_FIELD,
|
|
13512
|
+
useValue: this._filterField
|
|
13513
|
+
},
|
|
13514
|
+
{
|
|
13515
|
+
provide: NAE_BASE_FILTER,
|
|
13516
|
+
useValue: { filter: SimpleFilter.fromQuery({ query: this._filterField.value }, FilterType.CASE) }
|
|
13517
|
+
},
|
|
13518
|
+
{
|
|
13519
|
+
provide: NAE_VIEW_ID_SEGMENT,
|
|
13520
|
+
useValue: this._filterField.parentCaseId + '_' + this._filterField.parentTaskId + '_' + this._filterField.stringId
|
|
13521
|
+
},
|
|
13522
|
+
{ provide: ViewIdService, useClass: ViewIdService }
|
|
13523
|
+
],
|
|
13524
|
+
parent: this.injector
|
|
13525
|
+
});
|
|
13526
|
+
this.componentPortal = this.registry.get(Dashboard.FILTER_TAB_VIEW_ID, portalInjector);
|
|
13527
|
+
}
|
|
13528
|
+
}
|
|
13529
|
+
AbstractFilterFieldTabViewContentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewContentComponent, deps: [{ token: DashboardPortalComponentRegistryService }, { token: i0.Injector }, { token: NAE_FILTER_FIELD }, { token: SearchService }], target: i0.ɵɵFactoryTarget.Component });
|
|
13530
|
+
AbstractFilterFieldTabViewContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldTabViewContentComponent, selector: "ncc-abstract-filter-field-tab-view-content", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
13531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewContentComponent, decorators: [{
|
|
13532
|
+
type: Component,
|
|
13533
|
+
args: [{
|
|
13534
|
+
selector: 'ncc-abstract-filter-field-tab-view-content',
|
|
13535
|
+
template: ''
|
|
13536
|
+
}]
|
|
13537
|
+
}], ctorParameters: function () {
|
|
13538
|
+
return [{ type: DashboardPortalComponentRegistryService }, { type: i0.Injector }, { type: FilterField, decorators: [{
|
|
13539
|
+
type: Inject,
|
|
13540
|
+
args: [NAE_FILTER_FIELD]
|
|
13541
|
+
}] }, { type: SearchService }];
|
|
13542
|
+
} });
|
|
13543
|
+
|
|
13281
13544
|
class AbstractI18nFieldComponent extends AbstractDataFieldComponent {
|
|
13282
13545
|
constructor(informAboutInvalidData) {
|
|
13283
13546
|
super(informAboutInvalidData);
|
|
@@ -15531,29 +15794,6 @@ var TaskRefComponents;
|
|
|
15531
15794
|
TaskRefComponents["DASHBOARD"] = "dashboard";
|
|
15532
15795
|
})(TaskRefComponents || (TaskRefComponents = {}));
|
|
15533
15796
|
|
|
15534
|
-
class DashboardPortalComponentRegistryService {
|
|
15535
|
-
constructor() {
|
|
15536
|
-
this.registry = new Map();
|
|
15537
|
-
}
|
|
15538
|
-
register(component, factory) {
|
|
15539
|
-
this.registry.set(component, factory);
|
|
15540
|
-
}
|
|
15541
|
-
get(component, injector) {
|
|
15542
|
-
if (!this.registry.has(component)) {
|
|
15543
|
-
return undefined;
|
|
15544
|
-
}
|
|
15545
|
-
return this.registry.get(component)(injector);
|
|
15546
|
-
}
|
|
15547
|
-
}
|
|
15548
|
-
DashboardPortalComponentRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15549
|
-
DashboardPortalComponentRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, providedIn: 'root' });
|
|
15550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, decorators: [{
|
|
15551
|
-
type: Injectable,
|
|
15552
|
-
args: [{
|
|
15553
|
-
providedIn: 'root'
|
|
15554
|
-
}]
|
|
15555
|
-
}], ctorParameters: function () { return []; } });
|
|
15556
|
-
|
|
15557
15797
|
/* CLASSES */
|
|
15558
15798
|
|
|
15559
15799
|
class RedirectService {
|
|
@@ -16061,9 +16301,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
16061
16301
|
|
|
16062
16302
|
/* APIS */
|
|
16063
16303
|
|
|
16064
|
-
const NAE_VIEW_ID = new InjectionToken('NaeViewId');
|
|
16065
|
-
const NAE_VIEW_ID_SEGMENT = new InjectionToken('NaeViewIdSegment');
|
|
16066
|
-
|
|
16067
16304
|
// USER MODELS
|
|
16068
16305
|
|
|
16069
16306
|
/**
|
|
@@ -16233,37 +16470,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
16233
16470
|
type: Injectable
|
|
16234
16471
|
}], ctorParameters: function () { return [{ type: UserResourceService }, { type: LoggerService }, { type: SnackBarService }, { type: i1$2.TranslateService }]; } });
|
|
16235
16472
|
|
|
16236
|
-
class ViewIdService {
|
|
16237
|
-
constructor(parentInjector, idSegment) {
|
|
16238
|
-
this._viewId = '';
|
|
16239
|
-
if (parentInjector !== null) {
|
|
16240
|
-
const parentIdService = parentInjector.get(ViewIdService, null);
|
|
16241
|
-
if (parentIdService !== null) {
|
|
16242
|
-
this._viewId = parentIdService.viewId + ViewIdService.VIEW_ID_SEGMENT_SEPARATOR;
|
|
16243
|
-
}
|
|
16244
|
-
}
|
|
16245
|
-
this._viewId += idSegment;
|
|
16246
|
-
}
|
|
16247
|
-
get viewId() {
|
|
16248
|
-
return this._viewId;
|
|
16249
|
-
}
|
|
16250
|
-
}
|
|
16251
|
-
ViewIdService.VIEW_ID_SEGMENT_SEPARATOR = '-';
|
|
16252
|
-
ViewIdService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, deps: [{ token: i0.Injector, optional: true, skipSelf: true }, { token: NAE_VIEW_ID_SEGMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16253
|
-
ViewIdService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService });
|
|
16254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, decorators: [{
|
|
16255
|
-
type: Injectable
|
|
16256
|
-
}], ctorParameters: function () {
|
|
16257
|
-
return [{ type: i0.Injector, decorators: [{
|
|
16258
|
-
type: Optional
|
|
16259
|
-
}, {
|
|
16260
|
-
type: SkipSelf
|
|
16261
|
-
}] }, { type: undefined, decorators: [{
|
|
16262
|
-
type: Inject,
|
|
16263
|
-
args: [NAE_VIEW_ID_SEGMENT]
|
|
16264
|
-
}] }];
|
|
16265
|
-
} });
|
|
16266
|
-
|
|
16267
16473
|
class AbstractNavigationResizableDrawerComponent {
|
|
16268
16474
|
constructor() {
|
|
16269
16475
|
}
|
|
@@ -23702,7 +23908,7 @@ class PublicPetriNetResourceService extends PetriNetResourceService {
|
|
|
23702
23908
|
* **Request URL:** {{baseUrl}}/api/public/petrinet/{identifier}/{version}
|
|
23703
23909
|
*/
|
|
23704
23910
|
getOne(identifier, version, params) {
|
|
23705
|
-
return this.provider.get$('public/petrinet/' + identifier + '/' + version, this.SERVER_URL, params)
|
|
23911
|
+
return this.provider.get$('public/petrinet/' + btoa(identifier) + '/' + version, this.SERVER_URL, params)
|
|
23706
23912
|
.pipe(map(r => this.changeType(r, 'petriNetReferences')));
|
|
23707
23913
|
}
|
|
23708
23914
|
/**
|
|
@@ -23899,9 +24105,9 @@ class PublicTaskResourceService extends TaskResourceService {
|
|
|
23899
24105
|
* Delete file from the task
|
|
23900
24106
|
* DELETE
|
|
23901
24107
|
*/
|
|
23902
|
-
deleteFile(taskId, fieldId, name) {
|
|
24108
|
+
deleteFile(taskId, fieldId, name, param) {
|
|
23903
24109
|
const url = !!name ? `public/task/${taskId}/file/${fieldId}/${name}` : `public/task/${taskId}/file/${fieldId}`;
|
|
23904
|
-
return this._resourceProvider.delete$(url, this.SERVER_URL).pipe(map(r => this.changeType(r, undefined)));
|
|
24110
|
+
return this._resourceProvider.delete$(url, this.SERVER_URL, param).pipe(map(r => this.changeType(r, undefined)));
|
|
23905
24111
|
}
|
|
23906
24112
|
/**
|
|
23907
24113
|
* Download task file preview for field value
|
|
@@ -30643,6 +30849,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
30643
30849
|
type: Injectable
|
|
30644
30850
|
}] });
|
|
30645
30851
|
|
|
30852
|
+
class MockUserService {
|
|
30853
|
+
constructor() {
|
|
30854
|
+
this._userChange$ = new ReplaySubject(1);
|
|
30855
|
+
}
|
|
30856
|
+
get user$() {
|
|
30857
|
+
return this._userChange$.asObservable();
|
|
30858
|
+
}
|
|
30859
|
+
get user() {
|
|
30860
|
+
return this._user;
|
|
30861
|
+
}
|
|
30862
|
+
set user(user) {
|
|
30863
|
+
this._user = user;
|
|
30864
|
+
}
|
|
30865
|
+
hasRoleById(roleStringId) {
|
|
30866
|
+
if (!roleStringId || !this._user.roles) {
|
|
30867
|
+
return false;
|
|
30868
|
+
}
|
|
30869
|
+
return this._user.roles.some(r => r.stringId === roleStringId);
|
|
30870
|
+
}
|
|
30871
|
+
hasRoleByName(roleName, netIdentifier) {
|
|
30872
|
+
if (!roleName || !netIdentifier || !this._user.roles) {
|
|
30873
|
+
return false;
|
|
30874
|
+
}
|
|
30875
|
+
return this._user.roles.some(r => r.stringId === roleName && r.netImportId === netIdentifier);
|
|
30876
|
+
}
|
|
30877
|
+
hasAuthority() {
|
|
30878
|
+
return true;
|
|
30879
|
+
}
|
|
30880
|
+
}
|
|
30881
|
+
MockUserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
30882
|
+
MockUserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService });
|
|
30883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService, decorators: [{
|
|
30884
|
+
type: Injectable
|
|
30885
|
+
}], ctorParameters: function () { return []; } });
|
|
30886
|
+
|
|
30646
30887
|
class MockAuthenticationMethodService extends AuthenticationMethodService {
|
|
30647
30888
|
login(credentials) {
|
|
30648
30889
|
return of({ email: 'mail', id: 'id', name: 'name', surname: 'surname', fullName: 'name surname',
|
|
@@ -32846,7 +33087,7 @@ const publicFactoryResolver = (userService, sessionService, authService, router,
|
|
|
32846
33087
|
};
|
|
32847
33088
|
|
|
32848
33089
|
const getNetAndCreateCase = (router, route, process, caseResourceService, snackBarService, translate, publicTaskLoadingService) => {
|
|
32849
|
-
process.getNet(route.snapshot.paramMap.get('petriNetId')).pipe(mergeMap(net => {
|
|
33090
|
+
process.getNet(atob(route.snapshot.paramMap.get('petriNetId'))).pipe(mergeMap(net => {
|
|
32850
33091
|
if (net) {
|
|
32851
33092
|
publicTaskLoadingService.setLoading$(true);
|
|
32852
33093
|
const newCase = {
|
|
@@ -33128,5 +33369,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
33128
33369
|
* Generated bundle index. Do not edit.
|
|
33129
33370
|
*/
|
|
33130
33371
|
|
|
33131
|
-
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileFieldComponent, AbstractFileListFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT_LANGUAGE_CODE, DashboardCardTypes, DashboardMultiData, DashboardPortalComponentRegistryService, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FILTER_IDENTIFIERS, FILTER_VIEW_TASK_TRANSITION_ID, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FinishPolicy, FinishPolicyService, FinishTaskService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldComponent, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserImpersonationConstants, UserInviteService, UserListField, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, refreshTree, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment };
|
|
33372
|
+
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileFieldComponent, AbstractFileListFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterFieldTabViewComponent, AbstractFilterFieldTabViewContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT_LANGUAGE_CODE, Dashboard, DashboardCardTypes, DashboardMultiData, DashboardPortalComponentRegistryService, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationAutocompleteFilterProperty, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FILTER_IDENTIFIERS, FILTER_VIEW_TASK_TRANSITION_ID, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FinishPolicy, FinishPolicyService, FinishTaskService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldComponent, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserImpersonationConstants, UserInviteService, UserListField, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, refreshTree, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment };
|
|
33132
33373
|
//# sourceMappingURL=netgrif-components-core.mjs.map
|