@huntsman-cancer-institute/dictionary-editor 17.9.3 → 17.9.5
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/components/detail.component.mjs +13 -13
- package/esm2022/components/home.component.mjs +4 -4
- package/esm2022/components/new-row.component.mjs +10 -12
- package/esm2022/dictionary-editor.component.mjs +6 -6
- package/esm2022/dictionary-editor.module.mjs +5 -5
- package/esm2022/directives/ri-ripple-effect-dict.directive.mjs +4 -4
- package/esm2022/grid-editors/ag-grid-date-cell-editor.component.mjs +4 -4
- package/esm2022/grid-editors/ag-grid-editor.module.mjs +5 -5
- package/esm2022/grid-editors/datepicker.component.mjs +4 -4
- package/esm2022/grid-editors/select.editor.mjs +4 -4
- package/esm2022/grid-renderers/ag-grid-renderer.module.mjs +5 -5
- package/esm2022/grid-renderers/date.renderer.mjs +5 -5
- package/esm2022/grid-renderers/select.renderer.mjs +4 -4
- package/fesm2022/huntsman-cancer-institute-dictionary-editor.mjs +62 -64
- package/fesm2022/huntsman-cancer-institute-dictionary-editor.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { TemplateRef,
|
|
2
|
+
import { TemplateRef, ViewChild, HostBinding, Component, HostListener, Input, Directive, forwardRef, isDevMode, Inject, NgModule } from '@angular/core';
|
|
3
3
|
import * as i1$1 from '@angular/common';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
import * as i2 from '@angular/forms';
|
|
@@ -9,7 +9,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
|
9
9
|
import * as i4$1 from '@huntsman-cancer-institute/misc';
|
|
10
10
|
import { MiscModule } from '@huntsman-cancer-institute/misc';
|
|
11
11
|
import * as i4 from '@huntsman-cancer-institute/navigation';
|
|
12
|
-
import { SearchListControllerComponent,
|
|
12
|
+
import { SearchListControllerComponent, LiNavComponent, UlNavComponent, SearchListComponent, SidebarComponent, NavigationModule } from '@huntsman-cancer-institute/navigation';
|
|
13
13
|
import * as i3 from '@angular/router';
|
|
14
14
|
import { RouterModule } from '@angular/router';
|
|
15
15
|
import * as i1 from '@huntsman-cancer-institute/dictionary-service';
|
|
@@ -19,8 +19,8 @@ import { BehaviorSubject, Subject } from 'rxjs';
|
|
|
19
19
|
import { takeUntil, map } from 'rxjs/operators';
|
|
20
20
|
import * as i2$1 from 'ag-grid-angular';
|
|
21
21
|
import { AgGridModule } from 'ag-grid-angular';
|
|
22
|
-
import { isNullOrUndefined } from '
|
|
23
|
-
import
|
|
22
|
+
import { isNullOrUndefined } from 'is-what';
|
|
23
|
+
import moment from 'moment';
|
|
24
24
|
import { MAT_DATE_LOCALE, MAT_DATE_FORMATS } from '@angular/material/core';
|
|
25
25
|
import * as i3$1 from '@angular/material/datepicker';
|
|
26
26
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
@@ -167,8 +167,8 @@ class DictionaryEditorComponent {
|
|
|
167
167
|
checkInternalOnly(dictionary) {
|
|
168
168
|
return !dictionary.internalOnly;
|
|
169
169
|
}
|
|
170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
171
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
170
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorComponent, deps: [{ token: i1.DictionaryService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
171
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DictionaryEditorComponent, selector: "hci-dictionary-editor", host: { properties: { "class": "this.classList" } }, viewQueries: [{ propertyName: "sidebar", first: true, predicate: SidebarComponent, descendants: true, static: true }, { propertyName: "dictionaryTemplate", first: true, predicate: ["dictionaryTemplate"], descendants: true, read: TemplateRef, static: true }], ngImport: i0, template: `
|
|
172
172
|
<hci-sidebar #sidebar></hci-sidebar>
|
|
173
173
|
|
|
174
174
|
<router-outlet></router-outlet>
|
|
@@ -180,9 +180,9 @@ class DictionaryEditorComponent {
|
|
|
180
180
|
</div>
|
|
181
181
|
</div>
|
|
182
182
|
</ng-template>
|
|
183
|
-
`, isInline: true, styles: [".active .ms-3{color:#fff!important}:host::ng-deep .format-bottom-padding{padding-bottom:10px}:host::ng-deep .active{height:30px}:host::ng-deep .search-item{height:30px;overflow:hidden;white-space:nowrap}:host::ng-deep #filterReadOnly{float:left;display:flex;flex-direction:row-reverse}:host::ng-deep #filterAndSortContainer{background-color:var(--bluewarm-lighter)!important;height:80px}:host::ng-deep .results-count{height:0!important}:host::ng-deep #filterReadOnly-li{font-size:15px;height:30px}:host::ng-deep
|
|
183
|
+
`, isInline: true, styles: [".active .ms-3{color:#fff!important}:host::ng-deep .format-bottom-padding{padding-bottom:10px}:host::ng-deep .active{height:30px}:host::ng-deep .search-item{height:30px;overflow:hidden;white-space:nowrap;padding-left:7.5px}:host::ng-deep #filterReadOnly{float:left;display:flex;flex-direction:row-reverse}:host::ng-deep #filterAndSortContainer{background-color:var(--bluewarm-lighter)!important;height:80px}:host::ng-deep .results-count{height:0!important}:host::ng-deep #filterReadOnly-li{font-size:15px;height:30px}:host::ng-deep .hci-dic-show-value{padding-right:75px;color:var(--grey-darkest)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i3.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i3.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: i4.SidebarComponent, selector: "hci-sidebar", inputs: ["hidden", "output", "sidebarClasses", "showCollapse", "draggable", "sidebarSplitterWidth", "collapsedSize", "minWidth", "maxWidth", "sidebarSize", "sidebarFontSize", "sidebarExpanded"], outputs: ["sidebarSizeChange"] }] }); }
|
|
184
184
|
}
|
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorComponent, decorators: [{
|
|
186
186
|
type: Component,
|
|
187
187
|
args: [{ selector: "hci-dictionary-editor", template: `
|
|
188
188
|
<hci-sidebar #sidebar></hci-sidebar>
|
|
@@ -196,7 +196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
196
196
|
</div>
|
|
197
197
|
</div>
|
|
198
198
|
</ng-template>
|
|
199
|
-
`, styles: [".active .ms-3{color:#fff!important}:host::ng-deep .format-bottom-padding{padding-bottom:10px}:host::ng-deep .active{height:30px}:host::ng-deep .search-item{height:30px;overflow:hidden;white-space:nowrap}:host::ng-deep #filterReadOnly{float:left;display:flex;flex-direction:row-reverse}:host::ng-deep #filterAndSortContainer{background-color:var(--bluewarm-lighter)!important;height:80px}:host::ng-deep .results-count{height:0!important}:host::ng-deep #filterReadOnly-li{font-size:15px;height:30px}:host::ng-deep
|
|
199
|
+
`, styles: [".active .ms-3{color:#fff!important}:host::ng-deep .format-bottom-padding{padding-bottom:10px}:host::ng-deep .active{height:30px}:host::ng-deep .search-item{height:30px;overflow:hidden;white-space:nowrap;padding-left:7.5px}:host::ng-deep #filterReadOnly{float:left;display:flex;flex-direction:row-reverse}:host::ng-deep #filterAndSortContainer{background-color:var(--bluewarm-lighter)!important;height:80px}:host::ng-deep .results-count{height:0!important}:host::ng-deep #filterReadOnly-li{font-size:15px;height:30px}:host::ng-deep .hci-dic-show-value{padding-right:75px;color:var(--grey-darkest)}\n"] }]
|
|
200
200
|
}], ctorParameters: () => [{ type: i1.DictionaryService }, { type: i0.Renderer2 }], propDecorators: { classList: [{
|
|
201
201
|
type: HostBinding,
|
|
202
202
|
args: ["class"]
|
|
@@ -219,8 +219,8 @@ class DictionaryEditorHomeComponent {
|
|
|
219
219
|
constructor() {
|
|
220
220
|
this.classList = "outlet-column y-auto";
|
|
221
221
|
}
|
|
222
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
223
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorHomeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
223
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DictionaryEditorHomeComponent, selector: "core-dictionary-editor-home", host: { properties: { "class": "this.classList" } }, ngImport: i0, template: `
|
|
224
224
|
<div class="d-flex m-3 flex-column flex-grow">
|
|
225
225
|
<h4>Dictionary Editor</h4>
|
|
226
226
|
|
|
@@ -230,7 +230,7 @@ class DictionaryEditorHomeComponent {
|
|
|
230
230
|
</div>
|
|
231
231
|
`, isInline: true }); }
|
|
232
232
|
}
|
|
233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorHomeComponent, decorators: [{
|
|
234
234
|
type: Component,
|
|
235
235
|
args: [{
|
|
236
236
|
selector: "core-dictionary-editor-home",
|
|
@@ -676,8 +676,8 @@ class SelectRenderer extends CellRendererValidation {
|
|
|
676
676
|
refresh() {
|
|
677
677
|
return false;
|
|
678
678
|
}
|
|
679
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
680
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectRenderer, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
680
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: SelectRenderer, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
681
681
|
<!--<div [matTooltip]="this.errorMessage"
|
|
682
682
|
[matTooltipShowDelay]="300"
|
|
683
683
|
[matTooltipHideDelay]="300"
|
|
@@ -693,7 +693,7 @@ class SelectRenderer extends CellRendererValidation {
|
|
|
693
693
|
</div>
|
|
694
694
|
`, isInline: true, styles: [".t{display:table}.tr{display:table-row}.td{display:table-cell}.cell-text-container{vertical-align:middle;padding-left:.3rem}.full-width{width:100%}.full-height{height:100%}.fix-table{table-layout:fixed}.ellipsis{overflow:hidden;text-overflow:ellipsis}.error{background:linear-gradient(#ff000040,#ff000040,#ff000040);border:solid red 2px}\n"] }); }
|
|
695
695
|
}
|
|
696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectRenderer, decorators: [{
|
|
697
697
|
type: Component,
|
|
698
698
|
args: [{ template: `
|
|
699
699
|
<!--<div [matTooltip]="this.errorMessage"
|
|
@@ -841,8 +841,8 @@ class SelectEditor {
|
|
|
841
841
|
});
|
|
842
842
|
}
|
|
843
843
|
}
|
|
844
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
845
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
844
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectEditor, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
845
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: SelectEditor, selector: "ng-component", ngImport: i0, template: `
|
|
846
846
|
<div class="full-width full-height flex-column-container">
|
|
847
847
|
<div class="full-height flex-stretch flex-row">
|
|
848
848
|
<select class="full-width full-height" [(value)]="value" (change)="onChange($event)">
|
|
@@ -862,7 +862,7 @@ class SelectEditor {
|
|
|
862
862
|
</div>
|
|
863
863
|
`, isInline: true, styles: [".full-width{width:100%}.full-height{height:100%}.flex-column-container{display:flex;flex-direction:row}.flex-row{display:flex}.flex-stretch{display:flex;flex:1}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); }
|
|
864
864
|
}
|
|
865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectEditor, decorators: [{
|
|
866
866
|
type: Component,
|
|
867
867
|
args: [{ template: `
|
|
868
868
|
<div class="full-width full-height flex-column-container">
|
|
@@ -911,10 +911,10 @@ class RIRippleEffectDictDirective {
|
|
|
911
911
|
this.renderer.removeChild(hostElement, ripple);
|
|
912
912
|
}, animationDurationInMs);
|
|
913
913
|
}
|
|
914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
915
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RIRippleEffectDictDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
915
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: RIRippleEffectDictDirective, selector: "[riRippleEffectDict]", inputs: { hostClass: "hostClass", rippleClass: "rippleClass" }, host: { listeners: { "mousedown": "onMouseDown($event)" } }, ngImport: i0 }); }
|
|
916
916
|
}
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RIRippleEffectDictDirective, decorators: [{
|
|
918
918
|
type: Directive,
|
|
919
919
|
args: [{
|
|
920
920
|
selector: '[riRippleEffectDict]'
|
|
@@ -994,8 +994,8 @@ class NewRowComponent {
|
|
|
994
994
|
event.api.sizeColumnsToFit();
|
|
995
995
|
this.gridApi = event.api;
|
|
996
996
|
}
|
|
997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
998
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
997
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NewRowComponent, deps: [{ token: i1$2.NgbActiveModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
998
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: NewRowComponent, selector: "new-row", ngImport: i0, template: `
|
|
999
999
|
<div class="d-flex flex-column" style="height:11em; width:58vw;">
|
|
1000
1000
|
<div class="d-flex flex-row">
|
|
1001
1001
|
<div class="flex-grow-1"></div>
|
|
@@ -1017,13 +1017,12 @@ class NewRowComponent {
|
|
|
1017
1017
|
|
|
1018
1018
|
<div class="d-flex flex-row" style="padding: 0.5em;">
|
|
1019
1019
|
<div class="flex-grow-1"></div>
|
|
1020
|
-
<button riRippleEffectDict class="btn btn-
|
|
1021
|
-
style="
|
|
1020
|
+
<button riRippleEffectDict class="btn ri-btn-cancel ms-3"
|
|
1021
|
+
style="margin-right: 5px;"
|
|
1022
1022
|
(click)="activeModalSearch.dismiss('Cancel')">
|
|
1023
1023
|
Cancel
|
|
1024
1024
|
</button>
|
|
1025
|
-
<button riRippleEffectDict class="btn btn-
|
|
1026
|
-
style="color: var(--white-lightest);"
|
|
1025
|
+
<button riRippleEffectDict class="btn ri-btn-save ms-3"
|
|
1027
1026
|
(click)="save()">
|
|
1028
1027
|
Save
|
|
1029
1028
|
</button>
|
|
@@ -1031,7 +1030,7 @@ class NewRowComponent {
|
|
|
1031
1030
|
</div>
|
|
1032
1031
|
`, isInline: true, styles: [".full-height{height:100%}.full-width{width:100%}.ag-theme-balham{font-family:hci-font}:host ::ng-deep .ag-ltr .ag-cell{border-right-color:var(--grey-darkest)}\n"], dependencies: [{ kind: "component", type: i2$1.AgGridAngular, selector: "ag-grid-angular", inputs: ["gridOptions", "modules", "statusBar", "sideBar", "suppressContextMenu", "preventDefaultOnContextMenu", "allowContextMenuWithControlKey", "suppressMenuHide", "enableBrowserTooltips", "tooltipShowDelay", "tooltipHideDelay", "tooltipMouseTrack", "popupParent", "copyHeadersToClipboard", "copyGroupHeadersToClipboard", "clipboardDelimiter", "suppressCopyRowsToClipboard", "suppressCopySingleCellRanges", "suppressLastEmptyLineOnPaste", "suppressClipboardPaste", "suppressClipboardApi", "columnDefs", "defaultColDef", "defaultColGroupDef", "columnTypes", "maintainColumnOrder", "suppressFieldDotNotation", "deltaColumnMode", "applyColumnDefOrder", "immutableColumns", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "colWidth", "minColWidth", "maxColWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "allowDragFromColumnsToolPanel", "suppressMovableColumns", "suppressColumnMoveAnimation", "suppressDragLeaveHidesColumns", "suppressRowGroupHidesColumns", "colResizeDefault", "suppressAutoSize", "autoSizePadding", "skipHeaderOnAutoSize", "components", "frameworkComponents", "editType", "singleClickEdit", "suppressClickEdit", "readOnlyEdit", "stopEditingWhenCellsLoseFocus", "enterMovesDown", "enterMovesDownAfterEdit", "enableCellEditingOnBackspace", "undoRedoCellEditing", "undoRedoCellEditingLimit", "stopEditingWhenGridLosesFocus", "defaultCsvExportParams", "suppressCsvExport", "defaultExcelExportParams", "suppressExcelExport", "excelStyles", "defaultExportParams", "quickFilterText", "cacheQuickFilter", "excludeChildrenWhenTreeDataFiltering", "enableCharts", "chartThemes", "customChartThemes", "chartThemeOverrides", "enableChartToolPanelsButton", "chartToolPanelsDef", "loadingCellRenderer", "loadingCellRendererFramework", "loadingCellRendererParams", "loadingCellRendererSelector", "localeText", "masterDetail", "keepDetailRows", "keepDetailRowsCount", "detailCellRenderer", "detailCellRendererFramework", "detailCellRendererParams", "detailRowHeight", "detailRowAutoHeight", "context", "alignedGrids", "tabIndex", "rowBuffer", "valueCache", "valueCacheNeverExpires", "enableCellExpressions", "suppressParentsInRowNodes", "suppressTouch", "suppressFocusAfterRefresh", "suppressAsyncEvents", "suppressBrowserResizeObserver", "suppressPropertyNamesCheck", "suppressChangeDetection", "debug", "overlayLoadingTemplate", "loadingOverlayComponent", "loadingOverlayComponentFramework", "loadingOverlayComponentParams", "suppressLoadingOverlay", "overlayNoRowsTemplate", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "noRowsOverlayComponentParams", "suppressNoRowsOverlay", "pagination", "paginationPageSize", "paginationAutoPageSize", "paginateChildRows", "suppressPaginationPanel", "pivotMode", "pivotPanelShow", "pivotColumnGroupTotals", "pivotRowTotals", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "functionsReadOnly", "aggFuncs", "suppressAggFuncInHeader", "suppressAggAtRootLevel", "aggregateOnlyChangedColumns", "suppressAggFilteredOnly", "removePivotHeaderRowWhenSingleValueColumn", "animateRows", "enableCellChangeFlash", "cellFlashDelay", "cellFadeDelay", "allowShowChangeAfterFilter", "domLayout", "ensureDomOrder", "enableRtl", "suppressColumnVirtualisation", "suppressMaxRenderedRowRestriction", "suppressRowVirtualisation", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "rowDragEntireRow", "rowDragMultiRow", "rowDragText", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "fullWidthCellRendererParams", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "groupDisplayType", "groupDefaultExpanded", "autoGroupColumnDef", "groupMaintainOrder", "groupSelectsChildren", "groupAggFiltering", "groupIncludeFooter", "groupIncludeTotalFooter", "groupSuppressBlankHeader", "groupSelectsFiltered", "showOpenedGroup", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "groupHideOpenParents", "rowGroupPanelShow", "groupRowRenderer", "groupRowRendererFramework", "groupRowRendererParams", "suppressMakeColumnVisibleAfterUnGroup", "treeData", "rowGroupPanelSuppressSort", "groupRowsSticky", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "groupMultiAutoColumn", "groupUseEntireRow", "groupSuppressAutoColumn", "rememberGroupStateWhenNewData", "pinnedTopRowData", "pinnedBottomRowData", "rowModelType", "rowData", "immutableData", "asyncTransactionWaitMillis", "suppressModelUpdateAfterUpdateTransaction", "deltaRowDataMode", "batchUpdateWaitMillis", "datasource", "cacheOverflowSize", "infiniteInitialRowCount", "serverSideInitialRowCount", "serverSideStoreType", "serverSideInfiniteScroll", "cacheBlockSize", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "blockLoadDebounceMillis", "purgeClosedRowNodes", "serverSideDatasource", "serverSideSortAllLevels", "serverSideFilterAllLevels", "serverSideSortOnServer", "serverSideFilterOnServer", "serverSideSortingAlwaysResets", "serverSideFilteringAlwaysResets", "suppressEnterpriseResetOnNewColumns", "viewportDatasource", "viewportRowModelPageSize", "viewportRowModelBufferSize", "alwaysShowHorizontalScroll", "alwaysShowVerticalScroll", "debounceVerticalScrollbar", "suppressHorizontalScroll", "suppressScrollOnNewData", "suppressScrollWhenPopupsAreOpen", "suppressAnimationFrame", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "scrollbarWidth", "rowSelection", "rowMultiSelectWithClick", "suppressRowDeselection", "suppressRowClickSelection", "suppressCellSelection", "suppressCellFocus", "suppressMultiRangeSelection", "enableCellTextSelection", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "fillHandleDirection", "suppressClearOnFillReduction", "sortingOrder", "accentedSort", "unSortIcon", "suppressMultiSort", "alwaysMultiSort", "multiSortKey", "suppressMaintainUnsortedOrder", "icons", "rowHeight", "rowStyle", "rowClass", "rowClassRules", "suppressRowHoverHighlight", "suppressRowTransform", "columnHoverHighlight", "deltaSort", "treeDataDisplayType", "angularCompileRows", "angularCompileFilters", "functionsPassive", "enableGroupEdit", "getContextMenuItems", "getMainMenuItems", "postProcessPopup", "processCellForClipboard", "processHeaderForClipboard", "processGroupHeaderForClipboard", "processCellFromClipboard", "sendToClipboard", "processDataFromClipboard", "isExternalFilterPresent", "doesExternalFilterPass", "getChartToolbarItems", "createChartContainer", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "suppressKeyboardEvent", "localeTextFunc", "getLocaleText", "getDocument", "paginationNumberFormatter", "groupRowAggNodes", "getGroupRowAgg", "isGroupOpenByDefault", "initialGroupOrderComparator", "defaultGroupOrderComparator", "processSecondaryColDef", "processSecondaryColGroupDef", "processPivotResultColDef", "processPivotResultColGroupDef", "getDataPath", "defaultGroupSortComparator", "getChildCount", "getServerSideGroupLevelParams", "getServerSideStoreParams", "isServerSideGroupOpenByDefault", "isApplyServerSideTransaction", "isServerSideGroup", "getServerSideGroupKey", "getBusinessKeyForNode", "getRowNodeId", "getRowId", "resetRowDataOnUpdate", "processRowPostCreate", "isRowSelectable", "isRowMaster", "fillOperation", "postSort", "postSortRows", "getRowStyle", "getRowClass", "getRowHeight", "isFullWidthCell", "isFullWidthRow"], outputs: ["toolPanelVisibleChanged", "toolPanelSizeChanged", "pasteStart", "pasteEnd", "columnVisible", "columnPinned", "columnResized", "columnMoved", "columnValueChanged", "columnPivotModeChanged", "columnPivotChanged", "columnGroupOpened", "newColumnsLoaded", "gridColumnsChanged", "displayedColumnsChanged", "virtualColumnsChanged", "columnEverythingChanged", "componentStateChanged", "cellValueChanged", "cellEditRequest", "rowValueChanged", "cellEditingStarted", "cellEditingStopped", "rowEditingStarted", "rowEditingStopped", "filterOpened", "filterChanged", "filterModified", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "cellKeyDown", "cellKeyPress", "gridReady", "firstDataRendered", "gridSizeChanged", "modelUpdated", "virtualRowRemoved", "viewportChanged", "bodyScroll", "bodyScrollEnd", "dragStarted", "dragStopped", "paginationChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "columnRowGroupChanged", "rowGroupOpened", "expandOrCollapseAll", "pinnedRowDataChanged", "rowDataChanged", "rowDataUpdated", "asyncTransactionsFlushed", "cellClicked", "cellDoubleClicked", "cellFocused", "cellMouseOver", "cellMouseOut", "cellMouseDown", "rowClicked", "rowDoubleClicked", "rowSelected", "selectionChanged", "cellContextMenu", "rangeSelectionChanged", "sortChanged", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest"] }, { kind: "directive", type: RIRippleEffectDictDirective, selector: "[riRippleEffectDict]", inputs: ["hostClass", "rippleClass"] }] }); }
|
|
1033
1032
|
}
|
|
1034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NewRowComponent, decorators: [{
|
|
1035
1034
|
type: Component,
|
|
1036
1035
|
args: [{ selector: "new-row", template: `
|
|
1037
1036
|
<div class="d-flex flex-column" style="height:11em; width:58vw;">
|
|
@@ -1055,13 +1054,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
1055
1054
|
|
|
1056
1055
|
<div class="d-flex flex-row" style="padding: 0.5em;">
|
|
1057
1056
|
<div class="flex-grow-1"></div>
|
|
1058
|
-
<button riRippleEffectDict class="btn btn-
|
|
1059
|
-
style="
|
|
1057
|
+
<button riRippleEffectDict class="btn ri-btn-cancel ms-3"
|
|
1058
|
+
style="margin-right: 5px;"
|
|
1060
1059
|
(click)="activeModalSearch.dismiss('Cancel')">
|
|
1061
1060
|
Cancel
|
|
1062
1061
|
</button>
|
|
1063
|
-
<button riRippleEffectDict class="btn btn-
|
|
1064
|
-
style="color: var(--white-lightest);"
|
|
1062
|
+
<button riRippleEffectDict class="btn ri-btn-save ms-3"
|
|
1065
1063
|
(click)="save()">
|
|
1066
1064
|
Save
|
|
1067
1065
|
</button>
|
|
@@ -1123,8 +1121,8 @@ class DateRenderer extends CellRendererValidation {
|
|
|
1123
1121
|
refresh() {
|
|
1124
1122
|
return false;
|
|
1125
1123
|
}
|
|
1126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1127
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1124
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DateRenderer, deps: [{ token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1125
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DateRenderer, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1128
1126
|
<div class="t full-width full-height fix-table">
|
|
1129
1127
|
<div class="tr">
|
|
1130
1128
|
<div class="td cell-text-container ellipsis">
|
|
@@ -1134,7 +1132,7 @@ class DateRenderer extends CellRendererValidation {
|
|
|
1134
1132
|
</div>
|
|
1135
1133
|
`, isInline: true, styles: [".t{display:table}.tr{display:table-row}.td{display:table-cell}.cell-text-container{vertical-align:middle;padding-left:.3rem}.full-width{width:100%}.full-height{height:100%}.fix-table{table-layout:fixed}.ellipsis{overflow:hidden;text-overflow:ellipsis}\n"] }); }
|
|
1136
1134
|
}
|
|
1137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DateRenderer, decorators: [{
|
|
1138
1136
|
type: Component,
|
|
1139
1137
|
args: [{ template: `
|
|
1140
1138
|
<div class="t full-width full-height fix-table">
|
|
@@ -1179,8 +1177,8 @@ class DatepickerComponent {
|
|
|
1179
1177
|
};
|
|
1180
1178
|
}
|
|
1181
1179
|
registerOnTouched(fn) { }
|
|
1182
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1183
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1180
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DatepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1181
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DatepickerComponent, selector: "hci-dict-datepicker", inputs: { placeholder: "placeholder", invalid: "invalid" }, providers: [
|
|
1184
1182
|
{ provide: MAT_DATE_LOCALE, useValue: "en-GB" },
|
|
1185
1183
|
{
|
|
1186
1184
|
provide: MAT_DATE_FORMATS,
|
|
@@ -1212,7 +1210,7 @@ class DatepickerComponent {
|
|
|
1212
1210
|
</div>
|
|
1213
1211
|
`, isInline: true, styles: ["#clearIcon{cursor:pointer}#clearIcon:Hover{background-color:#495057;color:#e9ecef}\n"], dependencies: [{ kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3$1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }] }); }
|
|
1214
1212
|
}
|
|
1215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DatepickerComponent, decorators: [{
|
|
1216
1214
|
type: Component,
|
|
1217
1215
|
args: [{ selector: "hci-dict-datepicker", template: `
|
|
1218
1216
|
<div class="d-flex" style="width: 100%;">
|
|
@@ -1265,13 +1263,13 @@ class AgGridDateCellEditorComponent {
|
|
|
1265
1263
|
return true;
|
|
1266
1264
|
}
|
|
1267
1265
|
;
|
|
1268
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1269
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridDateCellEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1267
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: AgGridDateCellEditorComponent, selector: "ag-grid-date-cell-editor", ngImport: i0, template: `
|
|
1270
1268
|
<hci-dict-datepicker [(ngModel)]="value" placeholder="Select Date"></hci-dict-datepicker>
|
|
1271
1269
|
|
|
1272
1270
|
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: DatepickerComponent, selector: "hci-dict-datepicker", inputs: ["placeholder", "invalid"] }] }); }
|
|
1273
1271
|
}
|
|
1274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridDateCellEditorComponent, decorators: [{
|
|
1275
1273
|
type: Component,
|
|
1276
1274
|
args: [{
|
|
1277
1275
|
selector: "ag-grid-date-cell-editor",
|
|
@@ -1889,8 +1887,8 @@ class DictionaryEditorDetailComponent {
|
|
|
1889
1887
|
}
|
|
1890
1888
|
return date1Number - date2Number;
|
|
1891
1889
|
}
|
|
1892
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1893
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1890
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorDetailComponent, deps: [{ token: i3.ActivatedRoute }, { token: i1$2.NgbModal }, { token: i1.DictionaryService }, { token: DICTIONARY_ENDPOINT }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1891
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: DictionaryEditorDetailComponent, selector: "hci-dictionary-editor-detail", host: { properties: { "class": "this.classList" } }, ngImport: i0, template: `
|
|
1894
1892
|
<div class="d-flex flex-column hci-dictionary-detail-body">
|
|
1895
1893
|
<hci-busy [busySubjects]="loadingSubjects"></hci-busy>
|
|
1896
1894
|
|
|
@@ -1953,12 +1951,12 @@ class DictionaryEditorDetailComponent {
|
|
|
1953
1951
|
</ag-grid-angular>
|
|
1954
1952
|
</div>
|
|
1955
1953
|
<div class="modal-footer">
|
|
1956
|
-
<button riRippleEffectDict class="btn btn-
|
|
1954
|
+
<button riRippleEffectDict class="btn ri-btn-save" (click)="close('Close')">Close</button>
|
|
1957
1955
|
</div>
|
|
1958
1956
|
</div>
|
|
1959
1957
|
</ng-template>
|
|
1960
1958
|
|
|
1961
|
-
<!-- Dictionary Delete
|
|
1959
|
+
<!-- Dictionary Delete Confirmation Popup -->
|
|
1962
1960
|
<ng-template #areYouSureModal let-close="close">
|
|
1963
1961
|
<div class="modal-header">
|
|
1964
1962
|
Confirmation
|
|
@@ -1967,14 +1965,14 @@ class DictionaryEditorDetailComponent {
|
|
|
1967
1965
|
Are you sure?
|
|
1968
1966
|
</div>
|
|
1969
1967
|
<div class="modal-footer">
|
|
1970
|
-
<button riRippleEffectDict class="btn btn-
|
|
1971
|
-
<button riRippleEffectDict class="btn
|
|
1968
|
+
<button riRippleEffectDict class="btn ri-btn-cancel" (click)="close('Cancel')">Cancel</button>
|
|
1969
|
+
<button riRippleEffectDict class="btn ri-btn-delete" (click)="close('Delete')">Delete</button>
|
|
1972
1970
|
</div>
|
|
1973
1971
|
</ng-template>
|
|
1974
1972
|
</div>
|
|
1975
1973
|
`, isInline: true, styles: [".full-height{height:100%}.full-width{width:100%}.ag-theme-balham{font-family:hci-font;font-weight:500}.active-color{float:right;font-size:15px;color:var(--bluewarm-darkest)}.deactivated-color{float:right;font-size:15px;color:var(--greywarm-darkest)}.dictionary-info-section{padding-top:10px}.dictionary-title{float:left;font-size:16px;padding-left:10px;padding-right:10px;padding-top:5px}.metadata-button{color:var(--white-lightest);float:left;font-size:15px}:host::ng-deep .ag-header-cell{background-color:var(--bluewarmvividfade-lightest);border:lightgray solid thin}:host::ng-deep .ag-cell{border-right:lightgray solid thin;border-left:lightgray solid thin}:host::ng-deep .ag-row{border-bottom:0;border-top:0}:host::ng-deep .ag-row-even{background-color:var(--white-medium)}.hci-dictionary-detail-body{height:100%;width:100%;background:linear-gradient(0deg,var(--white-lightest) 30%,var(--bluewarmvividfade-lighter) 100%)!important}.hci-dictionary-display-grid{padding-right:5px;padding-left:5px;box-shadow:#00000059 0 5px 15px}:host::ng-deep .ag-row-hover{color:var(--grey-darkest)!important;background-color:var(--bluewarmvividfade-lighter)!important}:host::ng-deep .ag-row-selected .ag-cell{color:var(--white-lightest)!important}:host::ng-deep .ag-row-selected .ag-cell-not-inline-editing{color:var(--white-lightest)!important}:host::ng-deep .ag-row-selected .ag-cell-inline-editing{color:var(--black-darkest)!important}:host::ng-deep .ag-row-selected{color:var(--white-darkest)!important;background-color:var(--bluewarmvivid-lighter)!important}\n"], dependencies: [{ kind: "component", type: i4$1.BusyComponent, selector: "hci-busy", inputs: ["busy", "busySubjects", "getBusySubjects", "parentSelector", "rootClass", "icon", "iconSize", "showIcon", "mxAuto", "myAuto", "text", "template", "config"] }, { kind: "component", type: i2$1.AgGridAngular, selector: "ag-grid-angular", inputs: ["gridOptions", "modules", "statusBar", "sideBar", "suppressContextMenu", "preventDefaultOnContextMenu", "allowContextMenuWithControlKey", "suppressMenuHide", "enableBrowserTooltips", "tooltipShowDelay", "tooltipHideDelay", "tooltipMouseTrack", "popupParent", "copyHeadersToClipboard", "copyGroupHeadersToClipboard", "clipboardDelimiter", "suppressCopyRowsToClipboard", "suppressCopySingleCellRanges", "suppressLastEmptyLineOnPaste", "suppressClipboardPaste", "suppressClipboardApi", "columnDefs", "defaultColDef", "defaultColGroupDef", "columnTypes", "maintainColumnOrder", "suppressFieldDotNotation", "deltaColumnMode", "applyColumnDefOrder", "immutableColumns", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "colWidth", "minColWidth", "maxColWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "allowDragFromColumnsToolPanel", "suppressMovableColumns", "suppressColumnMoveAnimation", "suppressDragLeaveHidesColumns", "suppressRowGroupHidesColumns", "colResizeDefault", "suppressAutoSize", "autoSizePadding", "skipHeaderOnAutoSize", "components", "frameworkComponents", "editType", "singleClickEdit", "suppressClickEdit", "readOnlyEdit", "stopEditingWhenCellsLoseFocus", "enterMovesDown", "enterMovesDownAfterEdit", "enableCellEditingOnBackspace", "undoRedoCellEditing", "undoRedoCellEditingLimit", "stopEditingWhenGridLosesFocus", "defaultCsvExportParams", "suppressCsvExport", "defaultExcelExportParams", "suppressExcelExport", "excelStyles", "defaultExportParams", "quickFilterText", "cacheQuickFilter", "excludeChildrenWhenTreeDataFiltering", "enableCharts", "chartThemes", "customChartThemes", "chartThemeOverrides", "enableChartToolPanelsButton", "chartToolPanelsDef", "loadingCellRenderer", "loadingCellRendererFramework", "loadingCellRendererParams", "loadingCellRendererSelector", "localeText", "masterDetail", "keepDetailRows", "keepDetailRowsCount", "detailCellRenderer", "detailCellRendererFramework", "detailCellRendererParams", "detailRowHeight", "detailRowAutoHeight", "context", "alignedGrids", "tabIndex", "rowBuffer", "valueCache", "valueCacheNeverExpires", "enableCellExpressions", "suppressParentsInRowNodes", "suppressTouch", "suppressFocusAfterRefresh", "suppressAsyncEvents", "suppressBrowserResizeObserver", "suppressPropertyNamesCheck", "suppressChangeDetection", "debug", "overlayLoadingTemplate", "loadingOverlayComponent", "loadingOverlayComponentFramework", "loadingOverlayComponentParams", "suppressLoadingOverlay", "overlayNoRowsTemplate", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "noRowsOverlayComponentParams", "suppressNoRowsOverlay", "pagination", "paginationPageSize", "paginationAutoPageSize", "paginateChildRows", "suppressPaginationPanel", "pivotMode", "pivotPanelShow", "pivotColumnGroupTotals", "pivotRowTotals", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "functionsReadOnly", "aggFuncs", "suppressAggFuncInHeader", "suppressAggAtRootLevel", "aggregateOnlyChangedColumns", "suppressAggFilteredOnly", "removePivotHeaderRowWhenSingleValueColumn", "animateRows", "enableCellChangeFlash", "cellFlashDelay", "cellFadeDelay", "allowShowChangeAfterFilter", "domLayout", "ensureDomOrder", "enableRtl", "suppressColumnVirtualisation", "suppressMaxRenderedRowRestriction", "suppressRowVirtualisation", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "rowDragEntireRow", "rowDragMultiRow", "rowDragText", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "fullWidthCellRendererParams", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "groupDisplayType", "groupDefaultExpanded", "autoGroupColumnDef", "groupMaintainOrder", "groupSelectsChildren", "groupAggFiltering", "groupIncludeFooter", "groupIncludeTotalFooter", "groupSuppressBlankHeader", "groupSelectsFiltered", "showOpenedGroup", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "groupHideOpenParents", "rowGroupPanelShow", "groupRowRenderer", "groupRowRendererFramework", "groupRowRendererParams", "suppressMakeColumnVisibleAfterUnGroup", "treeData", "rowGroupPanelSuppressSort", "groupRowsSticky", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "groupMultiAutoColumn", "groupUseEntireRow", "groupSuppressAutoColumn", "rememberGroupStateWhenNewData", "pinnedTopRowData", "pinnedBottomRowData", "rowModelType", "rowData", "immutableData", "asyncTransactionWaitMillis", "suppressModelUpdateAfterUpdateTransaction", "deltaRowDataMode", "batchUpdateWaitMillis", "datasource", "cacheOverflowSize", "infiniteInitialRowCount", "serverSideInitialRowCount", "serverSideStoreType", "serverSideInfiniteScroll", "cacheBlockSize", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "blockLoadDebounceMillis", "purgeClosedRowNodes", "serverSideDatasource", "serverSideSortAllLevels", "serverSideFilterAllLevels", "serverSideSortOnServer", "serverSideFilterOnServer", "serverSideSortingAlwaysResets", "serverSideFilteringAlwaysResets", "suppressEnterpriseResetOnNewColumns", "viewportDatasource", "viewportRowModelPageSize", "viewportRowModelBufferSize", "alwaysShowHorizontalScroll", "alwaysShowVerticalScroll", "debounceVerticalScrollbar", "suppressHorizontalScroll", "suppressScrollOnNewData", "suppressScrollWhenPopupsAreOpen", "suppressAnimationFrame", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "scrollbarWidth", "rowSelection", "rowMultiSelectWithClick", "suppressRowDeselection", "suppressRowClickSelection", "suppressCellSelection", "suppressCellFocus", "suppressMultiRangeSelection", "enableCellTextSelection", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "fillHandleDirection", "suppressClearOnFillReduction", "sortingOrder", "accentedSort", "unSortIcon", "suppressMultiSort", "alwaysMultiSort", "multiSortKey", "suppressMaintainUnsortedOrder", "icons", "rowHeight", "rowStyle", "rowClass", "rowClassRules", "suppressRowHoverHighlight", "suppressRowTransform", "columnHoverHighlight", "deltaSort", "treeDataDisplayType", "angularCompileRows", "angularCompileFilters", "functionsPassive", "enableGroupEdit", "getContextMenuItems", "getMainMenuItems", "postProcessPopup", "processCellForClipboard", "processHeaderForClipboard", "processGroupHeaderForClipboard", "processCellFromClipboard", "sendToClipboard", "processDataFromClipboard", "isExternalFilterPresent", "doesExternalFilterPass", "getChartToolbarItems", "createChartContainer", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "suppressKeyboardEvent", "localeTextFunc", "getLocaleText", "getDocument", "paginationNumberFormatter", "groupRowAggNodes", "getGroupRowAgg", "isGroupOpenByDefault", "initialGroupOrderComparator", "defaultGroupOrderComparator", "processSecondaryColDef", "processSecondaryColGroupDef", "processPivotResultColDef", "processPivotResultColGroupDef", "getDataPath", "defaultGroupSortComparator", "getChildCount", "getServerSideGroupLevelParams", "getServerSideStoreParams", "isServerSideGroupOpenByDefault", "isApplyServerSideTransaction", "isServerSideGroup", "getServerSideGroupKey", "getBusinessKeyForNode", "getRowNodeId", "getRowId", "resetRowDataOnUpdate", "processRowPostCreate", "isRowSelectable", "isRowMaster", "fillOperation", "postSort", "postSortRows", "getRowStyle", "getRowClass", "getRowHeight", "isFullWidthCell", "isFullWidthRow"], outputs: ["toolPanelVisibleChanged", "toolPanelSizeChanged", "pasteStart", "pasteEnd", "columnVisible", "columnPinned", "columnResized", "columnMoved", "columnValueChanged", "columnPivotModeChanged", "columnPivotChanged", "columnGroupOpened", "newColumnsLoaded", "gridColumnsChanged", "displayedColumnsChanged", "virtualColumnsChanged", "columnEverythingChanged", "componentStateChanged", "cellValueChanged", "cellEditRequest", "rowValueChanged", "cellEditingStarted", "cellEditingStopped", "rowEditingStarted", "rowEditingStopped", "filterOpened", "filterChanged", "filterModified", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "cellKeyDown", "cellKeyPress", "gridReady", "firstDataRendered", "gridSizeChanged", "modelUpdated", "virtualRowRemoved", "viewportChanged", "bodyScroll", "bodyScrollEnd", "dragStarted", "dragStopped", "paginationChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "columnRowGroupChanged", "rowGroupOpened", "expandOrCollapseAll", "pinnedRowDataChanged", "rowDataChanged", "rowDataUpdated", "asyncTransactionsFlushed", "cellClicked", "cellDoubleClicked", "cellFocused", "cellMouseOver", "cellMouseOut", "cellMouseDown", "rowClicked", "rowDoubleClicked", "rowSelected", "selectionChanged", "cellContextMenu", "rangeSelectionChanged", "sortChanged", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest"] }, { kind: "directive", type: RIRippleEffectDictDirective, selector: "[riRippleEffectDict]", inputs: ["hostClass", "rippleClass"] }] }); }
|
|
1976
1974
|
}
|
|
1977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorDetailComponent, decorators: [{
|
|
1978
1976
|
type: Component,
|
|
1979
1977
|
args: [{ selector: "hci-dictionary-editor-detail", template: `
|
|
1980
1978
|
<div class="d-flex flex-column hci-dictionary-detail-body">
|
|
@@ -2039,12 +2037,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
2039
2037
|
</ag-grid-angular>
|
|
2040
2038
|
</div>
|
|
2041
2039
|
<div class="modal-footer">
|
|
2042
|
-
<button riRippleEffectDict class="btn btn-
|
|
2040
|
+
<button riRippleEffectDict class="btn ri-btn-save" (click)="close('Close')">Close</button>
|
|
2043
2041
|
</div>
|
|
2044
2042
|
</div>
|
|
2045
2043
|
</ng-template>
|
|
2046
2044
|
|
|
2047
|
-
<!-- Dictionary Delete
|
|
2045
|
+
<!-- Dictionary Delete Confirmation Popup -->
|
|
2048
2046
|
<ng-template #areYouSureModal let-close="close">
|
|
2049
2047
|
<div class="modal-header">
|
|
2050
2048
|
Confirmation
|
|
@@ -2053,8 +2051,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
2053
2051
|
Are you sure?
|
|
2054
2052
|
</div>
|
|
2055
2053
|
<div class="modal-footer">
|
|
2056
|
-
<button riRippleEffectDict class="btn btn-
|
|
2057
|
-
<button riRippleEffectDict class="btn
|
|
2054
|
+
<button riRippleEffectDict class="btn ri-btn-cancel" (click)="close('Cancel')">Cancel</button>
|
|
2055
|
+
<button riRippleEffectDict class="btn ri-btn-delete" (click)="close('Delete')">Delete</button>
|
|
2058
2056
|
</div>
|
|
2059
2057
|
</ng-template>
|
|
2060
2058
|
</div>
|
|
@@ -2092,17 +2090,17 @@ const ROUTES = [
|
|
|
2092
2090
|
const DICTIONARY_EDITOR_ROUTES = RouterModule.forChild(ROUTES);
|
|
2093
2091
|
|
|
2094
2092
|
class AgGridRendererModule {
|
|
2095
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2096
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
2093
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridRendererModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2094
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: AgGridRendererModule, declarations: [SelectRenderer,
|
|
2097
2095
|
DateRenderer], imports: [CommonModule,
|
|
2098
2096
|
FormsModule,
|
|
2099
2097
|
ReactiveFormsModule], exports: [SelectRenderer,
|
|
2100
2098
|
DateRenderer] }); }
|
|
2101
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
2099
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridRendererModule, imports: [CommonModule,
|
|
2102
2100
|
FormsModule,
|
|
2103
2101
|
ReactiveFormsModule] }); }
|
|
2104
2102
|
}
|
|
2105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridRendererModule, decorators: [{
|
|
2106
2104
|
type: NgModule,
|
|
2107
2105
|
args: [{
|
|
2108
2106
|
imports: [
|
|
@@ -2122,8 +2120,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
2122
2120
|
}] });
|
|
2123
2121
|
|
|
2124
2122
|
class AgGridEditorModule {
|
|
2125
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2126
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
2123
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2124
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: AgGridEditorModule, declarations: [SelectEditor,
|
|
2127
2125
|
AgGridDateCellEditorComponent,
|
|
2128
2126
|
DatepickerComponent], imports: [AgGridModule,
|
|
2129
2127
|
CommonModule,
|
|
@@ -2133,7 +2131,7 @@ class AgGridEditorModule {
|
|
|
2133
2131
|
MomentDateModule,
|
|
2134
2132
|
AgGridRendererModule], exports: [SelectEditor,
|
|
2135
2133
|
AgGridDateCellEditorComponent] }); }
|
|
2136
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
2134
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridEditorModule, imports: [AgGridModule,
|
|
2137
2135
|
CommonModule,
|
|
2138
2136
|
FormsModule,
|
|
2139
2137
|
ReactiveFormsModule,
|
|
@@ -2141,7 +2139,7 @@ class AgGridEditorModule {
|
|
|
2141
2139
|
MomentDateModule,
|
|
2142
2140
|
AgGridRendererModule] }); }
|
|
2143
2141
|
}
|
|
2144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AgGridEditorModule, decorators: [{
|
|
2145
2143
|
type: NgModule,
|
|
2146
2144
|
args: [{
|
|
2147
2145
|
imports: [
|
|
@@ -2174,8 +2172,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
2174
2172
|
* @since 1.0.0
|
|
2175
2173
|
*/
|
|
2176
2174
|
class DictionaryEditorModule {
|
|
2177
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2178
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
2175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2176
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorModule, declarations: [DictionaryEditorComponent,
|
|
2179
2177
|
DictionaryEditorHomeComponent,
|
|
2180
2178
|
DictionaryEditorDetailComponent,
|
|
2181
2179
|
NewRowComponent,
|
|
@@ -2189,7 +2187,7 @@ class DictionaryEditorModule {
|
|
|
2189
2187
|
DictionaryEditorHomeComponent,
|
|
2190
2188
|
DictionaryEditorDetailComponent,
|
|
2191
2189
|
RIRippleEffectDictDirective] }); }
|
|
2192
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
2190
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorModule, imports: [CommonModule,
|
|
2193
2191
|
FormsModule,
|
|
2194
2192
|
DICTIONARY_EDITOR_ROUTES,
|
|
2195
2193
|
NgbModule,
|
|
@@ -2199,7 +2197,7 @@ class DictionaryEditorModule {
|
|
|
2199
2197
|
AgGridRendererModule,
|
|
2200
2198
|
AgGridModule] }); }
|
|
2201
2199
|
}
|
|
2202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: DictionaryEditorModule, decorators: [{
|
|
2203
2201
|
type: NgModule,
|
|
2204
2202
|
args: [{
|
|
2205
2203
|
imports: [
|