@getflip/swirl-components-angular 0.515.0 → 0.516.0-beta-20260730163854

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.
@@ -21,6 +21,6 @@ Built Angular Package
21
21
  - to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
22
22
  ------------------------------------------------------------------------------
23
23
 
24
- Build at: 2026-07-17T08:37:37.719Z - Time: 9878ms
24
+ Build at: 2026-07-30T16:38:46.497Z - Time: 13843ms
25
25
 
26
- Done in 11.65s.
26
+ Done in 16.28s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.516.0-beta-20260730163854
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1750](https://github.com/getflip/swirl/pull/1750)
8
+ [`56ec55e61`](https://github.com/getflip/swirl/commit/56ec55e6134ad433bc8b194ff599802b01e373e6)
9
+ Thanks [@AshleyBekemeier](https://github.com/AshleyBekemeier)! - Fix Drawer
10
+ backdrop fade-out
11
+
12
+ * [#1757](https://github.com/getflip/swirl/pull/1757)
13
+ [`d8fc75cc3`](https://github.com/getflip/swirl/commit/d8fc75cc3771422339a13c8d8d8c37e1b945e7ba)
14
+ Thanks [@danizep](https://github.com/danizep)! - Update SwirlTreeView to
15
+ support custom expand/collapse icons, remove drag handle and add grouping line
16
+ on nested items
17
+
18
+ - [#1751](https://github.com/getflip/swirl/pull/1751)
19
+ [`7321d3b0b`](https://github.com/getflip/swirl/commit/7321d3b0b918212b49b4acd5668aa56653fe7a92)
20
+ Thanks [@fabio-carvalho88](https://github.com/fabio-carvalho88)! - Add
21
+ min-width to swirl-button for improved layout consistency
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ [[`56ec55e61`](https://github.com/getflip/swirl/commit/56ec55e6134ad433bc8b194ff599802b01e373e6),
27
+ [`d8fc75cc3`](https://github.com/getflip/swirl/commit/d8fc75cc3771422339a13c8d8d8c37e1b945e7ba),
28
+ [`7321d3b0b`](https://github.com/getflip/swirl/commit/7321d3b0b918212b49b4acd5668aa56653fe7a92),
29
+ [`cf4592931`](https://github.com/getflip/swirl/commit/cf4592931eb2128cdff29979c39d78709ddd6618),
30
+ [`c3907322d`](https://github.com/getflip/swirl/commit/c3907322d490be6c15d98c6cab0ee3f75ec47ef9)]:
31
+ - @getflip/swirl-components@0.516.0-beta-20260730163854
32
+
3
33
  ## 0.515.0
4
34
 
5
35
  ### Minor Changes
@@ -13735,11 +13735,11 @@ let SwirlTreeView = class SwirlTreeView {
13735
13735
  proxyOutputs(this, this.el, ['dropItem', 'itemExpansionChanged']);
13736
13736
  }
13737
13737
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.23", ngImport: i0, type: SwirlTreeView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
13738
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.23", type: SwirlTreeView, isStandalone: false, selector: "swirl-tree-view", inputs: { canDrop: "canDrop", dragDropInstructions: "dragDropInstructions", dragDropItemSelector: "dragDropItemSelector", enableDragDrop: "enableDragDrop", initiallyExpandedItemIds: "initiallyExpandedItemIds", label: "label", semantics: "semantics" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
13738
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.23", type: SwirlTreeView, isStandalone: false, selector: "swirl-tree-view", inputs: { canDrop: "canDrop", collapsedIcon: "collapsedIcon", dragDropInstructions: "dragDropInstructions", dragDropItemSelector: "dragDropItemSelector", enableDragDrop: "enableDragDrop", expandedIcon: "expandedIcon", initiallyExpandedItemIds: "initiallyExpandedItemIds", label: "label", semantics: "semantics" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
13739
13739
  };
13740
13740
  SwirlTreeView = __decorate([
13741
13741
  ProxyCmp({
13742
- inputs: ['canDrop', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'initiallyExpandedItemIds', 'label', 'semantics'],
13742
+ inputs: ['canDrop', 'collapsedIcon', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'expandedIcon', 'initiallyExpandedItemIds', 'label', 'semantics'],
13743
13743
  methods: ['expandItems']
13744
13744
  })
13745
13745
  ], SwirlTreeView);
@@ -13750,7 +13750,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.23", ngImpo
13750
13750
  changeDetection: ChangeDetectionStrategy.OnPush,
13751
13751
  template: '<ng-content></ng-content>',
13752
13752
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
13753
- inputs: ['canDrop', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'initiallyExpandedItemIds', { name: 'label', required: true }, 'semantics'],
13753
+ inputs: ['canDrop', 'collapsedIcon', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'expandedIcon', 'initiallyExpandedItemIds', { name: 'label', required: true }, 'semantics'],
13754
13754
  standalone: false
13755
13755
  }]
13756
13756
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
@@ -13764,11 +13764,11 @@ let SwirlTreeViewItem = class SwirlTreeViewItem {
13764
13764
  proxyOutputs(this, this.el, ['dropTreeViewItem', 'expandedChange', 'itemSelected', 'startKeyboardMove', 'endKeyboardMove', 'keyboardMove']);
13765
13765
  }
13766
13766
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.23", ngImport: i0, type: SwirlTreeViewItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
13767
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.23", type: SwirlTreeViewItem, isStandalone: false, selector: "swirl-tree-view-item", inputs: { active: "active", disableDrag: "disableDrag", expandable: "expandable", href: "href", icon: "icon", iconColor: "iconColor", itemId: "itemId", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
13767
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.23", type: SwirlTreeViewItem, isStandalone: false, selector: "swirl-tree-view-item", inputs: { active: "active", collapsedIcon: "collapsedIcon", disableDrag: "disableDrag", expandable: "expandable", expandedIcon: "expandedIcon", href: "href", icon: "icon", iconColor: "iconColor", itemId: "itemId", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
13768
13768
  };
13769
13769
  SwirlTreeViewItem = __decorate([
13770
13770
  ProxyCmp({
13771
- inputs: ['active', 'disableDrag', 'expandable', 'href', 'icon', 'iconColor', 'itemId', 'label'],
13771
+ inputs: ['active', 'collapsedIcon', 'disableDrag', 'expandable', 'expandedIcon', 'href', 'icon', 'iconColor', 'itemId', 'label'],
13772
13772
  methods: ['expand', 'collapse', 'select', 'unselect']
13773
13773
  })
13774
13774
  ], SwirlTreeViewItem);
@@ -13779,7 +13779,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.23", ngImpo
13779
13779
  changeDetection: ChangeDetectionStrategy.OnPush,
13780
13780
  template: '<ng-content></ng-content>',
13781
13781
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
13782
- inputs: ['active', 'disableDrag', 'expandable', 'href', 'icon', 'iconColor', { name: 'itemId', required: true }, { name: 'label', required: true }],
13782
+ inputs: ['active', 'collapsedIcon', 'disableDrag', 'expandable', 'expandedIcon', 'href', 'icon', 'iconColor', { name: 'itemId', required: true }, { name: 'label', required: true }],
13783
13783
  standalone: false
13784
13784
  }]
13785
13785
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });