@getflip/swirl-components-angular 0.355.1 → 0.356.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.
@@ -3500,7 +3500,7 @@ export declare class SwirlTable {
3500
3500
  protected el: HTMLSwirlTableElement;
3501
3501
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3502
3502
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTable, never>;
3503
- 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": true; }; }, {}, never, ["*"], false, never>;
3503
+ 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": true; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
3504
3504
  }
3505
3505
  export declare interface SwirlTable extends Components.SwirlTable {
3506
3506
  dropRow: EventEmitter<CustomEvent<ISwirlTableSwirlTableDropRowEvent>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.355.1",
3
+ "version": "0.356.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,7 +22,7 @@
22
22
  "@angular/platform-browser": "19.2.3",
23
23
  "@angular/platform-browser-dynamic": "19.2.3",
24
24
  "@angular/router": "19.2.3",
25
- "@getflip/swirl-components": "^0.355.1",
25
+ "@getflip/swirl-components": "^0.356.0",
26
26
  "rxjs": "~7.8.0",
27
27
  "tslib": "^2.3.0",
28
28
  "zone.js": "0.15.0"
@@ -8952,7 +8952,7 @@ export declare interface SwirlTabBar extends Components.SwirlTabBar {
8952
8952
 
8953
8953
 
8954
8954
  @ProxyCmp({
8955
- inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
8955
+ inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label', 'loading'],
8956
8956
  methods: ['rerender']
8957
8957
  })
8958
8958
  @Component({
@@ -8960,7 +8960,7 @@ export declare interface SwirlTabBar extends Components.SwirlTabBar {
8960
8960
  changeDetection: ChangeDetectionStrategy.OnPush,
8961
8961
  template: '<ng-content></ng-content>',
8962
8962
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8963
- inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', { name: 'label', required: true }],
8963
+ inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', { name: 'label', required: true }, 'loading'],
8964
8964
  standalone: false
8965
8965
  })
8966
8966
  export class SwirlTable {