@acorex/components 20.6.6 → 20.6.8

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/list/index.d.ts CHANGED
@@ -24,12 +24,21 @@ declare class AXListComponent extends MXSelectionValueComponent implements OnIni
24
24
  * @defaultValue false
25
25
  */
26
26
  showItemTooltip: i0.InputSignal<boolean>;
27
+ /** @ignore */
28
+ private _dataSource;
29
+ /** @ignore */
30
+ private _isInitialized;
31
+ /** @ignore */
32
+ private _onChangedSub?;
33
+ /** @ignore */
34
+ private _onLoadingChangedSub?;
27
35
  /**
28
36
  * Defines the data source for the list.
29
37
  *
30
38
  * @defaultValue convertArrayToDataSource([])
31
39
  */
32
- dataSource: AXDataSource<unknown>;
40
+ set dataSource(v: AXDataSource<unknown>);
41
+ get dataSource(): AXDataSource<unknown>;
33
42
  /**
34
43
  * @ignore
35
44
  */
@@ -91,6 +100,18 @@ declare class AXListComponent extends MXSelectionValueComponent implements OnIni
91
100
  * @ignore
92
101
  */
93
102
  ngOnInit(): void;
103
+ /**
104
+ * @ignore
105
+ */
106
+ protected ngOnDestroy(): void;
107
+ /**
108
+ * (Re)creates the internal `AXListDataSource` wrapper used by `cdkVirtualFor`
109
+ * and (re)subscribes to the underlying source's events. This is invoked
110
+ * whenever the `dataSource` input changes so that the list properly reflects
111
+ * the new source.
112
+ * @ignore
113
+ */
114
+ private _setupListDataSource;
94
115
  /**
95
116
  * @ignore
96
117
  */
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.6.6",
3
+ "version": "20.6.8",
4
4
  "peerDependencies": {
5
- "@acorex/core": "20.6.6",
6
- "@acorex/cdk": "20.6.6",
5
+ "@acorex/core": "20.6.8",
6
+ "@acorex/cdk": "20.6.8",
7
7
  "@angular/common": "^20.0.0",
8
8
  "@angular/core": "^20.0.0",
9
9
  "@angular/cdk": "^20.0.0",
@@ -59,6 +59,10 @@
59
59
  "types": "./index.d.ts",
60
60
  "default": "./fesm2022/acorex-components.mjs"
61
61
  },
62
+ "./action-sheet": {
63
+ "types": "./action-sheet/index.d.ts",
64
+ "default": "./fesm2022/acorex-components-action-sheet.mjs"
65
+ },
62
66
  "./accordion": {
63
67
  "types": "./accordion/index.d.ts",
64
68
  "default": "./fesm2022/acorex-components-accordion.mjs"
@@ -67,10 +71,6 @@
67
71
  "types": "./alert/index.d.ts",
68
72
  "default": "./fesm2022/acorex-components-alert.mjs"
69
73
  },
70
- "./action-sheet": {
71
- "types": "./action-sheet/index.d.ts",
72
- "default": "./fesm2022/acorex-components-action-sheet.mjs"
73
- },
74
74
  "./aspect-ratio": {
75
75
  "types": "./aspect-ratio/index.d.ts",
76
76
  "default": "./fesm2022/acorex-components-aspect-ratio.mjs"
@@ -287,14 +287,14 @@
287
287
  "types": "./navbar/index.d.ts",
288
288
  "default": "./fesm2022/acorex-components-navbar.mjs"
289
289
  },
290
- "./number-box": {
291
- "types": "./number-box/index.d.ts",
292
- "default": "./fesm2022/acorex-components-number-box.mjs"
293
- },
294
290
  "./notification": {
295
291
  "types": "./notification/index.d.ts",
296
292
  "default": "./fesm2022/acorex-components-notification.mjs"
297
293
  },
294
+ "./number-box": {
295
+ "types": "./number-box/index.d.ts",
296
+ "default": "./fesm2022/acorex-components-number-box.mjs"
297
+ },
298
298
  "./number-box-legacy": {
299
299
  "types": "./number-box-legacy/index.d.ts",
300
300
  "default": "./fesm2022/acorex-components-number-box-legacy.mjs"
@@ -327,14 +327,18 @@
327
327
  "types": "./picker/index.d.ts",
328
328
  "default": "./fesm2022/acorex-components-picker.mjs"
329
329
  },
330
- "./progress-bar": {
331
- "types": "./progress-bar/index.d.ts",
332
- "default": "./fesm2022/acorex-components-progress-bar.mjs"
330
+ "./popover": {
331
+ "types": "./popover/index.d.ts",
332
+ "default": "./fesm2022/acorex-components-popover.mjs"
333
333
  },
334
334
  "./popup": {
335
335
  "types": "./popup/index.d.ts",
336
336
  "default": "./fesm2022/acorex-components-popup.mjs"
337
337
  },
338
+ "./progress-bar": {
339
+ "types": "./progress-bar/index.d.ts",
340
+ "default": "./fesm2022/acorex-components-progress-bar.mjs"
341
+ },
338
342
  "./qrcode": {
339
343
  "types": "./qrcode/index.d.ts",
340
344
  "default": "./fesm2022/acorex-components-qrcode.mjs"
@@ -343,10 +347,6 @@
343
347
  "types": "./query-builder/index.d.ts",
344
348
  "default": "./fesm2022/acorex-components-query-builder.mjs"
345
349
  },
346
- "./popover": {
347
- "types": "./popover/index.d.ts",
348
- "default": "./fesm2022/acorex-components-popover.mjs"
349
- },
350
350
  "./radio": {
351
351
  "types": "./radio/index.d.ts",
352
352
  "default": "./fesm2022/acorex-components-radio.mjs"
@@ -379,14 +379,14 @@
379
379
  "types": "./rrule/index.d.ts",
380
380
  "default": "./fesm2022/acorex-components-rrule.mjs"
381
381
  },
382
- "./scheduler-picker": {
383
- "types": "./scheduler-picker/index.d.ts",
384
- "default": "./fesm2022/acorex-components-scheduler-picker.mjs"
385
- },
386
382
  "./scheduler": {
387
383
  "types": "./scheduler/index.d.ts",
388
384
  "default": "./fesm2022/acorex-components-scheduler.mjs"
389
385
  },
386
+ "./scheduler-picker": {
387
+ "types": "./scheduler-picker/index.d.ts",
388
+ "default": "./fesm2022/acorex-components-scheduler-picker.mjs"
389
+ },
390
390
  "./scss": {
391
391
  "types": "./scss/index.d.ts",
392
392
  "default": "./fesm2022/acorex-components-scss.mjs"