@acorex/platform 19.2.15 → 19.2.16
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/auth/lib/session.service.d.ts +1 -7
- package/fesm2022/acorex-platform-auth.mjs +12 -49
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- 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 +127 -67
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget-map.d.ts +1 -0
- package/package.json +1 -1
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-view.component.d.ts +1 -3
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-types.component.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AXGridLayoutOptions } from '@acorex/components/grid-layout-builder';
|
|
2
2
|
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
-
import { AXPAdvancedGridWidgetValues } from './advanced-grid-widget-types.component';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AXPAdvancedGridWidgetViewComponent extends AXPWidgetComponent<
|
|
4
|
+
export declare class AXPAdvancedGridWidgetViewComponent extends AXPWidgetComponent<any> {
|
|
6
5
|
#private;
|
|
7
6
|
private isRendered;
|
|
8
7
|
private el;
|
|
@@ -15,7 +14,6 @@ export declare class AXPAdvancedGridWidgetViewComponent extends AXPWidgetCompone
|
|
|
15
14
|
columns: import("@angular/core").Signal<number>;
|
|
16
15
|
justifyItems: import("@angular/core").Signal<"start" | "end" | "center" | "stretch">;
|
|
17
16
|
alignItems: import("@angular/core").Signal<"start" | "end" | "center" | "stretch">;
|
|
18
|
-
private initValues;
|
|
19
17
|
private get __class();
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPAdvancedGridWidgetViewComponent, never>;
|
|
21
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPAdvancedGridWidgetViewComponent, "axp-advanced-grid-layout-widget", never, {}, {}, never, never, true, never>;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { AXGridLayoutOptions } from '@acorex/components/grid-layout-builder';
|
|
2
|
-
import { AXPWidgetNode } from '@acorex/platform/layout/builder';
|
|
3
|
-
import { AXPAdvancedGridBoxValues } from '../../property-editors/advanced-grid-options/advanced-grid-options-widget.type';
|
|
4
|
-
export type AXPAdvancedGridWidgetChild = AXGridLayoutOptions['children'] & Record<'data', AXPWidgetNode | undefined>;
|
|
5
|
-
export interface AXPAdvancedGridWidgetValues {
|
|
6
|
-
data: AXPAdvancedGridBoxValues;
|
|
7
|
-
layout: AXGridLayoutOptions & {
|
|
8
|
-
children?: AXPAdvancedGridWidgetChild[];
|
|
9
|
-
};
|
|
10
|
-
}
|