@aquera/ngx-smart-table 0.0.26 → 0.0.27

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.26",
3
+ "version": "0.0.27",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -3899,6 +3899,7 @@ declare class NileChipEditor implements CellEditor<string[]> {
3899
3899
  private cellContainer?;
3900
3900
  private eventListeners;
3901
3901
  private trackedValues;
3902
+ private hasChangeOccurred;
3902
3903
  constructor(options?: NileChipEditorOptions | undefined);
3903
3904
  edit(context: CellEditorContext<string[]>): void;
3904
3905
  private positionPopover;
@@ -4338,12 +4339,14 @@ declare class StTableComponent implements OnInit, OnChanges, OnDestroy, AfterVie
4338
4339
  readonly dropdownPosition: _angular_core.WritableSignal<{
4339
4340
  x: number;
4340
4341
  y: number;
4342
+ triggerTop?: number;
4341
4343
  }>;
4342
4344
  readonly dropdownContext: _angular_core.WritableSignal<RowActionContext | null>;
4343
4345
  readonly columnMenuIsOpen: _angular_core.WritableSignal<boolean>;
4344
4346
  readonly columnMenuPosition: _angular_core.WritableSignal<{
4345
4347
  x: number;
4346
4348
  y: number;
4349
+ triggerTop?: number;
4347
4350
  }>;
4348
4351
  readonly columnMenuContext: _angular_core.WritableSignal<ColumnActionContext | null>;
4349
4352
  readonly virtualScrollState: _angular_core.WritableSignal<VirtualScrollState | null>;
@@ -4356,6 +4359,7 @@ declare class StTableComponent implements OnInit, OnChanges, OnDestroy, AfterVie
4356
4359
  position: {
4357
4360
  x: number;
4358
4361
  y: number;
4362
+ triggerTop?: number;
4359
4363
  };
4360
4364
  context: RowActionContext | null;
4361
4365
  }>;
@@ -4364,6 +4368,7 @@ declare class StTableComponent implements OnInit, OnChanges, OnDestroy, AfterVie
4364
4368
  position: {
4365
4369
  x: number;
4366
4370
  y: number;
4371
+ triggerTop?: number;
4367
4372
  };
4368
4373
  context: ColumnActionContext | null;
4369
4374
  }>;
@@ -4702,11 +4707,12 @@ declare class StColumnMenuDropdownComponent implements OnChanges {
4702
4707
  */
4703
4708
  isOpen: boolean;
4704
4709
  /**
4705
- * Position of the dropdown (x, y coordinates)
4710
+ * Position of the dropdown (x, y coordinates, triggerTop for flip positioning)
4706
4711
  */
4707
4712
  position: {
4708
4713
  x: number;
4709
4714
  y: number;
4715
+ triggerTop?: number;
4710
4716
  };
4711
4717
  /**
4712
4718
  * Context containing column data, index, and actions
@@ -4721,6 +4727,7 @@ declare class StColumnMenuDropdownComponent implements OnChanges {
4721
4727
  */
4722
4728
  closed: EventEmitter<void>;
4723
4729
  filterPopup?: StColumnFilterComponent;
4730
+ dropdownPanel?: ElementRef<HTMLElement>;
4724
4731
  /**
4725
4732
  * Visible actions (filtered by hidden property)
4726
4733
  */
@@ -5044,11 +5051,12 @@ declare class StRowActionsDropdownComponent implements OnChanges {
5044
5051
  */
5045
5052
  isOpen: boolean;
5046
5053
  /**
5047
- * Position of the dropdown (x, y coordinates)
5054
+ * Position of the dropdown (x, y coordinates, triggerTop for flip positioning)
5048
5055
  */
5049
5056
  position: {
5050
5057
  x: number;
5051
5058
  y: number;
5059
+ triggerTop?: number;
5052
5060
  };
5053
5061
  /**
5054
5062
  * Context containing row data, index, and actions
@@ -5062,6 +5070,7 @@ declare class StRowActionsDropdownComponent implements OnChanges {
5062
5070
  * Emitted when the dropdown should close
5063
5071
  */
5064
5072
  closed: EventEmitter<void>;
5073
+ dropdownPanel?: ElementRef<HTMLElement>;
5065
5074
  /**
5066
5075
  * Visible actions (filtered by hidden property)
5067
5076
  */