@getflip/swirl-components-angular 0.114.0 → 0.115.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 +14 -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 +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +3 -3
|
@@ -3,7 +3,7 @@ import { Components } from '@getflip/swirl-components';
|
|
|
3
3
|
import type { SwirlAppLayoutMobileView as ISwirlAppLayoutSwirlAppLayoutMobileView } from '@getflip/swirl-components';
|
|
4
4
|
import type { SwirlAutocompleteValue as ISwirlAutocompleteSwirlAutocompleteValue } from '@getflip/swirl-components';
|
|
5
5
|
import type { ComputePositionReturn as ISwirlPopoverComputePositionReturn } from '@getflip/swirl-components';
|
|
6
|
-
import type {
|
|
6
|
+
import type { SwirlOSThemeChangeEventData as ISwirlThemeProviderSwirlOSThemeChangeEventData } from '@getflip/swirl-components';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare interface FileManager extends Components.FileManager {
|
|
9
9
|
}
|
|
@@ -2949,7 +2949,7 @@ export declare interface SwirlThemeProvider extends Components.SwirlThemeProvide
|
|
|
2949
2949
|
/**
|
|
2950
2950
|
*
|
|
2951
2951
|
*/
|
|
2952
|
-
themeChange: EventEmitter<CustomEvent<
|
|
2952
|
+
themeChange: EventEmitter<CustomEvent<ISwirlThemeProviderSwirlOSThemeChangeEventData>>;
|
|
2953
2953
|
}
|
|
2954
2954
|
export declare class SwirlThemeProvider {
|
|
2955
2955
|
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.115.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.115.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6592,19 +6592,19 @@ export class SwirlTextInput {
|
|
|
6592
6592
|
}
|
|
6593
6593
|
}
|
|
6594
6594
|
|
|
6595
|
-
import type {
|
|
6595
|
+
import type { SwirlOSThemeChangeEventData as ISwirlThemeProviderSwirlOSThemeChangeEventData } from '@getflip/swirl-components';
|
|
6596
6596
|
export declare interface SwirlThemeProvider extends Components.SwirlThemeProvider {
|
|
6597
6597
|
/**
|
|
6598
6598
|
*
|
|
6599
6599
|
*/
|
|
6600
|
-
themeChange: EventEmitter<CustomEvent<
|
|
6600
|
+
themeChange: EventEmitter<CustomEvent<ISwirlThemeProviderSwirlOSThemeChangeEventData>>;
|
|
6601
6601
|
|
|
6602
6602
|
}
|
|
6603
6603
|
|
|
6604
6604
|
@ProxyCmp({
|
|
6605
6605
|
defineCustomElementFn: undefined,
|
|
6606
6606
|
inputs: ['config'],
|
|
6607
|
-
methods: ['
|
|
6607
|
+
methods: ['getActiveOSTheme', 'getPreferredOSTheme', 'setPreferredOSTheme', 'resetPreferredOSTheme']
|
|
6608
6608
|
})
|
|
6609
6609
|
@Component({
|
|
6610
6610
|
selector: 'swirl-theme-provider',
|