@getflip/swirl-components-angular 0.173.2 → 0.174.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 +25 -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
|
@@ -3131,6 +3131,10 @@ export declare class SwirlTextInput {
|
|
|
3131
3131
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTextInput, "swirl-text-input", never, { "autoComplete": "autoComplete"; "autoFocus": "autoFocus"; "autoGrow": "autoGrow"; "autoSelect": "autoSelect"; "clearButtonLabel": "clearButtonLabel"; "clearable": "clearable"; "disableDynamicWidth": "disableDynamicWidth"; "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "mode": "mode"; "passwordToggleLabel": "passwordToggleLabel"; "placeholder": "placeholder"; "prefixLabel": "prefixLabel"; "required": "required"; "rows": "rows"; "showCharacterCounter": "showCharacterCounter"; "spellCheck": "spellCheck"; "step": "step"; "suffixLabel": "suffixLabel"; "swirlAriaAutocomplete": "swirlAriaAutocomplete"; "swirlAriaControls": "swirlAriaControls"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "swirlAriaExpanded": "swirlAriaExpanded"; "swirlRole": "swirlRole"; "type": "type"; "value": "value"; }, {}, never, ["*"], false>;
|
|
3132
3132
|
}
|
|
3133
3133
|
export declare interface SwirlThemeProvider extends Components.SwirlThemeProvider {
|
|
3134
|
+
/**
|
|
3135
|
+
*
|
|
3136
|
+
*/
|
|
3137
|
+
appThemeUpdated: EventEmitter<CustomEvent<void>>;
|
|
3134
3138
|
/**
|
|
3135
3139
|
*
|
|
3136
3140
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.174.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.174.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6996,6 +6996,10 @@ export class SwirlTextInput {
|
|
|
6996
6996
|
|
|
6997
6997
|
import type { SwirlOSThemeChangeEventData as ISwirlThemeProviderSwirlOSThemeChangeEventData } from '@getflip/swirl-components';
|
|
6998
6998
|
export declare interface SwirlThemeProvider extends Components.SwirlThemeProvider {
|
|
6999
|
+
/**
|
|
7000
|
+
*
|
|
7001
|
+
*/
|
|
7002
|
+
appThemeUpdated: EventEmitter<CustomEvent<void>>;
|
|
6999
7003
|
/**
|
|
7000
7004
|
*
|
|
7001
7005
|
*/
|
|
@@ -7019,7 +7023,7 @@ export class SwirlThemeProvider {
|
|
|
7019
7023
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7020
7024
|
c.detach();
|
|
7021
7025
|
this.el = r.nativeElement;
|
|
7022
|
-
proxyOutputs(this, this.el, ['themeChange']);
|
|
7026
|
+
proxyOutputs(this, this.el, ['appThemeUpdated', 'themeChange']);
|
|
7023
7027
|
}
|
|
7024
7028
|
}
|
|
7025
7029
|
|