@getflip/swirl-components-angular 0.82.0 → 0.83.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 +19 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +2 -2
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +4 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +5 -1
|
@@ -267,6 +267,10 @@ export declare class SwirlConsoleLayout {
|
|
|
267
267
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlConsoleLayout, "swirl-console-layout", never, { "appName": "appName"; "backButonLabel": "backButonLabel"; "heading": "heading"; "helpButonLabel": "helpButonLabel"; "hideNavigationButtonLabel": "hideNavigationButtonLabel"; "logoText": "logoText"; "maxContentWidth": "maxContentWidth"; "navigationLabel": "navigationLabel"; "showBackButton": "showBackButton"; "showHelpButton": "showHelpButton"; "showNavigationButtonLabel": "showNavigationButtonLabel"; "subheading": "subheading"; }, {}, never, ["*"], false>;
|
|
268
268
|
}
|
|
269
269
|
export declare interface SwirlDateInput extends Components.SwirlDateInput {
|
|
270
|
+
/**
|
|
271
|
+
*
|
|
272
|
+
*/
|
|
273
|
+
invalidInput: EventEmitter<CustomEvent<string>>;
|
|
270
274
|
/**
|
|
271
275
|
*
|
|
272
276
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.83.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.84.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -558,6 +558,10 @@ export class SwirlConsoleLayout {
|
|
|
558
558
|
|
|
559
559
|
|
|
560
560
|
export declare interface SwirlDateInput extends Components.SwirlDateInput {
|
|
561
|
+
/**
|
|
562
|
+
*
|
|
563
|
+
*/
|
|
564
|
+
invalidInput: EventEmitter<CustomEvent<string>>;
|
|
561
565
|
/**
|
|
562
566
|
*
|
|
563
567
|
*/
|
|
@@ -580,7 +584,7 @@ export class SwirlDateInput {
|
|
|
580
584
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
581
585
|
c.detach();
|
|
582
586
|
this.el = r.nativeElement;
|
|
583
|
-
proxyOutputs(this, this.el, ['valueChange']);
|
|
587
|
+
proxyOutputs(this, this.el, ['invalidInput', 'valueChange']);
|
|
584
588
|
}
|
|
585
589
|
}
|
|
586
590
|
|