@getflip/swirl-components-angular 0.80.3 → 0.81.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 +26 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +5 -5
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +4 -4
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +5 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +7 -3
|
@@ -4427,15 +4427,15 @@ let SwirlModal = class SwirlModal {
|
|
|
4427
4427
|
this.z = z;
|
|
4428
4428
|
c.detach();
|
|
4429
4429
|
this.el = r.nativeElement;
|
|
4430
|
-
proxyOutputs(this, this.el, ['modalClose', 'modalOpen', 'primaryAction', 'secondaryAction']);
|
|
4430
|
+
proxyOutputs(this, this.el, ['modalClose', 'modalOpen', 'primaryAction', 'requestModalClose', 'secondaryAction']);
|
|
4431
4431
|
}
|
|
4432
4432
|
};
|
|
4433
4433
|
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 });
|
|
4434
|
-
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", maxHeight: "maxHeight", maxWidth: "maxWidth", padded: "padded", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4434
|
+
SwirlModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlModal, selector: "swirl-modal", inputs: { closable: "closable", closeButtonLabel: "closeButtonLabel", hideCloseButton: "hideCloseButton", hideLabel: "hideLabel", label: "label", maxHeight: "maxHeight", maxWidth: "maxWidth", padded: "padded", primaryActionLabel: "primaryActionLabel", secondaryActionLabel: "secondaryActionLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4435
4435
|
SwirlModal = __decorate([
|
|
4436
4436
|
ProxyCmp({
|
|
4437
4437
|
defineCustomElementFn: undefined,
|
|
4438
|
-
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant'],
|
|
4438
|
+
inputs: ['closable', 'closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant'],
|
|
4439
4439
|
methods: ['open', 'close']
|
|
4440
4440
|
})
|
|
4441
4441
|
], SwirlModal);
|
|
@@ -4445,7 +4445,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
4445
4445
|
selector: 'swirl-modal',
|
|
4446
4446
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4447
4447
|
template: '<ng-content></ng-content>',
|
|
4448
|
-
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant']
|
|
4448
|
+
inputs: ['closable', 'closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'maxHeight', 'maxWidth', 'padded', 'primaryActionLabel', 'secondaryActionLabel', 'variant']
|
|
4449
4449
|
}]
|
|
4450
4450
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
4451
4451
|
let SwirlOptionList = class SwirlOptionList {
|