@getflip/swirl-components-angular 0.382.0 → 0.384.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
|
@@ -2983,7 +2983,7 @@ export declare class SwirlSwitch {
|
|
|
2983
2983
|
protected el: HTMLSwirlSwitchElement;
|
|
2984
2984
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2985
2985
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSwitch, never>;
|
|
2986
|
-
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>;
|
|
2986
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSwitch, "swirl-switch", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideDescription": { "alias": "hideDescription"; "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>;
|
|
2987
2987
|
}
|
|
2988
2988
|
export declare interface SwirlSwitch extends Components.SwirlSwitch {
|
|
2989
2989
|
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.384.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.384.0",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "^2.3.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -7628,7 +7628,7 @@ export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndi
|
|
|
7628
7628
|
|
|
7629
7629
|
|
|
7630
7630
|
@ProxyCmp({
|
|
7631
|
-
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7631
|
+
inputs: ['checked', 'description', 'disabled', 'hideDescription', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7632
7632
|
methods: ['toggle']
|
|
7633
7633
|
})
|
|
7634
7634
|
@Component({
|
|
@@ -7636,7 +7636,7 @@ export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndi
|
|
|
7636
7636
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7637
7637
|
template: '<ng-content></ng-content>',
|
|
7638
7638
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7639
|
-
inputs: ['checked', 'description', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7639
|
+
inputs: ['checked', 'description', 'disabled', 'hideDescription', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
|
|
7640
7640
|
standalone: false
|
|
7641
7641
|
})
|
|
7642
7642
|
export class SwirlSwitch {
|