@getflip/swirl-components-angular 0.8.1 → 0.9.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 +2 -2
- package/CHANGELOG.md +14 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +2 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +1 -0
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +1 -0
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +5 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +8 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@getflip/swirl-components';
|
|
3
3
|
import type { FlipAppLayoutMobileView as IFlipAppLayoutFlipAppLayoutMobileView } from '@getflip/swirl-components';
|
|
4
|
+
import type { FlipThemeChangeEventData as IFlipThemeProviderFlipThemeChangeEventData } from '@getflip/swirl-components';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare interface FileManager extends Components.FileManager {
|
|
6
7
|
}
|
|
@@ -1439,6 +1440,10 @@ export declare class FlipTextInput {
|
|
|
1439
1440
|
static ɵcmp: i0.ɵɵComponentDeclaration<FlipTextInput, "flip-text-input", never, { "autoComplete": "autoComplete"; "autoFocus": "autoFocus"; "autoSelect": "autoSelect"; "clearButtonLabel": "clearButtonLabel"; "clearable": "clearable"; "disableDynamicWidth": "disableDynamicWidth"; "disabled": "disabled"; "flipAriaAutocomplete": "flipAriaAutocomplete"; "flipAriaControls": "flipAriaControls"; "flipAriaDescribedby": "flipAriaDescribedby"; "flipAriaExpanded": "flipAriaExpanded"; "flipRole": "flipRole"; "invalid": "invalid"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "mode": "mode"; "passwordToggleLabel": "passwordToggleLabel"; "prefixLabel": "prefixLabel"; "required": "required"; "rows": "rows"; "showCharacterCounter": "showCharacterCounter"; "spellCheck": "spellCheck"; "step": "step"; "suffixLabel": "suffixLabel"; "type": "type"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1440
1441
|
}
|
|
1441
1442
|
export declare interface FlipThemeProvider extends Components.FlipThemeProvider {
|
|
1443
|
+
/**
|
|
1444
|
+
*
|
|
1445
|
+
*/
|
|
1446
|
+
themeChange: EventEmitter<CustomEvent<IFlipThemeProviderFlipThemeChangeEventData>>;
|
|
1442
1447
|
}
|
|
1443
1448
|
export declare class FlipThemeProvider {
|
|
1444
1449
|
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.9.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.10.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3217,8 +3217,14 @@ export class FlipTextInput {
|
|
|
3217
3217
|
}
|
|
3218
3218
|
}
|
|
3219
3219
|
|
|
3220
|
+
import type { FlipThemeChangeEventData as IFlipThemeProviderFlipThemeChangeEventData } from '@getflip/swirl-components';
|
|
3221
|
+
export declare interface FlipThemeProvider extends Components.FlipThemeProvider {
|
|
3222
|
+
/**
|
|
3223
|
+
*
|
|
3224
|
+
*/
|
|
3225
|
+
themeChange: EventEmitter<CustomEvent<IFlipThemeProviderFlipThemeChangeEventData>>;
|
|
3220
3226
|
|
|
3221
|
-
|
|
3227
|
+
}
|
|
3222
3228
|
|
|
3223
3229
|
@ProxyCmp({
|
|
3224
3230
|
defineCustomElementFn: undefined,
|
|
@@ -3236,6 +3242,7 @@ export class FlipThemeProvider {
|
|
|
3236
3242
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
3237
3243
|
c.detach();
|
|
3238
3244
|
this.el = r.nativeElement;
|
|
3245
|
+
proxyOutputs(this, this.el, ['themeChange']);
|
|
3239
3246
|
}
|
|
3240
3247
|
}
|
|
3241
3248
|
|