@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.
@@ -68,4 +68,5 @@ export interface AXPWidgetTypesMap {
68
68
  metaData: 'meta-data-editor';
69
69
  tagable: 'tagable-editor';
70
70
  singleFileBox: 'single-file-box-editor';
71
+ documentAttachment: 'document-attachment-editor';
71
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "19.2.15",
3
+ "version": "19.2.16",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -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<AXPAdvancedGridWidgetValues> {
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
- }