@getflip/swirl-components-angular 0.16.0 → 0.17.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 +2 -2
- package/CHANGELOG.md +18 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2020/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
|
@@ -3416,11 +3416,11 @@ let SwirlModal = class SwirlModal {
|
|
|
3416
3416
|
}
|
|
3417
3417
|
};
|
|
3418
3418
|
SwirlModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3419
|
-
SwirlModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlModal, selector: "swirl-modal", inputs: { closeButtonLabel: "closeButtonLabel", label: "label", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3419
|
+
SwirlModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlModal, selector: "swirl-modal", inputs: { closeButtonLabel: "closeButtonLabel", hideCloseButton: "hideCloseButton", hideLabel: "hideLabel", label: "label", padded: "padded", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3420
3420
|
SwirlModal = __decorate([
|
|
3421
3421
|
ProxyCmp({
|
|
3422
3422
|
defineCustomElementFn: undefined,
|
|
3423
|
-
inputs: ['closeButtonLabel', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
3423
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'padded', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
3424
3424
|
methods: ['open', 'close']
|
|
3425
3425
|
})
|
|
3426
3426
|
], SwirlModal);
|
|
@@ -3430,7 +3430,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3430
3430
|
selector: 'swirl-modal',
|
|
3431
3431
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3432
3432
|
template: '<ng-content></ng-content>',
|
|
3433
|
-
inputs: ['closeButtonLabel', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
3433
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'padded', 'primaryActionLabel', 'secondaryActionLabel']
|
|
3434
3434
|
}]
|
|
3435
3435
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3436
3436
|
let SwirlOptionList = class SwirlOptionList {
|