@getflip/swirl-components-angular 0.448.1 → 0.449.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 +3 -3
- package/CHANGELOG.md +27 -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
|
@@ -11,8 +11,6 @@ Building entry point '@getflip/swirl-components-angular'
|
|
|
11
11
|
- Copying assets
|
|
12
12
|
✔ Copying assets
|
|
13
13
|
- Writing package manifest
|
|
14
|
-
✔ Writing package manifest
|
|
15
|
-
✔ Built @getflip/swirl-components-angular
|
|
16
14
|
|
|
17
15
|
------------------------------------------------------------------------------
|
|
18
16
|
Built Angular Package
|
|
@@ -20,5 +18,7 @@ Built Angular Package
|
|
|
20
18
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
21
19
|
------------------------------------------------------------------------------
|
|
22
20
|
|
|
23
|
-
Build at: 2026-02-
|
|
21
|
+
Build at: 2026-02-25T12:00:52.706Z - Time: 13651ms
|
|
24
22
|
|
|
23
|
+
✔ Writing package manifest
|
|
24
|
+
✔ Built @getflip/swirl-components-angular
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.449.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1475](https://github.com/getflip/swirl/pull/1475)
|
|
8
|
+
[`d7393b37b`](https://github.com/getflip/swirl/commit/d7393b37b0992afeca65b4a60fdb81fef1da16dd)
|
|
9
|
+
Thanks [@AshleyBekemeier](https://github.com/AshleyBekemeier)! - Add suffix
|
|
10
|
+
slot for swirl form control
|
|
11
|
+
|
|
12
|
+
* [#1474](https://github.com/getflip/swirl/pull/1474)
|
|
13
|
+
[`45cc56d11`](https://github.com/getflip/swirl/commit/45cc56d1119f8a9419117e34fc428dc9dcd11a0d)
|
|
14
|
+
Thanks [@fabio-carvalho88](https://github.com/fabio-carvalho88)! - Add intent
|
|
15
|
+
prop to DataCell component
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#1472](https://github.com/getflip/swirl/pull/1472)
|
|
20
|
+
[`340398697`](https://github.com/getflip/swirl/commit/34039869799a51f34d5ee4948214b5aca6a77f67)
|
|
21
|
+
Thanks [@joseabernardes](https://github.com/joseabernardes)! - Fix output
|
|
22
|
+
scaling in swirl-file-viewer-pdf
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
[[`340398697`](https://github.com/getflip/swirl/commit/34039869799a51f34d5ee4948214b5aca6a77f67),
|
|
26
|
+
[`d7393b37b`](https://github.com/getflip/swirl/commit/d7393b37b0992afeca65b4a60fdb81fef1da16dd),
|
|
27
|
+
[`45cc56d11`](https://github.com/getflip/swirl/commit/45cc56d1119f8a9419117e34fc428dc9dcd11a0d)]:
|
|
28
|
+
- @getflip/swirl-components@0.449.0
|
|
29
|
+
|
|
3
30
|
## 0.448.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -763,11 +763,11 @@ let SwirlDataCell = class SwirlDataCell {
|
|
|
763
763
|
proxyOutputs(this, this.el, ['valueChange']);
|
|
764
764
|
}
|
|
765
765
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SwirlDataCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
766
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SwirlDataCell, isStandalone: false, selector: "swirl-data-cell", inputs: { label: "label", tooltip: "tooltip", value: "value", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
766
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SwirlDataCell, isStandalone: false, selector: "swirl-data-cell", inputs: { intent: "intent", label: "label", tooltip: "tooltip", value: "value", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
767
767
|
};
|
|
768
768
|
SwirlDataCell = __decorate([
|
|
769
769
|
ProxyCmp({
|
|
770
|
-
inputs: ['label', 'tooltip', 'value', 'vertical']
|
|
770
|
+
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical']
|
|
771
771
|
})
|
|
772
772
|
], SwirlDataCell);
|
|
773
773
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SwirlDataCell, decorators: [{
|
|
@@ -777,7 +777,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
777
777
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
778
778
|
template: '<ng-content></ng-content>',
|
|
779
779
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
780
|
-
inputs: ['label', 'tooltip', 'value', 'vertical'],
|
|
780
|
+
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical'],
|
|
781
781
|
standalone: false
|
|
782
782
|
}]
|
|
783
783
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|