@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
package/widgets/index.d.ts
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
}
|