@acorex/components 20.3.33 → 20.3.34

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.
@@ -113,6 +113,8 @@ declare class AXFileInfoComponent {
113
113
  }
114
114
 
115
115
  declare class AXImageViewerComponent extends AXMediaViewerBaseComponent {
116
+ protected hasError: i0.WritableSignal<boolean>;
117
+ protected handleImageError(): void;
116
118
  static ɵfac: i0.ɵɵFactoryDeclaration<AXImageViewerComponent, never>;
117
119
  static ɵcmp: i0.ɵɵComponentDeclaration<AXImageViewerComponent, "ax-image-viewer", never, {}, {}, never, never, true, never>;
118
120
  }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.3.33",
3
+ "version": "20.3.34",
4
4
  "peerDependencies": {
5
- "@acorex/core": "20.3.33",
6
- "@acorex/cdk": "20.3.33",
5
+ "@acorex/core": "20.3.34",
6
+ "@acorex/cdk": "20.3.34",
7
7
  "@angular/common": "^20.0.0",
8
8
  "@angular/core": "^20.0.0",
9
9
  "@angular/cdk": "^20.0.0",
@@ -185,10 +185,6 @@
185
185
  "types": "./datetime-input/index.d.ts",
186
186
  "default": "./fesm2022/acorex-components-datetime-input.mjs"
187
187
  },
188
- "./datetime-picker": {
189
- "types": "./datetime-picker/index.d.ts",
190
- "default": "./fesm2022/acorex-components-datetime-picker.mjs"
191
- },
192
188
  "./decorators": {
193
189
  "types": "./decorators/index.d.ts",
194
190
  "default": "./fesm2022/acorex-components-decorators.mjs"
@@ -209,6 +205,10 @@
209
205
  "types": "./dropdown/index.d.ts",
210
206
  "default": "./fesm2022/acorex-components-dropdown.mjs"
211
207
  },
208
+ "./datetime-picker": {
209
+ "types": "./datetime-picker/index.d.ts",
210
+ "default": "./fesm2022/acorex-components-datetime-picker.mjs"
211
+ },
212
212
  "./dropdown-button": {
213
213
  "types": "./dropdown-button/index.d.ts",
214
214
  "default": "./fesm2022/acorex-components-dropdown-button.mjs"
@@ -217,14 +217,14 @@
217
217
  "types": "./editor/index.d.ts",
218
218
  "default": "./fesm2022/acorex-components-editor.mjs"
219
219
  },
220
- "./file-explorer": {
221
- "types": "./file-explorer/index.d.ts",
222
- "default": "./fesm2022/acorex-components-file-explorer.mjs"
223
- },
224
220
  "./flow-chart": {
225
221
  "types": "./flow-chart/index.d.ts",
226
222
  "default": "./fesm2022/acorex-components-flow-chart.mjs"
227
223
  },
224
+ "./file-explorer": {
225
+ "types": "./file-explorer/index.d.ts",
226
+ "default": "./fesm2022/acorex-components-file-explorer.mjs"
227
+ },
228
228
  "./form": {
229
229
  "types": "./form/index.d.ts",
230
230
  "default": "./fesm2022/acorex-components-form.mjs"
@@ -241,14 +241,14 @@
241
241
  "types": "./image-editor/index.d.ts",
242
242
  "default": "./fesm2022/acorex-components-image-editor.mjs"
243
243
  },
244
- "./json-viewer": {
245
- "types": "./json-viewer/index.d.ts",
246
- "default": "./fesm2022/acorex-components-json-viewer.mjs"
247
- },
248
244
  "./kanban": {
249
245
  "types": "./kanban/index.d.ts",
250
246
  "default": "./fesm2022/acorex-components-kanban.mjs"
251
247
  },
248
+ "./json-viewer": {
249
+ "types": "./json-viewer/index.d.ts",
250
+ "default": "./fesm2022/acorex-components-json-viewer.mjs"
251
+ },
252
252
  "./kbd": {
253
253
  "types": "./kbd/index.d.ts",
254
254
  "default": "./fesm2022/acorex-components-kbd.mjs"
@@ -134,6 +134,12 @@ interface AXTreeViewItemTemplateContext {
134
134
  value: boolean | null;
135
135
  isUserInteraction: boolean;
136
136
  }) => void;
137
+ /** Whether drag is enabled for this tree (dragBehavior !== 'none') */
138
+ dragEnabled: boolean;
139
+ /** The drag area mode: 'handler' (drag handle) or 'item' (full item) */
140
+ dragArea: AXTreeViewDragArea;
141
+ /** Whether the drag handle should be shown (dragArea === 'handler' && dragBehavior !== 'none') */
142
+ showDragHandle: boolean;
137
143
  }
138
144
  type AXTreeViewViewLook = 'default' | 'card' | 'with-line';
139
145
  type AXTreeViewDragArea = 'handler' | 'item';