@getflip/swirl-components-angular 0.76.0 → 0.77.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 +14 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +5 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +4 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +4 -3
- 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 +10 -3
|
@@ -520,14 +520,15 @@ let SwirlChip = class SwirlChip {
|
|
|
520
520
|
this.z = z;
|
|
521
521
|
c.detach();
|
|
522
522
|
this.el = r.nativeElement;
|
|
523
|
+
proxyOutputs(this, this.el, ['remove']);
|
|
523
524
|
}
|
|
524
525
|
};
|
|
525
526
|
SwirlChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
526
|
-
SwirlChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlChip, selector: "swirl-chip", inputs: { icon: "icon", intent: "intent", interactive: "interactive", label: "label", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
527
|
+
SwirlChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlChip, selector: "swirl-chip", inputs: { borderRadius: "borderRadius", icon: "icon", intent: "intent", interactive: "interactive", label: "label", removable: "removable", removeButtonLabel: "removeButtonLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
527
528
|
SwirlChip = __decorate([
|
|
528
529
|
ProxyCmp({
|
|
529
530
|
defineCustomElementFn: undefined,
|
|
530
|
-
inputs: ['icon', 'intent', 'interactive', 'label', 'variant']
|
|
531
|
+
inputs: ['borderRadius', 'icon', 'intent', 'interactive', 'label', 'removable', 'removeButtonLabel', 'variant']
|
|
531
532
|
})
|
|
532
533
|
], SwirlChip);
|
|
533
534
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlChip, decorators: [{
|
|
@@ -536,7 +537,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
536
537
|
selector: 'swirl-chip',
|
|
537
538
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
538
539
|
template: '<ng-content></ng-content>',
|
|
539
|
-
inputs: ['icon', 'intent', 'interactive', 'label', 'variant']
|
|
540
|
+
inputs: ['borderRadius', 'icon', 'intent', 'interactive', 'label', 'removable', 'removeButtonLabel', 'variant']
|
|
540
541
|
}]
|
|
541
542
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
542
543
|
let SwirlColumns = class SwirlColumns {
|