@huntsman-cancer-institute/cod 17.0.8 → 17.1.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/components/attribute-edit.component.d.ts +6 -6
- package/esm2022/cod.module.mjs +4 -4
- package/esm2022/components/attribute-absolute.component.mjs +3 -3
- package/esm2022/components/attribute-base.mjs +3 -3
- package/esm2022/components/attribute-container.component.mjs +3 -3
- package/esm2022/components/attribute-default.component.mjs +266 -266
- package/esm2022/components/attribute-edit.component.mjs +29 -17
- package/esm2022/components/attribute-flex.component.mjs +3 -3
- package/esm2022/date/date-util.mjs +3 -3
- package/esm2022/pipes/is-group-attribute.pipe.mjs +3 -3
- package/esm2022/services/attribute.service.mjs +14 -13
- package/fesm2022/huntsman-cancer-institute-cod.mjs +324 -311
- package/fesm2022/huntsman-cancer-institute-cod.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -45,10 +45,10 @@ class IsGroupAttributePipe {
|
|
|
45
45
|
}
|
|
46
46
|
});
|
|
47
47
|
}
|
|
48
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
49
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.
|
|
48
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: IsGroupAttributePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
49
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: IsGroupAttributePipe, name: "isGroupAttribute", pure: false }); }
|
|
50
50
|
}
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: IsGroupAttributePipe, decorators: [{
|
|
52
52
|
type: Pipe,
|
|
53
53
|
args: [{
|
|
54
54
|
name: "isGroupAttribute",
|
|
@@ -823,7 +823,7 @@ class AttributeService {
|
|
|
823
823
|
//Shouldn't be a need to change dirty or notify attributes
|
|
824
824
|
}
|
|
825
825
|
saveGridRowAttributeValues(idGroupAttribute, groupAttributeRowId) {
|
|
826
|
-
let rowValues = this.updatedAttributeValues.filter((av) => av.groupAttributeRowId === groupAttributeRowId);
|
|
826
|
+
let rowValues = this.updatedAttributeValues.filter((av) => av.groupAttributeRowId === groupAttributeRowId && av.idGroupAttribute === idGroupAttribute);
|
|
827
827
|
for (let j = 0; j < rowValues.length; j++) {
|
|
828
828
|
//set the idAttributeValueSet if necessary
|
|
829
829
|
if (!rowValues[j].idAttributeValueSet) {
|
|
@@ -837,7 +837,7 @@ class AttributeService {
|
|
|
837
837
|
//For multi values that were sliced (de-selected) we're going to find them and null out the value, instead of removing.
|
|
838
838
|
//That means they actaully need to be added to the rowValues
|
|
839
839
|
//Removed multi values within an existing row
|
|
840
|
-
let removedValues = this.slicedAttributeValues.filter((av) => av.groupAttributeRowId === groupAttributeRowId);
|
|
840
|
+
let removedValues = this.slicedAttributeValues.filter((av) => av.groupAttributeRowId === groupAttributeRowId && av.idGroupAttribute === idGroupAttribute);
|
|
841
841
|
for (let i = 0; i < removedValues.length; i++) {
|
|
842
842
|
removedValues[i].valueAttributeChoice = undefined;
|
|
843
843
|
removedValues[i].valueIdDictionary = undefined;
|
|
@@ -865,8 +865,8 @@ class AttributeService {
|
|
|
865
865
|
avs.attributeValues.push(attributeValueGridRow.attributeValues[i]);
|
|
866
866
|
}
|
|
867
867
|
//Remove the updated and sliced values for the grid row, now (these are the old ones with the negative rowid)
|
|
868
|
-
this.slicedAttributeValues = this.slicedAttributeValues.filter((av) => av.groupAttributeRowId !== groupAttributeRowId);
|
|
869
|
-
this.updatedAttributeValues = this.updatedAttributeValues.filter((av) => av.groupAttributeRowId !== groupAttributeRowId);
|
|
868
|
+
this.slicedAttributeValues = this.slicedAttributeValues.filter((av) => (av.groupAttributeRowId !== groupAttributeRowId || av.idGroupAttribute !== idGroupAttribute));
|
|
869
|
+
this.updatedAttributeValues = this.updatedAttributeValues.filter((av) => (av.groupAttributeRowId !== groupAttributeRowId || av.idGroupAttribute !== idGroupAttribute));
|
|
870
870
|
this.attributeValueSetSubject.next(avs);
|
|
871
871
|
this.gridRowSaved.next(attributeValueGridRow);
|
|
872
872
|
this.loadingSubject.next(false);
|
|
@@ -881,20 +881,20 @@ class AttributeService {
|
|
|
881
881
|
//Add the grid row to the original attribute values
|
|
882
882
|
let avs = this.attributeValueSetSubject.getValue();
|
|
883
883
|
//Remove all old values for row
|
|
884
|
-
let index = avs.attributeValues.findIndex((av) => av.groupAttributeRowId === groupAttributeRowId);
|
|
884
|
+
let index = avs.attributeValues.findIndex((av) => (av.groupAttributeRowId === groupAttributeRowId && av.idGroupAttribute === idGroupAttribute));
|
|
885
885
|
while (index > 0) {
|
|
886
886
|
//Remove value
|
|
887
887
|
avs.attributeValues.splice(index, 1);
|
|
888
888
|
//Find the next one
|
|
889
|
-
index = avs.attributeValues.findIndex((av) => av.groupAttributeRowId === groupAttributeRowId);
|
|
889
|
+
index = avs.attributeValues.findIndex((av) => (av.groupAttributeRowId === groupAttributeRowId && av.idGroupAttribute === idGroupAttribute));
|
|
890
890
|
}
|
|
891
891
|
//Add all the current values
|
|
892
892
|
for (let i = 0; i < attributeValueGridRow.attributeValues.length; i++) {
|
|
893
893
|
avs.attributeValues.push(attributeValueGridRow.attributeValues[i]);
|
|
894
894
|
}
|
|
895
895
|
//Remove the sliced and updated values for the grid row
|
|
896
|
-
this.slicedAttributeValues = this.slicedAttributeValues.filter((av) => av.groupAttributeRowId !== groupAttributeRowId);
|
|
897
|
-
this.updatedAttributeValues = this.updatedAttributeValues.filter((av) => av.groupAttributeRowId !== groupAttributeRowId);
|
|
896
|
+
this.slicedAttributeValues = this.slicedAttributeValues.filter((av) => (av.groupAttributeRowId !== groupAttributeRowId || av.idGroupAttribute !== idGroupAttribute));
|
|
897
|
+
this.updatedAttributeValues = this.updatedAttributeValues.filter((av) => (av.groupAttributeRowId !== groupAttributeRowId || av.idGroupAttribute !== idGroupAttribute));
|
|
898
898
|
this.attributeValueSetSubject.next(avs);
|
|
899
899
|
this.gridRowSaved.next(attributeValueGridRow);
|
|
900
900
|
this.loadingSubject.next(false);
|
|
@@ -921,7 +921,8 @@ class AttributeService {
|
|
|
921
921
|
this.http.request('delete', url, { body: avgr, params: queryParams }).subscribe(() => {
|
|
922
922
|
//Remove the grid row from the original attribute values
|
|
923
923
|
let avs = this.attributeValueSetSubject.getValue();
|
|
924
|
-
|
|
924
|
+
//Filter to only attributes to KEEP - (i.e. not the same grid or not the row being deleted)
|
|
925
|
+
avs.attributeValues = avs.attributeValues.filter((av) => (av.idGroupAttribute !== idGroupAttribute || av.groupAttributeRowId !== groupAttributeRowId));
|
|
925
926
|
this.attributeValueSetSubject.next(avs);
|
|
926
927
|
this.gridRowDeleted.next(avgr);
|
|
927
928
|
this.loadingSubject.next(false);
|
|
@@ -1252,10 +1253,10 @@ class AttributeService {
|
|
|
1252
1253
|
getUniqueId() {
|
|
1253
1254
|
return --this.uniqueId;
|
|
1254
1255
|
}
|
|
1255
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1256
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.
|
|
1256
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeService, deps: [{ token: i1.DictionaryService }, { token: i2.HttpClient }, { token: i3.Router }, { token: ATTRIBUTE_ENDPOINT }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1257
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeService }); }
|
|
1257
1258
|
}
|
|
1258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeService, decorators: [{
|
|
1259
1260
|
type: Injectable
|
|
1260
1261
|
}], ctorParameters: () => [{ type: i1.DictionaryService }, { type: i2.HttpClient }, { type: i3.Router }, { type: undefined, decorators: [{
|
|
1261
1262
|
type: Inject,
|
|
@@ -1311,10 +1312,10 @@ class DateUtil {
|
|
|
1311
1312
|
}
|
|
1312
1313
|
return newDate.getTime();
|
|
1313
1314
|
}
|
|
1314
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1315
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.
|
|
1315
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateUtil, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1316
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateUtil }); }
|
|
1316
1317
|
}
|
|
1317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateUtil, decorators: [{
|
|
1318
1319
|
type: Injectable
|
|
1319
1320
|
}] });
|
|
1320
1321
|
|
|
@@ -1845,10 +1846,10 @@ class AttributeBase {
|
|
|
1845
1846
|
}
|
|
1846
1847
|
return "";
|
|
1847
1848
|
}
|
|
1848
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1849
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
1849
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeBase, deps: [{ token: AttributeService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2$1.NgbModal }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1850
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.2", type: AttributeBase, selector: "hci-attribute-base", inputs: { attribute: "attribute", internalValues: "internalValues", editInline: "editInline", groupAttributeRowId: "groupAttributeRowId" }, outputs: { resortColumns: "resortColumns" }, viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["inputRef"], descendants: true }, { propertyName: "nativeSelectRef", first: true, predicate: ["nativeSelectRef"], descendants: true }], ngImport: i0 }); }
|
|
1850
1851
|
}
|
|
1851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeBase, decorators: [{
|
|
1852
1853
|
type: Directive,
|
|
1853
1854
|
args: [{
|
|
1854
1855
|
selector: "hci-attribute-base"
|
|
@@ -1872,8 +1873,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
1872
1873
|
}] } });
|
|
1873
1874
|
|
|
1874
1875
|
/**
|
|
1875
|
-
* This component is specifically designed to exist in a modal for editing.
|
|
1876
|
-
* because components such as the grid need extra configuration for editing.
|
|
1876
|
+
* This component is specifically designed to exist in a modal for editing.
|
|
1877
|
+
* This is different from the flex attribute because components such as the grid need extra configuration for editing.
|
|
1877
1878
|
*/
|
|
1878
1879
|
class AttributeEditComponent extends AttributeBase {
|
|
1879
1880
|
//dictionaryEndpoint = this.attributeService.dictionaryEndpoint;
|
|
@@ -1883,8 +1884,8 @@ class AttributeEditComponent extends AttributeBase {
|
|
|
1883
1884
|
init() {
|
|
1884
1885
|
super.init();
|
|
1885
1886
|
}
|
|
1886
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1887
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1887
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeEditComponent, deps: [{ token: AttributeService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2$1.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1888
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: AttributeEditComponent, selector: "hci-attribute-edit", usesInheritance: true, ngImport: i0, template: `
|
|
1888
1889
|
<!-- String -->
|
|
1889
1890
|
<ng-container *ngIf="attribute.codeAttributeDataType === 'S'">
|
|
1890
1891
|
<div #attributeRef
|
|
@@ -1911,14 +1912,19 @@ class AttributeEditComponent extends AttributeBase {
|
|
|
1911
1912
|
{{attribute.displayName}}
|
|
1912
1913
|
</div>
|
|
1913
1914
|
<div class="d-flex col-md-6">
|
|
1914
|
-
|
|
1915
|
+
|
|
1916
|
+
<textarea
|
|
1917
|
+
#inputRef
|
|
1915
1918
|
type="text"
|
|
1916
1919
|
spellcheck="spellcheck"
|
|
1917
1920
|
lang="en"
|
|
1918
1921
|
[ngModel]="attributeValues[0].valueLongText.textData"
|
|
1919
1922
|
(ngModelChange)="valueTextChange($event)"
|
|
1920
1923
|
[disabled]="!editInline || attribute.isCalculated === 'Y'"
|
|
1921
|
-
|
|
1924
|
+
style="width: 500px; height: 125px; resize: none;"
|
|
1925
|
+
>
|
|
1926
|
+
</textarea>
|
|
1927
|
+
|
|
1922
1928
|
</div>
|
|
1923
1929
|
</div>
|
|
1924
1930
|
</ng-container>
|
|
@@ -2063,7 +2069,8 @@ class AttributeEditComponent extends AttributeBase {
|
|
|
2063
2069
|
{{attribute.displayName}}
|
|
2064
2070
|
</div>
|
|
2065
2071
|
<div class="d-flex col-md-6">
|
|
2066
|
-
|
|
2072
|
+
<select
|
|
2073
|
+
[ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
|
|
2067
2074
|
(ngModelChange)="valueChoiceChange($event)"
|
|
2068
2075
|
class="edit-renderer">
|
|
2069
2076
|
<option [ngValue]="undefined"></option>
|
|
@@ -2206,9 +2213,9 @@ class AttributeEditComponent extends AttributeBase {
|
|
|
2206
2213
|
</ng-template>
|
|
2207
2214
|
`, isInline: true, styles: [".hci-cod button.mat-icon-button.mat-button-base{height:20px;width:20px;line-height:unset}.btn-ga{padding:0;height:18px;width:18px}.ga-icon{font-size:.9em;vertical-align:top}.hci-cod .mat-datepicker-toggle-default-icon{height:20px;width:20px}\n"], dependencies: [{ kind: "component", type: i3$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: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.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: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i6.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i7.NgxMatDatetimepicker, selector: "ngx-mat-datetime-picker", exportAs: ["ngxMatDatetimePicker"] }, { kind: "directive", type: i7.NgxMatDatepickerInput, selector: "input[ngxMatDatetimePicker]", inputs: ["ngxMatDatetimePicker", "min", "max", "matDatepickerFilter"], exportAs: ["ngxMatDatepickerInput"] }, { kind: "component", type: AttributeEditComponent, selector: "hci-attribute-edit" }] }); }
|
|
2208
2215
|
}
|
|
2209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeEditComponent, decorators: [{
|
|
2210
2217
|
type: Component,
|
|
2211
|
-
args: [{ selector:
|
|
2218
|
+
args: [{ selector: 'hci-attribute-edit', template: `
|
|
2212
2219
|
<!-- String -->
|
|
2213
2220
|
<ng-container *ngIf="attribute.codeAttributeDataType === 'S'">
|
|
2214
2221
|
<div #attributeRef
|
|
@@ -2235,14 +2242,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
2235
2242
|
{{attribute.displayName}}
|
|
2236
2243
|
</div>
|
|
2237
2244
|
<div class="d-flex col-md-6">
|
|
2238
|
-
|
|
2245
|
+
|
|
2246
|
+
<textarea
|
|
2247
|
+
#inputRef
|
|
2239
2248
|
type="text"
|
|
2240
2249
|
spellcheck="spellcheck"
|
|
2241
2250
|
lang="en"
|
|
2242
2251
|
[ngModel]="attributeValues[0].valueLongText.textData"
|
|
2243
2252
|
(ngModelChange)="valueTextChange($event)"
|
|
2244
2253
|
[disabled]="!editInline || attribute.isCalculated === 'Y'"
|
|
2245
|
-
|
|
2254
|
+
style="width: 500px; height: 125px; resize: none;"
|
|
2255
|
+
>
|
|
2256
|
+
</textarea>
|
|
2257
|
+
|
|
2246
2258
|
</div>
|
|
2247
2259
|
</div>
|
|
2248
2260
|
</ng-container>
|
|
@@ -2387,7 +2399,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
2387
2399
|
{{attribute.displayName}}
|
|
2388
2400
|
</div>
|
|
2389
2401
|
<div class="d-flex col-md-6">
|
|
2390
|
-
|
|
2402
|
+
<select
|
|
2403
|
+
[ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
|
|
2391
2404
|
(ngModelChange)="valueChoiceChange($event)"
|
|
2392
2405
|
class="edit-renderer">
|
|
2393
2406
|
<option [ngValue]="undefined"></option>
|
|
@@ -2609,8 +2622,8 @@ class AttributeAbsoluteComponent extends AttributeBase {
|
|
|
2609
2622
|
this.renderer.removeClass(this.elementRef.nativeElement, "e-resize");
|
|
2610
2623
|
this.renderer.removeClass(this.elementRef.nativeElement, "n-resize");
|
|
2611
2624
|
}
|
|
2612
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2613
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
2625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeAbsoluteComponent, deps: [{ token: AttributeService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2$1.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2626
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: AttributeAbsoluteComponent, selector: "hci-attribute-absolute", viewQueries: [{ propertyName: "nativeSelectComponent", first: true, predicate: ["nativeSelectRef"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
2614
2627
|
<div class="drag-select" style=""></div>
|
|
2615
2628
|
|
|
2616
2629
|
<!-- Line -->
|
|
@@ -2983,7 +2996,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
|
|
|
2983
2996
|
</ng-template>
|
|
2984
2997
|
`, isInline: true, styles: [".hci-cod button.mat-icon-button.mat-button-base{height:20px;width:20px;line-height:unset}.btn-ga{padding:0;height:18px;width:18px}.ga-icon{font-size:.9em;vertical-align:top}.hci-cod .mat-datepicker-toggle-default-icon{height:20px;width:20px}\n"], dependencies: [{ kind: "component", type: i3$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: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.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: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i6.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i7.NgxMatDatetimepicker, selector: "ngx-mat-datetime-picker", exportAs: ["ngxMatDatetimePicker"] }, { kind: "directive", type: i7.NgxMatDatepickerInput, selector: "input[ngxMatDatetimePicker]", inputs: ["ngxMatDatetimePicker", "min", "max", "matDatepickerFilter"], exportAs: ["ngxMatDatepickerInput"] }, { kind: "component", type: AttributeEditComponent, selector: "hci-attribute-edit" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
2985
2998
|
}
|
|
2986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeAbsoluteComponent, decorators: [{
|
|
2987
3000
|
type: Component,
|
|
2988
3001
|
args: [{ selector: "hci-attribute-absolute", encapsulation: ViewEncapsulation.None, template: `
|
|
2989
3002
|
<div class="drag-select" style=""></div>
|
|
@@ -3398,8 +3411,8 @@ class AttributeFlexComponent extends AttributeBase {
|
|
|
3398
3411
|
}
|
|
3399
3412
|
}
|
|
3400
3413
|
}
|
|
3401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
3402
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
3414
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeFlexComponent, deps: [{ token: AttributeService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2$1.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3415
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: AttributeFlexComponent, selector: "hci-attribute-flex", usesInheritance: true, ngImport: i0, template: `
|
|
3403
3416
|
<!-- Line -->
|
|
3404
3417
|
<ng-container *ngIf="attribute.codeAttributeDataType === 'LINE'">
|
|
3405
3418
|
<div #attributeRef
|
|
@@ -3755,7 +3768,7 @@ class AttributeFlexComponent extends AttributeBase {
|
|
|
3755
3768
|
</ng-template>
|
|
3756
3769
|
`, isInline: true, styles: [".hci-cod button.mat-icon-button.mat-button-base{height:20px;width:20px;line-height:unset}.btn-ga{padding:0;height:18px;width:18px}.ga-icon{font-size:.9em;vertical-align:top}.hci-cod .mat-datepicker-toggle-default-icon{height:20px;width:20px}\n"], dependencies: [{ kind: "component", type: i3$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: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.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: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i6.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i7.NgxMatDatetimepicker, selector: "ngx-mat-datetime-picker", exportAs: ["ngxMatDatetimePicker"] }, { kind: "directive", type: i7.NgxMatDatepickerInput, selector: "input[ngxMatDatetimePicker]", inputs: ["ngxMatDatetimePicker", "min", "max", "matDatepickerFilter"], exportAs: ["ngxMatDatepickerInput"] }, { kind: "component", type: AttributeEditComponent, selector: "hci-attribute-edit" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
3757
3770
|
}
|
|
3758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
3771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeFlexComponent, decorators: [{
|
|
3759
3772
|
type: Component,
|
|
3760
3773
|
args: [{ selector: "hci-attribute-flex", encapsulation: ViewEncapsulation.None, template: `
|
|
3761
3774
|
<!-- Line -->
|
|
@@ -4141,281 +4154,281 @@ class AttributeDefaultComponent {
|
|
|
4141
4154
|
registerOnTouched(fn) {
|
|
4142
4155
|
this.onTouched = fn;
|
|
4143
4156
|
}
|
|
4144
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
4145
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
4157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeDefaultComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4158
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: AttributeDefaultComponent, selector: "hci-attribute-default", inputs: { id: "id", name: "name", attribute: "attribute" }, providers: [
|
|
4146
4159
|
{
|
|
4147
4160
|
provide: NG_VALUE_ACCESSOR,
|
|
4148
4161
|
useExisting: forwardRef(() => AttributeDefaultComponent),
|
|
4149
4162
|
multi: true
|
|
4150
4163
|
}
|
|
4151
|
-
], ngImport: i0, template: `
|
|
4152
|
-
<!-- String -->
|
|
4153
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'S'">
|
|
4154
|
-
<input type="text"
|
|
4155
|
-
class="form-control"
|
|
4156
|
-
[id]="id"
|
|
4157
|
-
[name]="name"
|
|
4158
|
-
[(ngModel)]="value">
|
|
4159
|
-
</ng-container>
|
|
4160
|
-
|
|
4161
|
-
<!-- Text -->
|
|
4162
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'TXT'">
|
|
4163
|
-
<textarea type="text"
|
|
4164
|
-
class="form-control"
|
|
4165
|
-
[id]="id"
|
|
4166
|
-
[name]="name"
|
|
4167
|
-
spellcheck="spellcheck"
|
|
4168
|
-
lang="en"
|
|
4169
|
-
[(ngModel)]="value">
|
|
4170
|
-
</textarea>
|
|
4171
|
-
</ng-container>
|
|
4172
|
-
|
|
4173
|
-
<!-- Checkbox -->
|
|
4174
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'CB'">
|
|
4175
|
-
<input type="checkbox"
|
|
4176
|
-
class="form-control"
|
|
4177
|
-
[id]="id"
|
|
4178
|
-
[name]="name"
|
|
4179
|
-
[(ngModel)]="value"
|
|
4180
|
-
[checked]="value && value.toUpperCase() === 'Y'">
|
|
4181
|
-
</ng-container>
|
|
4182
|
-
|
|
4183
|
-
<!-- Numeric -->
|
|
4184
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'N'">
|
|
4185
|
-
<input type="number"
|
|
4186
|
-
class="form-control"
|
|
4187
|
-
[id]="id"
|
|
4188
|
-
[name]="name"
|
|
4189
|
-
[(ngModel)]="value">
|
|
4190
|
-
</ng-container>
|
|
4191
|
-
|
|
4192
|
-
<!-- Integer -->
|
|
4193
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'I'">
|
|
4194
|
-
<input type="number"
|
|
4195
|
-
class="form-control"
|
|
4196
|
-
[id]="id"
|
|
4197
|
-
[name]="name"
|
|
4198
|
-
[(ngModel)]="value">
|
|
4199
|
-
</ng-container>
|
|
4200
|
-
|
|
4201
|
-
<!-- Date -->
|
|
4202
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'D'">
|
|
4203
|
-
<input type="date"
|
|
4204
|
-
class="form-control"
|
|
4205
|
-
[id]="id"
|
|
4206
|
-
[name]="name"
|
|
4207
|
-
[(ngModel)]="value">
|
|
4208
|
-
</ng-container>
|
|
4209
|
-
|
|
4210
|
-
<!-- Date Time -->
|
|
4211
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DT'">
|
|
4212
|
-
<input type="date"
|
|
4213
|
-
class="form-control"
|
|
4214
|
-
[id]="id"
|
|
4215
|
-
[name]="name"
|
|
4216
|
-
[(ngModel)]="value">
|
|
4217
|
-
</ng-container>
|
|
4218
|
-
|
|
4219
|
-
<!-- Boolean -->
|
|
4220
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'B'">
|
|
4221
|
-
<select [(ngModel)]="value"
|
|
4222
|
-
class="form-control edit-renderer"
|
|
4223
|
-
[id]="id"
|
|
4224
|
-
[name]="name">
|
|
4225
|
-
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4226
|
-
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4227
|
-
</select>
|
|
4228
|
-
</ng-container>
|
|
4229
|
-
|
|
4230
|
-
<!-- Extended Boolean -->
|
|
4231
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'EB'">
|
|
4232
|
-
<select [(ngModel)]="value"
|
|
4233
|
-
class="form-control edit-renderer"
|
|
4234
|
-
[id]="id"
|
|
4235
|
-
[name]="name">
|
|
4236
|
-
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4237
|
-
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4238
|
-
<option [ngValue]="'U'" [selected]="value && value.toUpperCase() === 'U'">U</option>
|
|
4239
|
-
</select>
|
|
4240
|
-
</ng-container>
|
|
4241
|
-
|
|
4242
|
-
<!-- Choice: Single -->
|
|
4243
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'N'">
|
|
4244
|
-
<select [(ngModel)]="value"
|
|
4245
|
-
class="form-control edit-renderer"
|
|
4246
|
-
[id]="id"
|
|
4247
|
-
[name]="name">
|
|
4248
|
-
<option *ngFor="let attributeChoice of attribute.attributeChoices"
|
|
4249
|
-
[ngValue]="attributeChoice"
|
|
4250
|
-
[selected]="value && value.toUpperCase() === attributeChoice.idAttributeChoice.toString().toUpperCase()">
|
|
4251
|
-
{{ attributeChoice.choice }}
|
|
4252
|
-
</option>
|
|
4253
|
-
</select>
|
|
4254
|
-
</ng-container>
|
|
4255
|
-
|
|
4256
|
-
<!-- Choice: Multi -->
|
|
4257
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'Y'">
|
|
4258
|
-
<input type="text"
|
|
4259
|
-
class="form-control"
|
|
4260
|
-
[id]="id"
|
|
4261
|
-
[name]="name"
|
|
4262
|
-
disabled>
|
|
4263
|
-
</ng-container>
|
|
4264
|
-
|
|
4265
|
-
<!-- Dictionary -->
|
|
4266
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DICT'">
|
|
4267
|
-
<hci-native-select [(ngModel)]="value"
|
|
4268
|
-
[className]="attribute.attributeDictionary.className"
|
|
4269
|
-
[id]="id"
|
|
4270
|
-
[name]="name">
|
|
4271
|
-
</hci-native-select>
|
|
4272
|
-
</ng-container>
|
|
4273
|
-
|
|
4274
|
-
<!-- Grid -->
|
|
4275
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'GA'">
|
|
4276
|
-
<input type="text"
|
|
4277
|
-
class="form-control"
|
|
4278
|
-
[id]="id"
|
|
4279
|
-
[name]="name"
|
|
4280
|
-
disabled>
|
|
4281
|
-
</ng-container>
|
|
4164
|
+
], ngImport: i0, template: `
|
|
4165
|
+
<!-- String -->
|
|
4166
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'S'">
|
|
4167
|
+
<input type="text"
|
|
4168
|
+
class="form-control"
|
|
4169
|
+
[id]="id"
|
|
4170
|
+
[name]="name"
|
|
4171
|
+
[(ngModel)]="value">
|
|
4172
|
+
</ng-container>
|
|
4173
|
+
|
|
4174
|
+
<!-- Text -->
|
|
4175
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'TXT'">
|
|
4176
|
+
<textarea type="text"
|
|
4177
|
+
class="form-control"
|
|
4178
|
+
[id]="id"
|
|
4179
|
+
[name]="name"
|
|
4180
|
+
spellcheck="spellcheck"
|
|
4181
|
+
lang="en"
|
|
4182
|
+
[(ngModel)]="value">
|
|
4183
|
+
</textarea>
|
|
4184
|
+
</ng-container>
|
|
4185
|
+
|
|
4186
|
+
<!-- Checkbox -->
|
|
4187
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'CB'">
|
|
4188
|
+
<input type="checkbox"
|
|
4189
|
+
class="form-control"
|
|
4190
|
+
[id]="id"
|
|
4191
|
+
[name]="name"
|
|
4192
|
+
[(ngModel)]="value"
|
|
4193
|
+
[checked]="value && value.toUpperCase() === 'Y'">
|
|
4194
|
+
</ng-container>
|
|
4195
|
+
|
|
4196
|
+
<!-- Numeric -->
|
|
4197
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'N'">
|
|
4198
|
+
<input type="number"
|
|
4199
|
+
class="form-control"
|
|
4200
|
+
[id]="id"
|
|
4201
|
+
[name]="name"
|
|
4202
|
+
[(ngModel)]="value">
|
|
4203
|
+
</ng-container>
|
|
4204
|
+
|
|
4205
|
+
<!-- Integer -->
|
|
4206
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'I'">
|
|
4207
|
+
<input type="number"
|
|
4208
|
+
class="form-control"
|
|
4209
|
+
[id]="id"
|
|
4210
|
+
[name]="name"
|
|
4211
|
+
[(ngModel)]="value">
|
|
4212
|
+
</ng-container>
|
|
4213
|
+
|
|
4214
|
+
<!-- Date -->
|
|
4215
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'D'">
|
|
4216
|
+
<input type="date"
|
|
4217
|
+
class="form-control"
|
|
4218
|
+
[id]="id"
|
|
4219
|
+
[name]="name"
|
|
4220
|
+
[(ngModel)]="value">
|
|
4221
|
+
</ng-container>
|
|
4222
|
+
|
|
4223
|
+
<!-- Date Time -->
|
|
4224
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DT'">
|
|
4225
|
+
<input type="date"
|
|
4226
|
+
class="form-control"
|
|
4227
|
+
[id]="id"
|
|
4228
|
+
[name]="name"
|
|
4229
|
+
[(ngModel)]="value">
|
|
4230
|
+
</ng-container>
|
|
4231
|
+
|
|
4232
|
+
<!-- Boolean -->
|
|
4233
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'B'">
|
|
4234
|
+
<select [(ngModel)]="value"
|
|
4235
|
+
class="form-control edit-renderer"
|
|
4236
|
+
[id]="id"
|
|
4237
|
+
[name]="name">
|
|
4238
|
+
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4239
|
+
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4240
|
+
</select>
|
|
4241
|
+
</ng-container>
|
|
4242
|
+
|
|
4243
|
+
<!-- Extended Boolean -->
|
|
4244
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'EB'">
|
|
4245
|
+
<select [(ngModel)]="value"
|
|
4246
|
+
class="form-control edit-renderer"
|
|
4247
|
+
[id]="id"
|
|
4248
|
+
[name]="name">
|
|
4249
|
+
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4250
|
+
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4251
|
+
<option [ngValue]="'U'" [selected]="value && value.toUpperCase() === 'U'">U</option>
|
|
4252
|
+
</select>
|
|
4253
|
+
</ng-container>
|
|
4254
|
+
|
|
4255
|
+
<!-- Choice: Single -->
|
|
4256
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'N'">
|
|
4257
|
+
<select [(ngModel)]="value"
|
|
4258
|
+
class="form-control edit-renderer"
|
|
4259
|
+
[id]="id"
|
|
4260
|
+
[name]="name">
|
|
4261
|
+
<option *ngFor="let attributeChoice of attribute.attributeChoices"
|
|
4262
|
+
[ngValue]="attributeChoice"
|
|
4263
|
+
[selected]="value && value.toUpperCase() === attributeChoice.idAttributeChoice.toString().toUpperCase()">
|
|
4264
|
+
{{ attributeChoice.choice }}
|
|
4265
|
+
</option>
|
|
4266
|
+
</select>
|
|
4267
|
+
</ng-container>
|
|
4268
|
+
|
|
4269
|
+
<!-- Choice: Multi -->
|
|
4270
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'Y'">
|
|
4271
|
+
<input type="text"
|
|
4272
|
+
class="form-control"
|
|
4273
|
+
[id]="id"
|
|
4274
|
+
[name]="name"
|
|
4275
|
+
disabled>
|
|
4276
|
+
</ng-container>
|
|
4277
|
+
|
|
4278
|
+
<!-- Dictionary -->
|
|
4279
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DICT'">
|
|
4280
|
+
<hci-native-select [(ngModel)]="value"
|
|
4281
|
+
[className]="attribute.attributeDictionary.className"
|
|
4282
|
+
[id]="id"
|
|
4283
|
+
[name]="name">
|
|
4284
|
+
</hci-native-select>
|
|
4285
|
+
</ng-container>
|
|
4286
|
+
|
|
4287
|
+
<!-- Grid -->
|
|
4288
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'GA'">
|
|
4289
|
+
<input type="text"
|
|
4290
|
+
class="form-control"
|
|
4291
|
+
[id]="id"
|
|
4292
|
+
[name]="name"
|
|
4293
|
+
disabled>
|
|
4294
|
+
</ng-container>
|
|
4282
4295
|
`, isInline: true, dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.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: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i5.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$2.NativeSelectComponent, selector: "hci-native-select", inputs: ["class", "name", "label", "url", "entries", "required", "idKey", "displayKey", "disabled", "sortKey", "sortNumeric", "filterKey", "filter"] }] }); }
|
|
4283
4296
|
}
|
|
4284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
4297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeDefaultComponent, decorators: [{
|
|
4285
4298
|
type: Component,
|
|
4286
4299
|
args: [{
|
|
4287
4300
|
selector: "hci-attribute-default",
|
|
4288
|
-
template: `
|
|
4289
|
-
<!-- String -->
|
|
4290
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'S'">
|
|
4291
|
-
<input type="text"
|
|
4292
|
-
class="form-control"
|
|
4293
|
-
[id]="id"
|
|
4294
|
-
[name]="name"
|
|
4295
|
-
[(ngModel)]="value">
|
|
4296
|
-
</ng-container>
|
|
4297
|
-
|
|
4298
|
-
<!-- Text -->
|
|
4299
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'TXT'">
|
|
4300
|
-
<textarea type="text"
|
|
4301
|
-
class="form-control"
|
|
4302
|
-
[id]="id"
|
|
4303
|
-
[name]="name"
|
|
4304
|
-
spellcheck="spellcheck"
|
|
4305
|
-
lang="en"
|
|
4306
|
-
[(ngModel)]="value">
|
|
4307
|
-
</textarea>
|
|
4308
|
-
</ng-container>
|
|
4309
|
-
|
|
4310
|
-
<!-- Checkbox -->
|
|
4311
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'CB'">
|
|
4312
|
-
<input type="checkbox"
|
|
4313
|
-
class="form-control"
|
|
4314
|
-
[id]="id"
|
|
4315
|
-
[name]="name"
|
|
4316
|
-
[(ngModel)]="value"
|
|
4317
|
-
[checked]="value && value.toUpperCase() === 'Y'">
|
|
4318
|
-
</ng-container>
|
|
4319
|
-
|
|
4320
|
-
<!-- Numeric -->
|
|
4321
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'N'">
|
|
4322
|
-
<input type="number"
|
|
4323
|
-
class="form-control"
|
|
4324
|
-
[id]="id"
|
|
4325
|
-
[name]="name"
|
|
4326
|
-
[(ngModel)]="value">
|
|
4327
|
-
</ng-container>
|
|
4328
|
-
|
|
4329
|
-
<!-- Integer -->
|
|
4330
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'I'">
|
|
4331
|
-
<input type="number"
|
|
4332
|
-
class="form-control"
|
|
4333
|
-
[id]="id"
|
|
4334
|
-
[name]="name"
|
|
4335
|
-
[(ngModel)]="value">
|
|
4336
|
-
</ng-container>
|
|
4337
|
-
|
|
4338
|
-
<!-- Date -->
|
|
4339
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'D'">
|
|
4340
|
-
<input type="date"
|
|
4341
|
-
class="form-control"
|
|
4342
|
-
[id]="id"
|
|
4343
|
-
[name]="name"
|
|
4344
|
-
[(ngModel)]="value">
|
|
4345
|
-
</ng-container>
|
|
4346
|
-
|
|
4347
|
-
<!-- Date Time -->
|
|
4348
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DT'">
|
|
4349
|
-
<input type="date"
|
|
4350
|
-
class="form-control"
|
|
4351
|
-
[id]="id"
|
|
4352
|
-
[name]="name"
|
|
4353
|
-
[(ngModel)]="value">
|
|
4354
|
-
</ng-container>
|
|
4355
|
-
|
|
4356
|
-
<!-- Boolean -->
|
|
4357
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'B'">
|
|
4358
|
-
<select [(ngModel)]="value"
|
|
4359
|
-
class="form-control edit-renderer"
|
|
4360
|
-
[id]="id"
|
|
4361
|
-
[name]="name">
|
|
4362
|
-
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4363
|
-
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4364
|
-
</select>
|
|
4365
|
-
</ng-container>
|
|
4366
|
-
|
|
4367
|
-
<!-- Extended Boolean -->
|
|
4368
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'EB'">
|
|
4369
|
-
<select [(ngModel)]="value"
|
|
4370
|
-
class="form-control edit-renderer"
|
|
4371
|
-
[id]="id"
|
|
4372
|
-
[name]="name">
|
|
4373
|
-
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4374
|
-
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4375
|
-
<option [ngValue]="'U'" [selected]="value && value.toUpperCase() === 'U'">U</option>
|
|
4376
|
-
</select>
|
|
4377
|
-
</ng-container>
|
|
4378
|
-
|
|
4379
|
-
<!-- Choice: Single -->
|
|
4380
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'N'">
|
|
4381
|
-
<select [(ngModel)]="value"
|
|
4382
|
-
class="form-control edit-renderer"
|
|
4383
|
-
[id]="id"
|
|
4384
|
-
[name]="name">
|
|
4385
|
-
<option *ngFor="let attributeChoice of attribute.attributeChoices"
|
|
4386
|
-
[ngValue]="attributeChoice"
|
|
4387
|
-
[selected]="value && value.toUpperCase() === attributeChoice.idAttributeChoice.toString().toUpperCase()">
|
|
4388
|
-
{{ attributeChoice.choice }}
|
|
4389
|
-
</option>
|
|
4390
|
-
</select>
|
|
4391
|
-
</ng-container>
|
|
4392
|
-
|
|
4393
|
-
<!-- Choice: Multi -->
|
|
4394
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'Y'">
|
|
4395
|
-
<input type="text"
|
|
4396
|
-
class="form-control"
|
|
4397
|
-
[id]="id"
|
|
4398
|
-
[name]="name"
|
|
4399
|
-
disabled>
|
|
4400
|
-
</ng-container>
|
|
4401
|
-
|
|
4402
|
-
<!-- Dictionary -->
|
|
4403
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DICT'">
|
|
4404
|
-
<hci-native-select [(ngModel)]="value"
|
|
4405
|
-
[className]="attribute.attributeDictionary.className"
|
|
4406
|
-
[id]="id"
|
|
4407
|
-
[name]="name">
|
|
4408
|
-
</hci-native-select>
|
|
4409
|
-
</ng-container>
|
|
4410
|
-
|
|
4411
|
-
<!-- Grid -->
|
|
4412
|
-
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'GA'">
|
|
4413
|
-
<input type="text"
|
|
4414
|
-
class="form-control"
|
|
4415
|
-
[id]="id"
|
|
4416
|
-
[name]="name"
|
|
4417
|
-
disabled>
|
|
4418
|
-
</ng-container>
|
|
4301
|
+
template: `
|
|
4302
|
+
<!-- String -->
|
|
4303
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'S'">
|
|
4304
|
+
<input type="text"
|
|
4305
|
+
class="form-control"
|
|
4306
|
+
[id]="id"
|
|
4307
|
+
[name]="name"
|
|
4308
|
+
[(ngModel)]="value">
|
|
4309
|
+
</ng-container>
|
|
4310
|
+
|
|
4311
|
+
<!-- Text -->
|
|
4312
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'TXT'">
|
|
4313
|
+
<textarea type="text"
|
|
4314
|
+
class="form-control"
|
|
4315
|
+
[id]="id"
|
|
4316
|
+
[name]="name"
|
|
4317
|
+
spellcheck="spellcheck"
|
|
4318
|
+
lang="en"
|
|
4319
|
+
[(ngModel)]="value">
|
|
4320
|
+
</textarea>
|
|
4321
|
+
</ng-container>
|
|
4322
|
+
|
|
4323
|
+
<!-- Checkbox -->
|
|
4324
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'CB'">
|
|
4325
|
+
<input type="checkbox"
|
|
4326
|
+
class="form-control"
|
|
4327
|
+
[id]="id"
|
|
4328
|
+
[name]="name"
|
|
4329
|
+
[(ngModel)]="value"
|
|
4330
|
+
[checked]="value && value.toUpperCase() === 'Y'">
|
|
4331
|
+
</ng-container>
|
|
4332
|
+
|
|
4333
|
+
<!-- Numeric -->
|
|
4334
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'N'">
|
|
4335
|
+
<input type="number"
|
|
4336
|
+
class="form-control"
|
|
4337
|
+
[id]="id"
|
|
4338
|
+
[name]="name"
|
|
4339
|
+
[(ngModel)]="value">
|
|
4340
|
+
</ng-container>
|
|
4341
|
+
|
|
4342
|
+
<!-- Integer -->
|
|
4343
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'I'">
|
|
4344
|
+
<input type="number"
|
|
4345
|
+
class="form-control"
|
|
4346
|
+
[id]="id"
|
|
4347
|
+
[name]="name"
|
|
4348
|
+
[(ngModel)]="value">
|
|
4349
|
+
</ng-container>
|
|
4350
|
+
|
|
4351
|
+
<!-- Date -->
|
|
4352
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'D'">
|
|
4353
|
+
<input type="date"
|
|
4354
|
+
class="form-control"
|
|
4355
|
+
[id]="id"
|
|
4356
|
+
[name]="name"
|
|
4357
|
+
[(ngModel)]="value">
|
|
4358
|
+
</ng-container>
|
|
4359
|
+
|
|
4360
|
+
<!-- Date Time -->
|
|
4361
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DT'">
|
|
4362
|
+
<input type="date"
|
|
4363
|
+
class="form-control"
|
|
4364
|
+
[id]="id"
|
|
4365
|
+
[name]="name"
|
|
4366
|
+
[(ngModel)]="value">
|
|
4367
|
+
</ng-container>
|
|
4368
|
+
|
|
4369
|
+
<!-- Boolean -->
|
|
4370
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'B'">
|
|
4371
|
+
<select [(ngModel)]="value"
|
|
4372
|
+
class="form-control edit-renderer"
|
|
4373
|
+
[id]="id"
|
|
4374
|
+
[name]="name">
|
|
4375
|
+
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4376
|
+
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4377
|
+
</select>
|
|
4378
|
+
</ng-container>
|
|
4379
|
+
|
|
4380
|
+
<!-- Extended Boolean -->
|
|
4381
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'EB'">
|
|
4382
|
+
<select [(ngModel)]="value"
|
|
4383
|
+
class="form-control edit-renderer"
|
|
4384
|
+
[id]="id"
|
|
4385
|
+
[name]="name">
|
|
4386
|
+
<option [ngValue]="'Y'" [selected]="value && value.toUpperCase() === 'Y'">Y</option>
|
|
4387
|
+
<option [ngValue]="'N'" [selected]="value && value.toUpperCase() === 'N'">N</option>
|
|
4388
|
+
<option [ngValue]="'U'" [selected]="value && value.toUpperCase() === 'U'">U</option>
|
|
4389
|
+
</select>
|
|
4390
|
+
</ng-container>
|
|
4391
|
+
|
|
4392
|
+
<!-- Choice: Single -->
|
|
4393
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'N'">
|
|
4394
|
+
<select [(ngModel)]="value"
|
|
4395
|
+
class="form-control edit-renderer"
|
|
4396
|
+
[id]="id"
|
|
4397
|
+
[name]="name">
|
|
4398
|
+
<option *ngFor="let attributeChoice of attribute.attributeChoices"
|
|
4399
|
+
[ngValue]="attributeChoice"
|
|
4400
|
+
[selected]="value && value.toUpperCase() === attributeChoice.idAttributeChoice.toString().toUpperCase()">
|
|
4401
|
+
{{ attributeChoice.choice }}
|
|
4402
|
+
</option>
|
|
4403
|
+
</select>
|
|
4404
|
+
</ng-container>
|
|
4405
|
+
|
|
4406
|
+
<!-- Choice: Multi -->
|
|
4407
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'AC' && attribute.isMultiValue.toUpperCase() === 'Y'">
|
|
4408
|
+
<input type="text"
|
|
4409
|
+
class="form-control"
|
|
4410
|
+
[id]="id"
|
|
4411
|
+
[name]="name"
|
|
4412
|
+
disabled>
|
|
4413
|
+
</ng-container>
|
|
4414
|
+
|
|
4415
|
+
<!-- Dictionary -->
|
|
4416
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'DICT'">
|
|
4417
|
+
<hci-native-select [(ngModel)]="value"
|
|
4418
|
+
[className]="attribute.attributeDictionary.className"
|
|
4419
|
+
[id]="id"
|
|
4420
|
+
[name]="name">
|
|
4421
|
+
</hci-native-select>
|
|
4422
|
+
</ng-container>
|
|
4423
|
+
|
|
4424
|
+
<!-- Grid -->
|
|
4425
|
+
<ng-container *ngIf="attribute.codeAttributeDataType.toUpperCase() === 'GA'">
|
|
4426
|
+
<input type="text"
|
|
4427
|
+
class="form-control"
|
|
4428
|
+
[id]="id"
|
|
4429
|
+
[name]="name"
|
|
4430
|
+
disabled>
|
|
4431
|
+
</ng-container>
|
|
4419
4432
|
`,
|
|
4420
4433
|
providers: [
|
|
4421
4434
|
{
|
|
@@ -4536,8 +4549,8 @@ class AttributeContainerComponent {
|
|
|
4536
4549
|
return this.attributeConfiguration.attributeContainers.find(x => x.idAttributeContainer === idAttributeContainer);
|
|
4537
4550
|
}
|
|
4538
4551
|
}
|
|
4539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
4540
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
4552
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeContainerComponent, deps: [{ token: AttributeService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i2$1.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4553
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: AttributeContainerComponent, selector: "hci-attribute-container", inputs: { idAttributeValueSet: "idAttributeValueSet", idAttributeConfiguration: "idAttributeConfiguration", idAttributeContainer: "idAttributeContainer", indexOfContainer: "indexOfContainer", idParentObject: "idParentObject", attributeContainer: "attributeContainer", attributeConfiguration: "attributeConfiguration", attributeValueSet: "attributeValueSet", editInline: "editInline", editPopup: "editPopup", editable: "editable", boundData: "boundData" }, host: { properties: { "class": "this.classList" } }, usesOnChanges: true, ngImport: i0, template: `
|
|
4541
4554
|
<hci-busy [getBusySubjects]="getBusySubjects"></hci-busy>
|
|
4542
4555
|
|
|
4543
4556
|
<ng-container *ngIf="attributeContainer">
|
|
@@ -4591,7 +4604,7 @@ class AttributeContainerComponent {
|
|
|
4591
4604
|
</ng-template>
|
|
4592
4605
|
`, isInline: true, dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { 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: AttributeAbsoluteComponent, selector: "hci-attribute-absolute" }, { kind: "component", type: AttributeFlexComponent, selector: "hci-attribute-flex" }, { kind: "component", type: AttributeEditComponent, selector: "hci-attribute-edit" }, { kind: "pipe", type: IsGroupAttributePipe, name: "isGroupAttribute" }] }); }
|
|
4593
4606
|
}
|
|
4594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
4607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: AttributeContainerComponent, decorators: [{
|
|
4595
4608
|
type: Component,
|
|
4596
4609
|
args: [{
|
|
4597
4610
|
selector: "hci-attribute-container",
|
|
@@ -4695,8 +4708,8 @@ class CodModule {
|
|
|
4695
4708
|
ngModule: CodModule
|
|
4696
4709
|
};
|
|
4697
4710
|
}
|
|
4698
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
4699
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
4711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4712
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: CodModule, declarations: [AttributeBase,
|
|
4700
4713
|
AttributeAbsoluteComponent,
|
|
4701
4714
|
AttributeContainerComponent,
|
|
4702
4715
|
AttributeFlexComponent,
|
|
@@ -4720,7 +4733,7 @@ class CodModule {
|
|
|
4720
4733
|
AttributeDefaultComponent,
|
|
4721
4734
|
AttributeContainerComponent,
|
|
4722
4735
|
IsGroupAttributePipe] }); }
|
|
4723
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
4736
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, imports: [AgGridModule,
|
|
4724
4737
|
CommonModule,
|
|
4725
4738
|
FormsModule,
|
|
4726
4739
|
RouterModule,
|
|
@@ -4734,7 +4747,7 @@ class CodModule {
|
|
|
4734
4747
|
NgxMatTimepickerModule,
|
|
4735
4748
|
NgxMatNativeDateModule] }); }
|
|
4736
4749
|
}
|
|
4737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
4750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CodModule, decorators: [{
|
|
4738
4751
|
type: NgModule,
|
|
4739
4752
|
args: [{
|
|
4740
4753
|
imports: [
|