@getflip/swirl-components-angular 0.381.1 → 0.383.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-09-18T11:24:31.531Z - Time: 12627ms
23
+ Build at: 2025-09-22T13:13:29.404Z - Time: 12166ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.383.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1247](https://github.com/getflip/swirl/pull/1247)
8
+ [`3f9fcd342`](https://github.com/getflip/swirl/commit/3f9fcd342b4e9822a982ddbbd195608fc32a05ed)
9
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add "hide-description" prop to
10
+ swirl-switch
11
+
12
+ ### Patch Changes
13
+
14
+ - [#1247](https://github.com/getflip/swirl/pull/1247)
15
+ [`3f9fcd342`](https://github.com/getflip/swirl/commit/3f9fcd342b4e9822a982ddbbd195608fc32a05ed)
16
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Fix swirl-switch width if no
17
+ visual label or description is present
18
+
19
+ - Updated dependencies
20
+ [[`3f9fcd342`](https://github.com/getflip/swirl/commit/3f9fcd342b4e9822a982ddbbd195608fc32a05ed),
21
+ [`3f9fcd342`](https://github.com/getflip/swirl/commit/3f9fcd342b4e9822a982ddbbd195608fc32a05ed)]:
22
+ - @getflip/swirl-components@0.383.0
23
+
24
+ ## 0.382.0
25
+
26
+ ### Minor Changes
27
+
28
+ - [#1244](https://github.com/getflip/swirl/pull/1244)
29
+ [`9afd52e95`](https://github.com/getflip/swirl/commit/9afd52e95ec50d26533f9b8d79e7742949b98b75)
30
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add optional suffix to
31
+ swirl-tab-bar tabs
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies
36
+ [[`9afd52e95`](https://github.com/getflip/swirl/commit/9afd52e95ec50d26533f9b8d79e7742949b98b75)]:
37
+ - @getflip/swirl-components@0.382.0
38
+
3
39
  ## 0.381.1
4
40
 
5
41
  ### Patch Changes
@@ -8739,11 +8739,11 @@ let SwirlSwitch = class SwirlSwitch {
8739
8739
  proxyOutputs(this, this.el, ['valueChange']);
8740
8740
  }
8741
8741
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
8742
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSwitch, isStandalone: false, selector: "swirl-switch", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", inputName: "inputName", label: "label", labelPosition: "labelPosition", swirlAriaLabel: "swirlAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8742
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlSwitch, isStandalone: false, selector: "swirl-switch", inputs: { checked: "checked", description: "description", disabled: "disabled", hideDescription: "hideDescription", hideLabel: "hideLabel", inputId: "inputId", inputName: "inputName", label: "label", labelPosition: "labelPosition", swirlAriaLabel: "swirlAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8743
8743
  };
8744
8744
  SwirlSwitch = __decorate([
8745
8745
  ProxyCmp({
8746
- inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
8746
+ inputs: ['checked', 'description', 'disabled', 'hideDescription', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
8747
8747
  methods: ['toggle']
8748
8748
  })
8749
8749
  ], SwirlSwitch);
@@ -8754,7 +8754,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
8754
8754
  changeDetection: ChangeDetectionStrategy.OnPush,
8755
8755
  template: '<ng-content></ng-content>',
8756
8756
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8757
- inputs: ['checked', 'description', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
8757
+ inputs: ['checked', 'description', 'disabled', 'hideDescription', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
8758
8758
  standalone: false
8759
8759
  }]
8760
8760
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });