@huntsman-cancer-institute/cod 16.0.0 → 17.0.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/cod.module.d.ts +31 -31
- package/components/attribute-absolute.component.d.ts +28 -28
- package/components/attribute-base.d.ts +135 -135
- package/components/attribute-configuration.component.d.ts +52 -52
- package/components/attribute-container.component.d.ts +50 -50
- package/components/attribute-default.component.d.ts +20 -20
- package/components/attribute-edit.component.d.ts +15 -15
- package/components/attribute-flex.component.d.ts +25 -25
- package/date/date-util.d.ts +9 -9
- package/esm2022/cod.module.mjs +119 -119
- package/esm2022/components/attribute-absolute.component.mjs +104 -104
- package/esm2022/components/attribute-base.mjs +564 -564
- package/esm2022/components/attribute-configuration.component.mjs +138 -138
- package/esm2022/components/attribute-container.component.mjs +155 -155
- package/esm2022/components/attribute-default.component.mjs +63 -63
- package/esm2022/components/attribute-edit.component.mjs +33 -33
- package/esm2022/components/attribute-flex.component.mjs +58 -58
- package/esm2022/date/date-util.mjs +59 -59
- package/esm2022/huntsman-cancer-institute-cod.mjs +4 -4
- package/esm2022/index.mjs +20 -20
- package/esm2022/model/attribute-choice.entity.mjs +1 -1
- package/esm2022/model/attribute-configuration.dto.mjs +1 -1
- package/esm2022/model/attribute-configuration.entity.mjs +1 -1
- package/esm2022/model/attribute-container.entity.mjs +1 -1
- package/esm2022/model/attribute-dictionary.entity.mjs +1 -1
- package/esm2022/model/attribute-long-text.entity.mjs +1 -1
- package/esm2022/model/attribute-value-grid-row.entity.mjs +1 -1
- package/esm2022/model/attribute-value-set.entity.mjs +1 -1
- package/esm2022/model/attribute-value.entity.mjs +2 -2
- package/esm2022/model/attribute.entity.mjs +1 -1
- package/esm2022/model/dictionary-entries.dto.mjs +2 -2
- package/esm2022/model/extractable-field-status.entity.mjs +1 -1
- package/esm2022/model/graphical-attribute.entity.mjs +1 -1
- package/esm2022/model/pre-eval.dto.mjs +2 -2
- package/esm2022/pipes/is-group-attribute.pipe.mjs +32 -32
- package/esm2022/services/attribute.service.mjs +1211 -1211
- package/fesm2022/huntsman-cancer-institute-cod.mjs +2409 -2409
- package/fesm2022/huntsman-cancer-institute-cod.mjs.map +1 -1
- package/index.d.ts +27 -27
- package/model/attribute-choice.entity.d.ts +16 -16
- package/model/attribute-configuration.dto.d.ts +13 -13
- package/model/attribute-configuration.entity.d.ts +12 -12
- package/model/attribute-container.entity.d.ts +9 -9
- package/model/attribute-dictionary.entity.d.ts +12 -12
- package/model/attribute-long-text.entity.d.ts +4 -4
- package/model/attribute-value-grid-row.entity.d.ts +7 -7
- package/model/attribute-value-set.entity.d.ts +11 -11
- package/model/attribute-value.entity.d.ts +28 -28
- package/model/attribute.entity.d.ts +26 -26
- package/model/dictionary-entries.dto.d.ts +6 -6
- package/model/extractable-field-status.entity.d.ts +8 -8
- package/model/graphical-attribute.entity.d.ts +13 -13
- package/model/pre-eval.dto.d.ts +5 -5
- package/package.json +23 -7
- package/pipes/is-group-attribute.pipe.d.ts +13 -13
- package/services/attribute.service.d.ts +263 -263
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { GraphicalAttribute } from "../model/graphical-attribute.entity";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AttributeDefaultComponent implements ControlValueAccessor {
|
|
5
|
-
_value: string;
|
|
6
|
-
id: string;
|
|
7
|
-
name: string;
|
|
8
|
-
attribute: GraphicalAttribute;
|
|
9
|
-
onChange: any;
|
|
10
|
-
onTouched: any;
|
|
11
|
-
get value(): string;
|
|
12
|
-
set value(v: string);
|
|
13
|
-
constructor();
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
writeValue(v: string): void;
|
|
16
|
-
registerOnChange(fn: any): void;
|
|
17
|
-
registerOnTouched(fn: any): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeDefaultComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeDefaultComponent, "hci-attribute-default", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "attribute": { "alias": "attribute"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
+
import { GraphicalAttribute } from "../model/graphical-attribute.entity";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AttributeDefaultComponent implements ControlValueAccessor {
|
|
5
|
+
_value: string;
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
attribute: GraphicalAttribute;
|
|
9
|
+
onChange: any;
|
|
10
|
+
onTouched: any;
|
|
11
|
+
get value(): string;
|
|
12
|
+
set value(v: string);
|
|
13
|
+
constructor();
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
writeValue(v: string): void;
|
|
16
|
+
registerOnChange(fn: any): void;
|
|
17
|
+
registerOnTouched(fn: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeDefaultComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeDefaultComponent, "hci-attribute-default", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "attribute": { "alias": "attribute"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
|
-
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
-
import { AttributeBase } from "./attribute-base";
|
|
4
|
-
import { AttributeService } from "../services/attribute.service";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
/**
|
|
7
|
-
* This component is specifically designed to exist in a modal for editing. This is different from the flex attribute
|
|
8
|
-
* because components such as the grid need extra configuration for editing.
|
|
9
|
-
*/
|
|
10
|
-
export declare class AttributeEditComponent extends AttributeBase {
|
|
11
|
-
constructor(attributeService: AttributeService, elementRef: ElementRef, renderer: Renderer2, modalService: NgbModal);
|
|
12
|
-
init(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeEditComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeEditComponent, "hci-attribute-edit", never, {}, {}, never, never, false, never>;
|
|
15
|
-
}
|
|
1
|
+
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { AttributeBase } from "./attribute-base";
|
|
4
|
+
import { AttributeService } from "../services/attribute.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* This component is specifically designed to exist in a modal for editing. This is different from the flex attribute
|
|
8
|
+
* because components such as the grid need extra configuration for editing.
|
|
9
|
+
*/
|
|
10
|
+
export declare class AttributeEditComponent extends AttributeBase {
|
|
11
|
+
constructor(attributeService: AttributeService, elementRef: ElementRef, renderer: Renderer2, modalService: NgbModal);
|
|
12
|
+
init(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeEditComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeEditComponent, "hci-attribute-edit", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
|
-
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
-
import { AttributeBase } from "./attribute-base";
|
|
4
|
-
import { AttributeService } from "../services/attribute.service";
|
|
5
|
-
import { GraphicalAttribute } from "../model/graphical-attribute.entity";
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* The view for attributes organized in a flex layout. This will arrange all attributes in a four column layout
|
|
9
|
-
* with grids taking up all 12 columns. The attributes here will fill the this parent component which defines the
|
|
10
|
-
* column size.
|
|
11
|
-
*/
|
|
12
|
-
export declare class AttributeFlexComponent extends AttributeBase {
|
|
13
|
-
constructor(attributeService: AttributeService, elementRef: ElementRef, renderer: Renderer2, modalService: NgbModal);
|
|
14
|
-
ngAfterViewInit(): void;
|
|
15
|
-
/**
|
|
16
|
-
* Flex needs to extend grid columns because we no longer want to use absolute width. Here we generate percentage
|
|
17
|
-
* based upon the absolute width, but still use absolute width for the min width.
|
|
18
|
-
*
|
|
19
|
-
* @param {Attribute[]} attributes
|
|
20
|
-
* @param {any[]} columns
|
|
21
|
-
*/
|
|
22
|
-
initializeGridColumns(attributes: GraphicalAttribute[], columns: any[]): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeFlexComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeFlexComponent, "hci-attribute-flex", never, {}, {}, never, never, false, never>;
|
|
25
|
-
}
|
|
1
|
+
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { AttributeBase } from "./attribute-base";
|
|
4
|
+
import { AttributeService } from "../services/attribute.service";
|
|
5
|
+
import { GraphicalAttribute } from "../model/graphical-attribute.entity";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* The view for attributes organized in a flex layout. This will arrange all attributes in a four column layout
|
|
9
|
+
* with grids taking up all 12 columns. The attributes here will fill the this parent component which defines the
|
|
10
|
+
* column size.
|
|
11
|
+
*/
|
|
12
|
+
export declare class AttributeFlexComponent extends AttributeBase {
|
|
13
|
+
constructor(attributeService: AttributeService, elementRef: ElementRef, renderer: Renderer2, modalService: NgbModal);
|
|
14
|
+
ngAfterViewInit(): void;
|
|
15
|
+
/**
|
|
16
|
+
* Flex needs to extend grid columns because we no longer want to use absolute width. Here we generate percentage
|
|
17
|
+
* based upon the absolute width, but still use absolute width for the min width.
|
|
18
|
+
*
|
|
19
|
+
* @param {Attribute[]} attributes
|
|
20
|
+
* @param {any[]} columns
|
|
21
|
+
*/
|
|
22
|
+
initializeGridColumns(attributes: GraphicalAttribute[], columns: any[]): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttributeFlexComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttributeFlexComponent, "hci-attribute-flex", never, {}, {}, never, never, false, never>;
|
|
25
|
+
}
|
package/date/date-util.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class DateUtil {
|
|
3
|
-
static dateComparator(date1: any, date2: any): number;
|
|
4
|
-
static dateTimeComparator(date1: any, date2: any): number;
|
|
5
|
-
static monthToComparableNumber(date: any): number;
|
|
6
|
-
static daytimeToComparableNumber(date: any): number;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateUtil, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DateUtil>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DateUtil {
|
|
3
|
+
static dateComparator(date1: any, date2: any): number;
|
|
4
|
+
static dateTimeComparator(date1: any, date2: any): number;
|
|
5
|
+
static monthToComparableNumber(date: any): number;
|
|
6
|
+
static daytimeToComparableNumber(date: any): number;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateUtil, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DateUtil>;
|
|
9
|
+
}
|
package/esm2022/cod.module.mjs
CHANGED
|
@@ -1,119 +1,119 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2016 Huntsman Cancer Institute at the University of Utah, Confidential and Proprietary
|
|
3
|
-
*/
|
|
4
|
-
import { NgModule } from "@angular/core";
|
|
5
|
-
import { CommonModule } from "@angular/common";
|
|
6
|
-
import { FormsModule } from "@angular/forms";
|
|
7
|
-
import { RouterModule } from "@angular/router";
|
|
8
|
-
import { MatDatepickerModule } from "@angular/material/datepicker";
|
|
9
|
-
import { MatNativeDateModule } from "@angular/material/core";
|
|
10
|
-
import { NgxMatDatetimePickerModule, NgxMatNativeDateModule, NgxMatTimepickerModule } from "@angular-material-components/datetime-picker";
|
|
11
|
-
import { AgGridModule } from "ag-grid-angular";
|
|
12
|
-
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
13
|
-
import { DropdownModule, SelectModule } from "@huntsman-cancer-institute/input";
|
|
14
|
-
import { MiscModule } from "@huntsman-cancer-institute/misc";
|
|
15
|
-
import { AttributeConfigurationComponent } from "./components/attribute-configuration.component";
|
|
16
|
-
import { IsGroupAttributePipe } from "./pipes/is-group-attribute.pipe";
|
|
17
|
-
import { AttributeAbsoluteComponent } from "./components/attribute-absolute.component";
|
|
18
|
-
import { AttributeFlexComponent } from "./components/attribute-flex.component";
|
|
19
|
-
import { AttributeEditComponent } from "./components/attribute-edit.component";
|
|
20
|
-
import { AttributeDefaultComponent } from "./components/attribute-default.component";
|
|
21
|
-
import { AttributeContainerComponent } from "./components/attribute-container.component";
|
|
22
|
-
import { AttributeBase } from "./components/attribute-base";
|
|
23
|
-
import { AttributeService } from "./services/attribute.service";
|
|
24
|
-
import * as i0 from "@angular/core";
|
|
25
|
-
/**
|
|
26
|
-
* The main @huntsman-cancer-institute/cod module. Custom components to be used by the grid are passed in here.
|
|
27
|
-
*
|
|
28
|
-
* @since 1.0.0
|
|
29
|
-
*/
|
|
30
|
-
export class CodModule {
|
|
31
|
-
static forRoot() {
|
|
32
|
-
return {
|
|
33
|
-
providers: [
|
|
34
|
-
AttributeService
|
|
35
|
-
],
|
|
36
|
-
ngModule: CodModule
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
40
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
41
|
-
AttributeConfigurationComponent,
|
|
42
|
-
AttributeAbsoluteComponent,
|
|
43
|
-
AttributeContainerComponent,
|
|
44
|
-
AttributeFlexComponent,
|
|
45
|
-
AttributeEditComponent,
|
|
46
|
-
AttributeDefaultComponent,
|
|
47
|
-
IsGroupAttributePipe], imports: [AgGridModule,
|
|
48
|
-
CommonModule,
|
|
49
|
-
FormsModule,
|
|
50
|
-
RouterModule,
|
|
51
|
-
NgbModule,
|
|
52
|
-
DropdownModule,
|
|
53
|
-
SelectModule,
|
|
54
|
-
MiscModule,
|
|
55
|
-
MatDatepickerModule,
|
|
56
|
-
MatNativeDateModule,
|
|
57
|
-
NgxMatDatetimePickerModule,
|
|
58
|
-
NgxMatTimepickerModule,
|
|
59
|
-
NgxMatNativeDateModule], exports: [AttributeConfigurationComponent,
|
|
60
|
-
AttributeAbsoluteComponent,
|
|
61
|
-
AttributeFlexComponent,
|
|
62
|
-
AttributeEditComponent,
|
|
63
|
-
AttributeDefaultComponent,
|
|
64
|
-
AttributeContainerComponent,
|
|
65
|
-
IsGroupAttributePipe] }); }
|
|
66
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
67
|
-
CommonModule,
|
|
68
|
-
FormsModule,
|
|
69
|
-
RouterModule,
|
|
70
|
-
NgbModule,
|
|
71
|
-
DropdownModule,
|
|
72
|
-
SelectModule,
|
|
73
|
-
MiscModule,
|
|
74
|
-
MatDatepickerModule,
|
|
75
|
-
MatNativeDateModule,
|
|
76
|
-
NgxMatDatetimePickerModule,
|
|
77
|
-
NgxMatTimepickerModule,
|
|
78
|
-
NgxMatNativeDateModule] }); }
|
|
79
|
-
}
|
|
80
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
-
type: NgModule,
|
|
82
|
-
args: [{
|
|
83
|
-
imports: [
|
|
84
|
-
AgGridModule,
|
|
85
|
-
CommonModule,
|
|
86
|
-
FormsModule,
|
|
87
|
-
RouterModule,
|
|
88
|
-
NgbModule,
|
|
89
|
-
DropdownModule,
|
|
90
|
-
SelectModule,
|
|
91
|
-
MiscModule,
|
|
92
|
-
MatDatepickerModule,
|
|
93
|
-
MatNativeDateModule,
|
|
94
|
-
NgxMatDatetimePickerModule,
|
|
95
|
-
NgxMatTimepickerModule,
|
|
96
|
-
NgxMatNativeDateModule
|
|
97
|
-
],
|
|
98
|
-
declarations: [
|
|
99
|
-
AttributeBase,
|
|
100
|
-
AttributeConfigurationComponent,
|
|
101
|
-
AttributeAbsoluteComponent,
|
|
102
|
-
AttributeContainerComponent,
|
|
103
|
-
AttributeFlexComponent,
|
|
104
|
-
AttributeEditComponent,
|
|
105
|
-
AttributeDefaultComponent,
|
|
106
|
-
IsGroupAttributePipe
|
|
107
|
-
],
|
|
108
|
-
exports: [
|
|
109
|
-
AttributeConfigurationComponent,
|
|
110
|
-
AttributeAbsoluteComponent,
|
|
111
|
-
AttributeFlexComponent,
|
|
112
|
-
AttributeEditComponent,
|
|
113
|
-
AttributeDefaultComponent,
|
|
114
|
-
AttributeContainerComponent,
|
|
115
|
-
IsGroupAttributePipe
|
|
116
|
-
]
|
|
117
|
-
}]
|
|
118
|
-
}] });
|
|
119
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2016 Huntsman Cancer Institute at the University of Utah, Confidential and Proprietary
|
|
3
|
+
*/
|
|
4
|
+
import { NgModule } from "@angular/core";
|
|
5
|
+
import { CommonModule } from "@angular/common";
|
|
6
|
+
import { FormsModule } from "@angular/forms";
|
|
7
|
+
import { RouterModule } from "@angular/router";
|
|
8
|
+
import { MatDatepickerModule } from "@angular/material/datepicker";
|
|
9
|
+
import { MatNativeDateModule } from "@angular/material/core";
|
|
10
|
+
import { NgxMatDatetimePickerModule, NgxMatNativeDateModule, NgxMatTimepickerModule } from "@angular-material-components/datetime-picker";
|
|
11
|
+
import { AgGridModule } from "ag-grid-angular";
|
|
12
|
+
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
13
|
+
import { DropdownModule, SelectModule } from "@huntsman-cancer-institute/input";
|
|
14
|
+
import { MiscModule } from "@huntsman-cancer-institute/misc";
|
|
15
|
+
import { AttributeConfigurationComponent } from "./components/attribute-configuration.component";
|
|
16
|
+
import { IsGroupAttributePipe } from "./pipes/is-group-attribute.pipe";
|
|
17
|
+
import { AttributeAbsoluteComponent } from "./components/attribute-absolute.component";
|
|
18
|
+
import { AttributeFlexComponent } from "./components/attribute-flex.component";
|
|
19
|
+
import { AttributeEditComponent } from "./components/attribute-edit.component";
|
|
20
|
+
import { AttributeDefaultComponent } from "./components/attribute-default.component";
|
|
21
|
+
import { AttributeContainerComponent } from "./components/attribute-container.component";
|
|
22
|
+
import { AttributeBase } from "./components/attribute-base";
|
|
23
|
+
import { AttributeService } from "./services/attribute.service";
|
|
24
|
+
import * as i0 from "@angular/core";
|
|
25
|
+
/**
|
|
26
|
+
* The main @huntsman-cancer-institute/cod module. Custom components to be used by the grid are passed in here.
|
|
27
|
+
*
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
export class CodModule {
|
|
31
|
+
static forRoot() {
|
|
32
|
+
return {
|
|
33
|
+
providers: [
|
|
34
|
+
AttributeService
|
|
35
|
+
],
|
|
36
|
+
ngModule: CodModule
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
40
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: CodModule, declarations: [AttributeBase,
|
|
41
|
+
AttributeConfigurationComponent,
|
|
42
|
+
AttributeAbsoluteComponent,
|
|
43
|
+
AttributeContainerComponent,
|
|
44
|
+
AttributeFlexComponent,
|
|
45
|
+
AttributeEditComponent,
|
|
46
|
+
AttributeDefaultComponent,
|
|
47
|
+
IsGroupAttributePipe], imports: [AgGridModule,
|
|
48
|
+
CommonModule,
|
|
49
|
+
FormsModule,
|
|
50
|
+
RouterModule,
|
|
51
|
+
NgbModule,
|
|
52
|
+
DropdownModule,
|
|
53
|
+
SelectModule,
|
|
54
|
+
MiscModule,
|
|
55
|
+
MatDatepickerModule,
|
|
56
|
+
MatNativeDateModule,
|
|
57
|
+
NgxMatDatetimePickerModule,
|
|
58
|
+
NgxMatTimepickerModule,
|
|
59
|
+
NgxMatNativeDateModule], exports: [AttributeConfigurationComponent,
|
|
60
|
+
AttributeAbsoluteComponent,
|
|
61
|
+
AttributeFlexComponent,
|
|
62
|
+
AttributeEditComponent,
|
|
63
|
+
AttributeDefaultComponent,
|
|
64
|
+
AttributeContainerComponent,
|
|
65
|
+
IsGroupAttributePipe] }); }
|
|
66
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, imports: [AgGridModule,
|
|
67
|
+
CommonModule,
|
|
68
|
+
FormsModule,
|
|
69
|
+
RouterModule,
|
|
70
|
+
NgbModule,
|
|
71
|
+
DropdownModule,
|
|
72
|
+
SelectModule,
|
|
73
|
+
MiscModule,
|
|
74
|
+
MatDatepickerModule,
|
|
75
|
+
MatNativeDateModule,
|
|
76
|
+
NgxMatDatetimePickerModule,
|
|
77
|
+
NgxMatTimepickerModule,
|
|
78
|
+
NgxMatNativeDateModule] }); }
|
|
79
|
+
}
|
|
80
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, decorators: [{
|
|
81
|
+
type: NgModule,
|
|
82
|
+
args: [{
|
|
83
|
+
imports: [
|
|
84
|
+
AgGridModule,
|
|
85
|
+
CommonModule,
|
|
86
|
+
FormsModule,
|
|
87
|
+
RouterModule,
|
|
88
|
+
NgbModule,
|
|
89
|
+
DropdownModule,
|
|
90
|
+
SelectModule,
|
|
91
|
+
MiscModule,
|
|
92
|
+
MatDatepickerModule,
|
|
93
|
+
MatNativeDateModule,
|
|
94
|
+
NgxMatDatetimePickerModule,
|
|
95
|
+
NgxMatTimepickerModule,
|
|
96
|
+
NgxMatNativeDateModule
|
|
97
|
+
],
|
|
98
|
+
declarations: [
|
|
99
|
+
AttributeBase,
|
|
100
|
+
AttributeConfigurationComponent,
|
|
101
|
+
AttributeAbsoluteComponent,
|
|
102
|
+
AttributeContainerComponent,
|
|
103
|
+
AttributeFlexComponent,
|
|
104
|
+
AttributeEditComponent,
|
|
105
|
+
AttributeDefaultComponent,
|
|
106
|
+
IsGroupAttributePipe
|
|
107
|
+
],
|
|
108
|
+
exports: [
|
|
109
|
+
AttributeConfigurationComponent,
|
|
110
|
+
AttributeAbsoluteComponent,
|
|
111
|
+
AttributeFlexComponent,
|
|
112
|
+
AttributeEditComponent,
|
|
113
|
+
AttributeDefaultComponent,
|
|
114
|
+
AttributeContainerComponent,
|
|
115
|
+
IsGroupAttributePipe
|
|
116
|
+
]
|
|
117
|
+
}]
|
|
118
|
+
}] });
|
|
119
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29kLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2NvZC9zcmMvY29kLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE9BQU8sRUFBc0IsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzVELE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0MsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBRTdDLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQ2pFLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQzNELE9BQU8sRUFBQywwQkFBMEIsRUFBRSxzQkFBc0IsRUFBRSxzQkFBc0IsRUFBQyxNQUFNLDhDQUE4QyxDQUFDO0FBRXhJLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sNEJBQTRCLENBQUM7QUFDckQsT0FBTyxFQUFDLGNBQWMsRUFBRSxZQUFZLEVBQUMsTUFBTSxrQ0FBa0MsQ0FBQztBQUM5RSxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0saUNBQWlDLENBQUM7QUFFM0QsT0FBTyxFQUFDLCtCQUErQixFQUFDLE1BQU0sZ0RBQWdELENBQUM7QUFDL0YsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0saUNBQWlDLENBQUM7QUFDckUsT0FBTyxFQUFDLDBCQUEwQixFQUFDLE1BQU0sMkNBQTJDLENBQUM7QUFDckYsT0FBTyxFQUFDLHNCQUFzQixFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDN0UsT0FBTyxFQUFDLHNCQUFzQixFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDN0UsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sMENBQTBDLENBQUM7QUFDbkYsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sNENBQTRDLENBQUM7QUFDdkYsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBQzFELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLDhCQUE4QixDQUFDOztBQUc5RDs7OztHQUlHO0FBcUNILE1BQU0sT0FBTyxTQUFTO0lBQ3BCLE1BQU0sQ0FBQyxPQUFPO1FBQ1osT0FBTztZQUNMLFNBQVMsRUFBRTtnQkFDVCxnQkFBZ0I7YUFDakI7WUFDRCxRQUFRLEVBQUUsU0FBUztTQUNwQixDQUFDO0lBQ0osQ0FBQzs4R0FSVSxTQUFTOytHQUFULFNBQVMsaUJBbkJsQixhQUFhO1lBQ2IsK0JBQStCO1lBQy9CLDBCQUEwQjtZQUMxQiwyQkFBMkI7WUFDM0Isc0JBQXNCO1lBQ3RCLHNCQUFzQjtZQUN0Qix5QkFBeUI7WUFDekIsb0JBQW9CLGFBdEJwQixZQUFZO1lBQ1osWUFBWTtZQUNaLFdBQVc7WUFDWCxZQUFZO1lBQ1osU0FBUztZQUNULGNBQWM7WUFDZCxZQUFZO1lBQ1osVUFBVTtZQUNWLG1CQUFtQjtZQUNuQixtQkFBbUI7WUFDbkIsMEJBQTBCO1lBQzFCLHNCQUFzQjtZQUN0QixzQkFBc0IsYUFhdEIsK0JBQStCO1lBQy9CLDBCQUEwQjtZQUMxQixzQkFBc0I7WUFDdEIsc0JBQXNCO1lBQ3RCLHlCQUF5QjtZQUN6QiwyQkFBMkI7WUFDM0Isb0JBQW9COytHQUdYLFNBQVMsWUFsQ2xCLFlBQVk7WUFDWixZQUFZO1lBQ1osV0FBVztZQUNYLFlBQVk7WUFDWixTQUFTO1lBQ1QsY0FBYztZQUNkLFlBQVk7WUFDWixVQUFVO1lBQ1YsbUJBQW1CO1lBQ25CLG1CQUFtQjtZQUNuQiwwQkFBMEI7WUFDMUIsc0JBQXNCO1lBQ3RCLHNCQUFzQjs7MkZBc0JiLFNBQVM7a0JBcENyQixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFlBQVk7d0JBQ1osV0FBVzt3QkFDWCxZQUFZO3dCQUNaLFNBQVM7d0JBQ1QsY0FBYzt3QkFDZCxZQUFZO3dCQUNaLFVBQVU7d0JBQ1YsbUJBQW1CO3dCQUNuQixtQkFBbUI7d0JBQ25CLDBCQUEwQjt3QkFDMUIsc0JBQXNCO3dCQUN0QixzQkFBc0I7cUJBQ3ZCO29CQUNELFlBQVksRUFBRTt3QkFDWixhQUFhO3dCQUNiLCtCQUErQjt3QkFDL0IsMEJBQTBCO3dCQUMxQiwyQkFBMkI7d0JBQzNCLHNCQUFzQjt3QkFDdEIsc0JBQXNCO3dCQUN0Qix5QkFBeUI7d0JBQ3pCLG9CQUFvQjtxQkFDckI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLCtCQUErQjt3QkFDL0IsMEJBQTBCO3dCQUMxQixzQkFBc0I7d0JBQ3RCLHNCQUFzQjt3QkFDdEIseUJBQXlCO3dCQUN6QiwyQkFBMkI7d0JBQzNCLG9CQUFvQjtxQkFDckI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBDb3B5cmlnaHQgKGMpIDIwMTYgSHVudHNtYW4gQ2FuY2VyIEluc3RpdHV0ZSBhdCB0aGUgVW5pdmVyc2l0eSBvZiBVdGFoLCBDb25maWRlbnRpYWwgYW5kIFByb3ByaWV0YXJ5XHJcbiAqL1xyXG5pbXBvcnQge01vZHVsZVdpdGhQcm92aWRlcnMsIE5nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge0Zvcm1zTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuaW1wb3J0IHtSb3V0ZXJNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9yb3V0ZXJcIjtcclxuXHJcbmltcG9ydCB7TWF0RGF0ZXBpY2tlck1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL21hdGVyaWFsL2RhdGVwaWNrZXJcIjtcclxuaW1wb3J0IHtNYXROYXRpdmVEYXRlTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZVwiO1xyXG5pbXBvcnQge05neE1hdERhdGV0aW1lUGlja2VyTW9kdWxlLCBOZ3hNYXROYXRpdmVEYXRlTW9kdWxlLCBOZ3hNYXRUaW1lcGlja2VyTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXItbWF0ZXJpYWwtY29tcG9uZW50cy9kYXRldGltZS1waWNrZXJcIjtcclxuXHJcbmltcG9ydCB7QWdHcmlkTW9kdWxlfSBmcm9tIFwiYWctZ3JpZC1hbmd1bGFyXCI7XHJcbmltcG9ydCB7TmdiTW9kdWxlfSBmcm9tIFwiQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXBcIjtcclxuaW1wb3J0IHtEcm9wZG93bk1vZHVsZSwgU2VsZWN0TW9kdWxlfSBmcm9tIFwiQGh1bnRzbWFuLWNhbmNlci1pbnN0aXR1dGUvaW5wdXRcIjtcclxuaW1wb3J0IHtNaXNjTW9kdWxlfSBmcm9tIFwiQGh1bnRzbWFuLWNhbmNlci1pbnN0aXR1dGUvbWlzY1wiO1xyXG5cclxuaW1wb3J0IHtBdHRyaWJ1dGVDb25maWd1cmF0aW9uQ29tcG9uZW50fSBmcm9tIFwiLi9jb21wb25lbnRzL2F0dHJpYnV0ZS1jb25maWd1cmF0aW9uLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge0lzR3JvdXBBdHRyaWJ1dGVQaXBlfSBmcm9tIFwiLi9waXBlcy9pcy1ncm91cC1hdHRyaWJ1dGUucGlwZVwiO1xyXG5pbXBvcnQge0F0dHJpYnV0ZUFic29sdXRlQ29tcG9uZW50fSBmcm9tIFwiLi9jb21wb25lbnRzL2F0dHJpYnV0ZS1hYnNvbHV0ZS5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtBdHRyaWJ1dGVGbGV4Q29tcG9uZW50fSBmcm9tIFwiLi9jb21wb25lbnRzL2F0dHJpYnV0ZS1mbGV4LmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge0F0dHJpYnV0ZUVkaXRDb21wb25lbnR9IGZyb20gXCIuL2NvbXBvbmVudHMvYXR0cmlidXRlLWVkaXQuY29tcG9uZW50XCI7XHJcbmltcG9ydCB7QXR0cmlidXRlRGVmYXVsdENvbXBvbmVudH0gZnJvbSBcIi4vY29tcG9uZW50cy9hdHRyaWJ1dGUtZGVmYXVsdC5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtBdHRyaWJ1dGVDb250YWluZXJDb21wb25lbnR9IGZyb20gXCIuL2NvbXBvbmVudHMvYXR0cmlidXRlLWNvbnRhaW5lci5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtBdHRyaWJ1dGVCYXNlfSBmcm9tIFwiLi9jb21wb25lbnRzL2F0dHJpYnV0ZS1iYXNlXCI7XHJcbmltcG9ydCB7QXR0cmlidXRlU2VydmljZX0gZnJvbSBcIi4vc2VydmljZXMvYXR0cmlidXRlLnNlcnZpY2VcIjtcclxuXHJcblxyXG4vKipcclxuICogVGhlIG1haW4gQGh1bnRzbWFuLWNhbmNlci1pbnN0aXR1dGUvY29kIG1vZHVsZS4gIEN1c3RvbSBjb21wb25lbnRzIHRvIGJlIHVzZWQgYnkgdGhlIGdyaWQgYXJlIHBhc3NlZCBpbiBoZXJlLlxyXG4gKlxyXG4gKiBAc2luY2UgMS4wLjBcclxuICovXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQWdHcmlkTW9kdWxlLFxyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGUsXHJcbiAgICBSb3V0ZXJNb2R1bGUsXHJcbiAgICBOZ2JNb2R1bGUsXHJcbiAgICBEcm9wZG93bk1vZHVsZSxcclxuICAgIFNlbGVjdE1vZHVsZSxcclxuICAgIE1pc2NNb2R1bGUsXHJcbiAgICBNYXREYXRlcGlja2VyTW9kdWxlLFxyXG4gICAgTWF0TmF0aXZlRGF0ZU1vZHVsZSxcclxuICAgIE5neE1hdERhdGV0aW1lUGlja2VyTW9kdWxlLFxyXG4gICAgTmd4TWF0VGltZXBpY2tlck1vZHVsZSxcclxuICAgIE5neE1hdE5hdGl2ZURhdGVNb2R1bGVcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgQXR0cmlidXRlQmFzZSxcclxuICAgIEF0dHJpYnV0ZUNvbmZpZ3VyYXRpb25Db21wb25lbnQsXHJcbiAgICBBdHRyaWJ1dGVBYnNvbHV0ZUNvbXBvbmVudCxcclxuICAgIEF0dHJpYnV0ZUNvbnRhaW5lckNvbXBvbmVudCxcclxuICAgIEF0dHJpYnV0ZUZsZXhDb21wb25lbnQsXHJcbiAgICBBdHRyaWJ1dGVFZGl0Q29tcG9uZW50LFxyXG4gICAgQXR0cmlidXRlRGVmYXVsdENvbXBvbmVudCxcclxuICAgIElzR3JvdXBBdHRyaWJ1dGVQaXBlXHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBBdHRyaWJ1dGVDb25maWd1cmF0aW9uQ29tcG9uZW50LFxyXG4gICAgQXR0cmlidXRlQWJzb2x1dGVDb21wb25lbnQsXHJcbiAgICBBdHRyaWJ1dGVGbGV4Q29tcG9uZW50LFxyXG4gICAgQXR0cmlidXRlRWRpdENvbXBvbmVudCxcclxuICAgIEF0dHJpYnV0ZURlZmF1bHRDb21wb25lbnQsXHJcbiAgICBBdHRyaWJ1dGVDb250YWluZXJDb21wb25lbnQsXHJcbiAgICBJc0dyb3VwQXR0cmlidXRlUGlwZVxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIENvZE1vZHVsZSB7XHJcbiAgc3RhdGljIGZvclJvb3QoKTogTW9kdWxlV2l0aFByb3ZpZGVyczxDb2RNb2R1bGU+IHtcclxuICAgIHJldHVybiB7XHJcbiAgICAgIHByb3ZpZGVyczogW1xyXG4gICAgICAgIEF0dHJpYnV0ZVNlcnZpY2VcclxuICAgICAgXSxcclxuICAgICAgbmdNb2R1bGU6IENvZE1vZHVsZVxyXG4gICAgfTtcclxuICB9XHJcbn1cclxuIl19
|