@acorex/platform 19.1.9 → 19.1.10
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-builder.mjs +1 -0
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +85 -34
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget-map.d.ts +1 -0
- package/package.json +9 -9
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.10",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19.0.0",
|
|
6
6
|
"@angular/core": ">=19.0.0",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"types": "./common/index.d.ts",
|
|
46
46
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
47
47
|
},
|
|
48
|
-
"./core": {
|
|
49
|
-
"types": "./core/index.d.ts",
|
|
50
|
-
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
51
|
-
},
|
|
52
48
|
"./native": {
|
|
53
49
|
"types": "./native/index.d.ts",
|
|
54
50
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
55
51
|
},
|
|
52
|
+
"./core": {
|
|
53
|
+
"types": "./core/index.d.ts",
|
|
54
|
+
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
55
|
+
},
|
|
56
56
|
"./widgets": {
|
|
57
57
|
"types": "./widgets/index.d.ts",
|
|
58
58
|
"default": "./fesm2022/acorex-platform-widgets.mjs"
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
"types": "./layout/filters/index.d.ts",
|
|
78
78
|
"default": "./fesm2022/acorex-platform-layout-filters.mjs"
|
|
79
79
|
},
|
|
80
|
-
"./layout/search": {
|
|
81
|
-
"types": "./layout/search/index.d.ts",
|
|
82
|
-
"default": "./fesm2022/acorex-platform-layout-search.mjs"
|
|
83
|
-
},
|
|
84
80
|
"./layout/setting": {
|
|
85
81
|
"types": "./layout/setting/index.d.ts",
|
|
86
82
|
"default": "./fesm2022/acorex-platform-layout-setting.mjs"
|
|
87
83
|
},
|
|
84
|
+
"./layout/search": {
|
|
85
|
+
"types": "./layout/search/index.d.ts",
|
|
86
|
+
"default": "./fesm2022/acorex-platform-layout-search.mjs"
|
|
87
|
+
},
|
|
88
88
|
"./themes/default": {
|
|
89
89
|
"types": "./themes/default/index.d.ts",
|
|
90
90
|
"default": "./fesm2022/acorex-platform-themes-default.mjs"
|
package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AXGridLayoutNode, AXGridLayoutOptions } from '@acorex/components/grid-layout-builder';
|
|
1
2
|
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AXPAdvancedGridWidgetDesignerComponent extends AXPWidgetComponent<void> {
|
|
@@ -5,11 +6,9 @@ export declare class AXPAdvancedGridWidgetDesignerComponent extends AXPWidgetCom
|
|
|
5
6
|
private el;
|
|
6
7
|
private designerService;
|
|
7
8
|
private container;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
content: string;
|
|
12
|
-
}>;
|
|
9
|
+
constructor();
|
|
10
|
+
protected widgetOption: AXGridLayoutNode;
|
|
11
|
+
gridOptions: AXGridLayoutOptions;
|
|
13
12
|
protected cols: import("@angular/core").Signal<number>;
|
|
14
13
|
protected rows: import("@angular/core").Signal<number>;
|
|
15
14
|
protected align: import("@angular/core").Signal<"start" | "end" | "center" | "stretch">;
|