diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/map-tooltip-tag-actions.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/map-tooltip-tag-actions.component.ts
index 5c751ac950..9d2983de90 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/map-tooltip-tag-actions.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/map-tooltip-tag-actions.component.ts
@@ -32,22 +32,23 @@ import { MapSettingsContext } from '@home/components/widget/lib/settings/common/
import {
WidgetActionSettingsPanelComponent
} from '@home/components/widget/lib/settings/common/action/widget-action-settings-panel.component';
-import { MatButton } from '@angular/material/button';
+import { MatIconButton } from '@angular/material/button';
import { TranslateService } from '@ngx-translate/core';
import { deepClone } from '@core/utils';
@Component({
- selector: 'tb-map-tooltip-tag-actions-panel',
- templateUrl: './map-tooltip-tag-actions.component.html',
- styleUrls: ['./map-tooltip-tag-actions.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MapTooltipTagActionsComponent),
- multi: true
- }
- ],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-map-tooltip-tag-actions-panel',
+ templateUrl: './map-tooltip-tag-actions.component.html',
+ styleUrls: ['./map-tooltip-tag-actions.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MapTooltipTagActionsComponent),
+ multi: true
+ }
+ ],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class MapTooltipTagActionsComponent implements ControlValueAccessor, OnInit {
@@ -108,7 +109,7 @@ export class MapTooltipTagActionsComponent implements ControlValueAccessor, OnIn
}
}
- addAction($event: Event, matButton: MatButton): void {
+ addAction($event: Event, matButton: MatIconButton): void {
if ($event) {
$event.stopPropagation();
}
@@ -127,7 +128,7 @@ export class MapTooltipTagActionsComponent implements ControlValueAccessor, OnIn
});
}
- editAction($event: Event, matButton: MatButton, index: number): void {
+ editAction($event: Event, matButton: MatIconButton, index: number): void {
if ($event) {
$event.stopPropagation();
}
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-clustering-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-clustering-settings.component.ts
index 8c7ff9371e..eac6b9e410 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-clustering-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-clustering-settings.component.ts
@@ -31,21 +31,22 @@ import { MarkerClusteringSettings } from '@shared/models/widget/maps/map.models'
import { merge } from 'rxjs';
@Component({
- selector: 'tb-marker-clustering-settings',
- templateUrl: './marker-clustering-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-marker-clustering-settings',
+ templateUrl: './marker-clustering-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MarkerClusteringSettingsComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-icon-shapes.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-icon-shapes.component.ts
index f1671807d8..8094bc0a68 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-icon-shapes.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-icon-shapes.component.ts
@@ -42,11 +42,12 @@ interface MarkerIconContainerInfo {
}
@Component({
- selector: 'tb-marker-icon-shapes',
- templateUrl: './marker-icon-shapes.component.html',
- providers: [],
- styleUrls: ['./marker-icon-shapes.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-marker-icon-shapes',
+ templateUrl: './marker-icon-shapes.component.html',
+ providers: [],
+ styleUrls: ['./marker-icon-shapes.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class MarkerIconShapesComponent extends PageComponent implements OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings-panel.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings-panel.component.ts
index eea2bc6700..67539b82f2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings-panel.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings-panel.component.ts
@@ -25,11 +25,12 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { MarkerImageSettings, MarkerImageType } from '@shared/models/widget/maps/map.models';
@Component({
- selector: 'tb-marker-image-settings-panel',
- templateUrl: './marker-image-settings-panel.component.html',
- providers: [],
- styleUrls: ['./marker-image-settings-panel.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-marker-image-settings-panel',
+ templateUrl: './marker-image-settings-panel.component.html',
+ providers: [],
+ styleUrls: ['./marker-image-settings-panel.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class MarkerImageSettingsPanelComponent extends PageComponent implements OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings.component.ts
index 0d84469410..6da6c809e0 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-image-settings.component.ts
@@ -24,16 +24,17 @@ import {
} from '@home/components/widget/lib/settings/common/map/marker-image-settings-panel.component';
@Component({
- selector: 'tb-marker-image-settings',
- templateUrl: './marker-image-settings.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MarkerImageSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-marker-image-settings',
+ templateUrl: './marker-image-settings.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MarkerImageSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MarkerImageSettingsComponent implements ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shape-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shape-settings.component.ts
index 319b423b2d..e251f6f9a8 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shape-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shape-settings.component.ts
@@ -53,16 +53,17 @@ import { MapSettingsContext } from '@home/components/widget/lib/settings/common/
import { DatasourceType } from '@shared/models/widget.models';
@Component({
- selector: 'tb-marker-shape-settings',
- templateUrl: './marker-shape-settings.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MarkerShapeSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-marker-shape-settings',
+ templateUrl: './marker-shape-settings.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MarkerShapeSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MarkerShapeSettingsComponent implements ControlValueAccessor, OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shapes.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shapes.component.ts
index 5499c6e39c..23fadbf093 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shapes.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/marker-shapes.component.ts
@@ -37,11 +37,12 @@ interface MarkerShapeInfo {
}
@Component({
- selector: 'tb-marker-shapes',
- templateUrl: './marker-shapes.component.html',
- providers: [],
- styleUrls: ['./marker-shapes.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-marker-shapes',
+ templateUrl: './marker-shapes.component.html',
+ providers: [],
+ styleUrls: ['./marker-shapes.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class MarkerShapesComponent extends PageComponent implements OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings-panel.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings-panel.component.ts
index 8988365644..dcea878241 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings-panel.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings-panel.component.ts
@@ -22,11 +22,12 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { ShapeFillImageSettings, ShapeFillImageType } from '@shared/models/widget/maps/map.models';
@Component({
- selector: 'tb-shape-fill-image-settings-panel',
- templateUrl: './shape-fill-image-settings-panel.component.html',
- providers: [],
- styleUrls: ['./shape-fill-image-settings-panel.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-shape-fill-image-settings-panel',
+ templateUrl: './shape-fill-image-settings-panel.component.html',
+ providers: [],
+ styleUrls: ['./shape-fill-image-settings-panel.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class ShapeFillImageSettingsPanelComponent implements OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings.component.ts
index 466525f46f..5c9bbb260f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-image-settings.component.ts
@@ -24,16 +24,17 @@ import {
} from '@home/components/widget/lib/settings/common/map/shape-fill-image-settings-panel.component';
@Component({
- selector: 'tb-shape-fill-image-settings',
- templateUrl: './shape-fill-image-settings.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ShapeFillImageSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-shape-fill-image-settings',
+ templateUrl: './shape-fill-image-settings.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ShapeFillImageSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ShapeFillImageSettingsComponent implements ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings-panel.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings-panel.component.ts
index 60fab91c82..52ab290e6f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings-panel.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings-panel.component.ts
@@ -28,11 +28,12 @@ import { MapSettingsContext } from '@home/components/widget/lib/settings/common/
import { DatasourceType } from '@shared/models/widget.models';
@Component({
- selector: 'tb-shape-fill-stripe-settings-panel',
- templateUrl: './shape-fill-stripe-settings-panel.component.html',
- providers: [],
- styleUrls: ['./shape-fill-stripe-settings-panel.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-shape-fill-stripe-settings-panel',
+ templateUrl: './shape-fill-stripe-settings-panel.component.html',
+ providers: [],
+ styleUrls: ['./shape-fill-stripe-settings-panel.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class ShapeFillStripeSettingsPanelComponent implements OnInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings.component.ts
index 0b8d19b4a7..b1f65c541c 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/shape-fill-stripe-settings.component.ts
@@ -28,16 +28,17 @@ import {
} from '@home/components/widget/lib/settings/common/map/shape-fill-stripe-settings-panel.component';
@Component({
- selector: 'tb-shape-fill-stripe-settings',
- templateUrl: './shape-fill-stripe-settings.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ShapeFillStripeSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-shape-fill-stripe-settings',
+ templateUrl: './shape-fill-stripe-settings.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ShapeFillStripeSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ShapeFillStripeSettingsComponent implements ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/trip-timeline-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/trip-timeline-settings.component.ts
index 1a041cd584..b3064b0dd3 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/trip-timeline-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/map/trip-timeline-settings.component.ts
@@ -33,21 +33,22 @@ import {
} from '@shared/models/widget/maps/map.models';
@Component({
- selector: 'tb-trip-timeline-settings',
- templateUrl: './trip-timeline-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TripTimelineSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TripTimelineSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-trip-timeline-settings',
+ templateUrl: './trip-timeline-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TripTimelineSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TripTimelineSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TripTimelineSettingsComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/scada/scada-symbol-object-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/scada/scada-symbol-object-settings.component.ts
index 80d31cf678..90616286f5 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/scada/scada-symbol-object-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/scada/scada-symbol-object-settings.component.ts
@@ -56,21 +56,22 @@ import { map } from 'rxjs/operators';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-scada-symbol-object-settings',
- templateUrl: './scada-symbol-object-settings.component.html',
- styleUrls: ['./scada-symbol-object-settings.component.scss', './../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ScadaSymbolObjectSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => ScadaSymbolObjectSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-scada-symbol-object-settings',
+ templateUrl: './scada-symbol-object-settings.component.html',
+ styleUrls: ['./scada-symbol-object-settings.component.scss', './../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ScadaSymbolObjectSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => ScadaSymbolObjectSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ScadaSymbolObjectSettingsComponent implements OnInit, OnChanges, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source-data-key.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source-data-key.component.ts
index 2bc5f55597..cabeb765c8 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source-data-key.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source-data-key.component.ts
@@ -39,16 +39,17 @@ import {
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-value-source-data-key',
- templateUrl: './value-source-data-key.component.html',
- styleUrls: ['value-source-data-key.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ValueSourceDataKeyComponent),
- multi: true
- }
- ]
+ selector: 'tb-value-source-data-key',
+ templateUrl: './value-source-data-key.component.html',
+ styleUrls: ['value-source-data-key.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ValueSourceDataKeyComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ValueSourceDataKeyComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source.component.ts
index e006e54208..2b91efa474 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/value-source.component.ts
@@ -37,16 +37,17 @@ export interface ValueSourceProperty {
}
@Component({
- selector: 'tb-value-source',
- templateUrl: './value-source.component.html',
- styleUrls: ['./../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ValueSourceComponent),
- multi: true
- }
- ]
+ selector: 'tb-value-source',
+ templateUrl: './value-source.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ValueSourceComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ValueSourceComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget-font.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget-font.component.ts
index 980cfe5780..79633ac7f2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget-font.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget-font.component.ts
@@ -32,16 +32,17 @@ export interface WidgetFont {
}
@Component({
- selector: 'tb-widget-font',
- templateUrl: './widget-font.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => WidgetFontComponent),
- multi: true
- }
- ]
+ selector: 'tb-widget-font',
+ templateUrl: './widget-font.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => WidgetFontComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class WidgetFontComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget/widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget/widget-settings.component.ts
index 7b07fe47e0..d779a634ac 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget/widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/common/widget/widget-settings.component.ts
@@ -47,19 +47,20 @@ import { WidgetConfigCallbacks } from '@home/components/widget/config/widget-con
import { FormProperty } from '@shared/models/dynamic-form.models';
@Component({
- selector: 'tb-widget-settings',
- templateUrl: './widget-settings.component.html',
- styleUrls: ['./widget-settings.component.scss'],
- providers: [{
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => WidgetSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => WidgetSettingsComponent),
- multi: true
- }]
+ selector: 'tb-widget-settings',
+ templateUrl: './widget-settings.component.html',
+ styleUrls: ['./widget-settings.component.scss'],
+ providers: [{
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => WidgetSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => WidgetSettingsComponent),
+ multi: true
+ }],
+ standalone: false
})
export class WidgetSettingsComponent implements ControlValueAccessor, OnDestroy, OnChanges, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/device-key-autocomplete.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/device-key-autocomplete.component.ts
index 52110ad50a..f02de5fa8d 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/device-key-autocomplete.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/device-key-autocomplete.component.ts
@@ -49,16 +49,17 @@ import { coerceBoolean } from '@shared/decorators/coercion';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-device-key-autocomplete',
- templateUrl: './device-key-autocomplete.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => DeviceKeyAutocompleteComponent),
- multi: true
- }
- ]
+ selector: 'tb-device-key-autocomplete',
+ templateUrl: './device-key-autocomplete.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => DeviceKeyAutocompleteComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class DeviceKeyAutocompleteComponent extends PageComponent implements OnInit, ControlValueAccessor, OnChanges {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/knob-control-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/knob-control-widget-settings.component.ts
index 481097cf94..9c115025d7 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/knob-control-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/knob-control-widget-settings.component.ts
@@ -24,9 +24,10 @@ import { ValueType } from '@shared/models/constants';
import { deepClone } from '@core/utils';
@Component({
- selector: 'tb-knob-control-widget-settings',
- templateUrl: './knob-control-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-knob-control-widget-settings',
+ templateUrl: './knob-control-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class KnobControlWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/led-indicator-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/led-indicator-widget-settings.component.ts
index 45cfbcf7ec..faaa56db65 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/led-indicator-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/led-indicator-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { WidgetService } from '@core/http/widget.service';
import { DataKeyType } from '@shared/models/telemetry/telemetry.models';
@Component({
- selector: 'tb-led-indicator-widget-settings',
- templateUrl: './led-indicator-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-led-indicator-widget-settings',
+ templateUrl: './led-indicator-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class LedIndicatorWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/persistent-table-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/persistent-table-widget-settings.component.ts
index d89e46e7b1..170947af25 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/persistent-table-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/persistent-table-widget-settings.component.ts
@@ -35,9 +35,10 @@ interface DisplayColumn {
}
@Component({
- selector: 'tb-persistent-table-widget-settings',
- templateUrl: './persistent-table-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-persistent-table-widget-settings',
+ templateUrl: './persistent-table-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class PersistentTableWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/round-switch-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/round-switch-widget-settings.component.ts
index 6f008e5a82..8c443e1462 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/round-switch-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/round-switch-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { switchRpcDefaultSettings } from '@home/components/widget/lib/settings/c
import { deepClone } from '@core/utils';
@Component({
- selector: 'tb-round-switch-widget-settings',
- templateUrl: './round-switch-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-round-switch-widget-settings',
+ templateUrl: './round-switch-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class RoundSwitchWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-button-style.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-button-style.component.ts
index 6edd8f191b..730bf1a0b5 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-button-style.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-button-style.component.ts
@@ -29,16 +29,17 @@ export interface RpcButtonStyle {
}
@Component({
- selector: 'tb-rpc-button-style',
- templateUrl: './rpc-button-style.component.html',
- styleUrls: ['./../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => RpcButtonStyleComponent),
- multi: true
- }
- ]
+ selector: 'tb-rpc-button-style',
+ templateUrl: './rpc-button-style.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => RpcButtonStyleComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class RpcButtonStyleComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-shell-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-shell-widget-settings.component.ts
index 157689a4ad..141ac5a6de 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-shell-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-shell-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-rpc-shell-widget-settings',
- templateUrl: './rpc-shell-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-rpc-shell-widget-settings',
+ templateUrl: './rpc-shell-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class RpcShellWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-terminal-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-terminal-widget-settings.component.ts
index 77e60522fe..31a5a0d81b 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-terminal-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/rpc-terminal-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-rpc-terminal-widget-settings',
- templateUrl: './rpc-terminal-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-rpc-terminal-widget-settings',
+ templateUrl: './rpc-terminal-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class RpcTerminalWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/send-rpc-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/send-rpc-widget-settings.component.ts
index b8af3eaf0d..4319b823c2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/send-rpc-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/send-rpc-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { ContentType } from '@shared/models/constants';
@Component({
- selector: 'tb-send-rpc-widget-settings',
- templateUrl: './send-rpc-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-send-rpc-widget-settings',
+ templateUrl: './send-rpc-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SendRpcWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/single-switch-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/single-switch-widget-settings.component.ts
index d841317283..73124033e5 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/single-switch-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/single-switch-widget-settings.component.ts
@@ -28,9 +28,10 @@ import {
import { ValueType } from '@shared/models/constants';
@Component({
- selector: 'tb-single-switch-widget-settings',
- templateUrl: './single-switch-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-single-switch-widget-settings',
+ templateUrl: './single-switch-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SingleSwitchWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slide-toggle-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slide-toggle-widget-settings.component.ts
index 5090e8c94f..d8d95bdddc 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slide-toggle-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slide-toggle-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { switchRpcDefaultSettings } from '@home/components/widget/lib/settings/c
import { deepClone } from '@core/utils';
@Component({
- selector: 'tb-slide-toggle-widget-settings',
- templateUrl: './slide-toggle-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-slide-toggle-widget-settings',
+ templateUrl: './slide-toggle-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SlideToggleWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slider-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slider-widget-settings.component.ts
index 53a9d483a7..f3899d7c66 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slider-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/slider-widget-settings.component.ts
@@ -31,9 +31,10 @@ import { formatValue } from '@core/utils';
import { getSourceTbUnitSymbol } from '@shared/models/unit.models';
@Component({
- selector: 'tb-slider-widget-settings',
- templateUrl: './slider-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-slider-widget-settings',
+ templateUrl: './slider-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SliderWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-control-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-control-widget-settings.component.ts
index d51c9f8d8e..c9ea433d93 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-control-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-control-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { switchRpcDefaultSettings } from '@home/components/widget/lib/settings/c
import { deepClone } from '@core/utils';
@Component({
- selector: 'tb-switch-control-widget-settings',
- templateUrl: './switch-control-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-switch-control-widget-settings',
+ templateUrl: './switch-control-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SwitchControlWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-rpc-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-rpc-settings.component.ts
index e58006d1cf..29f436c61d 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-rpc-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/switch-rpc-settings.component.ts
@@ -65,21 +65,22 @@ export const switchRpcDefaultSettings = (): SwitchRpcSettings => ({
});
@Component({
- selector: 'tb-switch-rpc-settings',
- templateUrl: './switch-rpc-settings.component.html',
- styleUrls: ['./../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => SwitchRpcSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => SwitchRpcSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-switch-rpc-settings',
+ templateUrl: './switch-rpc-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => SwitchRpcSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => SwitchRpcSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class SwitchRpcSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/update-device-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/update-device-attribute-widget-settings.component.ts
index 765890a101..a76016b1e7 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/update-device-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/update-device-attribute-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { ContentType } from '@shared/models/constants';
@Component({
- selector: 'tb-update-device-attribute-widget-settings',
- templateUrl: './update-device-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-device-attribute-widget-settings',
+ templateUrl: './update-device-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateDeviceAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/value-stepper-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/value-stepper-widget-settings.component.ts
index 72377dddbc..ac3921f3ab 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/value-stepper-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/control/value-stepper-widget-settings.component.ts
@@ -33,9 +33,10 @@ import { getSourceTbUnitSymbol } from '@shared/models/unit.models';
type ButtonAppearanceType = 'left' | 'right';
@Component({
- selector: 'tb-value-stepper-widget-settings',
- templateUrl: './value-stepper-widget-settings.component.html',
- styleUrls: ['../widget-settings.scss']
+ selector: 'tb-value-stepper-widget-settings',
+ templateUrl: './value-stepper-widget-settings.component.html',
+ styleUrls: ['../widget-settings.scss'],
+ standalone: false
})
export class ValueStepperWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/date/date-range-navigator-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/date/date-range-navigator-widget-settings.component.ts
index ece9e5f9dc..183009aef7 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/date/date-range-navigator-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/date/date-range-navigator-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-date-range-navigator-widget-settings',
- templateUrl: './date-range-navigator-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-date-range-navigator-widget-settings',
+ templateUrl: './date-range-navigator-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class DateRangeNavigatorWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-hierarchy-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-hierarchy-widget-settings.component.ts
index a990e234bb..3acf41af24 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-hierarchy-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-hierarchy-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-entities-hierarchy-widget-settings',
- templateUrl: './entities-hierarchy-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-entities-hierarchy-widget-settings',
+ templateUrl: './entities-hierarchy-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class EntitiesHierarchyWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-key-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-key-settings.component.ts
index 22483166f0..c1c4a5eab3 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-key-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-key-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-entities-table-key-settings',
- templateUrl: './entities-table-key-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-entities-table-key-settings',
+ templateUrl: './entities-table-key-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class EntitiesTableKeySettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-widget-settings.component.ts
index e4238a13d2..68a560a956 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entities-table-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { buildPageStepSizeValues } from '@home/components/widget/lib/table-widget.models';
@Component({
- selector: 'tb-entities-table-widget-settings',
- templateUrl: './entities-table-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-entities-table-widget-settings',
+ templateUrl: './entities-table-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class EntitiesTableWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entity-count-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entity-count-widget-settings.component.ts
index e8bc5f9bad..8307aaff1d 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entity-count-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/entity/entity-count-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { countDefaultSettings } from '@home/components/widget/lib/count/count-widget.models';
@Component({
- selector: 'tb-entity-count-widget-settings',
- templateUrl: './entity-count-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-entity-count-widget-settings',
+ templateUrl: './entity-count-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class EntityCountWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-single-device-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-single-device-widget-settings.component.ts
index 60035457d1..9b91652207 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-single-device-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-single-device-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-gateway-config-single-device-widget-settings',
- templateUrl: './gateway-config-single-device-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-gateway-config-single-device-widget-settings',
+ templateUrl: './gateway-config-single-device-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class GatewayConfigSingleDeviceWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-widget-settings.component.ts
index d2d921db68..0eef25e44d 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-config-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-gateway-config-widget-settings',
- templateUrl: './gateway-config-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-gateway-config-widget-settings',
+ templateUrl: './gateway-config-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class GatewayConfigWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-events-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-events-widget-settings.component.ts
index ef7e8c7574..a51c58a4c9 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-events-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-events-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { MatChipInputEvent } from '@angular/material/chips';
import { COMMA, ENTER, SEMICOLON } from '@angular/cdk/keycodes';
@Component({
- selector: 'tb-gateway-events-widget-settings',
- templateUrl: './gateway-events-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-gateway-events-widget-settings',
+ templateUrl: './gateway-events-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class GatewayEventsWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-logs-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-logs-settings.component.ts
index 9af2f702da..95d7b437da 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-logs-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-logs-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-gateway-logs-settings',
- templateUrl: './gateway-logs-settings.component.html',
- styleUrls: ['../widget-settings.scss']
+ selector: 'tb-gateway-logs-settings',
+ templateUrl: './gateway-logs-settings.component.html',
+ styleUrls: ['../widget-settings.scss'],
+ standalone: false
})
export class GatewayLogsSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-service-rpc-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-service-rpc-settings.component.ts
index 720b2538a2..9e30608b3e 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-service-rpc-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gateway/gateway-service-rpc-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-gateway-service-rpc-settings',
- templateUrl: './gateway-service-rpc-settings.component.html',
- styleUrls: ['../widget-settings.scss']
+ selector: 'tb-gateway-service-rpc-settings',
+ templateUrl: './gateway-service-rpc-settings.component.html',
+ styleUrls: ['../widget-settings.scss'],
+ standalone: false
})
export class GatewayServiceRPCSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-compass-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-compass-widget-settings.component.ts
index 625f205507..40331412b6 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-compass-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-compass-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { Component } from '@angular/core';
import { COMMA, ENTER, SEMICOLON } from '@angular/cdk/keycodes';
@Component({
- selector: 'tb-analogue-compass-widget-settings',
- templateUrl: './analogue-compass-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-analogue-compass-widget-settings',
+ templateUrl: './analogue-compass-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class AnalogueCompassWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-linear-gauge-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-linear-gauge-widget-settings.component.ts
index ef7589de8c..58741c3350 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-linear-gauge-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-linear-gauge-widget-settings.component.ts
@@ -24,9 +24,10 @@ import {
} from '@home/components/widget/lib/settings/gauge/analogue-gauge-widget-settings.component';
@Component({
- selector: 'tb-analogue-linear-gauge-widget-settings',
- templateUrl: './analogue-gauge-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-analogue-linear-gauge-widget-settings',
+ templateUrl: './analogue-gauge-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class AnalogueLinearGaugeWidgetSettingsComponent extends AnalogueGaugeWidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-radial-gauge-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-radial-gauge-widget-settings.component.ts
index 891e248d67..6b60cf8ac0 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-radial-gauge-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/analogue-radial-gauge-widget-settings.component.ts
@@ -24,9 +24,10 @@ import {
} from '@home/components/widget/lib/settings/gauge/analogue-gauge-widget-settings.component';
@Component({
- selector: 'tb-analogue-radial-gauge-widget-settings',
- templateUrl: './analogue-gauge-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-analogue-radial-gauge-widget-settings',
+ templateUrl: './analogue-gauge-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class AnalogueRadialGaugeWidgetSettingsComponent extends AnalogueGaugeWidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/digital-gauge-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/digital-gauge-widget-settings.component.ts
index e55bbeef66..ff22abd28a 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/digital-gauge-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/digital-gauge-widget-settings.component.ts
@@ -49,9 +49,10 @@ import {
import { getSourceTbUnitSymbol } from '@shared/models/unit.models';
@Component({
- selector: 'tb-digital-gauge-widget-settings',
- templateUrl: './digital-gauge-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-digital-gauge-widget-settings',
+ templateUrl: './digital-gauge-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class DigitalGaugeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/tick-value.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/tick-value.component.ts
index dbc093a11f..82e8aacd1f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/tick-value.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gauge/tick-value.component.ts
@@ -27,16 +27,17 @@ import { Datasource } from '@shared/models/widget.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-tick-value',
- templateUrl: './tick-value.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TickValueComponent),
- multi: true
- }
- ]
+ selector: 'tb-tick-value',
+ templateUrl: './tick-value.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TickValueComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TickValueComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-control-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-control-widget-settings.component.ts
index a65f85e500..059c027310 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-control-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-control-widget-settings.component.ts
@@ -23,9 +23,10 @@ import { GpioItem, gpioItemValidator } from '@home/components/widget/lib/setting
import { ContentType } from '@shared/models/constants';
@Component({
- selector: 'tb-gpio-control-widget-settings',
- templateUrl: './gpio-control-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-gpio-control-widget-settings',
+ templateUrl: './gpio-control-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class GpioControlWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-item.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-item.component.ts
index cae8737c3b..229fc61c6f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-item.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-item.component.ts
@@ -55,16 +55,17 @@ export const gpioItemValidator = (hasColor: boolean): ValidatorFn => (control: A
};
@Component({
- selector: 'tb-gpio-item',
- templateUrl: './gpio-item.component.html',
- styleUrls: ['./gpio-item.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => GpioItemComponent),
- multi: true
- }
- ]
+ selector: 'tb-gpio-item',
+ templateUrl: './gpio-item.component.html',
+ styleUrls: ['./gpio-item.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => GpioItemComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class GpioItemComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-panel-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-panel-widget-settings.component.ts
index 0a2c20f0bf..dff3f9c3cb 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-panel-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/gpio/gpio-panel-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { GpioItem, gpioItemValidator } from '@home/components/widget/lib/settings/gpio/gpio-item.component';
@Component({
- selector: 'tb-gpio-panel-widget-settings',
- templateUrl: './gpio-panel-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-gpio-panel-widget-settings',
+ templateUrl: './gpio-panel-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class GpioPanelWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/doc-links-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/doc-links-widget-settings.component.ts
index 7fdb10dc99..b57de685f6 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/doc-links-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/doc-links-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-doc-links-widget-settings',
- templateUrl: './doc-links-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-doc-links-widget-settings',
+ templateUrl: './doc-links-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class DocLinksWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/quick-links-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/quick-links-widget-settings.component.ts
index 7e90c21767..48806e14ae 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/quick-links-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/home-page/quick-links-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-quick-links-widget-settings',
- templateUrl: './quick-links-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-quick-links-widget-settings',
+ templateUrl: './quick-links-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class QuickLinksWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/battery-level-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/battery-level-widget-settings.component.ts
index 41b28a3b4c..abd51b35d5 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/battery-level-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/battery-level-widget-settings.component.ts
@@ -30,9 +30,10 @@ import {
import { getSourceTbUnitSymbol } from '@shared/models/unit.models';
@Component({
- selector: 'tb-battery-level-widget-settings',
- templateUrl: './battery-level-widget-settings.component.html',
- styleUrls: []
+ selector: 'tb-battery-level-widget-settings',
+ templateUrl: './battery-level-widget-settings.component.html',
+ styleUrls: [],
+ standalone: false
})
export class BatteryLevelWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/liquid-level-card-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/liquid-level-card-widget-settings.component.ts
index a0d0afc14d..f3086291d6 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/liquid-level-card-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/liquid-level-card-widget-settings.component.ts
@@ -56,9 +56,10 @@ import { EntityService } from '@core/http/entity.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-liquid-level-card-widget-settings',
- templateUrl: './liquid-level-card-widget-settings.component.html',
- styleUrls: []
+ selector: 'tb-liquid-level-card-widget-settings',
+ templateUrl: './liquid-level-card-widget-settings.component.html',
+ styleUrls: [],
+ standalone: false
})
export class LiquidLevelCardWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/signal-strength-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/signal-strength-widget-settings.component.ts
index a676a8279b..6ce541273a 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/signal-strength-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/signal-strength-widget-settings.component.ts
@@ -30,9 +30,10 @@ import { DateFormatProcessor, DateFormatSettings } from '@shared/models/widget-s
import { getSourceTbUnitSymbol } from '@shared/models/unit.models';
@Component({
- selector: 'tb-signal-strength-widget-settings',
- templateUrl: './signal-strength-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss'],
+ selector: 'tb-signal-strength-widget-settings',
+ templateUrl: './signal-strength-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class SignalStrengthWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/status-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/status-widget-settings.component.ts
index b2327a94fa..942d2cf3c8 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/status-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/indicator/status-widget-settings.component.ts
@@ -28,9 +28,10 @@ import {
import { ValueType } from '@shared/models/constants';
@Component({
- selector: 'tb-status-widget-settings',
- templateUrl: './status-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss'],
+ selector: 'tb-status-widget-settings',
+ templateUrl: './status-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class StatusWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/datakey-select-option.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/datakey-select-option.component.ts
index 63689be5c5..1734b25c46 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/datakey-select-option.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/datakey-select-option.component.ts
@@ -45,16 +45,17 @@ export const dataKeySelectOptionValidator = (control: AbstractControl) => {
};
@Component({
- selector: 'tb-datakey-select-option',
- templateUrl: './datakey-select-option.component.html',
- styleUrls: ['./datakey-select-option.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => DataKeySelectOptionComponent),
- multi: true
- }
- ]
+ selector: 'tb-datakey-select-option',
+ templateUrl: './datakey-select-option.component.html',
+ styleUrls: ['./datakey-select-option.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => DataKeySelectOptionComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class DataKeySelectOptionComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/device-claiming-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/device-claiming-widget-settings.component.ts
index a74152df79..00993a3b27 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/device-claiming-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/device-claiming-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-device-claiming-widget-settings',
- templateUrl: './device-claiming-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-device-claiming-widget-settings',
+ templateUrl: './device-claiming-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class DeviceClaimingWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/photo-camera-input-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/photo-camera-input-widget-settings.component.ts
index 097d09ad9b..60245faff4 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/photo-camera-input-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/photo-camera-input-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { AppState } from '@core/core.state';
import { Store } from '@ngrx/store';
@Component({
- selector: 'tb-photo-camera-input-widget-settings',
- templateUrl: './photo-camera-input-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-photo-camera-input-widget-settings',
+ templateUrl: './photo-camera-input-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class PhotoCameraInputWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-attribute-general-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-attribute-general-settings.component.ts
index acfc9a8b59..f6d89abfd0 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-attribute-general-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-attribute-general-settings.component.ts
@@ -55,21 +55,22 @@ export function updateAttributeGeneralDefaultSettings(hasLabelValue = true): Upd
}
@Component({
- selector: 'tb-update-attribute-general-settings',
- templateUrl: './update-attribute-general-settings.component.html',
- styleUrls: ['./../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => UpdateAttributeGeneralSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => UpdateAttributeGeneralSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-update-attribute-general-settings',
+ templateUrl: './update-attribute-general-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => UpdateAttributeGeneralSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => UpdateAttributeGeneralSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class UpdateAttributeGeneralSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-boolean-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-boolean-attribute-widget-settings.component.ts
index 3b4b6e682b..b1c9065214 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-boolean-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-boolean-attribute-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-update-boolean-attribute-widget-settings',
- templateUrl: './update-boolean-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-boolean-attribute-widget-settings',
+ templateUrl: './update-boolean-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateBooleanAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-date-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-date-attribute-widget-settings.component.ts
index 0e18de2ee0..895e0affc0 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-date-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-date-attribute-widget-settings.component.ts
@@ -25,9 +25,10 @@ import {
} from '@home/components/widget/lib/settings/input/update-attribute-general-settings.component';
@Component({
- selector: 'tb-update-date-attribute-widget-settings',
- templateUrl: './update-date-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-date-attribute-widget-settings',
+ templateUrl: './update-date-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateDateAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-double-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-double-attribute-widget-settings.component.ts
index 305db7e982..1323f552aa 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-double-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-double-attribute-widget-settings.component.ts
@@ -25,9 +25,10 @@ import {
} from '@home/components/widget/lib/settings/input/update-attribute-general-settings.component';
@Component({
- selector: 'tb-update-double-attribute-widget-settings',
- templateUrl: './update-double-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-double-attribute-widget-settings',
+ templateUrl: './update-double-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateDoubleAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-image-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-image-attribute-widget-settings.component.ts
index 0bb0e0af1d..53f65e5f19 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-image-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-image-attribute-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-update-image-attribute-widget-settings',
- templateUrl: './update-image-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-image-attribute-widget-settings',
+ templateUrl: './update-image-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateImageAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-integer-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-integer-attribute-widget-settings.component.ts
index 997b9d1805..3d6ad3fc8f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-integer-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-integer-attribute-widget-settings.component.ts
@@ -25,9 +25,10 @@ import {
} from '@home/components/widget/lib/settings/input/update-attribute-general-settings.component';
@Component({
- selector: 'tb-update-integer-attribute-widget-settings',
- templateUrl: './update-integer-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-integer-attribute-widget-settings',
+ templateUrl: './update-integer-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateIntegerAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-json-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-json-attribute-widget-settings.component.ts
index 70d4c42350..3236b9a4b0 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-json-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-json-attribute-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-update-json-attribute-widget-settings',
- templateUrl: './update-json-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-json-attribute-widget-settings',
+ templateUrl: './update-json-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateJsonAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-location-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-location-attribute-widget-settings.component.ts
index 020bb13358..043b5e4373 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-location-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-location-attribute-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-update-location-attribute-widget-settings',
- templateUrl: './update-location-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-location-attribute-widget-settings',
+ templateUrl: './update-location-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateLocationAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-key-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-key-settings.component.ts
index d29decfc04..c007c51ef8 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-key-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-key-settings.component.ts
@@ -30,9 +30,10 @@ import {
} from '@home/components/widget/lib/multiple-input-widget.component';
@Component({
- selector: 'tb-update-multiple-attributes-key-settings',
- templateUrl: './update-multiple-attributes-key-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-multiple-attributes-key-settings',
+ templateUrl: './update-multiple-attributes-key-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateMultipleAttributesKeySettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-widget-settings.component.ts
index aa31db2b0b..0a92babdfb 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-multiple-attributes-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-update-multiple-attributes-widget-settings',
- templateUrl: './update-multiple-attributes-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-multiple-attributes-widget-settings',
+ templateUrl: './update-multiple-attributes-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateMultipleAttributesWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-string-attribute-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-string-attribute-widget-settings.component.ts
index ca134d8c73..0eb561a5f3 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-string-attribute-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/input/update-string-attribute-widget-settings.component.ts
@@ -25,9 +25,10 @@ import {
} from '@home/components/widget/lib/settings/input/update-attribute-general-settings.component';
@Component({
- selector: 'tb-update-string-attribute-widget-settings',
- templateUrl: './update-string-attribute-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-update-string-attribute-widget-settings',
+ templateUrl: './update-string-attribute-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class UpdateStringAttributeWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/circle-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/circle-settings.component.ts
index 173901aa16..f229998584 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/circle-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/circle-settings.component.ts
@@ -39,21 +39,22 @@ import { Widget } from '@shared/models/widget.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-circle-settings',
- templateUrl: './circle-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => CircleSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => CircleSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-circle-settings',
+ templateUrl: './circle-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => CircleSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => CircleSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class CircleSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/common-map-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/common-map-settings.component.ts
index 8c49152772..8702cf28f3 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/common-map-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/common-map-settings.component.ts
@@ -34,21 +34,22 @@ import { Widget } from '@shared/models/widget.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-common-map-settings',
- templateUrl: './common-map-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => CommonMapSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => CommonMapSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-common-map-settings',
+ templateUrl: './common-map-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => CommonMapSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => CommonMapSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class CommonMapSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator, OnChanges {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/datasources-key-autocomplete.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/datasources-key-autocomplete.component.ts
index c0c1ef98d4..7f085e920f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/datasources-key-autocomplete.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/datasources-key-autocomplete.component.ts
@@ -28,16 +28,17 @@ import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-datasources-key-autocomplete',
- templateUrl: './datasources-key-autocomplete.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => DatasourcesKeyAutocompleteComponent),
- multi: true
- }
- ]
+ selector: 'tb-datasources-key-autocomplete',
+ templateUrl: './datasources-key-autocomplete.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => DatasourcesKeyAutocompleteComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class DatasourcesKeyAutocompleteComponent extends PageComponent implements OnInit, ControlValueAccessor {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/google-map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/google-map-provider-settings.component.ts
index b9d54db5a6..673f7fc573 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/google-map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/google-map-provider-settings.component.ts
@@ -37,21 +37,22 @@ import {
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-google-map-provider-settings',
- templateUrl: './google-map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => GoogleMapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => GoogleMapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-google-map-provider-settings',
+ templateUrl: './google-map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => GoogleMapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => GoogleMapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class GoogleMapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/here-map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/here-map-provider-settings.component.ts
index e201586a63..40140fb1ff 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/here-map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/here-map-provider-settings.component.ts
@@ -38,21 +38,22 @@ import { isDefinedAndNotNull } from '@core/utils';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-here-map-provider-settings',
- templateUrl: './here-map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => HereMapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => HereMapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-here-map-provider-settings',
+ templateUrl: './here-map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => HereMapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => HereMapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class HereMapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/image-map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/image-map-provider-settings.component.ts
index a5493468a0..338db7c24f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/image-map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/image-map-provider-settings.component.ts
@@ -38,21 +38,22 @@ import { EntityService } from '@core/http/entity.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-image-map-provider-settings',
- templateUrl: './image-map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ImageMapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => ImageMapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-image-map-provider-settings',
+ templateUrl: './image-map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ImageMapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => ImageMapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ImageMapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-editor-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-editor-settings.component.ts
index 398376f71a..9d127af2d8 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-editor-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-editor-settings.component.ts
@@ -33,21 +33,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-map-editor-settings',
- templateUrl: './map-editor-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MapEditorSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MapEditorSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-map-editor-settings',
+ templateUrl: './map-editor-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MapEditorSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MapEditorSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MapEditorSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-provider-settings.component.ts
index 08b2a99e31..ea3b143db2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-provider-settings.component.ts
@@ -47,21 +47,22 @@ import { IAliasController } from '@core/api/widget-api.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-map-provider-settings',
- templateUrl: './map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-map-provider-settings',
+ templateUrl: './map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-settings-legacy.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-settings-legacy.component.ts
index eb31c33075..5e98827469 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-settings-legacy.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-settings-legacy.component.ts
@@ -53,21 +53,22 @@ import { Widget } from '@shared/models/widget.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-map-settings-legacy',
- templateUrl: './map-settings-legacy.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MapSettingsLegacyComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MapSettingsLegacyComponent),
- multi: true
- }
- ]
+ selector: 'tb-map-settings-legacy',
+ templateUrl: './map-settings-legacy.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MapSettingsLegacyComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MapSettingsLegacyComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MapSettingsLegacyComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-widget-settings-legacy.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-widget-settings-legacy.component.ts
index 3262e6b1cb..4a804c8e78 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-widget-settings-legacy.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/map-widget-settings-legacy.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { defaultMapSettings } from 'src/app/modules/home/components/widget/lib/maps-legacy/map-models';
@Component({
- selector: 'tb-map-widget-settings-legacy',
- templateUrl: './map-widget-settings-legacy.component.html',
- styleUrls: ['./../../widget-settings.scss']
+ selector: 'tb-map-widget-settings-legacy',
+ templateUrl: './map-widget-settings-legacy.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ standalone: false
})
export class MapWidgetSettingsLegacyComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/marker-clustering-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/marker-clustering-settings.component.ts
index c757d7805a..6615302230 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/marker-clustering-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/marker-clustering-settings.component.ts
@@ -34,21 +34,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-marker-clustering-settings',
- templateUrl: './marker-clustering-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-marker-clustering-settings',
+ templateUrl: './marker-clustering-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MarkerClusteringSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MarkerClusteringSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/markers-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/markers-settings.component.ts
index d890494f54..65421d0f53 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/markers-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/markers-settings.component.ts
@@ -36,21 +36,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-markers-settings',
- templateUrl: './markers-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => MarkersSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => MarkersSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-markers-settings',
+ templateUrl: './markers-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => MarkersSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => MarkersSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class MarkersSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator, OnChanges {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/openstreet-map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/openstreet-map-provider-settings.component.ts
index ef650fc877..6a795edd84 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/openstreet-map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/openstreet-map-provider-settings.component.ts
@@ -37,21 +37,22 @@ import {
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-openstreet-map-provider-settings',
- templateUrl: './openstreet-map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => OpenStreetMapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => OpenStreetMapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-openstreet-map-provider-settings',
+ templateUrl: './openstreet-map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => OpenStreetMapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => OpenStreetMapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class OpenStreetMapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/polygon-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/polygon-settings.component.ts
index 129d268908..9b0b6e0110 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/polygon-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/polygon-settings.component.ts
@@ -39,21 +39,22 @@ import { Widget } from '@shared/models/widget.models';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-polygon-settings',
- templateUrl: './polygon-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => PolygonSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => PolygonSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-polygon-settings',
+ templateUrl: './polygon-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => PolygonSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => PolygonSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class PolygonSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-settings.component.ts
index 4a3cd9a3f8..cfba6811f2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-settings.component.ts
@@ -33,21 +33,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-route-map-settings',
- templateUrl: './route-map-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => RouteMapSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => RouteMapSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-route-map-settings',
+ templateUrl: './route-map-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => RouteMapSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => RouteMapSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class RouteMapSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-widget-settings.component.ts
index 23bf193892..67e88aa7b5 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/route-map-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { defaultMapSettings } from 'src/app/modules/home/components/widget/lib/maps-legacy/map-models';
@Component({
- selector: 'tb-route-map-widget-settings',
- templateUrl: './route-map-widget-settings.component.html',
- styleUrls: ['./../../widget-settings.scss']
+ selector: 'tb-route-map-widget-settings',
+ templateUrl: './route-map-widget-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ standalone: false
})
export class RouteMapWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/tencent-map-provider-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/tencent-map-provider-settings.component.ts
index d3f81a7ff3..4e6e8284d1 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/tencent-map-provider-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/tencent-map-provider-settings.component.ts
@@ -37,21 +37,22 @@ import {
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-tencent-map-provider-settings',
- templateUrl: './tencent-map-provider-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TencentMapProviderSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TencentMapProviderSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-tencent-map-provider-settings',
+ templateUrl: './tencent-map-provider-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TencentMapProviderSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TencentMapProviderSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TencentMapProviderSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-common-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-common-settings.component.ts
index 074cba4a5c..861188a6b9 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-common-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-common-settings.component.ts
@@ -35,21 +35,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-trip-animation-common-settings',
- templateUrl: './trip-animation-common-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TripAnimationCommonSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TripAnimationCommonSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-trip-animation-common-settings',
+ templateUrl: './trip-animation-common-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TripAnimationCommonSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TripAnimationCommonSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TripAnimationCommonSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-marker-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-marker-settings.component.ts
index f7ecd02f03..8f31d24f2f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-marker-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-marker-settings.component.ts
@@ -34,21 +34,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-trip-animation-marker-settings',
- templateUrl: './trip-animation-marker-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TripAnimationMarkerSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TripAnimationMarkerSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-trip-animation-marker-settings',
+ templateUrl: './trip-animation-marker-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TripAnimationMarkerSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TripAnimationMarkerSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TripAnimationMarkerSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-path-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-path-settings.component.ts
index 16c75cee56..9674ac2820 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-path-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-path-settings.component.ts
@@ -37,21 +37,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-trip-animation-path-settings',
- templateUrl: './trip-animation-path-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TripAnimationPathSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TripAnimationPathSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-trip-animation-path-settings',
+ templateUrl: './trip-animation-path-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TripAnimationPathSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TripAnimationPathSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TripAnimationPathSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-point-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-point-settings.component.ts
index 5e372051ad..8aae459e18 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-point-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-point-settings.component.ts
@@ -38,21 +38,22 @@ import { WidgetService } from '@core/http/widget.service';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@Component({
- selector: 'tb-trip-animation-point-settings',
- templateUrl: './trip-animation-point-settings.component.html',
- styleUrls: ['./../../widget-settings.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TripAnimationPointSettingsComponent),
- multi: true
- },
- {
- provide: NG_VALIDATORS,
- useExisting: forwardRef(() => TripAnimationPointSettingsComponent),
- multi: true
- }
- ]
+ selector: 'tb-trip-animation-point-settings',
+ templateUrl: './trip-animation-point-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TripAnimationPointSettingsComponent),
+ multi: true
+ },
+ {
+ provide: NG_VALIDATORS,
+ useExisting: forwardRef(() => TripAnimationPointSettingsComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TripAnimationPointSettingsComponent extends PageComponent implements OnInit, ControlValueAccessor, Validator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-widget-settings.component.ts
index 440fd5df2c..5d4e28d7bb 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/legacy/trip-animation-widget-settings.component.ts
@@ -39,9 +39,10 @@ import {
import { extractType } from '@core/utils';
@Component({
- selector: 'tb-trip-animation-widget-settings',
- templateUrl: './trip-animation-widget-settings.component.html',
- styleUrls: ['./../../widget-settings.scss']
+ selector: 'tb-trip-animation-widget-settings',
+ templateUrl: './trip-animation-widget-settings.component.html',
+ styleUrls: ['./../../widget-settings.scss'],
+ standalone: false
})
export class TripAnimationWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/map-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/map-widget-settings.component.ts
index 296086b22f..3963f144fa 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/map-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/map/map-widget-settings.component.ts
@@ -24,9 +24,10 @@ import { mapWidgetDefaultSettings } from '@home/components/widget/lib/maps/map-w
import { WidgetConfigComponentData } from '@home/models/widget-component.models';
@Component({
- selector: 'tb-map-widget-settings',
- templateUrl: './map-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-map-widget-settings',
+ templateUrl: './map-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class MapWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-card-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-card-widget-settings.component.ts
index 08ee515099..b3f6c2838f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-card-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-card-widget-settings.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
@Component({
- selector: 'tb-navigation-card-widget-settings',
- templateUrl: './navigation-card-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-navigation-card-widget-settings',
+ templateUrl: './navigation-card-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class NavigationCardWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-cards-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-cards-widget-settings.component.ts
index 3ffe4d6c22..fc17f555d4 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-cards-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/navigation/navigation-cards-widget-settings.component.ts
@@ -26,9 +26,10 @@ import { Observable, of, Subject } from 'rxjs';
import { map, mergeMap, share, startWith } from 'rxjs/operators';
@Component({
- selector: 'tb-navigation-cards-widget-settings',
- templateUrl: './navigation-cards-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-navigation-cards-widget-settings',
+ templateUrl: './navigation-cards-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class NavigationCardsWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/scada/scada-symbol-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/scada/scada-symbol-widget-settings.component.ts
index 361a305421..cc04e67f2f 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/scada/scada-symbol-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/scada/scada-symbol-widget-settings.component.ts
@@ -22,9 +22,10 @@ import { AppState } from '@core/core.state';
import { scadaSymbolWidgetDefaultSettings } from '@home/components/widget/lib/scada/scada-symbol-widget.models';
@Component({
- selector: 'tb-scada-symbol-widget-settings',
- templateUrl: './scada-symbol-widget-settings.component.html',
- styleUrls: ['./../widget-settings.scss']
+ selector: 'tb-scada-symbol-widget-settings',
+ templateUrl: './scada-symbol-widget-settings.component.html',
+ styleUrls: ['./../widget-settings.scss'],
+ standalone: false
})
export class ScadaSymbolWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/settings/weather/wind-speed-direction-widget-settings.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/settings/weather/wind-speed-direction-widget-settings.component.ts
index 96ea317109..102dc7ade6 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/settings/weather/wind-speed-direction-widget-settings.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/settings/weather/wind-speed-direction-widget-settings.component.ts
@@ -31,9 +31,10 @@ import { getDataKey } from '@shared/models/widget-settings.models';
import { getSourceTbUnitSymbol, TbUnit } from '@shared/models/unit.models';
@Component({
- selector: 'tb-wind-speed-direction-widget-settings',
- templateUrl: './wind-speed-direction-widget-settings.component.html',
- styleUrls: []
+ selector: 'tb-wind-speed-direction-widget-settings',
+ templateUrl: './wind-speed-direction-widget-settings.component.html',
+ styleUrls: [],
+ standalone: false
})
export class WindSpeedDirectionWidgetSettingsComponent extends WidgetSettingsComponent {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts b/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts
index 0826b0a5e7..3a3c4b5150 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts
@@ -454,23 +454,23 @@ export function constructTableCssString(widgetConfig: WidgetConfig): string {
const cssString = ` {
--mat-toolbar-container-text-color: ${mdDark};
- --mat-tab-header-active-label-text-color: ${mdDark};
- --mat-tab-header-inactive-label-text-color: ${mdDark};
- --mat-tab-header-pagination-icon-color: ${mdDark};
- --mat-tab-header-pagination-disabled-icon-color: ${mdDarkDisabled2};
+ --mat-tab-active-label-text-color: ${mdDark};
+ --mat-tab-inactive-label-text-color: ${mdDark};
+ --mat-tab-pagination-icon-color: ${mdDark};
+ --mat-tab-pagination-disabled-icon-color: ${mdDarkDisabled2};
--mat-table-header-headline-color: ${mdDarkSecondary};
--mat-table-row-item-label-text-color: ${mdDark};
--mat-icon-color: ${mdDarkSecondary};
- --mdc-icon-button-disabled-icon-color: ${mdDarkDisabled};
+ --mat-icon-button-disabled-icon-color: ${mdDarkDisabled};
--mat-divider-color: ${mdDarkDivider};
--mat-paginator-container-text-color: ${mdDarkSecondary};
- --mdc-icon-button-icon-color: ${mdDarkSecondary};
+ --mat-icon-button-icon-color: ${mdDarkSecondary};
--mat-paginator-enabled-icon-color: ${mdDarkSecondary};
--mat-paginator-disabled-icon-color: ${mdDarkDisabled};
--mat-select-enabled-trigger-text-color: ${mdDarkSecondary};
--mat-select-disabled-trigger-text-color: ${mdDarkDisabled};
--mat-table-row-item-outline-color: ${mdDarkDivider};
- --mdc-checkbox-unselected-focus-icon-color: ${mdDarkSecondary};
+ --mat-checkbox-unselected-focus-icon-color: ${mdDarkSecondary};
--tb-orig-background-color: ${origBackgroundColor};
--tb-current-entity-color: ${currentEntityColor};
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.scss b/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.scss
index c75500651e..91c6dbb317 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.scss
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/table-widget.scss
@@ -46,7 +46,7 @@
}
.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron {
- border-color: var(--mat-tab-header-pagination-disabled-icon-color);
+ border-color: var(--mat-tab-pagination-disabled-icon-color);
}
}
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts
index a8414465a4..d363b6c56e 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts
@@ -158,9 +158,10 @@ interface TimeseriesTableSource {
}
@Component({
- selector: 'tb-timeseries-table-widget',
- templateUrl: './timeseries-table-widget.component.html',
- styleUrls: ['./timeseries-table-widget.component.scss', './table-widget.scss']
+ selector: 'tb-timeseries-table-widget',
+ templateUrl: './timeseries-table-widget.component.html',
+ styleUrls: ['./timeseries-table-widget.component.scss', './table-widget.scss'],
+ standalone: false
})
export class TimeseriesTableWidgetComponent extends PageComponent implements OnInit, AfterViewInit, OnDestroy {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/trip-animation/trip-animation.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/trip-animation/trip-animation.component.ts
index b69456ee30..9a7ea52d17 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/trip-animation/trip-animation.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/trip-animation/trip-animation.component.ts
@@ -59,10 +59,11 @@ interface DataMap {
}
@Component({
- // eslint-disable-next-line @angular-eslint/component-selector
- selector: 'trip-animation',
- templateUrl: './trip-animation.component.html',
- styleUrls: ['./trip-animation.component.scss']
+ // eslint-disable-next-line @angular-eslint/component-selector
+ selector: 'trip-animation',
+ templateUrl: './trip-animation.component.html',
+ styleUrls: ['./trip-animation.component.scss'],
+ standalone: false
})
export class TripAnimationComponent implements OnInit, AfterViewInit, OnDestroy {
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/weather/wind-speed-direction-widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/weather/wind-speed-direction-widget.component.ts
index 1c3570ad0f..dbc7bf889d 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/weather/wind-speed-direction-widget.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/weather/wind-speed-direction-widget.component.ts
@@ -68,10 +68,11 @@ const ticksTextMap: {[angle: number]: string} = {
};
@Component({
- selector: 'tb-wind-speed-direction-widget',
- templateUrl: './wind-speed-direction-widget.component.html',
- styleUrls: ['./wind-speed-direction-widget.component.scss'],
- encapsulation: ViewEncapsulation.None
+ selector: 'tb-wind-speed-direction-widget',
+ templateUrl: './wind-speed-direction-widget.component.html',
+ styleUrls: ['./wind-speed-direction-widget.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class WindSpeedDirectionWidgetComponent implements OnInit, OnDestroy, AfterViewInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/widget-config.component.ts b/ui-ngx/src/app/modules/home/components/widget/widget-config.component.ts
index 49652803a6..57b579d8e4 100644
--- a/ui-ngx/src/app/modules/home/components/widget/widget-config.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/widget-config.component.ts
@@ -93,21 +93,22 @@ import { findWidgetModelDefinition } from '@shared/models/widget/widget-model.de
import Timeout = NodeJS.Timeout;
@Component({
- selector: 'tb-widget-config',
- templateUrl: './widget-config.component.html',
- styleUrls: ['./widget-config.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => WidgetConfigComponent),
- multi: true
- },
- {
- provide: NG_ASYNC_VALIDATORS,
- useExisting: forwardRef(() => WidgetConfigComponent),
- multi: true,
- }
- ]
+ selector: 'tb-widget-config',
+ templateUrl: './widget-config.component.html',
+ styleUrls: ['./widget-config.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => WidgetConfigComponent),
+ multi: true
+ },
+ {
+ provide: NG_ASYNC_VALIDATORS,
+ useExisting: forwardRef(() => WidgetConfigComponent),
+ multi: true,
+ }
+ ],
+ standalone: false
})
export class WidgetConfigComponent extends PageComponent implements OnInit, OnDestroy, ControlValueAccessor, AsyncValidator {
diff --git a/ui-ngx/src/app/modules/home/components/widget/widget-container.component.ts b/ui-ngx/src/app/modules/home/components/widget/widget-container.component.ts
index d8ff0cb1c1..3553ee3ae4 100644
--- a/ui-ngx/src/app/modules/home/components/widget/widget-container.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/widget-container.component.ts
@@ -67,11 +67,12 @@ export class WidgetComponentAction {
// @dynamic
@Component({
- selector: 'tb-widget-container',
- templateUrl: './widget-container.component.html',
- styleUrls: ['./widget-container.component.scss'],
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'tb-widget-container',
+ templateUrl: './widget-container.component.html',
+ styleUrls: ['./widget-container.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WidgetContainerComponent extends PageComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
@@ -394,7 +395,7 @@ export class WidgetContainerComponent extends PageComponent implements OnInit, O
}
@Component({
- template: `
+ template: `
`,
- styles: [],
- encapsulation: ViewEncapsulation.None
+ styles: [],
+ encapsulation: ViewEncapsulation.None,
+ standalone: false
})
export class EditWidgetActionsTooltipComponent implements AfterViewInit {
diff --git a/ui-ngx/src/app/modules/home/components/widget/widget-preview.component.ts b/ui-ngx/src/app/modules/home/components/widget/widget-preview.component.ts
index ea2770d0e5..d940696078 100644
--- a/ui-ngx/src/app/modules/home/components/widget/widget-preview.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/widget-preview.component.ts
@@ -24,9 +24,10 @@ import { deepClone } from '@core/utils';
import { Timewindow } from '@shared/models/time/time.models';
@Component({
- selector: 'tb-widget-preview',
- templateUrl: './widget-preview.component.html',
- styleUrls: ['./widget-preview.component.scss']
+ selector: 'tb-widget-preview',
+ templateUrl: './widget-preview.component.html',
+ styleUrls: ['./widget-preview.component.scss'],
+ standalone: false
})
export class WidgetPreviewComponent extends PageComponent implements OnInit, OnChanges {
diff --git a/ui-ngx/src/app/modules/home/components/widget/widget.component.ts b/ui-ngx/src/app/modules/home/components/widget/widget.component.ts
index d3ebd60b7c..443c801633 100644
--- a/ui-ngx/src/app/modules/home/components/widget/widget.component.ts
+++ b/ui-ngx/src/app/modules/home/components/widget/widget.component.ts
@@ -130,11 +130,12 @@ import { HttpClient } from '@angular/common/http';
import { addDiagnosticChain } from '@angular/compiler-cli/src/ngtsc/diagnostics';
@Component({
- selector: 'tb-widget',
- templateUrl: './widget.component.html',
- styleUrls: ['./widget.component.scss'],
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'tb-widget',
+ templateUrl: './widget.component.html',
+ styleUrls: ['./widget.component.scss'],
+ encapsulation: ViewEncapsulation.None,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WidgetComponent extends PageComponent implements OnInit, OnChanges, OnDestroy {
@@ -377,23 +378,23 @@ export class WidgetComponent extends PageComponent implements OnInit, OnChanges,
const buttonStyle = {};
switch (buttonType) {
case WidgetHeaderActionButtonType.basic:
- buttonStyle['--mdc-text-button-label-text-color'] = buttonColor;
+ buttonStyle['--mat-button-text-label-text-color'] = buttonColor;
break;
case WidgetHeaderActionButtonType.raised:
- buttonStyle['--mdc-protected-button-label-text-color'] = buttonColor;
- buttonStyle['--mdc-protected-button-container-color'] = backgroundColor;
+ buttonStyle['--mat-button-protected-label-text-color'] = buttonColor;
+ buttonStyle['--mat-button-protected-container-color'] = backgroundColor;
break;
case WidgetHeaderActionButtonType.stroked:
- buttonStyle['--mdc-outlined-button-label-text-color'] = buttonColor;
- buttonStyle['--mdc-outlined-button-outline-color'] = borderColor;
+ buttonStyle['--mat-button-outlined-label-text-color'] = buttonColor;
+ buttonStyle['--mat-button-outlined-outline-color'] = borderColor;
break;
case WidgetHeaderActionButtonType.flat:
- buttonStyle['--mdc-filled-button-label-text-color'] = buttonColor;
- buttonStyle['--mdc-filled-button-container-color'] = backgroundColor;
+ buttonStyle['--mat-button-filled-label-text-color'] = buttonColor;
+ buttonStyle['--mat-button-filled-container-color'] = backgroundColor;
break;
case WidgetHeaderActionButtonType.miniFab:
buttonStyle['--mat-fab-small-foreground-color'] = buttonColor;
- buttonStyle['--mdc-fab-small-container-color'] = backgroundColor;
+ buttonStyle['--mat-fab-small-container-color'] = backgroundColor;
break;
default:
buttonStyle['--mat-icon-color'] = buttonColor;
diff --git a/ui-ngx/src/app/modules/home/components/wizard/device-wizard-dialog.component.html b/ui-ngx/src/app/modules/home/components/wizard/device-wizard-dialog.component.html
index 0ad5814a81..ef80df1e9a 100644
--- a/ui-ngx/src/app/modules/home/components/wizard/device-wizard-dialog.component.html
+++ b/ui-ngx/src/app/modules/home/components/wizard/device-wizard-dialog.component.html
@@ -108,7 +108,7 @@
color="primary"
*ngIf="showNext"
[disabled]="(isLoading$ | async)"
- (click)="nextStep()">{{ 'action.next-with-label' | translate:{label: (getFormLabel(this.selectedIndex+1) | translate)} }}
+ (click)="nextStep()">{{ 'action.next-with-label' | translate:{label: (getFormLabel(selectedIndex+1) | translate)} }}