@acorex/platform 20.0.7 → 20.0.8
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
|
@@ -257,15 +257,12 @@ declare class AXPDateTimeBoxWidgetFilterComponent extends AXPValueWidgetComponen
|
|
|
257
257
|
}
|
|
258
258
|
|
|
259
259
|
declare class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent<string | string[]> {
|
|
260
|
-
#private;
|
|
261
260
|
private formatter;
|
|
262
|
-
private
|
|
263
|
-
protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
|
|
261
|
+
private translationService;
|
|
264
262
|
protected multiple: boolean;
|
|
265
|
-
protected
|
|
266
|
-
|
|
267
|
-
protected handleFormat(value: string):
|
|
268
|
-
protected isArray(val: any): val is any[];
|
|
263
|
+
protected format: _angular_core.Signal<"date" | "datetime" | "time">;
|
|
264
|
+
protected internalValue: () => string[];
|
|
265
|
+
protected handleFormat(value: string): string;
|
|
269
266
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDateTimeBoxWidgetColumnComponent, never>;
|
|
270
267
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDateTimeBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
271
268
|
}
|