@acorex/platform 20.0.13 → 20.0.20

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.0.13",
3
+ "version": "20.0.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -231,12 +231,15 @@ interface AXPContactWidgetOptions {
231
231
  }
232
232
 
233
233
  declare class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent<string | string[]> {
234
+ #private;
234
235
  private formatter;
235
- private translationService;
236
+ private settingService;
236
237
  protected multiple: _angular_core.Signal<boolean>;
238
+ protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
237
239
  protected format: _angular_core.Signal<"date" | "datetime" | "time">;
238
- protected internalValue: _angular_core.Signal<string[]>;
239
- protected handleFormat(value: string): string;
240
+ private updateValue;
241
+ protected handleFormat(value: string): Promise<string>;
242
+ protected isArray(val: any): val is any[];
240
243
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetViewComponent, never>;
241
244
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
242
245
  }
@@ -265,12 +268,15 @@ declare class AXPDateTimeBoxWidgetFilterComponent extends AXPValueWidgetComponen
265
268
  }
266
269
 
267
270
  declare class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent<string | string[]> {
271
+ #private;
268
272
  private formatter;
269
- private translationService;
273
+ private settingService;
274
+ protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
270
275
  protected multiple: boolean;
271
276
  protected format: _angular_core.Signal<"date" | "datetime" | "time">;
272
- protected internalValue: () => string[];
273
- protected handleFormat(value: string): string;
277
+ private updateValue;
278
+ protected handleFormat(value: string): Promise<string>;
279
+ protected isArray(val: any): val is any[];
274
280
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetColumnComponent, never>;
275
281
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
276
282
  }