@getflip/swirl-components-angular 0.283.1 → 0.285.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 +29 -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
|
@@ -156,6 +156,7 @@ export declare class SwirlBox {
|
|
|
156
156
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlBox, "swirl-box", never, { "basis": { "alias": "basis"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; "borderedBlockEnd": { "alias": "borderedBlockEnd"; "required": false; }; "borderedBlockEndWhenScrolled": { "alias": "borderedBlockEndWhenScrolled"; "required": false; }; "borderedBlockStart": { "alias": "borderedBlockStart"; "required": false; }; "borderedBlockStartWhenScrolled": { "alias": "borderedBlockStartWhenScrolled"; "required": false; }; "borderedInlineEnd": { "alias": "borderedInlineEnd"; "required": false; }; "borderedInlineStart": { "alias": "borderedInlineStart"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "centerBlock": { "alias": "centerBlock"; "required": false; }; "centerInline": { "alias": "centerInline"; "required": false; }; "cover": { "alias": "cover"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "height": { "alias": "height"; "required": false; }; "left": { "alias": "left"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "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; }; "position": { "alias": "position"; "required": false; }; "right": { "alias": "right"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "top": { "alias": "top"; "required": false; }; "width": { "alias": "width"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
157
157
|
}
|
|
158
158
|
export declare interface SwirlBox extends Components.SwirlBox {
|
|
159
|
+
componentLoad: EventEmitter<CustomEvent<void>>;
|
|
159
160
|
}
|
|
160
161
|
export declare class SwirlButton {
|
|
161
162
|
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.285.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.285.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -381,11 +381,15 @@ export class SwirlBox {
|
|
|
381
381
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
382
382
|
c.detach();
|
|
383
383
|
this.el = r.nativeElement;
|
|
384
|
+
proxyOutputs(this, this.el, ['componentLoad']);
|
|
384
385
|
}
|
|
385
386
|
}
|
|
386
387
|
|
|
387
388
|
|
|
388
|
-
export declare interface SwirlBox extends Components.SwirlBox {
|
|
389
|
+
export declare interface SwirlBox extends Components.SwirlBox {
|
|
390
|
+
|
|
391
|
+
componentLoad: EventEmitter<CustomEvent<void>>;
|
|
392
|
+
}
|
|
389
393
|
|
|
390
394
|
|
|
391
395
|
@ProxyCmp({
|