@getflip/swirl-components-angular 0.252.1 → 0.253.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 +13 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +4 -4
- 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
|
@@ -2376,7 +2376,7 @@ export declare class SwirlRadio {
|
|
|
2376
2376
|
protected el: HTMLElement;
|
|
2377
2377
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2378
2378
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlRadio, never>;
|
|
2379
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlRadio, "swirl-radio", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2379
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlRadio, "swirl-radio", never, { "checked": { "alias": "checked"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2380
2380
|
}
|
|
2381
2381
|
export declare interface SwirlRadio extends Components.SwirlRadio {
|
|
2382
2382
|
valueChange: EventEmitter<CustomEvent<string>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.253.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.253.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -5832,14 +5832,14 @@ export declare interface SwirlProgressIndicator extends Components.SwirlProgress
|
|
|
5832
5832
|
|
|
5833
5833
|
|
|
5834
5834
|
@ProxyCmp({
|
|
5835
|
-
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value', 'variant']
|
|
5835
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'tooltip', 'value', 'variant']
|
|
5836
5836
|
})
|
|
5837
5837
|
@Component({
|
|
5838
5838
|
selector: 'swirl-radio',
|
|
5839
5839
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5840
5840
|
template: '<ng-content></ng-content>',
|
|
5841
5841
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5842
|
-
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'value', 'variant'],
|
|
5842
|
+
inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'tooltip', 'value', 'variant'],
|
|
5843
5843
|
})
|
|
5844
5844
|
export class SwirlRadio {
|
|
5845
5845
|
protected el: HTMLElement;
|