@getflip/swirl-components-angular 0.480.0-beta-20260417074020 → 0.480.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 +11 -3
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +4 -4
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -3
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -6
|
@@ -404,12 +404,11 @@ export declare class SwirlFileChip {
|
|
|
404
404
|
protected el: HTMLSwirlFileChipElement;
|
|
405
405
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
406
406
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFileChip, never>;
|
|
407
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileChip, "swirl-file-chip", never, { "
|
|
407
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileChip, "swirl-file-chip", never, { "description": { "alias": "description"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; }; "name": { "alias": "name"; "required": true; }; "previewButtonLabel": { "alias": "previewButtonLabel"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "showPreviewButton": { "alias": "showPreviewButton"; "required": false; }; "skipNativeDownload": { "alias": "skipNativeDownload"; "required": false; }; "type": { "alias": "type"; "required": true; }; "url": { "alias": "url"; "required": true; }; }, {}, never, ["*"], false, never>;
|
|
408
408
|
}
|
|
409
409
|
export declare interface SwirlFileChip extends Components.SwirlFileChip {
|
|
410
|
-
delete: EventEmitter<CustomEvent<void>>;
|
|
411
|
-
download: EventEmitter<CustomEvent<void>>;
|
|
412
410
|
preview: EventEmitter<CustomEvent<void>>;
|
|
411
|
+
download: EventEmitter<CustomEvent<void>>;
|
|
413
412
|
}
|
|
414
413
|
export declare class SwirlFileUploader {
|
|
415
414
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.480.0
|
|
3
|
+
"version": "0.480.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/getflip/swirl"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@angular/platform-browser": "19.2.19",
|
|
27
27
|
"@angular/platform-browser-dynamic": "19.2.19",
|
|
28
28
|
"@angular/router": "19.2.19",
|
|
29
|
-
"@getflip/swirl-components": "0.480.0
|
|
29
|
+
"@getflip/swirl-components": "0.480.0",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -1026,14 +1026,14 @@ export declare interface SwirlEmptyState extends Components.SwirlEmptyState {}
|
|
|
1026
1026
|
|
|
1027
1027
|
|
|
1028
1028
|
@ProxyCmp({
|
|
1029
|
-
inputs: ['
|
|
1029
|
+
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', 'name', 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', 'type', 'url']
|
|
1030
1030
|
})
|
|
1031
1031
|
@Component({
|
|
1032
1032
|
selector: 'swirl-file-chip',
|
|
1033
1033
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1034
1034
|
template: '<ng-content></ng-content>',
|
|
1035
1035
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1036
|
-
inputs: ['
|
|
1036
|
+
inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', { name: 'name', required: true }, 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', { name: 'type', required: true }, { name: 'url', required: true }],
|
|
1037
1037
|
standalone: false
|
|
1038
1038
|
})
|
|
1039
1039
|
export class SwirlFileChip {
|
|
@@ -1041,18 +1041,16 @@ export class SwirlFileChip {
|
|
|
1041
1041
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1042
1042
|
c.detach();
|
|
1043
1043
|
this.el = r.nativeElement;
|
|
1044
|
-
proxyOutputs(this, this.el, ['
|
|
1044
|
+
proxyOutputs(this, this.el, ['preview', 'download']);
|
|
1045
1045
|
}
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
1048
|
|
|
1049
1049
|
export declare interface SwirlFileChip extends Components.SwirlFileChip {
|
|
1050
1050
|
|
|
1051
|
-
|
|
1051
|
+
preview: EventEmitter<CustomEvent<void>>;
|
|
1052
1052
|
|
|
1053
1053
|
download: EventEmitter<CustomEvent<void>>;
|
|
1054
|
-
|
|
1055
|
-
preview: EventEmitter<CustomEvent<void>>;
|
|
1056
1054
|
}
|
|
1057
1055
|
|
|
1058
1056
|
|