@getflip/swirl-components-angular 0.272.0 → 0.274.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 +30 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +2 -1
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +5 -1
|
@@ -183,6 +183,7 @@ export declare class SwirlCard {
|
|
|
183
183
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlCard, "swirl-card", never, { "as": { "alias": "as"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "elevated": { "alias": "elevated"; "required": false; }; "elevationLevel": { "alias": "elevationLevel"; "required": false; }; "height": { "alias": "height"; "required": false; }; "highlighted": { "alias": "highlighted"; "required": false; }; "href": { "alias": "href"; "required": false; }; "imageAspectRatio": { "alias": "imageAspectRatio"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "isBorderless": { "alias": "isBorderless"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "paddingBlockEnd": { "alias": "paddingBlockEnd"; "required": false; }; "paddingBlockStart": { "alias": "paddingBlockStart"; "required": false; }; "paddingInlineEnd": { "alias": "paddingInlineEnd"; "required": false; }; "paddingInlineStart": { "alias": "paddingInlineStart"; "required": false; }; "swirlAriaLabel": { "alias": "swirlAriaLabel"; "required": false; }; "swirlAriaLabelledby": { "alias": "swirlAriaLabelledby"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
184
184
|
}
|
|
185
185
|
export declare interface SwirlCard extends Components.SwirlCard {
|
|
186
|
+
componentLoad: EventEmitter<CustomEvent<void>>;
|
|
186
187
|
}
|
|
187
188
|
export declare class SwirlCarousel {
|
|
188
189
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.274.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.274.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -448,11 +448,15 @@ export class SwirlCard {
|
|
|
448
448
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
449
449
|
c.detach();
|
|
450
450
|
this.el = r.nativeElement;
|
|
451
|
+
proxyOutputs(this, this.el, ['componentLoad']);
|
|
451
452
|
}
|
|
452
453
|
}
|
|
453
454
|
|
|
454
455
|
|
|
455
|
-
export declare interface SwirlCard extends Components.SwirlCard {
|
|
456
|
+
export declare interface SwirlCard extends Components.SwirlCard {
|
|
457
|
+
|
|
458
|
+
componentLoad: EventEmitter<CustomEvent<void>>;
|
|
459
|
+
}
|
|
456
460
|
|
|
457
461
|
|
|
458
462
|
@ProxyCmp({
|