@acorex/platform 20.0.20 → 20.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -614,6 +614,8 @@ declare class AXPWidgetRendererDirective {
614
614
  private instance;
615
615
  private expressionEvaluators;
616
616
  private componentRef;
617
+ private renderTimeoutId;
618
+ private hasInitialRender;
617
619
  private onContextChanged;
618
620
  constructor();
619
621
  ngOnChanges(changes: SimpleChanges): void;
@@ -137,7 +137,7 @@ declare class AXPThemeLayoutBlockComponent {
137
137
 
138
138
  declare class AXPThemeLayoutFooterComponent {
139
139
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPThemeLayoutFooterComponent, never>;
140
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPThemeLayoutFooterComponent, "axp-layout-footer, axp-layout-page-footer", never, {}, {}, never, ["axp-layout-prefix", "axp-layout-suffix"], true, never>;
140
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPThemeLayoutFooterComponent, "axp-layout-footer, axp-layout-page-footer", never, {}, {}, never, ["axp-layout-prefix", "*", "axp-layout-suffix"], true, never>;
141
141
  }
142
142
 
143
143
  declare class AXPThemeLayoutPageHeaderComponent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.0.20",
3
+ "version": "20.0.22",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -245,7 +245,9 @@ declare class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent<
245
245
  }
246
246
 
247
247
  declare class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent<string | string[]> {
248
+ #private;
248
249
  protected validationService: AXValidationService;
250
+ private settingService;
249
251
  protected validationMessage?: string | null;
250
252
  protected multiple: Signal<boolean>;
251
253
  protected clearButton: Signal<boolean>;
@@ -254,7 +256,7 @@ declare class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent<
254
256
  protected placeholder: Signal<string>;
255
257
  protected internalValue: Signal<string[]>;
256
258
  protected handleValueChange(e: AXValueChangedEvent, i: number): void;
257
- protected calendarFormat: Signal<"DD/MM/YYYY" | "HH:mm" | "DD/MM/YYYY HH:mm">;
259
+ protected calendarFormat: _angular_core.WritableSignal<string>;
258
260
  protected addItem(): void;
259
261
  protected deleteItem(i: number): void;
260
262
  private get __class();