@getflip/swirl-components-angular 0.478.0 → 0.480.0-beta-20260416102931
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 +29 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +7 -7
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +4 -3
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +8 -6
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-04-
|
|
23
|
+
Build at: 2026-04-16T10:29:22.472Z - Time: 12579ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.480.0-beta-20260416102931
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
[[`57f2282b7`](https://github.com/getflip/swirl/commit/57f2282b728136337ee1b6be47b97090ce90201c)]:
|
|
9
|
+
- @getflip/swirl-components@0.480.0-beta-20260416102931
|
|
10
|
+
|
|
11
|
+
## 0.479.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#1611](https://github.com/getflip/swirl/pull/1611)
|
|
16
|
+
[`cf725235d`](https://github.com/getflip/swirl/commit/cf725235d460e242597f53efdf1e04accf3088d0)
|
|
17
|
+
Thanks [@fabio-carvalho88](https://github.com/fabio-carvalho88)! - Fix
|
|
18
|
+
swirl-dialog title and long button labels
|
|
19
|
+
|
|
20
|
+
* [#1613](https://github.com/getflip/swirl/pull/1613)
|
|
21
|
+
[`f410f48a6`](https://github.com/getflip/swirl/commit/f410f48a6b16379f2ebd6781031da16bbe1544f0)
|
|
22
|
+
Thanks [@matvlaovi-flip](https://github.com/matvlaovi-flip)! - Add
|
|
23
|
+
`enableFlip` to swirl-tooltip
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
[[`cf725235d`](https://github.com/getflip/swirl/commit/cf725235d460e242597f53efdf1e04accf3088d0),
|
|
29
|
+
[`f410f48a6`](https://github.com/getflip/swirl/commit/f410f48a6b16379f2ebd6781031da16bbe1544f0)]:
|
|
30
|
+
- @getflip/swirl-components@0.479.0
|
|
31
|
+
|
|
3
32
|
## 0.478.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
|
@@ -1144,14 +1144,14 @@ let SwirlFileChip = class SwirlFileChip {
|
|
|
1144
1144
|
this.z = z;
|
|
1145
1145
|
c.detach();
|
|
1146
1146
|
this.el = r.nativeElement;
|
|
1147
|
-
proxyOutputs(this, this.el, ['preview', '
|
|
1147
|
+
proxyOutputs(this, this.el, ['download', 'preview', 'remove']);
|
|
1148
1148
|
}
|
|
1149
1149
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlFileChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1150
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlFileChip, isStandalone: false, selector: "swirl-file-chip", inputs: { description: "description", downloadButtonLabel: "downloadButtonLabel", loading: "loading", loadingLabel: "loadingLabel", name: "name", previewButtonLabel: "previewButtonLabel", showDownloadButton: "showDownloadButton", showPreviewButton: "showPreviewButton", skipNativeDownload: "skipNativeDownload", type: "type", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1150
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlFileChip, isStandalone: false, selector: "swirl-file-chip", inputs: { description: "description", downloadButtonLabel: "downloadButtonLabel", loading: "loading", loadingLabel: "loadingLabel", name: "name", previewButtonLabel: "previewButtonLabel", removeButtonLabel: "removeButtonLabel", showDownloadButton: "showDownloadButton", showPreviewButton: "showPreviewButton", showRemoveButton: "showRemoveButton", skipNativeDownload: "skipNativeDownload", type: "type", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1151
1151
|
};
|
|
1152
1152
|
SwirlFileChip = __decorate([
|
|
1153
1153
|
ProxyCmp({
|
|
1154
|
-
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', 'name', 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', 'type', 'url']
|
|
1154
|
+
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', 'name', 'previewButtonLabel', 'removeButtonLabel', 'showDownloadButton', 'showPreviewButton', 'showRemoveButton', 'skipNativeDownload', 'type', 'url']
|
|
1155
1155
|
})
|
|
1156
1156
|
], SwirlFileChip);
|
|
1157
1157
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlFileChip, decorators: [{
|
|
@@ -1161,7 +1161,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
1161
1161
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1162
1162
|
template: '<ng-content></ng-content>',
|
|
1163
1163
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1164
|
-
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', { name: 'name', required: true }, 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', { name: 'type', required: true }, { name: 'url', required: true }],
|
|
1164
|
+
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', { name: 'name', required: true }, 'previewButtonLabel', 'removeButtonLabel', 'showDownloadButton', 'showPreviewButton', 'showRemoveButton', 'skipNativeDownload', { name: 'type', required: true }, { name: 'url', required: true }],
|
|
1165
1165
|
standalone: false
|
|
1166
1166
|
}]
|
|
1167
1167
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
@@ -13163,11 +13163,11 @@ let SwirlTooltip = class SwirlTooltip {
|
|
|
13163
13163
|
this.el = r.nativeElement;
|
|
13164
13164
|
}
|
|
13165
13165
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
13166
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlTooltip, isStandalone: false, selector: "swirl-tooltip", inputs: { active: "active", content: "content", delay: "delay", intent: "intent", maxWidth: "maxWidth", position: "position", positioning: "positioning", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13166
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlTooltip, isStandalone: false, selector: "swirl-tooltip", inputs: { active: "active", content: "content", delay: "delay", enableFlip: "enableFlip", intent: "intent", maxWidth: "maxWidth", position: "position", positioning: "positioning", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13167
13167
|
};
|
|
13168
13168
|
SwirlTooltip = __decorate([
|
|
13169
13169
|
ProxyCmp({
|
|
13170
|
-
inputs: ['active', 'content', 'delay', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
13170
|
+
inputs: ['active', 'content', 'delay', 'enableFlip', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
13171
13171
|
methods: ['show', 'hide']
|
|
13172
13172
|
})
|
|
13173
13173
|
], SwirlTooltip);
|
|
@@ -13178,7 +13178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
13178
13178
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
13179
13179
|
template: '<ng-content></ng-content>',
|
|
13180
13180
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
13181
|
-
inputs: ['active', { name: 'content', required: true }, 'delay', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
13181
|
+
inputs: ['active', { name: 'content', required: true }, 'delay', 'enableFlip', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
13182
13182
|
standalone: false
|
|
13183
13183
|
}]
|
|
13184
13184
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|