@getflip/swirl-components-angular 0.299.0 → 0.300.0

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.
@@ -4,6 +4,7 @@ import type { SwirlAppLayoutMobileView as ISwirlAppLayoutSwirlAppLayoutMobileVie
4
4
  import type { SwirlAppLayoutNavigationExpansionState as ISwirlAppLayoutSwirlAppLayoutNavigationExpansionState } from '@getflip/swirl-components';
5
5
  import type { SwirlAutocompleteValue as ISwirlAutocompleteSwirlAutocompleteValue } from '@getflip/swirl-components';
6
6
  import type { ComputePositionReturn as ISwirlPopoverComputePositionReturn } from '@getflip/swirl-components';
7
+ import type { SwirlTableDropRowEvent as ISwirlTableSwirlTableDropRowEvent } from '@getflip/swirl-components';
7
8
  import type { SwirlOSThemeChangeEventData as ISwirlThemeProviderSwirlOSThemeChangeEventData } from '@getflip/swirl-components';
8
9
  import type { SwirlTreeViewDropItemEvent as ISwirlTreeViewSwirlTreeViewDropItemEvent } from '@getflip/swirl-components';
9
10
  import type { SwirlTreeViewDropItemEvent as ISwirlTreeViewItemSwirlTreeViewDropItemEvent } from '@getflip/swirl-components';
@@ -3204,9 +3205,10 @@ export declare class SwirlTable {
3204
3205
  protected el: HTMLElement;
3205
3206
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3206
3207
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTable, never>;
3207
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTable, "swirl-table", never, { "caption": { "alias": "caption"; "required": false; }; "emptyStateLabel": { "alias": "emptyStateLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
3208
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTable, "swirl-table", never, { "caption": { "alias": "caption"; "required": false; }; "dragDropHandle": { "alias": "dragDropHandle"; "required": false; }; "dragDropInstructions": { "alias": "dragDropInstructions"; "required": false; }; "emptyStateLabel": { "alias": "emptyStateLabel"; "required": false; }; "enableDragDrop": { "alias": "enableDragDrop"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
3208
3209
  }
3209
3210
  export declare interface SwirlTable extends Components.SwirlTable {
3211
+ dropRow: EventEmitter<CustomEvent<ISwirlTableSwirlTableDropRowEvent>>;
3210
3212
  }
3211
3213
  export declare class SwirlTableCell {
3212
3214
  protected z: NgZone;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.299.0",
3
+ "version": "0.300.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^16.2.12",
15
15
  "@angular/platform-browser-dynamic": "^16.2.12",
16
16
  "@angular/router": "^16.2.12",
17
- "@getflip/swirl-components": "^0.299.0",
17
+ "@getflip/swirl-components": "^0.300.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.13.3"
@@ -7856,7 +7856,7 @@ export declare interface SwirlTabBar extends Components.SwirlTabBar {
7856
7856
 
7857
7857
 
7858
7858
  @ProxyCmp({
7859
- inputs: ['caption', 'emptyStateLabel', 'label'],
7859
+ inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
7860
7860
  methods: ['rerender']
7861
7861
  })
7862
7862
  @Component({
@@ -7864,18 +7864,24 @@ export declare interface SwirlTabBar extends Components.SwirlTabBar {
7864
7864
  changeDetection: ChangeDetectionStrategy.OnPush,
7865
7865
  template: '<ng-content></ng-content>',
7866
7866
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7867
- inputs: ['caption', 'emptyStateLabel', 'label'],
7867
+ inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
7868
7868
  })
7869
7869
  export class SwirlTable {
7870
7870
  protected el: HTMLElement;
7871
7871
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7872
7872
  c.detach();
7873
7873
  this.el = r.nativeElement;
7874
+ proxyOutputs(this, this.el, ['dropRow']);
7874
7875
  }
7875
7876
  }
7876
7877
 
7877
7878
 
7878
- export declare interface SwirlTable extends Components.SwirlTable {}
7879
+ import type { SwirlTableDropRowEvent as ISwirlTableSwirlTableDropRowEvent } from '@getflip/swirl-components';
7880
+
7881
+ export declare interface SwirlTable extends Components.SwirlTable {
7882
+
7883
+ dropRow: EventEmitter<CustomEvent<ISwirlTableSwirlTableDropRowEvent>>;
7884
+ }
7879
7885
 
7880
7886
 
7881
7887
  @ProxyCmp({