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