@huntsman-cancer-institute/cod 17.9.6 → 17.10.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.
@@ -1966,7 +1966,8 @@ class AttributeEditComponent extends AttributeBase {
1966
1966
  type="text"
1967
1967
  [ngModel]="attributeValues[0].valueString"
1968
1968
  (ngModelChange)="valueStringChange($event)"
1969
- [disabled]="!editInline || attribute.isCalculated === 'Y'" attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
1969
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
1970
+ attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
1970
1971
  />
1971
1972
  </div>
1972
1973
 
@@ -1978,7 +1979,7 @@ class AttributeEditComponent extends AttributeBase {
1978
1979
  lang="en"
1979
1980
  [ngModel]="attributeValues[0].valueString"
1980
1981
  (ngModelChange)="valueStringChange($event)"
1981
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
1982
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
1982
1983
  style="width: 500px; height: 125px; resize: none;"
1983
1984
  >
1984
1985
  </textarea>
@@ -2003,7 +2004,7 @@ class AttributeEditComponent extends AttributeBase {
2003
2004
  lang="en"
2004
2005
  [ngModel]="attributeValues[0].valueLongText.textData"
2005
2006
  (ngModelChange)="valueTextChange($event)"
2006
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2007
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2007
2008
  style="width: 500px; height: 125px; resize: none;"
2008
2009
  >
2009
2010
  </textarea>
@@ -2023,7 +2024,9 @@ class AttributeEditComponent extends AttributeBase {
2023
2024
  <input #inputRef
2024
2025
  type="number"
2025
2026
  [ngModel]="attributeValues[0].valueNumeric"
2026
- (ngModelChange)="valueNumericChange($event)" attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2027
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2028
+ (ngModelChange)="valueNumericChange($event)"
2029
+ attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2027
2030
  </div>
2028
2031
  </div>
2029
2032
  </ng-container>
@@ -2039,7 +2042,9 @@ class AttributeEditComponent extends AttributeBase {
2039
2042
  <input #inputRef
2040
2043
  type="number"
2041
2044
  [ngModel]="attributeValues[0].valueInteger"
2042
- (ngModelChange)="valueIntegerChange($event)" attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2045
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2046
+ (ngModelChange)="valueIntegerChange($event)"
2047
+ attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2043
2048
  </div>
2044
2049
  </div>
2045
2050
  </ng-container>
@@ -2058,7 +2063,8 @@ class AttributeEditComponent extends AttributeBase {
2058
2063
  [(ngModel)]="attributeValues[0].valueDate"
2059
2064
  (ngModelChange)="valueDateChange($event)"
2060
2065
  [matDatepicker]="valueDate"
2061
- [disabled]="!editInline || attribute.isCalculated === 'Y'" attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2066
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2067
+ attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2062
2068
  >
2063
2069
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
2064
2070
  <mat-datepicker #valueDate></mat-datepicker>
@@ -2079,7 +2085,7 @@ class AttributeEditComponent extends AttributeBase {
2079
2085
  name="valueDateTime"
2080
2086
  [(ngModel)]="attributeValues[0].date"
2081
2087
  (ngModelChange)="valueDateChange($event)"
2082
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2088
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2083
2089
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-edit-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
2084
2090
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
2085
2091
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -2099,7 +2105,7 @@ class AttributeEditComponent extends AttributeBase {
2099
2105
  type="checkbox"
2100
2106
  [checked]="attributeValues[0].valueString === 'Y'"
2101
2107
  (change)="valueCheckboxChange($event)"
2102
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2108
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2103
2109
  class="form-control" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2104
2110
  </div>
2105
2111
  </div>
@@ -2114,6 +2120,7 @@ class AttributeEditComponent extends AttributeBase {
2114
2120
  </div>
2115
2121
  <div class="d-flex col-md-6">
2116
2122
  <select [ngModel]="attributeValues[0].valueString"
2123
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2117
2124
  (ngModelChange)="valueStringChange($event)"
2118
2125
  class="edit-renderer">
2119
2126
  <option [ngValue]="undefined"></option>
@@ -2133,6 +2140,7 @@ class AttributeEditComponent extends AttributeBase {
2133
2140
  </div>
2134
2141
  <div class="d-flex col-md-6">
2135
2142
  <select [ngModel]="attributeValues[0].valueString"
2143
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2136
2144
  (ngModelChange)="valueStringChange($event)"
2137
2145
  class="edit-renderer">
2138
2146
  <option [ngValue]="undefined"></option>
@@ -2154,6 +2162,7 @@ class AttributeEditComponent extends AttributeBase {
2154
2162
  <div class="d-flex col-md-6">
2155
2163
  <select
2156
2164
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2165
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2157
2166
  (ngModelChange)="valueChoiceChange($event)"
2158
2167
  class="edit-renderer">
2159
2168
  <option [ngValue]="undefined"></option>
@@ -2178,7 +2187,7 @@ class AttributeEditComponent extends AttributeBase {
2178
2187
  <div class="d-flex">
2179
2188
  <input type="checkbox"
2180
2189
  [checked]="attributeChoice.value"
2181
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2190
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2182
2191
  (change)="valueMultiChoiceChange(attributeChoice)"
2183
2192
  class="form-control checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2184
2193
  <div class="cod-label ps-1">
@@ -2202,9 +2211,8 @@ class AttributeEditComponent extends AttributeBase {
2202
2211
  <div class="d-flex">
2203
2212
  <input type="checkbox"
2204
2213
  [checked]="entry.checked"
2205
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2214
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2206
2215
  (change)="valueMultiDictChange(entry)"
2207
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2208
2216
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2209
2217
  <div class="cod-label ps-1">
2210
2218
  {{entry.display}}
@@ -2226,7 +2234,7 @@ class AttributeEditComponent extends AttributeBase {
2226
2234
  <select #inputRef
2227
2235
  [ngModel]="attributeValues[0].valueIdDictionary"
2228
2236
  (ngModelChange)="valueDictChange($event)"
2229
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2237
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2230
2238
  class="form-control edit-renderer">
2231
2239
  <option [ngValue]="undefined"></option>
2232
2240
  <option *ngFor="let entry of dictionaryEntries"
@@ -2312,7 +2320,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2312
2320
  type="text"
2313
2321
  [ngModel]="attributeValues[0].valueString"
2314
2322
  (ngModelChange)="valueStringChange($event)"
2315
- [disabled]="!editInline || attribute.isCalculated === 'Y'" attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
2323
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2324
+ attr.aria-label="hci-ng-attribute-edit-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"
2316
2325
  />
2317
2326
  </div>
2318
2327
 
@@ -2324,7 +2333,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2324
2333
  lang="en"
2325
2334
  [ngModel]="attributeValues[0].valueString"
2326
2335
  (ngModelChange)="valueStringChange($event)"
2327
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2336
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2328
2337
  style="width: 500px; height: 125px; resize: none;"
2329
2338
  >
2330
2339
  </textarea>
@@ -2349,7 +2358,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2349
2358
  lang="en"
2350
2359
  [ngModel]="attributeValues[0].valueLongText.textData"
2351
2360
  (ngModelChange)="valueTextChange($event)"
2352
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2361
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2353
2362
  style="width: 500px; height: 125px; resize: none;"
2354
2363
  >
2355
2364
  </textarea>
@@ -2369,7 +2378,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2369
2378
  <input #inputRef
2370
2379
  type="number"
2371
2380
  [ngModel]="attributeValues[0].valueNumeric"
2372
- (ngModelChange)="valueNumericChange($event)" attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2381
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2382
+ (ngModelChange)="valueNumericChange($event)"
2383
+ attr.aria-label="hci-ng-attribute-edit-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2373
2384
  </div>
2374
2385
  </div>
2375
2386
  </ng-container>
@@ -2385,7 +2396,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2385
2396
  <input #inputRef
2386
2397
  type="number"
2387
2398
  [ngModel]="attributeValues[0].valueInteger"
2388
- (ngModelChange)="valueIntegerChange($event)" attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2399
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2400
+ (ngModelChange)="valueIntegerChange($event)"
2401
+ attr.aria-label="hci-ng-attribute-edit-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2389
2402
  </div>
2390
2403
  </div>
2391
2404
  </ng-container>
@@ -2404,7 +2417,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2404
2417
  [(ngModel)]="attributeValues[0].valueDate"
2405
2418
  (ngModelChange)="valueDateChange($event)"
2406
2419
  [matDatepicker]="valueDate"
2407
- [disabled]="!editInline || attribute.isCalculated === 'Y'" attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2420
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2421
+ attr.aria-label="hci-ng-attribute-edit-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}"
2408
2422
  >
2409
2423
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
2410
2424
  <mat-datepicker #valueDate></mat-datepicker>
@@ -2425,7 +2439,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2425
2439
  name="valueDateTime"
2426
2440
  [(ngModel)]="attributeValues[0].date"
2427
2441
  (ngModelChange)="valueDateChange($event)"
2428
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2442
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2429
2443
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-edit-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
2430
2444
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
2431
2445
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -2445,7 +2459,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2445
2459
  type="checkbox"
2446
2460
  [checked]="attributeValues[0].valueString === 'Y'"
2447
2461
  (change)="valueCheckboxChange($event)"
2448
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2462
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2449
2463
  class="form-control" attr.aria-label="hci-ng-attribute-edit-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2450
2464
  </div>
2451
2465
  </div>
@@ -2460,6 +2474,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2460
2474
  </div>
2461
2475
  <div class="d-flex col-md-6">
2462
2476
  <select [ngModel]="attributeValues[0].valueString"
2477
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2463
2478
  (ngModelChange)="valueStringChange($event)"
2464
2479
  class="edit-renderer">
2465
2480
  <option [ngValue]="undefined"></option>
@@ -2479,6 +2494,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2479
2494
  </div>
2480
2495
  <div class="d-flex col-md-6">
2481
2496
  <select [ngModel]="attributeValues[0].valueString"
2497
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2482
2498
  (ngModelChange)="valueStringChange($event)"
2483
2499
  class="edit-renderer">
2484
2500
  <option [ngValue]="undefined"></option>
@@ -2500,6 +2516,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2500
2516
  <div class="d-flex col-md-6">
2501
2517
  <select
2502
2518
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2519
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2503
2520
  (ngModelChange)="valueChoiceChange($event)"
2504
2521
  class="edit-renderer">
2505
2522
  <option [ngValue]="undefined"></option>
@@ -2524,7 +2541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2524
2541
  <div class="d-flex">
2525
2542
  <input type="checkbox"
2526
2543
  [checked]="attributeChoice.value"
2527
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2544
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2528
2545
  (change)="valueMultiChoiceChange(attributeChoice)"
2529
2546
  class="form-control checkbox mt-auto mb-auto me-2" attr.aria-label="hci-ng-attribute-edit-input-choice-multiple-{{attributeChoice.choice}}"/>
2530
2547
  <div class="cod-label ps-1">
@@ -2548,9 +2565,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2548
2565
  <div class="d-flex">
2549
2566
  <input type="checkbox"
2550
2567
  [checked]="entry.checked"
2551
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2568
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2552
2569
  (change)="valueMultiDictChange(entry)"
2553
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2554
2570
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-edit-input-dictionary-choice-{{entry.display}}"/>
2555
2571
  <div class="cod-label ps-1">
2556
2572
  {{entry.display}}
@@ -2572,7 +2588,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2572
2588
  <select #inputRef
2573
2589
  [ngModel]="attributeValues[0].valueIdDictionary"
2574
2590
  (ngModelChange)="valueDictChange($event)"
2575
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2591
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2576
2592
  class="form-control edit-renderer">
2577
2593
  <option [ngValue]="undefined"></option>
2578
2594
  <option *ngFor="let entry of dictionaryEntries"
@@ -2766,7 +2782,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2766
2782
  type="text"
2767
2783
  [ngModel]="attributeValues[0].valueString"
2768
2784
  (ngModelChange)="valueStringChange($event)"
2769
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2785
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2770
2786
  class="form-control"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2771
2787
  </div>
2772
2788
  <div *ngIf="(attribute.h > 25)" class="d-flex flex-grow-1">
@@ -2777,7 +2793,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2777
2793
  lang="en"
2778
2794
  [ngModel]="attributeValues[0].valueString"
2779
2795
  (ngModelChange)="valueStringChange($event)"
2780
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2796
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2781
2797
  class="form-control">
2782
2798
  </textarea>
2783
2799
  </div>
@@ -2799,7 +2815,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2799
2815
  lang="en"
2800
2816
  [ngModel]="attributeValues[0].valueLongText.textData"
2801
2817
  (ngModelChange)="valueTextChange($event)"
2802
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2818
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2803
2819
  class="form-control">
2804
2820
  </textarea>
2805
2821
  </div>
@@ -2817,7 +2833,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2817
2833
  <input type="checkbox"
2818
2834
  [checked]="attributeValues[0].valueString === 'Y'"
2819
2835
  (change)="valueCheckboxChange($event)"
2820
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2836
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2821
2837
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2822
2838
  </div>
2823
2839
  </div>
@@ -2835,7 +2851,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2835
2851
  type="number"
2836
2852
  [ngModel]="attributeValues[0].valueNumeric"
2837
2853
  (ngModelChange)="valueNumericChange($event)"
2838
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2854
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2839
2855
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2840
2856
  </div>
2841
2857
  </div>
@@ -2853,7 +2869,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2853
2869
  type="number"
2854
2870
  [ngModel]="attributeValues[0].valueInteger"
2855
2871
  (ngModelChange)="valueIntegerChange($event)"
2856
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2872
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2857
2873
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
2858
2874
  </div>
2859
2875
  </div>
@@ -2873,7 +2889,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2873
2889
  [(ngModel)]="attributeValues[0].valueDate"
2874
2890
  (ngModelChange)="valueDateChange($event)"
2875
2891
  [matDatepicker]="valueDate"
2876
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2892
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2877
2893
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
2878
2894
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
2879
2895
  <mat-datepicker #valueDate></mat-datepicker>
@@ -2895,7 +2911,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2895
2911
  class="form-control"
2896
2912
  [(ngModel)]="attributeValues[0].date"
2897
2913
  (ngModelChange)="valueDateChange($event)"
2898
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2914
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2899
2915
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-absolute-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
2900
2916
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
2901
2917
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -2914,7 +2930,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2914
2930
  <select #inputRef
2915
2931
  [ngModel]="attributeValues[0].valueString"
2916
2932
  (ngModelChange)="valueStringChange($event)"
2917
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2933
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2918
2934
  class="form-control edit-renderer">
2919
2935
  <option [ngValue]="undefined"></option>
2920
2936
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -2935,7 +2951,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2935
2951
  <select #inputRef
2936
2952
  [ngModel]="attributeValues[0].valueString"
2937
2953
  (ngModelChange)="valueStringChange($event)"
2938
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2954
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2939
2955
  class="form-control edit-renderer">
2940
2956
  <option [ngValue]="undefined"></option>
2941
2957
  <option [ngValue]="'Y'">Yes</option>
@@ -2957,7 +2973,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2957
2973
  <select #inputRef
2958
2974
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
2959
2975
  (ngModelChange)="valueChoiceChange($event)"
2960
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
2976
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2961
2977
  class="form-control edit-renderer">
2962
2978
  <option [ngValue]="undefined"></option>
2963
2979
  <option *ngFor="let attributeChoice of attributeChoices"
@@ -2983,7 +2999,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
2983
2999
  <input type="checkbox"
2984
3000
  [checked]="attributeChoice.value"
2985
3001
  (change)="valueMultiChoiceChange(attributeChoice)"
2986
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3002
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
2987
3003
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
2988
3004
  <div class="cod-label ps-1">
2989
3005
  {{ attributeChoice.choice }}
@@ -3008,7 +3024,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3008
3024
  <input type="checkbox"
3009
3025
  [checked]="entry.checked"
3010
3026
  (change)="valueMultiDictChange(entry)"
3011
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3027
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3012
3028
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3013
3029
  <div class="cod-label ps-1">
3014
3030
  {{ entry.display }}
@@ -3030,7 +3046,7 @@ class AttributeAbsoluteComponent extends AttributeBase {
3030
3046
  <select #inputRef
3031
3047
  [ngModel]="attributeValues[0].valueIdDictionary"
3032
3048
  (ngModelChange)="valueDictChange($event)"
3033
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3049
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3034
3050
  class="form-control edit-renderer">
3035
3051
  <option [ngValue]="undefined"></option>
3036
3052
  <option *ngFor="let entry of dictionaryEntries"
@@ -3160,7 +3176,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3160
3176
  type="text"
3161
3177
  [ngModel]="attributeValues[0].valueString"
3162
3178
  (ngModelChange)="valueStringChange($event)"
3163
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3179
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3164
3180
  class="form-control"attr.aria-label="hci-ng-attribute-absolute-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3165
3181
  </div>
3166
3182
  <div *ngIf="(attribute.h > 25)" class="d-flex flex-grow-1">
@@ -3171,7 +3187,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3171
3187
  lang="en"
3172
3188
  [ngModel]="attributeValues[0].valueString"
3173
3189
  (ngModelChange)="valueStringChange($event)"
3174
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3190
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3175
3191
  class="form-control">
3176
3192
  </textarea>
3177
3193
  </div>
@@ -3193,7 +3209,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3193
3209
  lang="en"
3194
3210
  [ngModel]="attributeValues[0].valueLongText.textData"
3195
3211
  (ngModelChange)="valueTextChange($event)"
3196
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3212
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3197
3213
  class="form-control">
3198
3214
  </textarea>
3199
3215
  </div>
@@ -3211,7 +3227,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3211
3227
  <input type="checkbox"
3212
3228
  [checked]="attributeValues[0].valueString === 'Y'"
3213
3229
  (change)="valueCheckboxChange($event)"
3214
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3230
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3215
3231
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3216
3232
  </div>
3217
3233
  </div>
@@ -3229,7 +3245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3229
3245
  type="number"
3230
3246
  [ngModel]="attributeValues[0].valueNumeric"
3231
3247
  (ngModelChange)="valueNumericChange($event)"
3232
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3248
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3233
3249
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3234
3250
  </div>
3235
3251
  </div>
@@ -3247,7 +3263,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3247
3263
  type="number"
3248
3264
  [ngModel]="attributeValues[0].valueInteger"
3249
3265
  (ngModelChange)="valueIntegerChange($event)"
3250
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3266
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3251
3267
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3252
3268
  </div>
3253
3269
  </div>
@@ -3267,7 +3283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3267
3283
  [(ngModel)]="attributeValues[0].valueDate"
3268
3284
  (ngModelChange)="valueDateChange($event)"
3269
3285
  [matDatepicker]="valueDate"
3270
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3286
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3271
3287
  class="form-control" attr.aria-label="hci-ng-attribute-absolute-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3272
3288
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
3273
3289
  <mat-datepicker #valueDate></mat-datepicker>
@@ -3289,7 +3305,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3289
3305
  class="form-control"
3290
3306
  [(ngModel)]="attributeValues[0].date"
3291
3307
  (ngModelChange)="valueDateChange($event)"
3292
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3308
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3293
3309
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-absolute-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
3294
3310
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
3295
3311
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -3308,7 +3324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3308
3324
  <select #inputRef
3309
3325
  [ngModel]="attributeValues[0].valueString"
3310
3326
  (ngModelChange)="valueStringChange($event)"
3311
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3327
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3312
3328
  class="form-control edit-renderer">
3313
3329
  <option [ngValue]="undefined"></option>
3314
3330
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -3329,7 +3345,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3329
3345
  <select #inputRef
3330
3346
  [ngModel]="attributeValues[0].valueString"
3331
3347
  (ngModelChange)="valueStringChange($event)"
3332
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3348
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3333
3349
  class="form-control edit-renderer">
3334
3350
  <option [ngValue]="undefined"></option>
3335
3351
  <option [ngValue]="'Y'">Yes</option>
@@ -3351,7 +3367,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3351
3367
  <select #inputRef
3352
3368
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
3353
3369
  (ngModelChange)="valueChoiceChange($event)"
3354
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3370
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3355
3371
  class="form-control edit-renderer">
3356
3372
  <option [ngValue]="undefined"></option>
3357
3373
  <option *ngFor="let attributeChoice of attributeChoices"
@@ -3377,7 +3393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3377
3393
  <input type="checkbox"
3378
3394
  [checked]="attributeChoice.value"
3379
3395
  (change)="valueMultiChoiceChange(attributeChoice)"
3380
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3396
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3381
3397
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-choice-multiple-{{attributeChoice.choice}}"/>
3382
3398
  <div class="cod-label ps-1">
3383
3399
  {{ attributeChoice.choice }}
@@ -3402,7 +3418,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3402
3418
  <input type="checkbox"
3403
3419
  [checked]="entry.checked"
3404
3420
  (change)="valueMultiDictChange(entry)"
3405
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3421
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3406
3422
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-absolute-input-dictionary-multiple-{{entry.display}}"/>
3407
3423
  <div class="cod-label ps-1">
3408
3424
  {{ entry.display }}
@@ -3424,7 +3440,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3424
3440
  <select #inputRef
3425
3441
  [ngModel]="attributeValues[0].valueIdDictionary"
3426
3442
  (ngModelChange)="valueDictChange($event)"
3427
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3443
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3428
3444
  class="form-control edit-renderer">
3429
3445
  <option [ngValue]="undefined"></option>
3430
3446
  <option *ngFor="let entry of dictionaryEntries"
@@ -3594,7 +3610,7 @@ class AttributeFlexComponent extends AttributeBase {
3594
3610
  type="text"
3595
3611
  [(ngModel)]="attributeValues[0].valueString"
3596
3612
  (ngModelChange)="valueStringChange($event)"
3597
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3613
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3598
3614
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3599
3615
  </div>
3600
3616
  </div>
@@ -3616,7 +3632,7 @@ class AttributeFlexComponent extends AttributeBase {
3616
3632
  lang="en"
3617
3633
  [ngModel]="attributeValues[0].valueLongText.textData"
3618
3634
  (change)="valueTextChange($event)"
3619
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3635
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3620
3636
  class="form-control">
3621
3637
  </textarea>
3622
3638
  </div>
@@ -3635,7 +3651,7 @@ class AttributeFlexComponent extends AttributeBase {
3635
3651
  type="checkbox"
3636
3652
  [checked]="attributeValues[0].valueString === 'Y'"
3637
3653
  (change)="valueCheckboxChange($event)"
3638
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3654
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3639
3655
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3640
3656
  </div>
3641
3657
  </div>
@@ -3653,7 +3669,7 @@ class AttributeFlexComponent extends AttributeBase {
3653
3669
  type="number"
3654
3670
  [(ngModel)]="attributeValues[0].valueNumeric"
3655
3671
  (ngModelChange)="valueNumericChange($event)"
3656
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3672
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3657
3673
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3658
3674
  </div>
3659
3675
  </div>
@@ -3671,7 +3687,7 @@ class AttributeFlexComponent extends AttributeBase {
3671
3687
  type="number"
3672
3688
  [(ngModel)]="attributeValues[0].valueInteger"
3673
3689
  (ngModelChange)="valueIntegerChange($event)"
3674
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3690
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3675
3691
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3676
3692
  </div>
3677
3693
  </div>
@@ -3691,7 +3707,7 @@ class AttributeFlexComponent extends AttributeBase {
3691
3707
  [(ngModel)]="attributeValues[0].valueDate"
3692
3708
  (ngModelChange)="valueDateChange($event)"
3693
3709
  [matDatepicker]="valueDate"
3694
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3710
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3695
3711
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
3696
3712
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
3697
3713
  <mat-datepicker #valueDate></mat-datepicker>
@@ -3713,7 +3729,7 @@ class AttributeFlexComponent extends AttributeBase {
3713
3729
  class="form-control"
3714
3730
  [(ngModel)]="attributeValues[0].date"
3715
3731
  (ngModelChange)="valueDateChange($event)"
3716
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3732
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3717
3733
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-flex-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
3718
3734
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
3719
3735
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -3732,7 +3748,7 @@ class AttributeFlexComponent extends AttributeBase {
3732
3748
  <select #inputRef
3733
3749
  [ngModel]="attributeValues[0].valueString"
3734
3750
  (ngModelChange)="valueStringChange($event)"
3735
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3751
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3736
3752
  class="form-control edit-renderer">
3737
3753
  <option [ngValue]="undefined"></option>
3738
3754
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -3753,7 +3769,7 @@ class AttributeFlexComponent extends AttributeBase {
3753
3769
  <select #inputRef
3754
3770
  [ngModel]="attributeValues[0].valueString"
3755
3771
  (ngModelChange)="valueStringChange($event)"
3756
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3772
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3757
3773
  class="form-control edit-renderer">
3758
3774
  <option [ngValue]="undefined"></option>
3759
3775
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -3775,7 +3791,7 @@ class AttributeFlexComponent extends AttributeBase {
3775
3791
  <select
3776
3792
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
3777
3793
  (ngModelChange)="valueChoiceChange($event)"
3778
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3794
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3779
3795
  class="form-control edit-renderer">
3780
3796
  <option [ngValue]="undefined"></option>
3781
3797
  <option *ngFor="let attributeChoice of attributeChoices"
@@ -3799,9 +3815,8 @@ class AttributeFlexComponent extends AttributeBase {
3799
3815
  <div class="d-flex flex-shrink-0">
3800
3816
  <input type="checkbox"
3801
3817
  [checked]="attributeChoice.value"
3802
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3818
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3803
3819
  (change)="valueMultiChoiceChange(attributeChoice)"
3804
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3805
3820
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
3806
3821
  <div class="cod-label ps-1">
3807
3822
  {{attributeChoice.choice}}
@@ -3824,9 +3839,8 @@ class AttributeFlexComponent extends AttributeBase {
3824
3839
  <div class="d-flex flex-shrink-0">
3825
3840
  <input type="checkbox"
3826
3841
  [checked]="entry.checked"
3827
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3842
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3828
3843
  (change)="valueMultiDictChange(entry)"
3829
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3830
3844
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
3831
3845
  <div class="cod-label ps-1">
3832
3846
  {{entry.display}}
@@ -3848,7 +3862,7 @@ class AttributeFlexComponent extends AttributeBase {
3848
3862
  <select #inputRef
3849
3863
  [ngModel]="attributeValues[0].valueIdDictionary"
3850
3864
  (ngModelChange)="valueDictChange($event)"
3851
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3865
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3852
3866
  class="form-control edit-renderer">
3853
3867
  <option [ngValue]="undefined"></option>
3854
3868
  <option *ngFor="let entry of dictionaryEntries"
@@ -3974,7 +3988,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3974
3988
  type="text"
3975
3989
  [(ngModel)]="attributeValues[0].valueString"
3976
3990
  (ngModelChange)="valueStringChange($event)"
3977
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
3991
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
3978
3992
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-string-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
3979
3993
  </div>
3980
3994
  </div>
@@ -3996,7 +4010,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3996
4010
  lang="en"
3997
4011
  [ngModel]="attributeValues[0].valueLongText.textData"
3998
4012
  (change)="valueTextChange($event)"
3999
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4013
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4000
4014
  class="form-control">
4001
4015
  </textarea>
4002
4016
  </div>
@@ -4015,7 +4029,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4015
4029
  type="checkbox"
4016
4030
  [checked]="attributeValues[0].valueString === 'Y'"
4017
4031
  (change)="valueCheckboxChange($event)"
4018
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4032
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4019
4033
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-checkbox-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4020
4034
  </div>
4021
4035
  </div>
@@ -4033,7 +4047,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4033
4047
  type="number"
4034
4048
  [(ngModel)]="attributeValues[0].valueNumeric"
4035
4049
  (ngModelChange)="valueNumericChange($event)"
4036
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4050
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4037
4051
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-numeric-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4038
4052
  </div>
4039
4053
  </div>
@@ -4051,7 +4065,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4051
4065
  type="number"
4052
4066
  [(ngModel)]="attributeValues[0].valueInteger"
4053
4067
  (ngModelChange)="valueIntegerChange($event)"
4054
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4068
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4055
4069
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-integer-{{hciNgAttributeAbsoluteInputDisplayName}}"/>
4056
4070
  </div>
4057
4071
  </div>
@@ -4071,7 +4085,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4071
4085
  [(ngModel)]="attributeValues[0].valueDate"
4072
4086
  (ngModelChange)="valueDateChange($event)"
4073
4087
  [matDatepicker]="valueDate"
4074
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4088
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4075
4089
  class="form-control" attr.aria-label="hci-ng-attribute-flex-input-date-{{hciNgAttributeAbsoluteInputDisplayName}}">
4076
4090
  <mat-datepicker-toggle matSuffix [for]="valueDate" class="cod-dp-toggle"></mat-datepicker-toggle>
4077
4091
  <mat-datepicker #valueDate></mat-datepicker>
@@ -4093,7 +4107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4093
4107
  class="form-control"
4094
4108
  [(ngModel)]="attributeValues[0].date"
4095
4109
  (ngModelChange)="valueDateChange($event)"
4096
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4110
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4097
4111
  [ngxMatDatetimePicker]="dtpicker" attr.aria-label="hci-ng-attribute-flex-input-date-time-{{hciNgAttributeAbsoluteInputDisplayName}}">
4098
4112
  <mat-datepicker-toggle matSuffix [for]="dtpicker" class="cod-dp-toggle"></mat-datepicker-toggle>
4099
4113
  <ngx-mat-datetime-picker #dtpicker [showSeconds]="true"></ngx-mat-datetime-picker>
@@ -4112,7 +4126,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4112
4126
  <select #inputRef
4113
4127
  [ngModel]="attributeValues[0].valueString"
4114
4128
  (ngModelChange)="valueStringChange($event)"
4115
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4129
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4116
4130
  class="form-control edit-renderer">
4117
4131
  <option [ngValue]="undefined"></option>
4118
4132
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -4133,7 +4147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4133
4147
  <select #inputRef
4134
4148
  [ngModel]="attributeValues[0].valueString"
4135
4149
  (ngModelChange)="valueStringChange($event)"
4136
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4150
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4137
4151
  class="form-control edit-renderer">
4138
4152
  <option [ngValue]="undefined"></option>
4139
4153
  <option [ngValue]="'Y'" [selected]="attributeValues[0].valueString === 'Y'">Yes</option>
@@ -4155,7 +4169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4155
4169
  <select
4156
4170
  [ngModel]="(attributeValues[0].valueAttributeChoice)?attributeValues[0].valueAttributeChoice.idAttributeChoice:undefined"
4157
4171
  (ngModelChange)="valueChoiceChange($event)"
4158
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4172
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4159
4173
  class="form-control edit-renderer">
4160
4174
  <option [ngValue]="undefined"></option>
4161
4175
  <option *ngFor="let attributeChoice of attributeChoices"
@@ -4179,9 +4193,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4179
4193
  <div class="d-flex flex-shrink-0">
4180
4194
  <input type="checkbox"
4181
4195
  [checked]="attributeChoice.value"
4182
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4196
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4183
4197
  (change)="valueMultiChoiceChange(attributeChoice)"
4184
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4185
4198
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-choice-multiple-{{attributeChoice.choice}}"/>
4186
4199
  <div class="cod-label ps-1">
4187
4200
  {{attributeChoice.choice}}
@@ -4204,9 +4217,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4204
4217
  <div class="d-flex flex-shrink-0">
4205
4218
  <input type="checkbox"
4206
4219
  [checked]="entry.checked"
4207
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4220
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4208
4221
  (change)="valueMultiDictChange(entry)"
4209
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4210
4222
  class="form-control checkbox" attr.aria-label="hci-ng-attribute-flex-input-dictionary-choice-{{entry.display}}"/>
4211
4223
  <div class="cod-label ps-1">
4212
4224
  {{entry.display}}
@@ -4228,7 +4240,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4228
4240
  <select #inputRef
4229
4241
  [ngModel]="attributeValues[0].valueIdDictionary"
4230
4242
  (ngModelChange)="valueDictChange($event)"
4231
- [disabled]="!editInline || attribute.isCalculated === 'Y'"
4243
+ [disabled]="!editInline || attribute.isCalculated === 'Y' || attribute.isActive === 'N'"
4232
4244
  class="form-control edit-renderer">
4233
4245
  <option [ngValue]="undefined"></option>
4234
4246
  <option *ngFor="let entry of dictionaryEntries"