@getflip/swirl-components-angular 0.305.0 → 0.308.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 +55 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +7 -7
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -4
|
@@ -391,7 +391,7 @@ export declare class SwirlFileUploader {
|
|
|
391
391
|
protected el: HTMLElement;
|
|
392
392
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
393
393
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFileUploader, never>;
|
|
394
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileUploader, "swirl-file-uploader", never, { "accept": { "alias": "accept"; "required": false; }; "ctaLabel": { "alias": "ctaLabel"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showDropzone": { "alias": "showDropzone"; "required": false; }; "uploadButtonIcon": { "alias": "uploadButtonIcon"; "required": false; }; "uploadButtonLabel": { "alias": "uploadButtonLabel"; "required": false; }; "uploadButtonVariant": { "alias": "uploadButtonVariant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
394
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileUploader, "swirl-file-uploader", never, { "accept": { "alias": "accept"; "required": false; }; "ctaLabel": { "alias": "ctaLabel"; "required": false; }; "description": { "alias": "description"; "required": false; }; "descriptionAllowHtml": { "alias": "descriptionAllowHtml"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showDropzone": { "alias": "showDropzone"; "required": false; }; "uploadButtonIcon": { "alias": "uploadButtonIcon"; "required": false; }; "uploadButtonLabel": { "alias": "uploadButtonLabel"; "required": false; }; "uploadButtonVariant": { "alias": "uploadButtonVariant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
395
395
|
}
|
|
396
396
|
export declare interface SwirlFileUploader extends Components.SwirlFileUploader {
|
|
397
397
|
valueChange: EventEmitter<CustomEvent<FileList>>;
|
|
@@ -2625,7 +2625,7 @@ export declare class SwirlStack {
|
|
|
2625
2625
|
protected el: HTMLElement;
|
|
2626
2626
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2627
2627
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlStack, never>;
|
|
2628
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlStack, "swirl-stack", never, { "align": { "alias": "align"; "required": false; }; "as": { "alias": "as"; "required": false; }; "height": { "alias": "height"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2628
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlStack, "swirl-stack", never, { "align": { "alias": "align"; "required": false; }; "as": { "alias": "as"; "required": false; }; "columnSpacing": { "alias": "columnSpacing"; "required": false; }; "height": { "alias": "height"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "rowSpacing": { "alias": "rowSpacing"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2629
2629
|
}
|
|
2630
2630
|
export declare interface SwirlStack extends Components.SwirlStack {
|
|
2631
2631
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.308.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.308.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -954,7 +954,7 @@ export declare interface SwirlEmptyState extends Components.SwirlEmptyState {}
|
|
|
954
954
|
|
|
955
955
|
|
|
956
956
|
@ProxyCmp({
|
|
957
|
-
inputs: ['accept', 'ctaLabel', 'description', 'disabled', 'dragDropLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
|
|
957
|
+
inputs: ['accept', 'ctaLabel', 'description', 'descriptionAllowHtml', 'disabled', 'dragDropLabel', 'hideLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
|
|
958
958
|
methods: ['reset']
|
|
959
959
|
})
|
|
960
960
|
@Component({
|
|
@@ -962,7 +962,7 @@ export declare interface SwirlEmptyState extends Components.SwirlEmptyState {}
|
|
|
962
962
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
963
963
|
template: '<ng-content></ng-content>',
|
|
964
964
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
965
|
-
inputs: ['accept', 'ctaLabel', 'description', 'disabled', 'dragDropLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
|
|
965
|
+
inputs: ['accept', 'ctaLabel', 'description', 'descriptionAllowHtml', 'disabled', 'dragDropLabel', 'hideLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
|
|
966
966
|
})
|
|
967
967
|
export class SwirlFileUploader {
|
|
968
968
|
protected el: HTMLElement;
|
|
@@ -6435,14 +6435,14 @@ export declare interface SwirlSpinner extends Components.SwirlSpinner {}
|
|
|
6435
6435
|
|
|
6436
6436
|
|
|
6437
6437
|
@ProxyCmp({
|
|
6438
|
-
inputs: ['align', 'as', 'height', 'justify', 'orientation', 'spacing', 'wrap']
|
|
6438
|
+
inputs: ['align', 'as', 'columnSpacing', 'height', 'justify', 'orientation', 'rowSpacing', 'spacing', 'wrap']
|
|
6439
6439
|
})
|
|
6440
6440
|
@Component({
|
|
6441
6441
|
selector: 'swirl-stack',
|
|
6442
6442
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6443
6443
|
template: '<ng-content></ng-content>',
|
|
6444
6444
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6445
|
-
inputs: ['align', 'as', 'height', 'justify', 'orientation', 'spacing', 'wrap'],
|
|
6445
|
+
inputs: ['align', 'as', 'columnSpacing', 'height', 'justify', 'orientation', 'rowSpacing', 'spacing', 'wrap'],
|
|
6446
6446
|
})
|
|
6447
6447
|
export class SwirlStack {
|
|
6448
6448
|
protected el: HTMLElement;
|