@getflip/swirl-components-angular 0.98.0 → 0.99.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 +6 -5
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -4
- 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 -3
|
@@ -88,7 +88,8 @@ SwirlAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version:
|
|
|
88
88
|
SwirlAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAccordion, selector: "swirl-accordion", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
89
89
|
SwirlAccordion = __decorate([
|
|
90
90
|
ProxyCmp({
|
|
91
|
-
defineCustomElementFn: undefined
|
|
91
|
+
defineCustomElementFn: undefined,
|
|
92
|
+
methods: ['collapseItem', 'expandItem']
|
|
92
93
|
})
|
|
93
94
|
], SwirlAccordion);
|
|
94
95
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAccordion, decorators: [{
|
|
@@ -108,11 +109,11 @@ let SwirlAccordionItem = class SwirlAccordionItem {
|
|
|
108
109
|
}
|
|
109
110
|
};
|
|
110
111
|
SwirlAccordionItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: SwirlAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
111
|
-
SwirlAccordionItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAccordionItem, selector: "swirl-accordion-item", inputs: { description: "description", disabled: "disabled", heading: "heading", headingLevel: "headingLevel", initiallyOpen: "initiallyOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
112
|
+
SwirlAccordionItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.2", type: SwirlAccordionItem, selector: "swirl-accordion-item", inputs: { description: "description", disabled: "disabled", heading: "heading", headingLevel: "headingLevel", initiallyOpen: "initiallyOpen", itemId: "itemId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
112
113
|
SwirlAccordionItem = __decorate([
|
|
113
114
|
ProxyCmp({
|
|
114
115
|
defineCustomElementFn: undefined,
|
|
115
|
-
inputs: ['description', 'disabled', 'heading', 'headingLevel', 'initiallyOpen'],
|
|
116
|
+
inputs: ['description', 'disabled', 'heading', 'headingLevel', 'initiallyOpen', 'itemId'],
|
|
116
117
|
methods: ['collapse', 'expand', 'toggle']
|
|
117
118
|
})
|
|
118
119
|
], SwirlAccordionItem);
|
|
@@ -122,7 +123,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
|
|
|
122
123
|
selector: 'swirl-accordion-item',
|
|
123
124
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
124
125
|
template: '<ng-content></ng-content>',
|
|
125
|
-
inputs: ['description', 'disabled', 'heading', 'headingLevel', 'initiallyOpen']
|
|
126
|
+
inputs: ['description', 'disabled', 'heading', 'headingLevel', 'initiallyOpen', 'itemId']
|
|
126
127
|
}]
|
|
127
128
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
128
129
|
let SwirlActionList = class SwirlActionList {
|