@acorex/platform 20.3.0-next.13 → 20.3.0-next.14
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/fesm2022/acorex-platform-layout-entity.mjs +18 -2
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +4 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +34 -14
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/layout/widgets/index.d.ts +3 -0
- package/package.json +5 -5
|
@@ -374,6 +374,7 @@ declare class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetCompone
|
|
|
374
374
|
private settingService;
|
|
375
375
|
protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
|
|
376
376
|
protected multiple: boolean;
|
|
377
|
+
protected dateMode: _angular_core.Signal<"short" | "long">;
|
|
377
378
|
protected format: _angular_core.Signal<"date" | "datetime" | "time">;
|
|
378
379
|
private updateValue;
|
|
379
380
|
protected handleFormat(value: string): Promise<string>;
|
|
@@ -389,6 +390,7 @@ declare class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent<
|
|
|
389
390
|
protected validationMessage?: string | null;
|
|
390
391
|
protected multiple: Signal<boolean>;
|
|
391
392
|
protected clearButton: Signal<boolean>;
|
|
393
|
+
protected dateMode: Signal<"short" | "long">;
|
|
392
394
|
protected format: Signal<"date" | "datetime" | "time">;
|
|
393
395
|
protected disabled: Signal<boolean>;
|
|
394
396
|
protected placeholder: Signal<string>;
|
|
@@ -407,6 +409,7 @@ declare class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent<
|
|
|
407
409
|
private formatter;
|
|
408
410
|
private settingService;
|
|
409
411
|
protected multiple: _angular_core.Signal<boolean>;
|
|
412
|
+
protected dateMode: _angular_core.Signal<"short" | "long">;
|
|
410
413
|
protected convertedValue: _angular_core.WritableSignal<string | string[] | null>;
|
|
411
414
|
protected format: _angular_core.Signal<"date" | "datetime" | "time">;
|
|
412
415
|
private updateValue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.3.0-next.
|
|
3
|
+
"version": "20.3.0-next.14",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/styles": ">=20.0.0",
|
|
6
6
|
"@acorex/core": ">=20.0.0",
|
|
@@ -26,10 +26,6 @@
|
|
|
26
26
|
"types": "./index.d.ts",
|
|
27
27
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
28
28
|
},
|
|
29
|
-
"./auth": {
|
|
30
|
-
"types": "./auth/index.d.ts",
|
|
31
|
-
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
32
|
-
},
|
|
33
29
|
"./common": {
|
|
34
30
|
"types": "./common/index.d.ts",
|
|
35
31
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
@@ -54,6 +50,10 @@
|
|
|
54
50
|
"types": "./workflow/index.d.ts",
|
|
55
51
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|
|
56
52
|
},
|
|
53
|
+
"./auth": {
|
|
54
|
+
"types": "./auth/index.d.ts",
|
|
55
|
+
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
56
|
+
},
|
|
57
57
|
"./layout/builder": {
|
|
58
58
|
"types": "./layout/builder/index.d.ts",
|
|
59
59
|
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|