@acorex/components 20.3.46 → 20.3.48

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.
@@ -138,6 +138,14 @@ declare class AXGridLayoutWidgetComponent {
138
138
  * @returns AXGridLayoutNode - The current widget options.
139
139
  */
140
140
  getOptions(): AXGridLayoutNode;
141
+ /**
142
+ * Returns the widget options from the Angular input binding (stored/desired positions),
143
+ * bypassing the live gridstackNode which may have been auto-reflowed.
144
+ * Used by the container to load correct per-breakpoint layouts after column changes.
145
+ *
146
+ * @returns AXGridLayoutNode - The widget options from the input signal.
147
+ */
148
+ getInputOptions(): AXGridLayoutNode;
141
149
  /**
142
150
  * Returns the native DOM element of the widget.
143
151
  *
@@ -170,6 +178,13 @@ declare class AXGridLayoutContainerComponent extends NXComponent implements OnDe
170
178
  protected _sub: Subscription | undefined;
171
179
  private isInitialized;
172
180
  ngOnDestroy(): void;
181
+ /**
182
+ * Synchronizes the grid layout with the current widget list.
183
+ *
184
+ * @param useInputValues - When true, reads positions from Angular input bindings
185
+ * (stored per-breakpoint positions). When false, reads from live gridstackNode
186
+ * (preserving user drag/resize state). Use true after column/breakpoint changes.
187
+ */
173
188
  private updateAll;
174
189
  private checkEmpty;
175
190
  private hookEvents;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.3.46",
3
+ "version": "20.3.48",
4
4
  "peerDependencies": {
5
- "@acorex/core": "20.3.46",
6
- "@acorex/cdk": "20.3.46",
5
+ "@acorex/core": "20.3.48",
6
+ "@acorex/cdk": "20.3.48",
7
7
  "@angular/common": ">=20.0.0",
8
8
  "@angular/core": ">=20.0.0",
9
9
  "@angular/cdk": ">=20.0.0",
@@ -63,6 +63,10 @@
63
63
  "types": "./accordion/index.d.ts",
64
64
  "default": "./fesm2022/acorex-components-accordion.mjs"
65
65
  },
66
+ "./action-sheet": {
67
+ "types": "./action-sheet/index.d.ts",
68
+ "default": "./fesm2022/acorex-components-action-sheet.mjs"
69
+ },
66
70
  "./alert": {
67
71
  "types": "./alert/index.d.ts",
68
72
  "default": "./fesm2022/acorex-components-alert.mjs"
@@ -71,10 +75,6 @@
71
75
  "types": "./aspect-ratio/index.d.ts",
72
76
  "default": "./fesm2022/acorex-components-aspect-ratio.mjs"
73
77
  },
74
- "./action-sheet": {
75
- "types": "./action-sheet/index.d.ts",
76
- "default": "./fesm2022/acorex-components-action-sheet.mjs"
77
- },
78
78
  "./audio-wave": {
79
79
  "types": "./audio-wave/index.d.ts",
80
80
  "default": "./fesm2022/acorex-components-audio-wave.mjs"
@@ -123,14 +123,14 @@
123
123
  "types": "./circular-progress/index.d.ts",
124
124
  "default": "./fesm2022/acorex-components-circular-progress.mjs"
125
125
  },
126
- "./code-editor": {
127
- "types": "./code-editor/index.d.ts",
128
- "default": "./fesm2022/acorex-components-code-editor.mjs"
129
- },
130
126
  "./collapse": {
131
127
  "types": "./collapse/index.d.ts",
132
128
  "default": "./fesm2022/acorex-components-collapse.mjs"
133
129
  },
130
+ "./code-editor": {
131
+ "types": "./code-editor/index.d.ts",
132
+ "default": "./fesm2022/acorex-components-code-editor.mjs"
133
+ },
134
134
  "./color-box": {
135
135
  "types": "./color-box/index.d.ts",
136
136
  "default": "./fesm2022/acorex-components-color-box.mjs"
@@ -179,14 +179,14 @@
179
179
  "types": "./datetime-input/index.d.ts",
180
180
  "default": "./fesm2022/acorex-components-datetime-input.mjs"
181
181
  },
182
- "./datetime-picker": {
183
- "types": "./datetime-picker/index.d.ts",
184
- "default": "./fesm2022/acorex-components-datetime-picker.mjs"
185
- },
186
182
  "./decorators": {
187
183
  "types": "./decorators/index.d.ts",
188
184
  "default": "./fesm2022/acorex-components-decorators.mjs"
189
185
  },
186
+ "./datetime-picker": {
187
+ "types": "./datetime-picker/index.d.ts",
188
+ "default": "./fesm2022/acorex-components-datetime-picker.mjs"
189
+ },
190
190
  "./dialog": {
191
191
  "types": "./dialog/index.d.ts",
192
192
  "default": "./fesm2022/acorex-components-dialog.mjs"
@@ -259,14 +259,14 @@
259
259
  "types": "./loading/index.d.ts",
260
260
  "default": "./fesm2022/acorex-components-loading.mjs"
261
261
  },
262
- "./loading-dialog": {
263
- "types": "./loading-dialog/index.d.ts",
264
- "default": "./fesm2022/acorex-components-loading-dialog.mjs"
265
- },
266
262
  "./map": {
267
263
  "types": "./map/index.d.ts",
268
264
  "default": "./fesm2022/acorex-components-map.mjs"
269
265
  },
266
+ "./loading-dialog": {
267
+ "types": "./loading-dialog/index.d.ts",
268
+ "default": "./fesm2022/acorex-components-loading-dialog.mjs"
269
+ },
270
270
  "./media-viewer": {
271
271
  "types": "./media-viewer/index.d.ts",
272
272
  "default": "./fesm2022/acorex-components-media-viewer.mjs"
@@ -299,14 +299,14 @@
299
299
  "types": "./otp/index.d.ts",
300
300
  "default": "./fesm2022/acorex-components-otp.mjs"
301
301
  },
302
- "./page": {
303
- "types": "./page/index.d.ts",
304
- "default": "./fesm2022/acorex-components-page.mjs"
305
- },
306
302
  "./paint": {
307
303
  "types": "./paint/index.d.ts",
308
304
  "default": "./fesm2022/acorex-components-paint.mjs"
309
305
  },
306
+ "./page": {
307
+ "types": "./page/index.d.ts",
308
+ "default": "./fesm2022/acorex-components-page.mjs"
309
+ },
310
310
  "./password-box": {
311
311
  "types": "./password-box/index.d.ts",
312
312
  "default": "./fesm2022/acorex-components-password-box.mjs"
@@ -335,14 +335,14 @@
335
335
  "types": "./progress-bar/index.d.ts",
336
336
  "default": "./fesm2022/acorex-components-progress-bar.mjs"
337
337
  },
338
- "./qrcode": {
339
- "types": "./qrcode/index.d.ts",
340
- "default": "./fesm2022/acorex-components-qrcode.mjs"
341
- },
342
338
  "./query-builder": {
343
339
  "types": "./query-builder/index.d.ts",
344
340
  "default": "./fesm2022/acorex-components-query-builder.mjs"
345
341
  },
342
+ "./qrcode": {
343
+ "types": "./qrcode/index.d.ts",
344
+ "default": "./fesm2022/acorex-components-qrcode.mjs"
345
+ },
346
346
  "./radio": {
347
347
  "types": "./radio/index.d.ts",
348
348
  "default": "./fesm2022/acorex-components-radio.mjs"
@@ -431,14 +431,14 @@
431
431
  "types": "./tabs/index.d.ts",
432
432
  "default": "./fesm2022/acorex-components-tabs.mjs"
433
433
  },
434
- "./tag": {
435
- "types": "./tag/index.d.ts",
436
- "default": "./fesm2022/acorex-components-tag.mjs"
437
- },
438
434
  "./tag-box": {
439
435
  "types": "./tag-box/index.d.ts",
440
436
  "default": "./fesm2022/acorex-components-tag-box.mjs"
441
437
  },
438
+ "./tag": {
439
+ "types": "./tag/index.d.ts",
440
+ "default": "./fesm2022/acorex-components-tag.mjs"
441
+ },
442
442
  "./text-area": {
443
443
  "types": "./text-area/index.d.ts",
444
444
  "default": "./fesm2022/acorex-components-text-area.mjs"