@acorex/platform 20.0.13 → 20.0.21

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.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -231,18 +231,23 @@ 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
  }
243
246
 
244
247
  declare class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent<string | string[]> {
248
+ #private;
245
249
  protected validationService: AXValidationService;
250
+ private settingService;
246
251
  protected validationMessage?: string | null;
247
252
  protected multiple: Signal<boolean>;
248
253
  protected clearButton: Signal<boolean>;
@@ -251,7 +256,7 @@ declare class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent<
251
256
  protected placeholder: Signal<string>;
252
257
  protected internalValue: Signal<string[]>;
253
258
  protected handleValueChange(e: AXValueChangedEvent, i: number): void;
254
- protected calendarFormat: Signal<"DD/MM/YYYY" | "HH:mm" | "DD/MM/YYYY HH:mm">;
259
+ protected calendarFormat: _angular_core.WritableSignal<string>;
255
260
  protected addItem(): void;
256
261
  protected deleteItem(i: number): void;
257
262
  private get __class();
@@ -265,12 +270,15 @@ declare class AXPDateTimeBoxWidgetFilterComponent extends AXPValueWidgetComponen
265
270
  }
266
271
 
267
272
  declare class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent<string | string[]> {
273
+ #private;
268
274
  private formatter;
269
- private translationService;
275
+ private settingService;
276
+ protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
270
277
  protected multiple: boolean;
271
278
  protected format: _angular_core.Signal<"date" | "datetime" | "time">;
272
- protected internalValue: () => string[];
273
- protected handleFormat(value: string): string;
279
+ private updateValue;
280
+ protected handleFormat(value: string): Promise<string>;
281
+ protected isArray(val: any): val is any[];
274
282
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetColumnComponent, never>;
275
283
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
276
284
  }