@getflip/swirl-components-angular 0.35.0 → 0.36.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 +24 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +6 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -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 +4 -2
|
@@ -3936,10 +3936,11 @@ let SwirlSeparator = class SwirlSeparator {
|
|
|
3936
3936
|
}
|
|
3937
3937
|
};
|
|
3938
3938
|
SwirlSeparator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3939
|
-
SwirlSeparator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlSeparator, selector: "swirl-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3939
|
+
SwirlSeparator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlSeparator, selector: "swirl-separator", inputs: { spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3940
3940
|
SwirlSeparator = __decorate([
|
|
3941
3941
|
ProxyCmp({
|
|
3942
|
-
defineCustomElementFn: undefined
|
|
3942
|
+
defineCustomElementFn: undefined,
|
|
3943
|
+
inputs: ['spacing']
|
|
3943
3944
|
})
|
|
3944
3945
|
], SwirlSeparator);
|
|
3945
3946
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlSeparator, decorators: [{
|
|
@@ -3947,7 +3948,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
3947
3948
|
args: [{
|
|
3948
3949
|
selector: 'swirl-separator',
|
|
3949
3950
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3950
|
-
template: '<ng-content></ng-content>'
|
|
3951
|
+
template: '<ng-content></ng-content>',
|
|
3952
|
+
inputs: ['spacing']
|
|
3951
3953
|
}]
|
|
3952
3954
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3953
3955
|
let SwirlShellLayout = class SwirlShellLayout {
|