@getflip/swirl-components-angular 0.99.0 → 0.100.1
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 +31 -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
|
@@ -82,6 +82,7 @@ let SwirlAccordion = class SwirlAccordion {
|
|
|
82
82
|
this.z = z;
|
|
83
83
|
c.detach();
|
|
84
84
|
this.el = r.nativeElement;
|
|
85
|
+
proxyOutputs(this, this.el, ['expandedItemChange']);
|
|
85
86
|
}
|
|
86
87
|
};
|
|
87
88
|
SwirlAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -598,11 +599,11 @@ let SwirlColorInput = class SwirlColorInput {
|
|
|
598
599
|
}
|
|
599
600
|
};
|
|
600
601
|
SwirlColorInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlColorInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
601
|
-
SwirlColorInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlColorInput, selector: "swirl-color-input", inputs: { autoFocus: "autoFocus", autoSelect: "autoSelect", disabled: "disabled", inline: "inline", invalid: "invalid", placeholder: "placeholder", required: "required", swirlAriaDescribedby: "swirlAriaDescribedby", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
602
|
+
SwirlColorInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlColorInput, selector: "swirl-color-input", inputs: { autoFocus: "autoFocus", autoSelect: "autoSelect", disabled: "disabled", inline: "inline", invalid: "invalid", pickerButtonLabel: "pickerButtonLabel", pickerLabel: "pickerLabel", placeholder: "placeholder", required: "required", swirlAriaDescribedby: "swirlAriaDescribedby", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
602
603
|
SwirlColorInput = __decorate([
|
|
603
604
|
ProxyCmp({
|
|
604
605
|
defineCustomElementFn: undefined,
|
|
605
|
-
inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
606
|
+
inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'pickerButtonLabel', 'pickerLabel', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
606
607
|
})
|
|
607
608
|
], SwirlColorInput);
|
|
608
609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlColorInput, decorators: [{
|
|
@@ -611,7 +612,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
611
612
|
selector: 'swirl-color-input',
|
|
612
613
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
613
614
|
template: '<ng-content></ng-content>',
|
|
614
|
-
inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
615
|
+
inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'pickerButtonLabel', 'pickerLabel', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
|
|
615
616
|
}]
|
|
616
617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
618
|
let SwirlColumns = class SwirlColumns {
|