@getflip/swirl-components-angular 0.363.6 → 0.364.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.
@@ -20,5 +20,5 @@ Built Angular Package
20
20
  - to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
21
21
  ------------------------------------------------------------------------------
22
22
 
23
- Build at: 2025-08-13T10:13:23.980Z - Time: 12599ms
23
+ Build at: 2025-08-19T13:19:39.941Z - Time: 12337ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.364.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1183](https://github.com/getflip/swirl/pull/1183)
8
+ [`617f4f7c`](https://github.com/getflip/swirl/commit/617f4f7cf42f32176ff4597fea021527db535599)
9
+ Thanks [@joseabernardes](https://github.com/joseabernardes)! - Improve
10
+ keyboard navigation in swirl-option-list
11
+
12
+ * [#1183](https://github.com/getflip/swirl/pull/1183)
13
+ [`617f4f7c`](https://github.com/getflip/swirl/commit/617f4f7cf42f32176ff4597fea021527db535599)
14
+ Thanks [@joseabernardes](https://github.com/joseabernardes)! - Add select all
15
+ option to swirl-option-list
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ [[`617f4f7c`](https://github.com/getflip/swirl/commit/617f4f7cf42f32176ff4597fea021527db535599),
21
+ [`617f4f7c`](https://github.com/getflip/swirl/commit/617f4f7cf42f32176ff4597fea021527db535599)]:
22
+ - @getflip/swirl-components@0.364.0
23
+
3
24
  ## 0.363.6
4
25
 
5
26
  ### Patch Changes
@@ -8021,11 +8021,11 @@ let SwirlOptionList = class SwirlOptionList {
8021
8021
  proxyOutputs(this, this.el, ['itemDrop', 'valueChange']);
8022
8022
  }
8023
8023
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
8024
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlOptionList, isStandalone: false, selector: "swirl-option-list", inputs: { allowDeselect: "allowDeselect", allowDrag: "allowDrag", assistiveTextItemGrabbed: "assistiveTextItemGrabbed", assistiveTextItemMoved: "assistiveTextItemMoved", assistiveTextItemMoving: "assistiveTextItemMoving", disabled: "disabled", label: "label", multiSelect: "multiSelect", optionListId: "optionListId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8024
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlOptionList, isStandalone: false, selector: "swirl-option-list", inputs: { allowDeselect: "allowDeselect", allowDrag: "allowDrag", assistiveTextItemGrabbed: "assistiveTextItemGrabbed", assistiveTextItemMoved: "assistiveTextItemMoved", assistiveTextItemMoving: "assistiveTextItemMoving", disabled: "disabled", label: "label", multiSelect: "multiSelect", optionListId: "optionListId", selectAllLabel: "selectAllLabel", showSelectAll: "showSelectAll", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8025
8025
  };
8026
8026
  SwirlOptionList = __decorate([
8027
8027
  ProxyCmp({
8028
- inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value']
8028
+ inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'selectAllLabel', 'showSelectAll', 'value']
8029
8029
  })
8030
8030
  ], SwirlOptionList);
8031
8031
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlOptionList, decorators: [{
@@ -8035,7 +8035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
8035
8035
  changeDetection: ChangeDetectionStrategy.OnPush,
8036
8036
  template: '<ng-content></ng-content>',
8037
8037
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8038
- inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value'],
8038
+ inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'selectAllLabel', 'showSelectAll', 'value'],
8039
8039
  standalone: false
8040
8040
  }]
8041
8041
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
@@ -8049,11 +8049,11 @@ let SwirlOptionListItem = class SwirlOptionListItem {
8049
8049
  proxyOutputs(this, this.el, ['toggleDrag']);
8050
8050
  }
8051
8051
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlOptionListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
8052
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlOptionListItem, isStandalone: false, selector: "swirl-option-list-item", inputs: { allowDrag: "allowDrag", context: "context", description: "description", disabled: "disabled", dragHandleDescription: "dragHandleDescription", dragHandleLabel: "dragHandleLabel", dragging: "dragging", icon: "icon", iconBadge: "iconBadge", label: "label", selected: "selected", swirlAriaRole: "swirlAriaRole", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8052
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlOptionListItem, isStandalone: false, selector: "swirl-option-list-item", inputs: { allowDrag: "allowDrag", context: "context", description: "description", disabled: "disabled", dragHandleDescription: "dragHandleDescription", dragHandleLabel: "dragHandleLabel", dragging: "dragging", icon: "icon", iconBadge: "iconBadge", indeterminate: "indeterminate", label: "label", selected: "selected", swirlAriaRole: "swirlAriaRole", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8053
8053
  };
8054
8054
  SwirlOptionListItem = __decorate([
8055
8055
  ProxyCmp({
8056
- inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', 'label', 'selected', 'swirlAriaRole', 'value']
8056
+ inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', 'indeterminate', 'label', 'selected', 'swirlAriaRole', 'value']
8057
8057
  })
8058
8058
  ], SwirlOptionListItem);
8059
8059
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlOptionListItem, decorators: [{
@@ -8063,7 +8063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
8063
8063
  changeDetection: ChangeDetectionStrategy.OnPush,
8064
8064
  template: '<ng-content></ng-content>',
8065
8065
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8066
- inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', { name: 'label', required: true }, 'selected', 'swirlAriaRole', { name: 'value', required: true }],
8066
+ inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', 'indeterminate', { name: 'label', required: true }, 'selected', 'swirlAriaRole', { name: 'value', required: true }],
8067
8067
  standalone: false
8068
8068
  }]
8069
8069
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });