@getflip/swirl-components-angular 0.442.0 → 0.443.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -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-02-
|
|
23
|
+
Build at: 2026-02-18T09:45:48.783Z - Time: 13700ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.443.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1453](https://github.com/getflip/swirl/pull/1453)
|
|
8
|
+
[`2af8d458b`](https://github.com/getflip/swirl/commit/2af8d458bcb1493f5f81e7d752faa15f0e56532b)
|
|
9
|
+
Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add return-focus-to prop to
|
|
10
|
+
swirl-dialog
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`2af8d458b`](https://github.com/getflip/swirl/commit/2af8d458bcb1493f5f81e7d752faa15f0e56532b)]:
|
|
16
|
+
- @getflip/swirl-components@0.443.0
|
|
17
|
+
|
|
3
18
|
## 0.442.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -927,11 +927,11 @@ let SwirlDialog = class SwirlDialog {
|
|
|
927
927
|
proxyOutputs(this, this.el, ['dialogClose', 'dialogOpen', 'primaryAction', 'secondaryAction', 'toggleDialog']);
|
|
928
928
|
}
|
|
929
929
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SwirlDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
930
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SwirlDialog, isStandalone: false, selector: "swirl-dialog", inputs: { hideLabel: "hideLabel", intent: "intent", label: "label", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
930
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", 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 });
|
|
931
931
|
};
|
|
932
932
|
SwirlDialog = __decorate([
|
|
933
933
|
ProxyCmp({
|
|
934
|
-
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
934
|
+
inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
|
|
935
935
|
methods: ['open', 'close']
|
|
936
936
|
})
|
|
937
937
|
], SwirlDialog);
|
|
@@ -942,7 +942,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
942
942
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
943
943
|
template: '<ng-content></ng-content>',
|
|
944
944
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
945
|
-
inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'secondaryActionLabel'],
|
|
945
|
+
inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
|
|
946
946
|
standalone: false
|
|
947
947
|
}]
|
|
948
948
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|