@getflip/swirl-components-angular 0.353.1 → 0.355.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 +36 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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
|
@@ -2929,7 +2929,7 @@ export declare class SwirlSwitch {
|
|
|
2929
2929
|
protected el: HTMLSwirlSwitchElement;
|
|
2930
2930
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2931
2931
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSwitch, never>;
|
|
2932
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "inputId": { "alias": "inputId"; "required": true; }; "inputName": { "alias": "inputName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "swirlAriaLabel": { "alias": "swirlAriaLabel"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2932
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "inputId": { "alias": "inputId"; "required": true; }; "inputName": { "alias": "inputName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "swirlAriaLabel": { "alias": "swirlAriaLabel"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2933
2933
|
}
|
|
2934
2934
|
export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
2935
2935
|
valueChange: EventEmitter<CustomEvent<boolean>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.355.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.3",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.3",
|
|
24
24
|
"@angular/router": "19.2.3",
|
|
25
|
-
"@getflip/swirl-components": "^0.
|
|
25
|
+
"@getflip/swirl-components": "^0.355.0",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "^2.3.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -7490,7 +7490,7 @@ export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndi
|
|
|
7490
7490
|
|
|
7491
7491
|
|
|
7492
7492
|
@ProxyCmp({
|
|
7493
|
-
inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7493
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7494
7494
|
methods: ['toggle']
|
|
7495
7495
|
})
|
|
7496
7496
|
@Component({
|
|
@@ -7498,7 +7498,7 @@ export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndi
|
|
|
7498
7498
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7499
7499
|
template: '<ng-content></ng-content>',
|
|
7500
7500
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7501
|
-
inputs: ['checked', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7501
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7502
7502
|
standalone: false
|
|
7503
7503
|
})
|
|
7504
7504
|
export class SwirlSwitch {
|