@huntsman-cancer-institute/cod 17.10.4 → 17.11.1

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.
@@ -1866,7 +1866,7 @@ class AttributeBase {
1866
1866
  }
1867
1867
  editGridRow(modal, idGroupAttribute, event) {
1868
1868
  //EditInline is actually the ONLY way this can be editable, so this is really whether the grid is editable, at all
1869
- if (this.editInline) {
1869
+ if (this.editInline && !(this.attribute.isActive === 'N')) {
1870
1870
  this.editGroupAttributeRowId = event.data.groupAttributeRowId;
1871
1871
  this.editGroupRowAttributes = this.childAttributes;
1872
1872
  this.modalService.open(modal, { windowClass: "modal-lg" }).result.then((result) => {
@@ -1963,10 +1963,11 @@ class AttributeEditComponent extends AttributeBase {
1963
1963
 
1964
1964
  <div *ngIf="(attribute.h == undefined || (attribute.h && attribute.h <= 25))" class="d-flex col-md-6">
1965
1965
  <input #inputRef
1966
+ class="custom-input-text"
1966
1967
  type="text"
1967
1968
  [ngModel]="attributeValues[0].valueString"
1968
1969
  (ngModelChange)="valueStringChange($event)"
1969
- [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
1970
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
1970
1971
  attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
1971
1972
  />
1972
1973
  </div>
@@ -1974,6 +1975,7 @@ class AttributeEditComponent extends AttributeBase {
1974
1975
  <div *ngIf="(attribute.h && attribute.h > 25)" class="d-flex col-md-6">
1975
1976
  <textarea
1976
1977
  #inputRef
1978
+ class="custom-input-text"
1977
1979
  type="text"
1978
1980
  spellcheck="spellcheck"
1979
1981
  lang="en"
@@ -1999,6 +2001,7 @@ class AttributeEditComponent extends AttributeBase {
1999
2001
 
2000
2002
  <textarea
2001
2003
  #inputRef
2004
+ class="custom-input-text"
2002
2005
  type="text"
2003
2006
  spellcheck="spellcheck"
2004
2007
  lang="en"
@@ -2022,10 +2025,11 @@ class AttributeEditComponent extends AttributeBase {
2022
2025
  </div>
2023
2026
  <div class="d-flex col-md-6">
2024
2027
  <input #inputRef
2028
+ class="custom-input-text"
2025
2029
  type="number"
2026
2030
  [ngModel]="attributeValues[0].valueNumeric"
2027
2031
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2028
- (ngModelChange)="valueNumericChange($event)"
2032
+ (ngModelChange)="valueNumericChange($event)"
2029
2033
  attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2030
2034
  </div>
2031
2035
  </div>
@@ -2040,10 +2044,11 @@ class AttributeEditComponent extends AttributeBase {
2040
2044
  </div>
2041
2045
  <div class="d-flex col-md-6">
2042
2046
  <input #inputRef
2047
+ class="custom-input-text"
2043
2048
  type="number"
2044
2049
  [ngModel]="attributeValues[0].valueInteger"
2045
2050
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2046
- (ngModelChange)="valueIntegerChange($event)"
2051
+ (ngModelChange)="valueIntegerChange($event)"
2047
2052
  attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2048
2053
  </div>
2049
2054
  </div>
@@ -2059,11 +2064,12 @@ class AttributeEditComponent extends AttributeBase {
2059
2064
  <div class="d-flex col-md-6">
2060
2065
  <input #inputRef
2061
2066
  matInput
2067
+ class="custom-input-text"
2062
2068
  name="valueDate"
2063
2069
  [(ngModel)]="attributeValues[0].valueDate"
2064
2070
  (ngModelChange)="valueDateChange($event)"
2065
2071
  [matDatepicker]="valueDate"
2066
- [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2072
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2067
2073
  attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2068
2074
  >
2069
2075
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
@@ -2082,6 +2088,7 @@ class AttributeEditComponent extends AttributeBase {
2082
2088
  <div class="d-flex col-md-6">
2083
2089
  <input #inputRef
2084
2090
  matInput
2091
+ class="custom-input-text"
2085
2092
  name="valueDateTime"
2086
2093
  [(ngModel)]="attributeValues[0].date"
2087
2094
  (ngModelChange)="valueDateChange($event)"
@@ -2106,7 +2113,7 @@ class AttributeEditComponent extends AttributeBase {
2106
2113
  [checked]="attributeValues[0].valueString === 'Y'"
2107
2114
  (change)="valueCheckboxChange($event)"
2108
2115
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2109
- class="form-control" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2116
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2110
2117
  </div>
2111
2118
  </div>
2112
2119
  </ng-container>
@@ -2122,7 +2129,7 @@ class AttributeEditComponent extends AttributeBase {
2122
2129
  <select [ngModel]="attributeValues[0].valueString"
2123
2130
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2124
2131
  (ngModelChange)="valueStringChange($event)"
2125
- class="edit-renderer">
2132
+ class="form-select edit-renderer custom-caret">
2126
2133
  <option [ngValue]="undefined"></option>
2127
2134
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
2128
2135
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -2142,7 +2149,7 @@ class AttributeEditComponent extends AttributeBase {
2142
2149
  <select [ngModel]="attributeValues[0].valueString"
2143
2150
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2144
2151
  (ngModelChange)="valueStringChange($event)"
2145
- class="edit-renderer">
2152
+ class="form-select edit-renderer custom-caret">
2146
2153
  <option [ngValue]="undefined"></option>
2147
2154
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
2148
2155
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -2164,7 +2171,7 @@ class AttributeEditComponent extends AttributeBase {
2164
2171
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2165
2172
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2166
2173
  (ngModelChange)="valueChoiceChange($event)"
2167
- class="edit-renderer">
2174
+ class="form-select edit-renderer custom-caret">
2168
2175
  <option [ngValue]="undefined"></option>
2169
2176
  <option *ngFor="let attributeChoice of attributeChoices"
2170
2177
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -2189,7 +2196,7 @@ class AttributeEditComponent extends AttributeBase {
2189
2196
  [checked]="attributeChoice.value"
2190
2197
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2191
2198
  (change)="valueMultiChoiceChange(attributeChoice)"
2192
- class="form-control checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2199
+ class="form-check-input m-0 checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2193
2200
  <div class="cod-label ps-1">
2194
2201
  {{attributeChoice.choice}}
2195
2202
  </div>
@@ -2213,7 +2220,7 @@ class AttributeEditComponent extends AttributeBase {
2213
2220
  [checked]="entry.checked"
2214
2221
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2215
2222
  (change)="valueMultiDictChange(entry)"
2216
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2223
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2217
2224
  <div class="cod-label ps-1">
2218
2225
  {{entry.display}}
2219
2226
  </div>
@@ -2221,7 +2228,7 @@ class AttributeEditComponent extends AttributeBase {
2221
2228
  </ng-container>
2222
2229
  </div>
2223
2230
  </div>
2224
- </ng-container>
2231
+ </ng-container>
2225
2232
 
2226
2233
  <!-- Dictionary -->
2227
2234
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'N'">
@@ -2235,7 +2242,7 @@ class AttributeEditComponent extends AttributeBase {
2235
2242
  [ngModel]="attributeValues[0].valueIdDictionary"
2236
2243
  (ngModelChange)="valueDictChange($event)"
2237
2244
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2238
- class="form-control edit-renderer">
2245
+ class="form-select edit-renderer custom-caret">
2239
2246
  <option [ngValue]="undefined"></option>
2240
2247
  <option *ngFor="let entry of dictionaryEntries"
2241
2248
  [ngValue]="entry.value">
@@ -2302,7 +2309,7 @@ class AttributeEditComponent extends AttributeBase {
2302
2309
  <button class="btn btn-primary" (click)="close('Cancel')">Cancel</button>
2303
2310
  </div>
2304
2311
  </ng-template>
2305
- `, 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" }] }); }
2312
+ `, 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}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}input[type=checkbox].form-check-input{min-width:16px;min-height:16px}input.custom-input-text{color:var(--bluewarm-darkest)}\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" }] }); }
2306
2313
  }
2307
2314
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AttributeEditComponent, decorators: [{
2308
2315
  type: Component,
@@ -2317,10 +2324,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2317
2324
 
2318
2325
  <div *ngIf="(attribute.h == undefined || (attribute.h && attribute.h <= 25))" class="d-flex col-md-6">
2319
2326
  <input #inputRef
2327
+ class="custom-input-text"
2320
2328
  type="text"
2321
2329
  [ngModel]="attributeValues[0].valueString"
2322
2330
  (ngModelChange)="valueStringChange($event)"
2323
- [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2331
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2324
2332
  attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
2325
2333
  />
2326
2334
  </div>
@@ -2328,6 +2336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2328
2336
  <div *ngIf="(attribute.h && attribute.h > 25)" class="d-flex col-md-6">
2329
2337
  <textarea
2330
2338
  #inputRef
2339
+ class="custom-input-text"
2331
2340
  type="text"
2332
2341
  spellcheck="spellcheck"
2333
2342
  lang="en"
@@ -2353,6 +2362,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2353
2362
 
2354
2363
  <textarea
2355
2364
  #inputRef
2365
+ class="custom-input-text"
2356
2366
  type="text"
2357
2367
  spellcheck="spellcheck"
2358
2368
  lang="en"
@@ -2376,10 +2386,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2376
2386
  </div>
2377
2387
  <div class="d-flex col-md-6">
2378
2388
  <input #inputRef
2389
+ class="custom-input-text"
2379
2390
  type="number"
2380
2391
  [ngModel]="attributeValues[0].valueNumeric"
2381
2392
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2382
- (ngModelChange)="valueNumericChange($event)"
2393
+ (ngModelChange)="valueNumericChange($event)"
2383
2394
  attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2384
2395
  </div>
2385
2396
  </div>
@@ -2394,10 +2405,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2394
2405
  </div>
2395
2406
  <div class="d-flex col-md-6">
2396
2407
  <input #inputRef
2408
+ class="custom-input-text"
2397
2409
  type="number"
2398
2410
  [ngModel]="attributeValues[0].valueInteger"
2399
2411
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2400
- (ngModelChange)="valueIntegerChange($event)"
2412
+ (ngModelChange)="valueIntegerChange($event)"
2401
2413
  attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2402
2414
  </div>
2403
2415
  </div>
@@ -2413,11 +2425,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2413
2425
  <div class="d-flex col-md-6">
2414
2426
  <input #inputRef
2415
2427
  matInput
2428
+ class="custom-input-text"
2416
2429
  name="valueDate"
2417
2430
  [(ngModel)]="attributeValues[0].valueDate"
2418
2431
  (ngModelChange)="valueDateChange($event)"
2419
2432
  [matDatepicker]="valueDate"
2420
- [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2433
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2421
2434
  attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2422
2435
  >
2423
2436
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
@@ -2436,6 +2449,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2436
2449
  <div class="d-flex col-md-6">
2437
2450
  <input #inputRef
2438
2451
  matInput
2452
+ class="custom-input-text"
2439
2453
  name="valueDateTime"
2440
2454
  [(ngModel)]="attributeValues[0].date"
2441
2455
  (ngModelChange)="valueDateChange($event)"
@@ -2460,7 +2474,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2460
2474
  [checked]="attributeValues[0].valueString === 'Y'"
2461
2475
  (change)="valueCheckboxChange($event)"
2462
2476
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2463
- class="form-control" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2477
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2464
2478
  </div>
2465
2479
  </div>
2466
2480
  </ng-container>
@@ -2476,7 +2490,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2476
2490
  <select [ngModel]="attributeValues[0].valueString"
2477
2491
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2478
2492
  (ngModelChange)="valueStringChange($event)"
2479
- class="edit-renderer">
2493
+ class="form-select edit-renderer custom-caret">
2480
2494
  <option [ngValue]="undefined"></option>
2481
2495
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
2482
2496
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -2496,7 +2510,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2496
2510
  <select [ngModel]="attributeValues[0].valueString"
2497
2511
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2498
2512
  (ngModelChange)="valueStringChange($event)"
2499
- class="edit-renderer">
2513
+ class="form-select edit-renderer custom-caret">
2500
2514
  <option [ngValue]="undefined"></option>
2501
2515
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
2502
2516
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -2518,7 +2532,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2518
2532
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2519
2533
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2520
2534
  (ngModelChange)="valueChoiceChange($event)"
2521
- class="edit-renderer">
2535
+ class="form-select edit-renderer custom-caret">
2522
2536
  <option [ngValue]="undefined"></option>
2523
2537
  <option *ngFor="let attributeChoice of attributeChoices"
2524
2538
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -2543,7 +2557,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2543
2557
  [checked]="attributeChoice.value"
2544
2558
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2545
2559
  (change)="valueMultiChoiceChange(attributeChoice)"
2546
- class="form-control checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2560
+ class="form-check-input m-0 checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2547
2561
  <div class="cod-label ps-1">
2548
2562
  {{attributeChoice.choice}}
2549
2563
  </div>
@@ -2567,7 +2581,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2567
2581
  [checked]="entry.checked"
2568
2582
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2569
2583
  (change)="valueMultiDictChange(entry)"
2570
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2584
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2571
2585
  <div class="cod-label ps-1">
2572
2586
  {{entry.display}}
2573
2587
  </div>
@@ -2575,7 +2589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2575
2589
  </ng-container>
2576
2590
  </div>
2577
2591
  </div>
2578
- </ng-container>
2592
+ </ng-container>
2579
2593
 
2580
2594
  <!-- Dictionary -->
2581
2595
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'N'">
@@ -2589,7 +2603,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2589
2603
  [ngModel]="attributeValues[0].valueIdDictionary"
2590
2604
  (ngModelChange)="valueDictChange($event)"
2591
2605
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2592
- class="form-control edit-renderer">
2606
+ class="form-select edit-renderer custom-caret">
2593
2607
  <option [ngValue]="undefined"></option>
2594
2608
  <option *ngFor="let entry of dictionaryEntries"
2595
2609
  [ngValue]="entry.value">
@@ -2656,7 +2670,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2656
2670
  <button class="btn btn-primary" (click)="close('Cancel')">Cancel</button>
2657
2671
  </div>
2658
2672
  </ng-template>
2659
- `, 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"] }]
2673
+ `, 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}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}input[type=checkbox].form-check-input{min-width:16px;min-height:16px}input.custom-input-text{color:var(--bluewarm-darkest)}\n"] }]
2660
2674
  }], ctorParameters: () => [{ type: AttributeService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2$1.NgbModal }] });
2661
2675
 
2662
2676
  /**
@@ -2783,7 +2797,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2783
2797
  [ngModel]="attributeValues[0].valueString"
2784
2798
  (ngModelChange)="valueStringChange($event)"
2785
2799
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2786
- class="form-control"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2800
+ class="form-control custom-input-text"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2787
2801
  </div>
2788
2802
  <div *ngIf="(attribute.h > 25)" class="d-flex flex-grow-1">
2789
2803
  <textarea
@@ -2794,7 +2808,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2794
2808
  [ngModel]="attributeValues[0].valueString"
2795
2809
  (ngModelChange)="valueStringChange($event)"
2796
2810
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2797
- class="form-control">
2811
+ class="form-control custom-input-text">
2798
2812
  </textarea>
2799
2813
  </div>
2800
2814
  </div>
@@ -2816,7 +2830,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2816
2830
  [ngModel]="attributeValues[0].valueLongText.textData"
2817
2831
  (ngModelChange)="valueTextChange($event)"
2818
2832
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2819
- class="form-control">
2833
+ class="form-control custom-input-text">
2820
2834
  </textarea>
2821
2835
  </div>
2822
2836
  </div>
@@ -2834,7 +2848,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2834
2848
  [checked]="attributeValues[0].valueString === 'Y'"
2835
2849
  (change)="valueCheckboxChange($event)"
2836
2850
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2837
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2851
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2838
2852
  </div>
2839
2853
  </div>
2840
2854
  </ng-container>
@@ -2852,7 +2866,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2852
2866
  [ngModel]="attributeValues[0].valueNumeric"
2853
2867
  (ngModelChange)="valueNumericChange($event)"
2854
2868
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2855
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2869
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2856
2870
  </div>
2857
2871
  </div>
2858
2872
  </ng-container>
@@ -2870,7 +2884,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2870
2884
  [ngModel]="attributeValues[0].valueInteger"
2871
2885
  (ngModelChange)="valueIntegerChange($event)"
2872
2886
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2873
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2887
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2874
2888
  </div>
2875
2889
  </div>
2876
2890
  </ng-container>
@@ -2890,7 +2904,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2890
2904
  (ngModelChange)="valueDateChange($event)"
2891
2905
  [matDatepicker]="valueDate"
2892
2906
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2893
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
2907
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
2894
2908
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
2895
2909
  <mat-datepicker #valueDate></mat-datepicker>
2896
2910
  </div>
@@ -2908,7 +2922,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2908
2922
  <input #inputRef
2909
2923
  matInput
2910
2924
  name="valueDateTime"
2911
- class="form-control"
2925
+ class="form-control custom-input-text"
2912
2926
  [(ngModel)]="attributeValues[0].date"
2913
2927
  (ngModelChange)="valueDateChange($event)"
2914
2928
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
@@ -2931,7 +2945,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2931
2945
  [ngModel]="attributeValues[0].valueString"
2932
2946
  (ngModelChange)="valueStringChange($event)"
2933
2947
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2934
- class="form-control edit-renderer">
2948
+ class="form-select edit-renderer custom-caret">
2935
2949
  <option [ngValue]="undefined"></option>
2936
2950
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
2937
2951
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -2952,7 +2966,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2952
2966
  [ngModel]="attributeValues[0].valueString"
2953
2967
  (ngModelChange)="valueStringChange($event)"
2954
2968
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2955
- class="form-control edit-renderer">
2969
+ class="form-select edit-renderer custom-caret">
2956
2970
  <option [ngValue]="undefined"></option>
2957
2971
  <option [ngValue]="'Y'">Yes</option>
2958
2972
  <option [ngValue]="'N'">No</option>
@@ -2974,7 +2988,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2974
2988
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2975
2989
  (ngModelChange)="valueChoiceChange($event)"
2976
2990
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2977
- class="form-control edit-renderer">
2991
+ class="form-select edit-renderer custom-caret">
2978
2992
  <option [ngValue]="undefined"></option>
2979
2993
  <option *ngFor="let attributeChoice of attributeChoices"
2980
2994
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -3000,7 +3014,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3000
3014
  [checked]="attributeChoice.value"
3001
3015
  (change)="valueMultiChoiceChange(attributeChoice)"
3002
3016
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3003
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
3017
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
3004
3018
  <div class="cod-label ps-1">
3005
3019
  {{ attributeChoice.choice }}
3006
3020
  </div>
@@ -3025,7 +3039,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3025
3039
  [checked]="entry.checked"
3026
3040
  (change)="valueMultiDictChange(entry)"
3027
3041
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3028
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3042
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3029
3043
  <div class="cod-label ps-1">
3030
3044
  {{ entry.display }}
3031
3045
  </div>
@@ -3047,7 +3061,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3047
3061
  [ngModel]="attributeValues[0].valueIdDictionary"
3048
3062
  (ngModelChange)="valueDictChange($event)"
3049
3063
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3050
- class="form-control edit-renderer">
3064
+ class="form-select edit-renderer custom-caret">
3051
3065
  <option [ngValue]="undefined"></option>
3052
3066
  <option *ngFor="let entry of dictionaryEntries"
3053
3067
  [ngValue]="entry.value">
@@ -3069,7 +3083,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3069
3083
 
3070
3084
  <button
3071
3085
  class="btn-ga"
3072
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3086
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3073
3087
  (click)="addGridRow(editGridModal, attribute.idAttribute)"
3074
3088
  >
3075
3089
  <span class="ga-icon">
@@ -3079,7 +3093,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3079
3093
 
3080
3094
  <button
3081
3095
  class="btn-ga"
3082
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3096
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3083
3097
  (click)="removeGridRow(attribute.idAttribute)"
3084
3098
  >
3085
3099
  <span class="ga-icon">
@@ -3134,7 +3148,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3134
3148
  </button>
3135
3149
  </div>
3136
3150
  </ng-template>
3137
- `, 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}.calendar-container{float:left;display:flex;align-items:center;justify-content:center;height:1rem}\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 }); }
3151
+ `, 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}.calendar-container{float:left;display:flex;align-items:center;justify-content:center;height:1rem}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}.cod-type-s .custom-input-text,.cod-type-n .custom-input-text,.cod-type-i .custom-input-text,.cod-type-txt .custom-input-text,.cod-type-d .custom-input-text,.cod-type-dt .custom-input-text{color:var(--bluewarm-darkest)}\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 }); }
3138
3152
  }
3139
3153
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AttributeAbsoluteComponent, decorators: [{
3140
3154
  type: Component,
@@ -3177,7 +3191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3177
3191
  [ngModel]="attributeValues[0].valueString"
3178
3192
  (ngModelChange)="valueStringChange($event)"
3179
3193
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3180
- class="form-control"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3194
+ class="form-control custom-input-text"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3181
3195
  </div>
3182
3196
  <div *ngIf="(attribute.h > 25)" class="d-flex flex-grow-1">
3183
3197
  <textarea
@@ -3188,7 +3202,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3188
3202
  [ngModel]="attributeValues[0].valueString"
3189
3203
  (ngModelChange)="valueStringChange($event)"
3190
3204
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3191
- class="form-control">
3205
+ class="form-control custom-input-text">
3192
3206
  </textarea>
3193
3207
  </div>
3194
3208
  </div>
@@ -3210,7 +3224,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3210
3224
  [ngModel]="attributeValues[0].valueLongText.textData"
3211
3225
  (ngModelChange)="valueTextChange($event)"
3212
3226
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3213
- class="form-control">
3227
+ class="form-control custom-input-text">
3214
3228
  </textarea>
3215
3229
  </div>
3216
3230
  </div>
@@ -3228,7 +3242,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3228
3242
  [checked]="attributeValues[0].valueString === 'Y'"
3229
3243
  (change)="valueCheckboxChange($event)"
3230
3244
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3231
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3245
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3232
3246
  </div>
3233
3247
  </div>
3234
3248
  </ng-container>
@@ -3246,7 +3260,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3246
3260
  [ngModel]="attributeValues[0].valueNumeric"
3247
3261
  (ngModelChange)="valueNumericChange($event)"
3248
3262
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3249
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3263
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3250
3264
  </div>
3251
3265
  </div>
3252
3266
  </ng-container>
@@ -3264,7 +3278,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3264
3278
  [ngModel]="attributeValues[0].valueInteger"
3265
3279
  (ngModelChange)="valueIntegerChange($event)"
3266
3280
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3267
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3281
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3268
3282
  </div>
3269
3283
  </div>
3270
3284
  </ng-container>
@@ -3284,7 +3298,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3284
3298
  (ngModelChange)="valueDateChange($event)"
3285
3299
  [matDatepicker]="valueDate"
3286
3300
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3287
- class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3301
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3288
3302
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
3289
3303
  <mat-datepicker #valueDate></mat-datepicker>
3290
3304
  </div>
@@ -3302,7 +3316,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3302
3316
  <input #inputRef
3303
3317
  matInput
3304
3318
  name="valueDateTime"
3305
- class="form-control"
3319
+ class="form-control custom-input-text"
3306
3320
  [(ngModel)]="attributeValues[0].date"
3307
3321
  (ngModelChange)="valueDateChange($event)"
3308
3322
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
@@ -3325,7 +3339,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3325
3339
  [ngModel]="attributeValues[0].valueString"
3326
3340
  (ngModelChange)="valueStringChange($event)"
3327
3341
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3328
- class="form-control edit-renderer">
3342
+ class="form-select edit-renderer custom-caret">
3329
3343
  <option [ngValue]="undefined"></option>
3330
3344
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
3331
3345
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -3346,7 +3360,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3346
3360
  [ngModel]="attributeValues[0].valueString"
3347
3361
  (ngModelChange)="valueStringChange($event)"
3348
3362
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3349
- class="form-control edit-renderer">
3363
+ class="form-select edit-renderer custom-caret">
3350
3364
  <option [ngValue]="undefined"></option>
3351
3365
  <option [ngValue]="'Y'">Yes</option>
3352
3366
  <option [ngValue]="'N'">No</option>
@@ -3368,7 +3382,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3368
3382
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
3369
3383
  (ngModelChange)="valueChoiceChange($event)"
3370
3384
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3371
- class="form-control edit-renderer">
3385
+ class="form-select edit-renderer custom-caret">
3372
3386
  <option [ngValue]="undefined"></option>
3373
3387
  <option *ngFor="let attributeChoice of attributeChoices"
3374
3388
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -3394,7 +3408,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3394
3408
  [checked]="attributeChoice.value"
3395
3409
  (change)="valueMultiChoiceChange(attributeChoice)"
3396
3410
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3397
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
3411
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
3398
3412
  <div class="cod-label ps-1">
3399
3413
  {{ attributeChoice.choice }}
3400
3414
  </div>
@@ -3419,7 +3433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3419
3433
  [checked]="entry.checked"
3420
3434
  (change)="valueMultiDictChange(entry)"
3421
3435
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3422
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3436
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3423
3437
  <div class="cod-label ps-1">
3424
3438
  {{ entry.display }}
3425
3439
  </div>
@@ -3441,7 +3455,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3441
3455
  [ngModel]="attributeValues[0].valueIdDictionary"
3442
3456
  (ngModelChange)="valueDictChange($event)"
3443
3457
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3444
- class="form-control edit-renderer">
3458
+ class="form-select edit-renderer custom-caret">
3445
3459
  <option [ngValue]="undefined"></option>
3446
3460
  <option *ngFor="let entry of dictionaryEntries"
3447
3461
  [ngValue]="entry.value">
@@ -3463,7 +3477,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3463
3477
 
3464
3478
  <button
3465
3479
  class="btn-ga"
3466
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3480
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3467
3481
  (click)="addGridRow(editGridModal, attribute.idAttribute)"
3468
3482
  >
3469
3483
  <span class="ga-icon">
@@ -3473,7 +3487,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3473
3487
 
3474
3488
  <button
3475
3489
  class="btn-ga"
3476
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3490
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3477
3491
  (click)="removeGridRow(attribute.idAttribute)"
3478
3492
  >
3479
3493
  <span class="ga-icon">
@@ -3528,7 +3542,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3528
3542
  </button>
3529
3543
  </div>
3530
3544
  </ng-template>
3531
- `, 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}.calendar-container{float:left;display:flex;align-items:center;justify-content:center;height:1rem}\n"] }]
3545
+ `, 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}.calendar-container{float:left;display:flex;align-items:center;justify-content:center;height:1rem}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}.cod-type-s .custom-input-text,.cod-type-n .custom-input-text,.cod-type-i .custom-input-text,.cod-type-txt .custom-input-text,.cod-type-d .custom-input-text,.cod-type-dt .custom-input-text{color:var(--bluewarm-darkest)}\n"] }]
3532
3546
  }], ctorParameters: () => [{ type: AttributeService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2$1.NgbModal }, { type: i0.ChangeDetectorRef }], propDecorators: { nativeSelectComponent: [{
3533
3547
  type: ViewChild,
3534
3548
  args: ['nativeSelectRef', { static: true }]
@@ -3611,7 +3625,7 @@ class AttributeFlexComponent extends AttributeBase {
3611
3625
  [(ngModel)]="attributeValues[0].valueString"
3612
3626
  (ngModelChange)="valueStringChange($event)"
3613
3627
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3614
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3628
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3615
3629
  </div>
3616
3630
  </div>
3617
3631
  </ng-container>
@@ -3633,7 +3647,7 @@ class AttributeFlexComponent extends AttributeBase {
3633
3647
  [ngModel]="attributeValues[0].valueLongText.textData"
3634
3648
  (change)="valueTextChange($event)"
3635
3649
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3636
- class="form-control">
3650
+ class="form-control custom-input-text">
3637
3651
  </textarea>
3638
3652
  </div>
3639
3653
  </div>
@@ -3652,7 +3666,7 @@ class AttributeFlexComponent extends AttributeBase {
3652
3666
  [checked]="attributeValues[0].valueString === 'Y'"
3653
3667
  (change)="valueCheckboxChange($event)"
3654
3668
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3655
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3669
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3656
3670
  </div>
3657
3671
  </div>
3658
3672
  </ng-container>
@@ -3670,7 +3684,7 @@ class AttributeFlexComponent extends AttributeBase {
3670
3684
  [(ngModel)]="attributeValues[0].valueNumeric"
3671
3685
  (ngModelChange)="valueNumericChange($event)"
3672
3686
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3673
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3687
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3674
3688
  </div>
3675
3689
  </div>
3676
3690
  </ng-container>
@@ -3688,7 +3702,7 @@ class AttributeFlexComponent extends AttributeBase {
3688
3702
  [(ngModel)]="attributeValues[0].valueInteger"
3689
3703
  (ngModelChange)="valueIntegerChange($event)"
3690
3704
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3691
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3705
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3692
3706
  </div>
3693
3707
  </div>
3694
3708
  </ng-container>
@@ -3703,14 +3717,14 @@ class AttributeFlexComponent extends AttributeBase {
3703
3717
  <div class="d-flex flex-grow-1">
3704
3718
  <input #inputRef
3705
3719
  matInput
3706
- name="valueDate"
3707
- [(ngModel)]="attributeValues[0].valueDate"
3720
+ name="valueDate"
3721
+ [(ngModel)]="attributeValues[0].valueDate"
3708
3722
  (ngModelChange)="valueDateChange($event)"
3709
3723
  [matDatepicker]="valueDate"
3710
3724
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3711
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3725
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3712
3726
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
3713
- <mat-datepicker #valueDate></mat-datepicker>
3727
+ <mat-datepicker #valueDate></mat-datepicker>
3714
3728
  </div>
3715
3729
  </div>
3716
3730
  </ng-container>
@@ -3726,7 +3740,7 @@ class AttributeFlexComponent extends AttributeBase {
3726
3740
  <input #inputRef
3727
3741
  matInput
3728
3742
  name="valueDateTime"
3729
- class="form-control"
3743
+ class="form-control custom-input-text"
3730
3744
  [(ngModel)]="attributeValues[0].date"
3731
3745
  (ngModelChange)="valueDateChange($event)"
3732
3746
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
@@ -3749,7 +3763,7 @@ class AttributeFlexComponent extends AttributeBase {
3749
3763
  [ngModel]="attributeValues[0].valueString"
3750
3764
  (ngModelChange)="valueStringChange($event)"
3751
3765
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3752
- class="form-control edit-renderer">
3766
+ class="form-select edit-renderer custom-caret">
3753
3767
  <option [ngValue]="undefined"></option>
3754
3768
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
3755
3769
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -3770,7 +3784,7 @@ class AttributeFlexComponent extends AttributeBase {
3770
3784
  [ngModel]="attributeValues[0].valueString"
3771
3785
  (ngModelChange)="valueStringChange($event)"
3772
3786
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3773
- class="form-control edit-renderer">
3787
+ class="form-select edit-renderer custom-caret">
3774
3788
  <option [ngValue]="undefined"></option>
3775
3789
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
3776
3790
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -3792,7 +3806,7 @@ class AttributeFlexComponent extends AttributeBase {
3792
3806
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
3793
3807
  (ngModelChange)="valueChoiceChange($event)"
3794
3808
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3795
- class="form-control edit-renderer">
3809
+ class="form-select edit-renderer custom-caret">
3796
3810
  <option [ngValue]="undefined"></option>
3797
3811
  <option *ngFor="let attributeChoice of attributeChoices"
3798
3812
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -3817,7 +3831,7 @@ class AttributeFlexComponent extends AttributeBase {
3817
3831
  [checked]="attributeChoice.value"
3818
3832
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3819
3833
  (change)="valueMultiChoiceChange(attributeChoice)"
3820
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
3834
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
3821
3835
  <div class="cod-label ps-1">
3822
3836
  {{attributeChoice.choice}}
3823
3837
  </div>
@@ -3826,7 +3840,7 @@ class AttributeFlexComponent extends AttributeBase {
3826
3840
  </div>
3827
3841
  </div>
3828
3842
  </ng-container>
3829
-
3843
+
3830
3844
  <!-- Dictionary: Multi -->
3831
3845
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'Y'">
3832
3846
  <div #attributeRef
@@ -3841,7 +3855,7 @@ class AttributeFlexComponent extends AttributeBase {
3841
3855
  [checked]="entry.checked"
3842
3856
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3843
3857
  (change)="valueMultiDictChange(entry)"
3844
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
3858
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
3845
3859
  <div class="cod-label ps-1">
3846
3860
  {{entry.display}}
3847
3861
  </div>
@@ -3849,7 +3863,7 @@ class AttributeFlexComponent extends AttributeBase {
3849
3863
  </ng-container>
3850
3864
  </div>
3851
3865
  </div>
3852
- </ng-container>
3866
+ </ng-container>
3853
3867
 
3854
3868
  <!-- Dictionary -->
3855
3869
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'N'">
@@ -3863,7 +3877,7 @@ class AttributeFlexComponent extends AttributeBase {
3863
3877
  [ngModel]="attributeValues[0].valueIdDictionary"
3864
3878
  (ngModelChange)="valueDictChange($event)"
3865
3879
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3866
- class="form-control edit-renderer">
3880
+ class="form-select edit-renderer custom-caret">
3867
3881
  <option [ngValue]="undefined"></option>
3868
3882
  <option *ngFor="let entry of dictionaryEntries"
3869
3883
  [ngValue]="entry.value">
@@ -3884,7 +3898,7 @@ class AttributeFlexComponent extends AttributeBase {
3884
3898
  <div *ngIf="editInline" style="margin-left: auto;">
3885
3899
  <button
3886
3900
  class="btn-ga"
3887
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3901
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3888
3902
  (click)="addGridRow(editGridModal, attribute.idAttribute)"
3889
3903
  >
3890
3904
  <span class="ga-icon">
@@ -3893,7 +3907,7 @@ class AttributeFlexComponent extends AttributeBase {
3893
3907
  </button>
3894
3908
  <button
3895
3909
  class="btn-ga"
3896
- [disabled]="(!this.attributeService.editButtonsEnabled)"
3910
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
3897
3911
  (click)="removeGridRow(attribute.idAttribute)"
3898
3912
  >
3899
3913
  <span class="ga-icon">
@@ -3902,7 +3916,7 @@ class AttributeFlexComponent extends AttributeBase {
3902
3916
  </button>
3903
3917
  </div>
3904
3918
  </div>
3905
- <div class="d-flex flex-grow-1">
3919
+ <div class="d-flex flex-grow-1">
3906
3920
  <ag-grid-angular #gridAttribute
3907
3921
  class="ag-theme-alpine"
3908
3922
  (gridReady)="this.onGridReady($event)"
@@ -3919,7 +3933,7 @@ class AttributeFlexComponent extends AttributeBase {
3919
3933
  </div>
3920
3934
  </div>
3921
3935
  </ng-container>
3922
-
3936
+
3923
3937
  <ng-template #editGridModal let-close="close">
3924
3938
  <div class="modal-header">
3925
3939
  {{attribute.displayName}} Grid Row
@@ -3949,7 +3963,7 @@ class AttributeFlexComponent extends AttributeBase {
3949
3963
  </button>
3950
3964
  </div>
3951
3965
  </ng-template>
3952
- `, 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 }); }
3966
+ `, 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}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}.cod-type-s .custom-input-text,.cod-type-txt .custom-input-text,.cod-type-n .custom-input-text,.cod-type-i .custom-input-text,.cod-type-d .custom-input-text,.cod-type-dt .custom-input-text{color:var(--bluewarm-darkest)}\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 }); }
3953
3967
  }
3954
3968
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AttributeFlexComponent, decorators: [{
3955
3969
  type: Component,
@@ -3989,7 +4003,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3989
4003
  [(ngModel)]="attributeValues[0].valueString"
3990
4004
  (ngModelChange)="valueStringChange($event)"
3991
4005
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3992
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4006
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3993
4007
  </div>
3994
4008
  </div>
3995
4009
  </ng-container>
@@ -4011,7 +4025,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4011
4025
  [ngModel]="attributeValues[0].valueLongText.textData"
4012
4026
  (change)="valueTextChange($event)"
4013
4027
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4014
- class="form-control">
4028
+ class="form-control custom-input-text">
4015
4029
  </textarea>
4016
4030
  </div>
4017
4031
  </div>
@@ -4030,7 +4044,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4030
4044
  [checked]="attributeValues[0].valueString === 'Y'"
4031
4045
  (change)="valueCheckboxChange($event)"
4032
4046
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4033
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4047
+ class="form-check-input m-0" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4034
4048
  </div>
4035
4049
  </div>
4036
4050
  </ng-container>
@@ -4048,7 +4062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4048
4062
  [(ngModel)]="attributeValues[0].valueNumeric"
4049
4063
  (ngModelChange)="valueNumericChange($event)"
4050
4064
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4051
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4065
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4052
4066
  </div>
4053
4067
  </div>
4054
4068
  </ng-container>
@@ -4066,7 +4080,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4066
4080
  [(ngModel)]="attributeValues[0].valueInteger"
4067
4081
  (ngModelChange)="valueIntegerChange($event)"
4068
4082
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4069
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4083
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4070
4084
  </div>
4071
4085
  </div>
4072
4086
  </ng-container>
@@ -4081,14 +4095,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4081
4095
  <div class="d-flex flex-grow-1">
4082
4096
  <input #inputRef
4083
4097
  matInput
4084
- name="valueDate"
4085
- [(ngModel)]="attributeValues[0].valueDate"
4098
+ name="valueDate"
4099
+ [(ngModel)]="attributeValues[0].valueDate"
4086
4100
  (ngModelChange)="valueDateChange($event)"
4087
4101
  [matDatepicker]="valueDate"
4088
4102
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4089
- class="form-control" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
4103
+ class="form-control custom-input-text" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
4090
4104
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
4091
- <mat-datepicker #valueDate></mat-datepicker>
4105
+ <mat-datepicker #valueDate></mat-datepicker>
4092
4106
  </div>
4093
4107
  </div>
4094
4108
  </ng-container>
@@ -4104,7 +4118,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4104
4118
  <input #inputRef
4105
4119
  matInput
4106
4120
  name="valueDateTime"
4107
- class="form-control"
4121
+ class="form-control custom-input-text"
4108
4122
  [(ngModel)]="attributeValues[0].date"
4109
4123
  (ngModelChange)="valueDateChange($event)"
4110
4124
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
@@ -4127,7 +4141,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4127
4141
  [ngModel]="attributeValues[0].valueString"
4128
4142
  (ngModelChange)="valueStringChange($event)"
4129
4143
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4130
- class="form-control edit-renderer">
4144
+ class="form-select edit-renderer custom-caret">
4131
4145
  <option [ngValue]="undefined"></option>
4132
4146
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
4133
4147
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -4148,7 +4162,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4148
4162
  [ngModel]="attributeValues[0].valueString"
4149
4163
  (ngModelChange)="valueStringChange($event)"
4150
4164
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4151
- class="form-control edit-renderer">
4165
+ class="form-select edit-renderer custom-caret">
4152
4166
  <option [ngValue]="undefined"></option>
4153
4167
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
4154
4168
  <option [ngValue]="'N'" [selected]="attributeValues[0].valueString === 'N'">No</option>
@@ -4170,7 +4184,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4170
4184
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
4171
4185
  (ngModelChange)="valueChoiceChange($event)"
4172
4186
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4173
- class="form-control edit-renderer">
4187
+ class="form-select edit-renderer custom-caret">
4174
4188
  <option [ngValue]="undefined"></option>
4175
4189
  <option *ngFor="let attributeChoice of attributeChoices"
4176
4190
  [ngValue]="attributeChoice.idAttributeChoice">
@@ -4195,7 +4209,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4195
4209
  [checked]="attributeChoice.value"
4196
4210
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4197
4211
  (change)="valueMultiChoiceChange(attributeChoice)"
4198
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
4212
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
4199
4213
  <div class="cod-label ps-1">
4200
4214
  {{attributeChoice.choice}}
4201
4215
  </div>
@@ -4204,7 +4218,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4204
4218
  </div>
4205
4219
  </div>
4206
4220
  </ng-container>
4207
-
4221
+
4208
4222
  <!-- Dictionary: Multi -->
4209
4223
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'Y'">
4210
4224
  <div #attributeRef
@@ -4219,7 +4233,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4219
4233
  [checked]="entry.checked"
4220
4234
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4221
4235
  (change)="valueMultiDictChange(entry)"
4222
- class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
4236
+ class="form-check-input m-0 checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
4223
4237
  <div class="cod-label ps-1">
4224
4238
  {{entry.display}}
4225
4239
  </div>
@@ -4227,7 +4241,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4227
4241
  </ng-container>
4228
4242
  </div>
4229
4243
  </div>
4230
- </ng-container>
4244
+ </ng-container>
4231
4245
 
4232
4246
  <!-- Dictionary -->
4233
4247
  <ng-container *ngIf="attribute.codeAttributeDataType === 'DICT' && attribute.isMultiValue === 'N'">
@@ -4241,7 +4255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4241
4255
  [ngModel]="attributeValues[0].valueIdDictionary"
4242
4256
  (ngModelChange)="valueDictChange($event)"
4243
4257
  [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4244
- class="form-control edit-renderer">
4258
+ class="form-select edit-renderer custom-caret">
4245
4259
  <option [ngValue]="undefined"></option>
4246
4260
  <option *ngFor="let entry of dictionaryEntries"
4247
4261
  [ngValue]="entry.value">
@@ -4262,7 +4276,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4262
4276
  <div *ngIf="editInline" style="margin-left: auto;">
4263
4277
  <button
4264
4278
  class="btn-ga"
4265
- [disabled]="(!this.attributeService.editButtonsEnabled)"
4279
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
4266
4280
  (click)="addGridRow(editGridModal, attribute.idAttribute)"
4267
4281
  >
4268
4282
  <span class="ga-icon">
@@ -4271,7 +4285,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4271
4285
  </button>
4272
4286
  <button
4273
4287
  class="btn-ga"
4274
- [disabled]="(!this.attributeService.editButtonsEnabled)"
4288
+ [disabled]="(!this.attributeService.editButtonsEnabled) || attribute.isActive === 'N'"
4275
4289
  (click)="removeGridRow(attribute.idAttribute)"
4276
4290
  >
4277
4291
  <span class="ga-icon">
@@ -4280,7 +4294,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4280
4294
  </button>
4281
4295
  </div>
4282
4296
  </div>
4283
- <div class="d-flex flex-grow-1">
4297
+ <div class="d-flex flex-grow-1">
4284
4298
  <ag-grid-angular #gridAttribute
4285
4299
  class="ag-theme-alpine"
4286
4300
  (gridReady)="this.onGridReady($event)"
@@ -4297,7 +4311,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4297
4311
  </div>
4298
4312
  </div>
4299
4313
  </ng-container>
4300
-
4314
+
4301
4315
  <ng-template #editGridModal let-close="close">
4302
4316
  <div class="modal-header">
4303
4317
  {{attribute.displayName}} Grid Row
@@ -4327,7 +4341,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4327
4341
  </button>
4328
4342
  </div>
4329
4343
  </ng-template>
4330
- `, 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"] }]
4344
+ `, 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}.form-select.custom-caret{background-size:.46rem;background-position:right .3rem center;color:var(--bluewarm-darkest)}.cod-type-s .custom-input-text,.cod-type-txt .custom-input-text,.cod-type-n .custom-input-text,.cod-type-i .custom-input-text,.cod-type-d .custom-input-text,.cod-type-dt .custom-input-text{color:var(--bluewarm-darkest)}\n"] }]
4331
4345
  }], ctorParameters: () => [{ type: AttributeService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2$1.NgbModal }] });
4332
4346
 
4333
4347
  /**