@getflip/swirl-components-angular 0.509.0 → 0.510.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 +2 -2
- package/CHANGELOG.md +8 -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
|
@@ -219,7 +219,7 @@ export declare class SwirlChip {
|
|
|
219
219
|
protected el: HTMLSwirlChipElement;
|
|
220
220
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
221
221
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlChip, never>;
|
|
222
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlChip, "swirl-chip", never, { "borderRadius": { "alias": "borderRadius"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "label": { "alias": "label"; "required": true; }; "pressed": { "alias": "pressed"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "progressBarLabel": { "alias": "progressBarLabel"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removeButtonLabel": { "alias": "removeButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlChip, "swirl-chip", never, { "borderRadius": { "alias": "borderRadius"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "label": { "alias": "label"; "required": true; }; "pressed": { "alias": "pressed"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "progressBarLabel": { "alias": "progressBarLabel"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removeButtonLabel": { "alias": "removeButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
223
223
|
}
|
|
224
224
|
export declare interface SwirlChip extends Components.SwirlChip {
|
|
225
225
|
chipClick: EventEmitter<CustomEvent<MouseEvent>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.510.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/getflip/swirl"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@angular/platform-browser": "19.2.23",
|
|
27
27
|
"@angular/platform-browser-dynamic": "19.2.23",
|
|
28
28
|
"@angular/router": "19.2.23",
|
|
29
|
-
"@getflip/swirl-components": "0.
|
|
29
|
+
"@getflip/swirl-components": "0.510.0",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -539,14 +539,14 @@ export declare interface SwirlCheckbox extends Components.SwirlCheckbox {
|
|
|
539
539
|
|
|
540
540
|
|
|
541
541
|
@ProxyCmp({
|
|
542
|
-
inputs: ['borderRadius', 'icon', 'iconColor', 'intent', 'interactive', 'label', 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'trailingIcon', 'variant']
|
|
542
|
+
inputs: ['borderRadius', 'disabled', 'icon', 'iconColor', 'intent', 'interactive', 'label', 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'trailingIcon', 'variant']
|
|
543
543
|
})
|
|
544
544
|
@Component({
|
|
545
545
|
selector: 'swirl-chip',
|
|
546
546
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
547
547
|
template: '<ng-content></ng-content>',
|
|
548
548
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
549
|
-
inputs: ['borderRadius', 'icon', 'iconColor', 'intent', 'interactive', { name: 'label', required: true }, 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'trailingIcon', 'variant'],
|
|
549
|
+
inputs: ['borderRadius', 'disabled', 'icon', 'iconColor', 'intent', 'interactive', { name: 'label', required: true }, 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'trailingIcon', 'variant'],
|
|
550
550
|
standalone: false
|
|
551
551
|
})
|
|
552
552
|
export class SwirlChip {
|