@getflip/swirl-components-angular 0.492.1 → 0.493.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: 2026-05-18T16:50:14.984Z - Time: 12349ms
23
+ Build at: 2026-05-19T12:03:24.698Z - Time: 9984ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.493.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1676](https://github.com/getflip/swirl/pull/1676)
8
+ [`1135ab61d`](https://github.com/getflip/swirl/commit/1135ab61db7af28ca3c769390023f56fb42b3387)
9
+ Thanks [@danizep](https://github.com/danizep)! - Add support small button
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ [[`1135ab61d`](https://github.com/getflip/swirl/commit/1135ab61db7af28ca3c769390023f56fb42b3387)]:
15
+ - @getflip/swirl-components@0.493.0
16
+
3
17
  ## 0.492.1
4
18
 
5
19
  ### Patch Changes
@@ -902,11 +902,11 @@ let SwirlDialog = class SwirlDialog {
902
902
  proxyOutputs(this, this.el, ['dialogClose', 'dialogOpen', 'primaryAction', 'secondaryAction', 'toggleDialog']);
903
903
  }
904
904
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
905
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlDialog, isStandalone: false, selector: "swirl-dialog", inputs: { hideLabel: "hideLabel", intent: "intent", label: "label", primaryActionLabel: "primaryActionLabel", returnFocusTo: "returnFocusTo", secondaryActionLabel: "secondaryActionLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
905
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlDialog, isStandalone: false, selector: "swirl-dialog", inputs: { actionsOrientation: "actionsOrientation", hideLabel: "hideLabel", intent: "intent", label: "label", primaryActionLabel: "primaryActionLabel", returnFocusTo: "returnFocusTo", secondaryActionLabel: "secondaryActionLabel", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
906
906
  };
907
907
  SwirlDialog = __decorate([
908
908
  ProxyCmp({
909
- inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
909
+ inputs: ['actionsOrientation', 'hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel', 'size'],
910
910
  methods: ['open', 'close']
911
911
  })
912
912
  ], SwirlDialog);
@@ -917,7 +917,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
917
917
  changeDetection: ChangeDetectionStrategy.OnPush,
918
918
  template: '<ng-content></ng-content>',
919
919
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
920
- inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
920
+ inputs: ['actionsOrientation', 'hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel', 'size'],
921
921
  standalone: false
922
922
  }]
923
923
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });