@getflip/swirl-components-angular 0.109.0 → 0.110.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 +26 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +2 -2
|
@@ -2272,7 +2272,7 @@ export declare class SwirlSwitch {
|
|
|
2272
2272
|
protected el: HTMLElement;
|
|
2273
2273
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2274
2274
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSwitch, never>;
|
|
2275
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2275
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": "checked"; "disabled": "disabled"; "hideLabel": "hideLabel"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "value": "value"; }, {}, never, ["*"], false>;
|
|
2276
2276
|
}
|
|
2277
2277
|
export declare interface SwirlSymbol extends Components.SwirlSymbol {
|
|
2278
2278
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.110.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.110.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -5040,13 +5040,13 @@ export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
|
5040
5040
|
|
|
5041
5041
|
@ProxyCmp({
|
|
5042
5042
|
defineCustomElementFn: undefined,
|
|
5043
|
-
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'value']
|
|
5043
|
+
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'value']
|
|
5044
5044
|
})
|
|
5045
5045
|
@Component({
|
|
5046
5046
|
selector: 'swirl-switch',
|
|
5047
5047
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5048
5048
|
template: '<ng-content></ng-content>',
|
|
5049
|
-
inputs: ['checked', 'disabled', 'inputId', 'inputName', 'label', 'value']
|
|
5049
|
+
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'value']
|
|
5050
5050
|
})
|
|
5051
5051
|
export class SwirlSwitch {
|
|
5052
5052
|
protected el: HTMLElement;
|