@valtimo/layout 13.31.0 → 13.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -121,7 +121,7 @@ var WidgetColor;
121
121
  })(WidgetColor || (WidgetColor = {}));
122
122
 
123
123
  /*
124
- * Copyright 2015-2025 Ritense BV, the Netherlands.
124
+ * Copyright 2015-2026 Ritense BV, the Netherlands.
125
125
  *
126
126
  * Licensed under EUPL, Version 1.2 (the "License");
127
127
  * you may not use this file except in compliance with the License.
@@ -524,8 +524,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
524
524
  * limitations under the License.
525
525
  */
526
526
  class WidgetActionButtonComponent {
527
- constructor(globalNotificationService) {
527
+ constructor(globalNotificationService, router) {
528
528
  this.globalNotificationService = globalNotificationService;
529
+ this.router = router;
529
530
  }
530
531
  onNavigateButtonClick(buttonAction) {
531
532
  const navigateTo = this.getNavigateToUrl(buttonAction);
@@ -540,6 +541,12 @@ class WidgetActionButtonComponent {
540
541
  if (buttonAction?.openInNewTab) {
541
542
  window.open(navigateTo, '_blank', 'noopener,noreferrer');
542
543
  }
544
+ else if (navigateTo.startsWith(window.location.origin)) {
545
+ this.router.navigateByUrl(navigateTo.substring(window.location.origin.length));
546
+ }
547
+ else if (navigateTo.startsWith('/')) {
548
+ this.router.navigateByUrl(navigateTo);
549
+ }
543
550
  else {
544
551
  window.open(navigateTo, '_self');
545
552
  }
@@ -556,13 +563,13 @@ class WidgetActionButtonComponent {
556
563
  const value = resolved[property];
557
564
  return value != null ? String(value) : null;
558
565
  }
559
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: WidgetActionButtonComponent, deps: [{ token: i2.GlobalNotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
566
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: WidgetActionButtonComponent, deps: [{ token: i2.GlobalNotificationService }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
560
567
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: WidgetActionButtonComponent, isStandalone: true, selector: "valtimo-widget-action-button", inputs: { widgetConfiguration: "widgetConfiguration", resolvedData: "resolvedData" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n@if (widgetConfiguration.actions?.[0] && getNavigateToUrl(widgetConfiguration.actions[0])) {\n <button\n class=\"action-button\"\n cdsButton=\"ghost\"\n (click)=\"onNavigateButtonClick(widgetConfiguration.actions[0])\"\n >\n {{ widgetConfiguration.actions[0].name }}\n </button>\n}\n", styles: [":host:empty{display:none}.action-button{--cds-layout-size-height-local: 0;--cds-layout-density-padding-inline-local: 0}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ButtonModule }, { kind: "directive", type: i3.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }] }); }
561
568
  }
562
569
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: WidgetActionButtonComponent, decorators: [{
563
570
  type: Component,
564
571
  args: [{ selector: 'valtimo-widget-action-button', standalone: true, imports: [CommonModule, ButtonModule], template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n@if (widgetConfiguration.actions?.[0] && getNavigateToUrl(widgetConfiguration.actions[0])) {\n <button\n class=\"action-button\"\n cdsButton=\"ghost\"\n (click)=\"onNavigateButtonClick(widgetConfiguration.actions[0])\"\n >\n {{ widgetConfiguration.actions[0].name }}\n </button>\n}\n", styles: [":host:empty{display:none}.action-button{--cds-layout-size-height-local: 0;--cds-layout-density-padding-inline-local: 0}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
565
- }], ctorParameters: () => [{ type: i2.GlobalNotificationService }], propDecorators: { widgetConfiguration: [{
572
+ }], ctorParameters: () => [{ type: i2.GlobalNotificationService }, { type: i2$1.Router }], propDecorators: { widgetConfiguration: [{
566
573
  type: Input
567
574
  }], resolvedData: [{
568
575
  type: Input
@@ -4613,12 +4620,14 @@ class WidgetMetrolineComponent {
4613
4620
  this.class = 'valtimo-widget-metroline';
4614
4621
  this.widgetConfiguration$ = new BehaviorSubject(null);
4615
4622
  this.widgetData$ = new BehaviorSubject(null);
4616
- this.orientation$ = this.widgetConfiguration$.pipe(map(config => config?.properties?.orientation === MetrolineOrientation.VERTICAL ? 'vertical' : 'horizontal'));
4623
+ this.orientation$ = this.widgetConfiguration$.pipe(map(config => config?.properties?.orientation === MetrolineOrientation.VERTICAL
4624
+ ? 'vertical'
4625
+ : 'horizontal'));
4617
4626
  this.displayState$ = combineLatest([
4618
4627
  this.widgetData$,
4619
4628
  this.widgetConfiguration$,
4620
4629
  ]).pipe(map(([items, config]) => {
4621
- const mode = config?.properties?.mode ?? MetrolineMode.INTERNAL_CASE_STATUS;
4630
+ const mode = config?.properties?.mode ?? null;
4622
4631
  return {
4623
4632
  steps: this.toSteps(items, mode),
4624
4633
  currentStepIndex: this.toCurrentStepIndex(items, mode),
@@ -4642,30 +4651,30 @@ class WidgetMetrolineComponent {
4642
4651
  toSteps(items, mode) {
4643
4652
  if (!items?.length)
4644
4653
  return [];
4645
- if (mode === MetrolineMode.ZAAKSTATUS) {
4646
- return items.map(item => ({
4654
+ if (mode === MetrolineMode.INTERNAL_CASE_STATUS) {
4655
+ const lastIndex = items.length - 1;
4656
+ return items.map((item, index) => ({
4647
4657
  label: item.title,
4648
4658
  secondaryLabel: this.formatCompleted(item.completed),
4649
- complete: item.completed != null,
4659
+ complete: index < lastIndex,
4650
4660
  itemLabel: item.label,
4651
4661
  }));
4652
4662
  }
4653
- const lastIndex = items.length - 1;
4654
- return items.map((item, index) => ({
4663
+ return items.map(item => ({
4655
4664
  label: item.title,
4656
4665
  secondaryLabel: this.formatCompleted(item.completed),
4657
- complete: index < lastIndex,
4666
+ complete: item.completed != null,
4658
4667
  itemLabel: item.label,
4659
4668
  }));
4660
4669
  }
4661
4670
  toCurrentStepIndex(items, mode) {
4662
4671
  if (!items?.length)
4663
4672
  return 0;
4664
- if (mode === MetrolineMode.ZAAKSTATUS) {
4665
- const firstNotCompleted = items.findIndex(item => item.completed == null);
4666
- return firstNotCompleted === -1 ? items.length : firstNotCompleted;
4673
+ if (mode === MetrolineMode.INTERNAL_CASE_STATUS) {
4674
+ return items.length - 1;
4667
4675
  }
4668
- return items.length - 1;
4676
+ const firstNotCompleted = items.findIndex(item => item.completed == null);
4677
+ return firstNotCompleted === -1 ? items.length : firstNotCompleted;
4669
4678
  }
4670
4679
  formatCompleted(completed) {
4671
4680
  if (!completed)
@@ -6110,12 +6119,20 @@ class WidgetManagementMetrolineComponent {
6110
6119
  this.class = 'valtimo-widget-management-metroline';
6111
6120
  this.testIds = WIDGET_CONTENT_METROLINE_TEST_IDS;
6112
6121
  this.orientationOptions = MetrolineOrientation;
6122
+ this.MetrolineMode = MetrolineMode;
6123
+ this.$widgetContext = this.widgetWizardService.$widgetContext;
6113
6124
  this._initialContent = this.widgetWizardService.$widgetContent();
6125
+ this._initialCaseContent = this._initialContent;
6126
+ this._initialIkoContent = this._initialContent;
6114
6127
  this.form = this.fb.group({
6115
6128
  widgetTitle: this.fb.control(this.widgetWizardService.$widgetTitle(), Validators.required),
6116
6129
  widgetIcon: this.fb.control(this.widgetWizardService.$widgetIcon()),
6117
6130
  orientation: this.fb.control(this._initialContent?.orientation ?? MetrolineOrientation.HORIZONTAL, Validators.required),
6118
- mode: this.fb.control(this._initialContent?.mode ?? null, Validators.required),
6131
+ mode: this.fb.control(this._initialCaseContent?.mode ?? null, Validators.required),
6132
+ source: this.fb.control(this._initialIkoContent?.source ?? ''),
6133
+ titlePath: this.fb.control(this._initialIkoContent?.titlePath ?? ''),
6134
+ labelPath: this.fb.control(this._initialIkoContent?.labelPath ?? null),
6135
+ completedPath: this.fb.control(this._initialIkoContent?.completedPath ?? ''),
6119
6136
  });
6120
6137
  this.modeItems$ = combineLatest([
6121
6138
  this.metrolineWidgetApiService.getAvailableModes(),
@@ -6124,6 +6141,17 @@ class WidgetManagementMetrolineComponent {
6124
6141
  this._subscriptions = new Subscription();
6125
6142
  }
6126
6143
  ngOnInit() {
6144
+ if (this.$widgetContext() === 'iko') {
6145
+ // Mode is irrelevant for IKO widgets: the data shape (per-item completedPath) drives rendering.
6146
+ this.form.controls.mode.clearValidators();
6147
+ this.form.controls.mode.updateValueAndValidity({ emitEvent: false });
6148
+ this.form.controls.source.addValidators(Validators.required);
6149
+ this.form.controls.titlePath.addValidators(Validators.required);
6150
+ this.form.controls.completedPath.addValidators(Validators.required);
6151
+ this.form.controls.source.updateValueAndValidity({ emitEvent: false });
6152
+ this.form.controls.titlePath.updateValueAndValidity({ emitEvent: false });
6153
+ this.form.controls.completedPath.updateValueAndValidity({ emitEvent: false });
6154
+ }
6127
6155
  this.syncWizardServiceFromForm();
6128
6156
  this.widgetWizardService.$widgetContentValid.set(this.form.valid);
6129
6157
  this._subscriptions.add(this.form.valueChanges.pipe(debounceTime(100)).subscribe(() => {
@@ -6141,14 +6169,28 @@ class WidgetManagementMetrolineComponent {
6141
6169
  return;
6142
6170
  this.form.patchValue({ mode: event.item.id });
6143
6171
  }
6172
+ onOrientationChange(value) {
6173
+ this.form.controls.orientation.setValue(value);
6174
+ }
6144
6175
  syncWizardServiceFromForm() {
6145
6176
  const value = this.form.getRawValue();
6146
6177
  this.widgetWizardService.$widgetTitle.set(value.widgetTitle ?? '');
6147
6178
  this.widgetWizardService.$widgetIcon.set(value.widgetIcon ?? '');
6148
- this.widgetWizardService.$widgetContent.set({
6149
- orientation: value.orientation ?? MetrolineOrientation.HORIZONTAL,
6150
- mode: value.mode,
6151
- });
6179
+ if (this.$widgetContext() === 'iko') {
6180
+ this.widgetWizardService.$widgetContent.set({
6181
+ orientation: value.orientation ?? MetrolineOrientation.HORIZONTAL,
6182
+ source: value.source ?? '',
6183
+ titlePath: value.titlePath ?? '',
6184
+ labelPath: value.labelPath || null,
6185
+ completedPath: value.completedPath ?? '',
6186
+ });
6187
+ }
6188
+ else {
6189
+ this.widgetWizardService.$widgetContent.set({
6190
+ orientation: value.orientation ?? MetrolineOrientation.HORIZONTAL,
6191
+ mode: value.mode,
6192
+ });
6193
+ }
6152
6194
  }
6153
6195
  buildModeItems(availableModes) {
6154
6196
  const current = this.form.get('mode')?.value;
@@ -6162,13 +6204,14 @@ class WidgetManagementMetrolineComponent {
6162
6204
  }));
6163
6205
  }
6164
6206
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: WidgetManagementMetrolineComponent, deps: [{ token: i1$3.FormBuilder }, { token: MetrolineWidgetApiService }, { token: i2$2.TranslateService }, { token: WidgetWizardService }], target: i0.ɵɵFactoryTarget.Component }); }
6165
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: WidgetManagementMetrolineComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.class" } }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<form\n [formGroup]=\"form\"\n class=\"valtimo-widget-management-metroline__title-form\"\n>\n <cds-text-label class=\"valtimo-widget-management-metroline__title-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.widgetTitle' | translate\"\n [tooltip]=\"'widgetTabManagement.content.widgetTitleTooltip' | translate\"\n >\n </v-input-label>\n\n <input\n formControlName=\"widgetTitle\"\n cdsText\n [attr.data-test-id]=\"testIds.widgetTitleInput\"\n [placeholder]=\"'widgetTabManagement.content.widgetTitlePlaceholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <valtimo-mdi-icon-selector\n [cdsLayer]=\"1\"\n formControlName=\"widgetIcon\"\n ></valtimo-mdi-icon-selector>\n</form>\n\n<ng-content></ng-content>\n\n<section\n class=\"valtimo-widget-management-metroline__settings\"\n [formGroup]=\"form\"\n>\n <cds-radio-group\n class=\"valtimo-widget-management-metroline__radio-group\"\n orientation=\"horizontal\"\n formControlName=\"orientation\"\n [attr.data-test-id]=\"testIds.displayTypeRadio\"\n [legend]=\"'widgetTabManagement.content.metroline.displayType.label' | translate\"\n >\n <cds-radio [value]=\"orientationOptions.HORIZONTAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.horizontal' | translate }}\n </cds-radio>\n <cds-radio [value]=\"orientationOptions.VERTICAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.vertical' | translate }}\n </cds-radio>\n </cds-radio-group>\n\n <cds-dropdown\n class=\"valtimo-widget-management-metroline__dropdown\"\n [appendInline]=\"false\"\n [dropUp]=\"false\"\n [attr.data-test-id]=\"testIds.statusSourceDropdown\"\n [label]=\"'widgetTabManagement.content.metroline.statusSource.label' | translate\"\n [placeholder]=\"'widgetTabManagement.content.metroline.statusSource.placeholder' | translate\"\n (selected)=\"onModeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"modeItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n</section>\n", styles: [".valtimo-widget-management-metroline{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__title-form{background:var(--cds-layer-02);display:flex;gap:16px}.valtimo-widget-management-metroline__title-input{max-width:300px}.valtimo-widget-management-metroline__title-input input{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__settings{display:flex;flex-wrap:wrap;align-items:stretch;gap:16px;background:var(--cds-layer-02)}.valtimo-widget-management-metroline__settings>*{flex:0 0 auto}.valtimo-widget-management-metroline__radio-group{padding:8px;background:var(--cds-layer-01)}.valtimo-widget-management-metroline__dropdown{width:300px}.valtimo-widget-management-metroline__dropdown .cds--list-box{background:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "ngmodule", type: DropdownModule }, { kind: "component", type: i7.Dropdown, selector: "cds-dropdown, ibm-dropdown", inputs: ["id", "label", "hideLabel", "helperText", "placeholder", "displayValue", "clearText", "size", "type", "theme", "disabled", "readonly", "skeleton", "inline", "disableArrowKeys", "invalid", "invalidText", "warn", "warnText", "appendInline", "scrollableContainer", "itemValueKey", "selectionFeedback", "menuButtonLabel", "selectedLabel", "dropUp", "fluid"], outputs: ["selected", "onClose", "close"] }, { kind: "component", type: i7.DropdownList, selector: "cds-dropdown-list, ibm-dropdown-list", inputs: ["ariaLabel", "items", "listTpl", "type", "showTitles"], outputs: ["select", "scroll", "blurIntent"] }, { kind: "ngmodule", type: InputLabelModule }, { kind: "component", type: i1$1.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "ngmodule", type: InputModule }, { kind: "component", type: i3.TextInputLabelComponent, selector: "cds-text-label, ibm-text-label", inputs: ["labelInputID", "disabled", "skeleton", "labelTemplate", "textInputTemplate", "helperText", "invalidText", "invalid", "warn", "warnText", "ariaLabel", "fluid"] }, { kind: "directive", type: i3.TextInput, selector: "[cdsText], [ibmText]", inputs: ["theme", "size", "invalid", "warn", "skeleton"] }, { kind: "ngmodule", type: LayerModule }, { kind: "directive", type: i3.LayerDirective, selector: "[cdsLayer], [ibmLayer]", inputs: ["ibmLayer", "cdsLayer"], exportAs: ["layer"] }, { kind: "component", type: MdiIconSelectorComponent, selector: "valtimo-mdi-icon-selector", inputs: ["labelTranslationKey", "tooltipTranslationKey", "placeholderTranslationKey", "appendInline", "dropUp"] }, { kind: "ngmodule", type: RadioModule }, { kind: "component", type: i3.Radio, selector: "cds-radio, ibm-radio", inputs: ["checked", "name", "disabled", "labelPlacement", "ariaLabelledby", "ariaLabel", "required", "value", "skeleton", "id"], outputs: ["change"] }, { kind: "component", type: i3.RadioGroup, selector: "cds-radio-group, ibm-radio-group", inputs: ["selected", "value", "name", "disabled", "skeleton", "orientation", "labelPlacement", "legend", "ariaLabel", "ariaLabelledby", "helperText", "invalid", "invalidText", "warn", "warnText"], outputs: ["change"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$3.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: i1$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$2.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6207
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: WidgetManagementMetrolineComponent, isStandalone: true, selector: "ng-component", host: { properties: { "class": "this.class" } }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<form\n [formGroup]=\"form\"\n class=\"valtimo-widget-management-metroline__title-form\"\n>\n <cds-text-label class=\"valtimo-widget-management-metroline__title-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.widgetTitle' | translate\"\n [tooltip]=\"'widgetTabManagement.content.widgetTitleTooltip' | translate\"\n >\n </v-input-label>\n\n <input\n formControlName=\"widgetTitle\"\n cdsText\n [attr.data-test-id]=\"testIds.widgetTitleInput\"\n [placeholder]=\"'widgetTabManagement.content.widgetTitlePlaceholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <valtimo-mdi-icon-selector\n [cdsLayer]=\"1\"\n formControlName=\"widgetIcon\"\n ></valtimo-mdi-icon-selector>\n</form>\n\n<ng-content></ng-content>\n\n<section class=\"valtimo-widget-management-metroline__settings\">\n <cds-radio-group\n class=\"valtimo-widget-management-metroline__radio-group\"\n orientation=\"horizontal\"\n [attr.data-test-id]=\"testIds.displayTypeRadio\"\n [legend]=\"'widgetTabManagement.content.metroline.displayType.label' | translate\"\n [ngModel]=\"form.controls.orientation.value\"\n (ngModelChange)=\"onOrientationChange($event)\"\n [ngModelOptions]=\"{standalone: true}\"\n >\n <cds-radio [value]=\"orientationOptions.HORIZONTAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.horizontal' | translate }}\n </cds-radio>\n <cds-radio [value]=\"orientationOptions.VERTICAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.vertical' | translate }}\n </cds-radio>\n </cds-radio-group>\n\n @if ($widgetContext() !== 'iko') {\n <cds-dropdown\n class=\"valtimo-widget-management-metroline__dropdown\"\n [appendInline]=\"false\"\n [dropUp]=\"false\"\n [attr.data-test-id]=\"testIds.statusSourceDropdown\"\n [label]=\"'widgetTabManagement.content.metroline.statusSource.label' | translate\"\n [placeholder]=\"'widgetTabManagement.content.metroline.statusSource.placeholder' | translate\"\n (selected)=\"onModeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"modeItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n }\n</section>\n\n@if ($widgetContext() === 'iko') {\n <section\n class=\"valtimo-widget-management-metroline__iko-block\"\n [formGroup]=\"form\"\n >\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.source.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.source.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"source\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.source.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.titlePath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.titlePath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"titlePath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.titlePath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.labelPath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.labelPath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"labelPath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.labelPath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.completedPath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.completedPath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"completedPath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.completedPath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n </section>\n}\n", styles: [".valtimo-widget-management-metroline{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__title-form{background:var(--cds-layer-02);display:flex;gap:16px}.valtimo-widget-management-metroline__title-input{max-width:300px}.valtimo-widget-management-metroline__title-input input{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__settings{display:flex;flex-wrap:wrap;align-items:stretch;gap:16px;background:var(--cds-layer-02)}.valtimo-widget-management-metroline__settings>*{flex:0 0 auto}.valtimo-widget-management-metroline__radio-group{padding:8px;background:var(--cds-layer-01)}.valtimo-widget-management-metroline__dropdown{width:300px}.valtimo-widget-management-metroline__dropdown .cds--list-box{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__iko-block{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__path-input{max-width:480px}.valtimo-widget-management-metroline__path-input input{background:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "ngmodule", type: DropdownModule }, { kind: "component", type: i7.Dropdown, selector: "cds-dropdown, ibm-dropdown", inputs: ["id", "label", "hideLabel", "helperText", "placeholder", "displayValue", "clearText", "size", "type", "theme", "disabled", "readonly", "skeleton", "inline", "disableArrowKeys", "invalid", "invalidText", "warn", "warnText", "appendInline", "scrollableContainer", "itemValueKey", "selectionFeedback", "menuButtonLabel", "selectedLabel", "dropUp", "fluid"], outputs: ["selected", "onClose", "close"] }, { kind: "component", type: i7.DropdownList, selector: "cds-dropdown-list, ibm-dropdown-list", inputs: ["ariaLabel", "items", "listTpl", "type", "showTitles"], outputs: ["select", "scroll", "blurIntent"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$3.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: i1$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: InputLabelModule }, { kind: "component", type: i1$1.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "ngmodule", type: InputModule }, { kind: "component", type: i3.TextInputLabelComponent, selector: "cds-text-label, ibm-text-label", inputs: ["labelInputID", "disabled", "skeleton", "labelTemplate", "textInputTemplate", "helperText", "invalidText", "invalid", "warn", "warnText", "ariaLabel", "fluid"] }, { kind: "directive", type: i3.TextInput, selector: "[cdsText], [ibmText]", inputs: ["theme", "size", "invalid", "warn", "skeleton"] }, { kind: "ngmodule", type: LayerModule }, { kind: "directive", type: i3.LayerDirective, selector: "[cdsLayer], [ibmLayer]", inputs: ["ibmLayer", "cdsLayer"], exportAs: ["layer"] }, { kind: "component", type: MdiIconSelectorComponent, selector: "valtimo-mdi-icon-selector", inputs: ["labelTranslationKey", "tooltipTranslationKey", "placeholderTranslationKey", "appendInline", "dropUp"] }, { kind: "ngmodule", type: RadioModule }, { kind: "component", type: i3.Radio, selector: "cds-radio, ibm-radio", inputs: ["checked", "name", "disabled", "labelPlacement", "ariaLabelledby", "ariaLabel", "required", "value", "skeleton", "id"], outputs: ["change"] }, { kind: "component", type: i3.RadioGroup, selector: "cds-radio-group, ibm-radio-group", inputs: ["selected", "value", "name", "disabled", "skeleton", "orientation", "labelPlacement", "legend", "ariaLabel", "ariaLabelledby", "helperText", "invalid", "invalidText", "warn", "warnText"], outputs: ["change"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$2.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
6166
6208
  }
6167
6209
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: WidgetManagementMetrolineComponent, decorators: [{
6168
6210
  type: Component,
6169
6211
  args: [{ changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: true, imports: [
6170
6212
  CommonModule,
6171
6213
  DropdownModule,
6214
+ FormsModule,
6172
6215
  InputLabelModule,
6173
6216
  InputModule,
6174
6217
  LayerModule,
@@ -6176,7 +6219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
6176
6219
  RadioModule,
6177
6220
  ReactiveFormsModule,
6178
6221
  TranslateModule,
6179
- ], template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<form\n [formGroup]=\"form\"\n class=\"valtimo-widget-management-metroline__title-form\"\n>\n <cds-text-label class=\"valtimo-widget-management-metroline__title-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.widgetTitle' | translate\"\n [tooltip]=\"'widgetTabManagement.content.widgetTitleTooltip' | translate\"\n >\n </v-input-label>\n\n <input\n formControlName=\"widgetTitle\"\n cdsText\n [attr.data-test-id]=\"testIds.widgetTitleInput\"\n [placeholder]=\"'widgetTabManagement.content.widgetTitlePlaceholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <valtimo-mdi-icon-selector\n [cdsLayer]=\"1\"\n formControlName=\"widgetIcon\"\n ></valtimo-mdi-icon-selector>\n</form>\n\n<ng-content></ng-content>\n\n<section\n class=\"valtimo-widget-management-metroline__settings\"\n [formGroup]=\"form\"\n>\n <cds-radio-group\n class=\"valtimo-widget-management-metroline__radio-group\"\n orientation=\"horizontal\"\n formControlName=\"orientation\"\n [attr.data-test-id]=\"testIds.displayTypeRadio\"\n [legend]=\"'widgetTabManagement.content.metroline.displayType.label' | translate\"\n >\n <cds-radio [value]=\"orientationOptions.HORIZONTAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.horizontal' | translate }}\n </cds-radio>\n <cds-radio [value]=\"orientationOptions.VERTICAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.vertical' | translate }}\n </cds-radio>\n </cds-radio-group>\n\n <cds-dropdown\n class=\"valtimo-widget-management-metroline__dropdown\"\n [appendInline]=\"false\"\n [dropUp]=\"false\"\n [attr.data-test-id]=\"testIds.statusSourceDropdown\"\n [label]=\"'widgetTabManagement.content.metroline.statusSource.label' | translate\"\n [placeholder]=\"'widgetTabManagement.content.metroline.statusSource.placeholder' | translate\"\n (selected)=\"onModeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"modeItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n</section>\n", styles: [".valtimo-widget-management-metroline{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__title-form{background:var(--cds-layer-02);display:flex;gap:16px}.valtimo-widget-management-metroline__title-input{max-width:300px}.valtimo-widget-management-metroline__title-input input{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__settings{display:flex;flex-wrap:wrap;align-items:stretch;gap:16px;background:var(--cds-layer-02)}.valtimo-widget-management-metroline__settings>*{flex:0 0 auto}.valtimo-widget-management-metroline__radio-group{padding:8px;background:var(--cds-layer-01)}.valtimo-widget-management-metroline__dropdown{width:300px}.valtimo-widget-management-metroline__dropdown .cds--list-box{background:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
6222
+ ], template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<form\n [formGroup]=\"form\"\n class=\"valtimo-widget-management-metroline__title-form\"\n>\n <cds-text-label class=\"valtimo-widget-management-metroline__title-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.widgetTitle' | translate\"\n [tooltip]=\"'widgetTabManagement.content.widgetTitleTooltip' | translate\"\n >\n </v-input-label>\n\n <input\n formControlName=\"widgetTitle\"\n cdsText\n [attr.data-test-id]=\"testIds.widgetTitleInput\"\n [placeholder]=\"'widgetTabManagement.content.widgetTitlePlaceholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <valtimo-mdi-icon-selector\n [cdsLayer]=\"1\"\n formControlName=\"widgetIcon\"\n ></valtimo-mdi-icon-selector>\n</form>\n\n<ng-content></ng-content>\n\n<section class=\"valtimo-widget-management-metroline__settings\">\n <cds-radio-group\n class=\"valtimo-widget-management-metroline__radio-group\"\n orientation=\"horizontal\"\n [attr.data-test-id]=\"testIds.displayTypeRadio\"\n [legend]=\"'widgetTabManagement.content.metroline.displayType.label' | translate\"\n [ngModel]=\"form.controls.orientation.value\"\n (ngModelChange)=\"onOrientationChange($event)\"\n [ngModelOptions]=\"{standalone: true}\"\n >\n <cds-radio [value]=\"orientationOptions.HORIZONTAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.horizontal' | translate }}\n </cds-radio>\n <cds-radio [value]=\"orientationOptions.VERTICAL\">\n {{ 'widgetTabManagement.content.metroline.displayType.vertical' | translate }}\n </cds-radio>\n </cds-radio-group>\n\n @if ($widgetContext() !== 'iko') {\n <cds-dropdown\n class=\"valtimo-widget-management-metroline__dropdown\"\n [appendInline]=\"false\"\n [dropUp]=\"false\"\n [attr.data-test-id]=\"testIds.statusSourceDropdown\"\n [label]=\"'widgetTabManagement.content.metroline.statusSource.label' | translate\"\n [placeholder]=\"'widgetTabManagement.content.metroline.statusSource.placeholder' | translate\"\n (selected)=\"onModeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"modeItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n }\n</section>\n\n@if ($widgetContext() === 'iko') {\n <section\n class=\"valtimo-widget-management-metroline__iko-block\"\n [formGroup]=\"form\"\n >\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.source.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.source.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"source\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.source.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.titlePath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.titlePath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"titlePath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.titlePath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.labelPath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.labelPath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"labelPath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.labelPath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n\n <cds-text-label class=\"valtimo-widget-management-metroline__path-input\">\n <v-input-label\n [title]=\"'widgetTabManagement.content.metroline.iko.completedPath.label' | translate\"\n [tooltip]=\"'widgetTabManagement.content.metroline.iko.completedPath.tooltip' | translate\"\n >\n </v-input-label>\n <input\n formControlName=\"completedPath\"\n cdsText\n [placeholder]=\"'widgetTabManagement.content.metroline.iko.completedPath.placeholder' | translate\"\n type=\"text\"\n />\n </cds-text-label>\n </section>\n}\n", styles: [".valtimo-widget-management-metroline{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__title-form{background:var(--cds-layer-02);display:flex;gap:16px}.valtimo-widget-management-metroline__title-input{max-width:300px}.valtimo-widget-management-metroline__title-input input{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__settings{display:flex;flex-wrap:wrap;align-items:stretch;gap:16px;background:var(--cds-layer-02)}.valtimo-widget-management-metroline__settings>*{flex:0 0 auto}.valtimo-widget-management-metroline__radio-group{padding:8px;background:var(--cds-layer-01)}.valtimo-widget-management-metroline__dropdown{width:300px}.valtimo-widget-management-metroline__dropdown .cds--list-box{background:var(--cds-layer-01)}.valtimo-widget-management-metroline__iko-block{display:flex;flex-direction:column;gap:16px}.valtimo-widget-management-metroline__path-input{max-width:480px}.valtimo-widget-management-metroline__path-input input{background:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
6180
6223
  }], ctorParameters: () => [{ type: i1$3.FormBuilder }, { type: MetrolineWidgetApiService }, { type: i2$2.TranslateService }, { type: WidgetWizardService }], propDecorators: { class: [{
6181
6224
  type: HostBinding,
6182
6225
  args: ['class']