@acorex/components 20.2.0-next.16 → 20.2.0-next.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.2.0-next.16",
3
+ "version": "20.2.0-next.18",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",
@@ -114,6 +114,10 @@
114
114
  "types": "./cron-job/index.d.ts",
115
115
  "default": "./fesm2022/acorex-components-cron-job.mjs"
116
116
  },
117
+ "./data-list": {
118
+ "types": "./data-list/index.d.ts",
119
+ "default": "./fesm2022/acorex-components-data-list.mjs"
120
+ },
117
121
  "./data-pager": {
118
122
  "types": "./data-pager/index.d.ts",
119
123
  "default": "./fesm2022/acorex-components-data-pager.mjs"
@@ -354,18 +358,22 @@
354
358
  "types": "./skeleton/index.d.ts",
355
359
  "default": "./fesm2022/acorex-components-skeleton.mjs"
356
360
  },
361
+ "./slider": {
362
+ "types": "./slider/index.d.ts",
363
+ "default": "./fesm2022/acorex-components-slider.mjs"
364
+ },
357
365
  "./sliding-item": {
358
366
  "types": "./sliding-item/index.d.ts",
359
367
  "default": "./fesm2022/acorex-components-sliding-item.mjs"
360
368
  },
361
- "./switch": {
362
- "types": "./switch/index.d.ts",
363
- "default": "./fesm2022/acorex-components-switch.mjs"
364
- },
365
369
  "./step-wizard": {
366
370
  "types": "./step-wizard/index.d.ts",
367
371
  "default": "./fesm2022/acorex-components-step-wizard.mjs"
368
372
  },
373
+ "./switch": {
374
+ "types": "./switch/index.d.ts",
375
+ "default": "./fesm2022/acorex-components-switch.mjs"
376
+ },
369
377
  "./tabs": {
370
378
  "types": "./tabs/index.d.ts",
371
379
  "default": "./fesm2022/acorex-components-tabs.mjs"
@@ -374,17 +382,13 @@
374
382
  "types": "./tag/index.d.ts",
375
383
  "default": "./fesm2022/acorex-components-tag.mjs"
376
384
  },
377
- "./text-area": {
378
- "types": "./text-area/index.d.ts",
379
- "default": "./fesm2022/acorex-components-text-area.mjs"
380
- },
381
385
  "./tag-box": {
382
386
  "types": "./tag-box/index.d.ts",
383
387
  "default": "./fesm2022/acorex-components-tag-box.mjs"
384
388
  },
385
- "./slider": {
386
- "types": "./slider/index.d.ts",
387
- "default": "./fesm2022/acorex-components-slider.mjs"
389
+ "./text-area": {
390
+ "types": "./text-area/index.d.ts",
391
+ "default": "./fesm2022/acorex-components-text-area.mjs"
388
392
  },
389
393
  "./text-box": {
390
394
  "types": "./text-box/index.d.ts",
@@ -126,6 +126,11 @@ declare class AXSelectBoxComponent extends AXSelectBoxComponent_base implements
126
126
  private _unsubscriber;
127
127
  /** @ignore */
128
128
  protected ngOnInit(): void;
129
+ /**
130
+ * Proactively fetches item data if the component has a value but no corresponding item data.
131
+ * This prevents showing "loading..." when the component has a value.
132
+ */
133
+ private fetchItemDataIfNeeded;
129
134
  /** @ignore */
130
135
  ngOnDestroy(): void;
131
136
  /**