@acorex/platform 20.6.0-next.26 → 20.6.0-next.27
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-components.mjs +11 -3
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +40 -6
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/layout/components/index.d.ts +2 -0
- package/package.json +5 -5
|
@@ -972,9 +972,11 @@ declare class AXPQueryFiltersComponent {
|
|
|
972
972
|
protected translate: AXTranslationService;
|
|
973
973
|
protected calendarService: AXCalendarService;
|
|
974
974
|
private filterOperatorMiddleware;
|
|
975
|
+
private settingService;
|
|
975
976
|
filtersDefinitions: _angular_core.InputSignal<AXPFilterDefinition[]>;
|
|
976
977
|
initialFilters: _angular_core.InputSignal<AXPFilterQuery[]>;
|
|
977
978
|
onFiltersChanged: _angular_core.OutputEmitterRef<AXPFilterQuery[]>;
|
|
979
|
+
protected dateFormat: _angular_core.WritableSignal<string>;
|
|
978
980
|
protected tagBox: _angular_core.Signal<AXTagBoxComponent | undefined>;
|
|
979
981
|
protected widgetRenderer: _angular_core.Signal<AXPWidgetRendererDirective | undefined>;
|
|
980
982
|
tagBoxInput: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.6.0-next.
|
|
3
|
+
"version": "20.6.0-next.27",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
@@ -27,10 +27,6 @@
|
|
|
27
27
|
"types": "./index.d.ts",
|
|
28
28
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
29
29
|
},
|
|
30
|
-
"./auth": {
|
|
31
|
-
"types": "./auth/index.d.ts",
|
|
32
|
-
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
33
|
-
},
|
|
34
30
|
"./common": {
|
|
35
31
|
"types": "./common/index.d.ts",
|
|
36
32
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
@@ -39,6 +35,10 @@
|
|
|
39
35
|
"types": "./core/index.d.ts",
|
|
40
36
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
41
37
|
},
|
|
38
|
+
"./auth": {
|
|
39
|
+
"types": "./auth/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
41
|
+
},
|
|
42
42
|
"./domain": {
|
|
43
43
|
"types": "./domain/index.d.ts",
|
|
44
44
|
"default": "./fesm2022/acorex-platform-domain.mjs"
|