@aquera/ngx-smart-table 0.0.27 → 0.0.28

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": "@aquera/ngx-smart-table",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -31,5 +31,6 @@
31
31
  "types": "./types/aquera-ngx-smart-table.d.ts",
32
32
  "default": "./fesm2022/aquera-ngx-smart-table.mjs"
33
33
  }
34
- }
34
+ },
35
+ "type": "module"
35
36
  }
@@ -3478,6 +3478,12 @@ interface NileSelectEditorOptions {
3478
3478
  validateOnSave?: boolean;
3479
3479
  /** Append dropdown to document body instead of parent */
3480
3480
  portal?: boolean;
3481
+ /**
3482
+ * When true (default), opens the options list as soon as the cell enters edit mode
3483
+ * (e.g. double-click). Set to false to keep the list closed until the user opens it.
3484
+ * With `enableVirtualScroll`, opening uses the inner `nile-virtual-select` only.
3485
+ */
3486
+ openDropdownOnEdit?: boolean;
3481
3487
  }
3482
3488
  /**
3483
3489
  * Custom editor that uses NileSelect component
@@ -3494,6 +3500,11 @@ declare class NileSelectEditor<T = string> implements CellEditor<T> {
3494
3500
  private hasChangeOccurred;
3495
3501
  constructor(options: NileSelectEditorOptions);
3496
3502
  edit(context: CellEditorContext<T>): void;
3503
+ private activateSelectAfterMount;
3504
+ /** Lit @query('nile-popup') / .select — must exist before handleOpenChange touches this.popup.popup */
3505
+ private isNileSelectPopupMounted;
3506
+ private invokeShowHandlingPromise;
3507
+ private openNileSelectDropdownSafely;
3497
3508
  /**
3498
3509
  * Set the initial value for the select
3499
3510
  */