iss-ctrl 0.0.15 → 0.0.17

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.
Files changed (25) hide show
  1. package/fesm2022/{iss-ctrl-iss-ctrl-BpcynMId.mjs → iss-ctrl-iss-ctrl-BHW3shB0.mjs} +58 -36
  2. package/fesm2022/iss-ctrl-iss-ctrl-BHW3shB0.mjs.map +1 -0
  3. package/fesm2022/{iss-ctrl-load-event-r4xUfn0F.mjs → iss-ctrl-load-event-BBKfb4GM.mjs} +3 -3
  4. package/fesm2022/{iss-ctrl-load-event-r4xUfn0F.mjs.map → iss-ctrl-load-event-BBKfb4GM.mjs.map} +1 -1
  5. package/fesm2022/{iss-ctrl-load-options-event-BCHN0tAM.mjs → iss-ctrl-load-options-event-jsZAQloX.mjs} +3 -3
  6. package/fesm2022/{iss-ctrl-load-options-event-BCHN0tAM.mjs.map → iss-ctrl-load-options-event-jsZAQloX.mjs.map} +1 -1
  7. package/fesm2022/{iss-ctrl-load-value-event-CilsqNpU.mjs → iss-ctrl-load-value-event-ClkNTtds.mjs} +3 -3
  8. package/fesm2022/{iss-ctrl-load-value-event-CilsqNpU.mjs.map → iss-ctrl-load-value-event-ClkNTtds.mjs.map} +1 -1
  9. package/fesm2022/{iss-ctrl-note.field-C5zBFWV-.mjs → iss-ctrl-note.field-Co2Og2eO.mjs} +2 -2
  10. package/fesm2022/{iss-ctrl-note.field-C5zBFWV-.mjs.map → iss-ctrl-note.field-Co2Og2eO.mjs.map} +1 -1
  11. package/fesm2022/{iss-ctrl-replace-api-keys-uUZLoWuP.mjs → iss-ctrl-replace-api-keys-Bx7wo5zl.mjs} +2 -2
  12. package/fesm2022/{iss-ctrl-replace-api-keys-uUZLoWuP.mjs.map → iss-ctrl-replace-api-keys-Bx7wo5zl.mjs.map} +1 -1
  13. package/fesm2022/{iss-ctrl-set-value-event-DHF2LsSf.mjs → iss-ctrl-set-value-event-D38jsLlO.mjs} +2 -2
  14. package/fesm2022/{iss-ctrl-set-value-event-DHF2LsSf.mjs.map → iss-ctrl-set-value-event-D38jsLlO.mjs.map} +1 -1
  15. package/fesm2022/{iss-ctrl-table.field-CjCWmdqf.mjs → iss-ctrl-table.field-BcuL_fSr.mjs} +2 -2
  16. package/fesm2022/{iss-ctrl-table.field-CjCWmdqf.mjs.map → iss-ctrl-table.field-BcuL_fSr.mjs.map} +1 -1
  17. package/fesm2022/{iss-ctrl-trigger-based-on-json-value-BwxH6MLn.mjs → iss-ctrl-trigger-based-on-json-value-B6M5dYnm.mjs} +2 -2
  18. package/fesm2022/{iss-ctrl-trigger-based-on-json-value-BwxH6MLn.mjs.map → iss-ctrl-trigger-based-on-json-value-B6M5dYnm.mjs.map} +1 -1
  19. package/fesm2022/{iss-ctrl-user-picker.field-Bc_yX1v9.mjs → iss-ctrl-user-picker.field-BCd6g9jz.mjs} +2 -2
  20. package/fesm2022/{iss-ctrl-user-picker.field-Bc_yX1v9.mjs.map → iss-ctrl-user-picker.field-BCd6g9jz.mjs.map} +1 -1
  21. package/fesm2022/iss-ctrl.mjs +1 -1
  22. package/package.json +1 -1
  23. package/types/iss-ctrl.d.ts +11 -0
  24. package/upgrade.scss +108 -75
  25. package/fesm2022/iss-ctrl-iss-ctrl-BpcynMId.mjs.map +0 -1
@@ -167,6 +167,21 @@ class ControlBase {
167
167
  this.touched.set(true);
168
168
  this.onTouch();
169
169
  }
170
+ /**
171
+ * Whether the control currently holds no value.
172
+ *
173
+ * Reflected on the host as `iss-ctrl-empty`, which is what `upgrade.scss` uses to keep the
174
+ * resting outline of an empty field: Material's own `mat-form-field-hide-placeholder` drops
175
+ * off the moment the field is focused, so the border would change colour on focus alone.
176
+ * Override it in a control whose value does not live on {@link ControlBase.ctrl}.
177
+ */
178
+ isEmpty() {
179
+ const value = this.ctrl.getRawValue();
180
+ if (Array.isArray(value)) {
181
+ return value.length === 0;
182
+ }
183
+ return value === null || value === undefined || value === "";
184
+ }
170
185
  validate(control) {
171
186
  return this.ctrl.errors;
172
187
  }
@@ -195,11 +210,14 @@ class ControlBase {
195
210
  this.onChange.emit(emissionValue);
196
211
  }
197
212
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ControlBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
198
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: ControlBase, isStandalone: true, selector: "ng-component", inputs: { formControlName: { classPropertyName: "formControlName", publicName: "formControlName", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, hints: { classPropertyName: "hints", publicName: "hints", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onChange: "onChange" }, ngImport: i0, template: ``, isInline: true });
213
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: ControlBase, isStandalone: true, selector: "ng-component", inputs: { formControlName: { classPropertyName: "formControlName", publicName: "formControlName", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, minLength: { classPropertyName: "minLength", publicName: "minLength", isSignal: true, isRequired: false, transformFunction: null }, maxLength: { classPropertyName: "maxLength", publicName: "maxLength", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, hints: { classPropertyName: "hints", publicName: "hints", isSignal: true, isRequired: false, transformFunction: null }, className: { classPropertyName: "className", publicName: "className", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onChange: "onChange" }, host: { properties: { "class.iss-ctrl-empty": "isEmpty()" } }, ngImport: i0, template: ``, isInline: true });
199
214
  }
200
215
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ControlBase, decorators: [{
201
216
  type: Component,
202
- args: [{ template: `` }]
217
+ args: [{
218
+ template: ``,
219
+ host: { "[class.iss-ctrl-empty]": "isEmpty()" }
220
+ }]
203
221
  }], propDecorators: { formControlName: [{ type: i0.Input, args: [{ isSignal: true, alias: "formControlName", required: false }] }], min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], minLength: [{ type: i0.Input, args: [{ isSignal: true, alias: "minLength", required: false }] }], maxLength: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxLength", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], hints: [{ type: i0.Input, args: [{ isSignal: true, alias: "hints", required: false }] }], className: [{ type: i0.Input, args: [{ isSignal: true, alias: "className", required: false }] }], onChange: [{ type: i0.Output, args: ["onChange"] }] } });
204
222
 
205
223
  /**
@@ -363,6 +381,10 @@ class ChipsControl extends ControlBase {
363
381
  this.keywords.set([]);
364
382
  }
365
383
  }
384
+ // the chips are the value here; `ctrl` stays untouched
385
+ isEmpty() {
386
+ return this.keywords().length === 0;
387
+ }
366
388
  remove(keyword) {
367
389
  if (this.disabled() || this.readonly()) {
368
390
  return;
@@ -402,7 +424,7 @@ class ChipsControl extends ControlBase {
402
424
  ], usesInheritance: true, ngImport: i0, template: `
403
425
  <mat-form-field floatLabel="auto" class="">
404
426
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
405
- <mat-label class="fs-16 fc-black">
427
+ <mat-label class="fs-16 fc-dark-gray">
406
428
  <ng-content select="label"></ng-content>
407
429
  </mat-label>
408
430
  <input
@@ -447,7 +469,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
447
469
  template: `
448
470
  <mat-form-field floatLabel="auto" class="">
449
471
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
450
- <mat-label class="fs-16 fc-black">
472
+ <mat-label class="fs-16 fc-dark-gray">
451
473
  <ng-content select="label"></ng-content>
452
474
  </mat-label>
453
475
  <input
@@ -937,7 +959,7 @@ class DatePickerControl extends ControlBase {
937
959
  ], usesInheritance: true, ngImport: i0, template: `
938
960
  <mat-form-field floatLabel="auto" class="">
939
961
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
940
- <mat-label class="fs-16 fc-black">
962
+ <mat-label class="fs-16 fc-dark-gray">
941
963
  <ng-content select="label"></ng-content>
942
964
  </mat-label>
943
965
  <input
@@ -972,7 +994,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
972
994
  ], template: `
973
995
  <mat-form-field floatLabel="auto" class="">
974
996
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
975
- <mat-label class="fs-16 fc-black">
997
+ <mat-label class="fs-16 fc-dark-gray">
976
998
  <ng-content select="label"></ng-content>
977
999
  </mat-label>
978
1000
  <input
@@ -1092,6 +1114,11 @@ class DateRangePickerControl extends ControlBase {
1092
1114
  this.onDateRangeObjectChange.emit(this.#getEmissionObject(values.start, values.end));
1093
1115
  }));
1094
1116
  }
1117
+ // the endpoints live on `range`; `ctrl` only holds the emitted value of a complete range
1118
+ isEmpty() {
1119
+ const { start, end } = this.range.getRawValue();
1120
+ return !start && !end;
1121
+ }
1095
1122
  setDisabledState(isDisabled) {
1096
1123
  super.setDisabledState(isDisabled);
1097
1124
  // the template binds `range`, disabling ctrl alone leaves the inputs live
@@ -1185,7 +1212,7 @@ class DateRangePickerControl extends ControlBase {
1185
1212
  <mat-form-field floatLabel="auto" class="">
1186
1213
 
1187
1214
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
1188
- <mat-label class="fs-16 fc-black">
1215
+ <mat-label class="fs-16 fc-dark-gray">
1189
1216
  <ng-content select="label"></ng-content>
1190
1217
  </mat-label>
1191
1218
  <mat-date-range-input
@@ -1237,7 +1264,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
1237
1264
  <mat-form-field floatLabel="auto" class="">
1238
1265
 
1239
1266
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
1240
- <mat-label class="fs-16 fc-black">
1267
+ <mat-label class="fs-16 fc-dark-gray">
1241
1268
  <ng-content select="label"></ng-content>
1242
1269
  </mat-label>
1243
1270
  <mat-date-range-input
@@ -1357,7 +1384,7 @@ class TimePickerControl extends ControlBase {
1357
1384
  ], usesInheritance: true, ngImport: i0, template: `
1358
1385
  <mat-form-field floatLabel="auto" class="">
1359
1386
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
1360
- <mat-label class="fs-16 fc-black">
1387
+ <mat-label class="fs-16 fc-dark-gray">
1361
1388
  <ng-content select="label"></ng-content>
1362
1389
  </mat-label>
1363
1390
  <input
@@ -1394,7 +1421,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
1394
1421
  template: `
1395
1422
  <mat-form-field floatLabel="auto" class="">
1396
1423
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
1397
- <mat-label class="fs-16 fc-black">
1424
+ <mat-label class="fs-16 fc-dark-gray">
1398
1425
  <ng-content select="label"></ng-content>
1399
1426
  </mat-label>
1400
1427
  <input
@@ -2028,7 +2055,7 @@ class InputControl extends ControlBase {
2028
2055
  ], usesInheritance: true, ngImport: i0, template: `
2029
2056
  <mat-form-field floatLabel="auto" class="">
2030
2057
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
2031
- <mat-label class="fs-16 fc-black">
2058
+ <mat-label class="fs-16 fc-dark-gray">
2032
2059
  <ng-content select="label"></ng-content>
2033
2060
  </mat-label>
2034
2061
  <ng-content select="[issPrefix]"></ng-content>
@@ -2086,7 +2113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
2086
2113
  template: `
2087
2114
  <mat-form-field floatLabel="auto" class="">
2088
2115
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
2089
- <mat-label class="fs-16 fc-black">
2116
+ <mat-label class="fs-16 fc-dark-gray">
2090
2117
  <ng-content select="label"></ng-content>
2091
2118
  </mat-label>
2092
2119
  <ng-content select="[issPrefix]"></ng-content>
@@ -4422,7 +4449,7 @@ class MobileControl extends ControlBase {
4422
4449
  ], usesInheritance: true, ngImport: i0, template: `
4423
4450
  <mat-form-field floatLabel="auto" cdkOverlayOrigin #trigger="cdkOverlayOrigin">
4424
4451
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
4425
- <mat-label class="fs-16 fc-black">
4452
+ <mat-label class="fs-16 fc-dark-gray">
4426
4453
  <ng-content select="label"></ng-content>
4427
4454
  </mat-label>
4428
4455
  <div class="d-inline-flex align-items-center gap-1 country-flag" matPrefix (click)="toggleCountryCodeMenu()">
@@ -4500,7 +4527,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
4500
4527
  ], template: `
4501
4528
  <mat-form-field floatLabel="auto" cdkOverlayOrigin #trigger="cdkOverlayOrigin">
4502
4529
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
4503
- <mat-label class="fs-16 fc-black">
4530
+ <mat-label class="fs-16 fc-dark-gray">
4504
4531
  <ng-content select="label"></ng-content>
4505
4532
  </mat-label>
4506
4533
  <div class="d-inline-flex align-items-center gap-1 country-flag" matPrefix (click)="toggleCountryCodeMenu()">
@@ -5320,7 +5347,7 @@ class SelectControl extends ControlBase {
5320
5347
  ], queries: [{ propertyName: "optionTemplate", first: true, predicate: ["optionTemplate"], descendants: true, isSignal: true }, { propertyName: "cardViewerTemplate", first: true, predicate: ["cardViewerTemplate"], descendants: true, isSignal: true }], usesInheritance: true, ngImport: i0, template: `
5321
5348
  <mat-form-field floatLabel="auto" class="">
5322
5349
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
5323
- <mat-label class="fs-16 fc-black">
5350
+ <mat-label class="fs-16 fc-dark-gray">
5324
5351
  <ng-content select="label"></ng-content>
5325
5352
  </mat-label>
5326
5353
  <input [formControl]="ctrl" [matAutocomplete]="auto" [matChipInputFor]="chipGrid" [placeholder]="placeholder()" [readonly]="readonly()" (blur)="markAsTouched()" class="m-0" matInput/>
@@ -5400,7 +5427,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
5400
5427
  ], template: `
5401
5428
  <mat-form-field floatLabel="auto" class="">
5402
5429
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
5403
- <mat-label class="fs-16 fc-black">
5430
+ <mat-label class="fs-16 fc-dark-gray">
5404
5431
  <ng-content select="label"></ng-content>
5405
5432
  </mat-label>
5406
5433
  <input [formControl]="ctrl" [matAutocomplete]="auto" [matChipInputFor]="chipGrid" [placeholder]="placeholder()" [readonly]="readonly()" (blur)="markAsTouched()" class="m-0" matInput/>
@@ -5553,7 +5580,7 @@ class TextareaControl extends ControlBase {
5553
5580
  ], usesInheritance: true, ngImport: i0, template: `
5554
5581
  <mat-form-field floatLabel="auto" class="custom-textarea">
5555
5582
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
5556
- <mat-label class="fs-16 fc-black">
5583
+ <mat-label class="fs-16 fc-dark-gray">
5557
5584
  <ng-content select="label"></ng-content>
5558
5585
  </mat-label>
5559
5586
  <textarea
@@ -5591,7 +5618,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
5591
5618
  template: `
5592
5619
  <mat-form-field floatLabel="auto" class="custom-textarea">
5593
5620
  <!-- Always rendered: upgrade.scss shows the floating label only while the projected <label> carries text, so an omitted or empty one collapses on its own. -->
5594
- <mat-label class="fs-16 fc-black">
5621
+ <mat-label class="fs-16 fc-dark-gray">
5595
5622
  <ng-content select="label"></ng-content>
5596
5623
  </mat-label>
5597
5624
  <textarea
@@ -6356,22 +6383,22 @@ const COMPONENTS = {
6356
6383
  datetime: () => Promise.resolve().then(function () { return datetimePicker_field; }).then((c) => c.DatetimePickerField),
6357
6384
  date_range: () => Promise.resolve().then(function () { return dateRangePicker_field; }).then((c) => c.DateRangePickerField),
6358
6385
  attachment: () => Promise.resolve().then(function () { return filePicker_field; }).then((c) => c.FilePickerField),
6359
- userPicker: () => import('./iss-ctrl-user-picker.field-Bc_yX1v9.mjs').then((c) => c.UserPickerField),
6386
+ userPicker: () => import('./iss-ctrl-user-picker.field-BCd6g9jz.mjs').then((c) => c.UserPickerField),
6360
6387
  vehicle_plate: () => Promise.resolve().then(function () { return plate_field; }).then((c) => c.PlateField),
6361
- enrichment: () => import('./iss-ctrl-note.field-C5zBFWV-.mjs').then((c) => c.NoteField),
6388
+ enrichment: () => import('./iss-ctrl-note.field-Co2Og2eO.mjs').then((c) => c.NoteField),
6362
6389
  mobile: () => Promise.resolve().then(function () { return mobile_field; }).then((c) => c.MobileField),
6363
- table: () => import('./iss-ctrl-table.field-CjCWmdqf.mjs').then((c) => c.TableField),
6390
+ table: () => import('./iss-ctrl-table.field-BcuL_fSr.mjs').then((c) => c.TableField),
6364
6391
  chips: () => Promise.resolve().then(function () { return chips_field; }).then((c) => c.ChipsField),
6365
6392
  switch: () => Promise.resolve().then(function () { return slideToggle_field; }).then((c) => c.SlideToggleField),
6366
6393
  };
6367
6394
 
6368
6395
  const SERVICES = {
6369
- setValue: () => import('./iss-ctrl-set-value-event-DHF2LsSf.mjs').then((s) => s.SetValueEvent),
6396
+ setValue: () => import('./iss-ctrl-set-value-event-D38jsLlO.mjs').then((s) => s.SetValueEvent),
6370
6397
  show: () => import('./iss-ctrl-show-event-BcRCwAfo.mjs').then((s) => s.ShowEvent),
6371
- load: () => import('./iss-ctrl-load-value-event-CilsqNpU.mjs').then((s) => s.LoadValueEvent),
6372
- loadOptions: () => import('./iss-ctrl-load-options-event-BCHN0tAM.mjs').then((s) => s.LoadOptionsEvent),
6373
- triggerBasedOnJsonValue: () => import('./iss-ctrl-trigger-based-on-json-value-BwxH6MLn.mjs').then((s) => s.TriggerBasedOnJsonValue),
6374
- replaceApiKeyDefaultImpl: () => import('./iss-ctrl-replace-api-keys-uUZLoWuP.mjs').then((s) => s.ReplaceApiKeys),
6398
+ load: () => import('./iss-ctrl-load-value-event-ClkNTtds.mjs').then((s) => s.LoadValueEvent),
6399
+ loadOptions: () => import('./iss-ctrl-load-options-event-jsZAQloX.mjs').then((s) => s.LoadOptionsEvent),
6400
+ triggerBasedOnJsonValue: () => import('./iss-ctrl-trigger-based-on-json-value-B6M5dYnm.mjs').then((s) => s.TriggerBasedOnJsonValue),
6401
+ replaceApiKeyDefaultImpl: () => import('./iss-ctrl-replace-api-keys-Bx7wo5zl.mjs').then((s) => s.ReplaceApiKeys),
6375
6402
  };
6376
6403
 
6377
6404
  // Read-only counterpart of COMPONENTS: the component used to render a field's value
@@ -6594,19 +6621,15 @@ class Outlet {
6594
6621
  />
6595
6622
  }
6596
6623
  }
6597
- `, isInline: true, dependencies: [{ kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletEnvironmentInjector", "ngComponentOutletContent", "ngComponentOutletNgModule"], exportAs: ["ngComponentOutlet"] }, { kind: "pipe", type: FieldDataInjector, name: "FieldDataInjector" }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6624
+ `, isInline: true, styles: [":host{display:flex;flex-direction:column;gap:1rem}\n"], dependencies: [{ kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletEnvironmentInjector", "ngComponentOutletContent", "ngComponentOutletNgModule"], exportAs: ["ngComponentOutlet"] }, { kind: "pipe", type: FieldDataInjector, name: "FieldDataInjector" }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6598
6625
  }
6599
6626
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: Outlet, decorators: [{
6600
6627
  type: Component,
6601
- args: [{
6602
- selector: "iss-form-outlet",
6603
- imports: [
6628
+ args: [{ selector: "iss-form-outlet", imports: [
6604
6629
  NgComponentOutlet,
6605
6630
  FieldDataInjector,
6606
6631
  AsyncPipe,
6607
- ],
6608
- changeDetection: ChangeDetectionStrategy.OnPush,
6609
- template: `
6632
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: `
6610
6633
  @if (components() && components()?.length) {
6611
6634
  @for (component of components(); track $index) {
6612
6635
  <ng-container
@@ -6616,8 +6639,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
6616
6639
  />
6617
6640
  }
6618
6641
  }
6619
- `
6620
- }]
6642
+ `, styles: [":host{display:flex;flex-direction:column;gap:1rem}\n"] }]
6621
6643
  }], propDecorators: { ready: [{ type: i0.Output, args: ["ready"] }], fields: [{ type: i0.Input, args: [{ isSignal: true, alias: "fields", required: true }] }] } });
6622
6644
 
6623
6645
  const VIEW_PROVIDER = {
@@ -9416,4 +9438,4 @@ var time_validator = /*#__PURE__*/Object.freeze({
9416
9438
  */
9417
9439
 
9418
9440
  export { PlateViewer as $, TimePickerField as A, DatePickerField as B, ControlBase as C, DatePickerControl as D, Employee as E, FieldBase as F, DatetimePickerField as G, HOST as H, IssField as I, DateRangePickerField as J, InputViewer as K, Loader as L, MobileControl as M, TextareaViewer as N, Outlet as O, PLACEHOLDER_REGEX as P, ChipsViewer as Q, RadioControl as R, SelectControl as S, TextareaControl as T, RadioViewer as U, VIEW_PROVIDER as V, SelectViewer as W, MobileViewer as X, CheckboxViewer as Y, ToggleButtonViewer as Z, SlideToggleViewer as _, ValidationMessageComponent as a, AttachmentViewer as a0, TimePickerViewer as a1, DatePickerViewer as a2, DatePickerTimeViewer as a3, DateRangePickerViewer as a4, DEFAULT_COUNTRY as a5, COUNTRIES as a6, DATE_FORMAT_ADAPTER as a7, DATETIME_FORMAT as a8, PLATE_LETTERS as a9, startOfHijriMonth as aA, getHijriDaysInMonth as aB, createHijriDate as aC, formatHijriDate as aD, parseHijriDate as aE, toHijriDisplay as aF, IssValidators as aG, FileValidators as aH, TimeValidator as aI, VALIDATION_MESSAGES as aa, COMPONENTS as ab, SERVICES as ac, VALIDATORS as ad, FIELD_DATA as ae, UI_LANGUAGE as af, ATTACHMENT_UPLOAD_URL as ag, ATTACHMENT_UPLOAD_RESPONSE_MAPPER as ah, ATTACHMENT_DOWNLOAD_URL as ai, USER_SEARCH_API as aj, HintsComponent as ak, Droppable as al, ArabicNumberPipe as am, FieldDataInjector as an, PlateLetterPipe as ao, SelectStatusPipe as ap, TranslatePipe as aq, FileHandler as ar, IssDateAdapter as as, provideIssDateAdapter as at, Phone as au, arrayFrom as av, formatFileSize as aw, HIJRI_LOCALE as ax, HIJRI_MONTH_NAMES as ay, getHijriParts as az, ViewerBase as b, FormEngine as c, CheckboxControl as d, ChipsControl as e, DateRangePickerControl as f, getPropertyByPath as g, DatetimePickerControl as h, FilePickerControl as i, InputControl as j, PlateControl as k, SlideToggleControl as l, TimePickerControl as m, ToggleButtonControl as n, InputField as o, TextareaField as p, ChipsField as q, replacePlaceholders as r, RadioField as s, SelectField as t, MobileField as u, CheckboxField as v, ToggleButtonField as w, SlideToggleField as x, PlateField as y, FilePickerField as z };
9419
- //# sourceMappingURL=iss-ctrl-iss-ctrl-BpcynMId.mjs.map
9441
+ //# sourceMappingURL=iss-ctrl-iss-ctrl-BHW3shB0.mjs.map