@getflip/swirl-components-angular 0.374.0 → 0.375.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-05T08:11:08.002Z - Time: 12115ms
23
+ Build at: 2025-09-05T12:17:07.226Z - Time: 12589ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.375.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1216](https://github.com/getflip/swirl/pull/1216)
8
+ [`de8f31cd8`](https://github.com/getflip/swirl/commit/de8f31cd8f196504321c3b5ffd6642023ea944cd)
9
+ Thanks [@joseabernardes](https://github.com/joseabernardes)! - Add constrained
10
+ prop to constrain size in swirl-date-picker
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ [[`de8f31cd8`](https://github.com/getflip/swirl/commit/de8f31cd8f196504321c3b5ffd6642023ea944cd)]:
16
+ - @getflip/swirl-components@0.375.0
17
+
3
18
  ## 0.374.0
4
19
 
5
20
  ### Minor Changes
@@ -790,11 +790,11 @@ let SwirlDatePicker = class SwirlDatePicker {
790
790
  proxyOutputs(this, this.el, ['valueChange']);
791
791
  }
792
792
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
793
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlDatePicker, isStandalone: false, selector: "swirl-date-picker", inputs: { disableDate: "disableDate", firstDayOfWeek: "firstDayOfWeek", labels: "labels", locale: "locale", range: "range", startDate: "startDate", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
793
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlDatePicker, isStandalone: false, selector: "swirl-date-picker", inputs: { disableDate: "disableDate", firstDayOfWeek: "firstDayOfWeek", fixedMaxWidth: "fixedMaxWidth", labels: "labels", locale: "locale", range: "range", startDate: "startDate", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
794
794
  };
795
795
  SwirlDatePicker = __decorate([
796
796
  ProxyCmp({
797
- inputs: ['disableDate', 'firstDayOfWeek', 'labels', 'locale', 'range', 'startDate', 'value']
797
+ inputs: ['disableDate', 'firstDayOfWeek', 'fixedMaxWidth', 'labels', 'locale', 'range', 'startDate', 'value']
798
798
  })
799
799
  ], SwirlDatePicker);
800
800
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlDatePicker, decorators: [{
@@ -804,7 +804,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
804
804
  changeDetection: ChangeDetectionStrategy.OnPush,
805
805
  template: '<ng-content></ng-content>',
806
806
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
807
- inputs: ['disableDate', 'firstDayOfWeek', 'labels', 'locale', 'range', 'startDate', 'value'],
807
+ inputs: ['disableDate', 'firstDayOfWeek', 'fixedMaxWidth', 'labels', 'locale', 'range', 'startDate', 'value'],
808
808
  standalone: false
809
809
  }]
810
810
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });