@getflip/swirl-components-angular 0.477.0 → 0.478.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 +15 -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
|
@@ -217,7 +217,7 @@ export declare class SwirlChip {
|
|
|
217
217
|
protected el: HTMLSwirlChipElement;
|
|
218
218
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
219
219
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlChip, never>;
|
|
220
|
-
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; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
220
|
+
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>;
|
|
221
221
|
}
|
|
222
222
|
export declare interface SwirlChip extends Components.SwirlChip {
|
|
223
223
|
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.478.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.19",
|
|
27
27
|
"@angular/platform-browser-dynamic": "19.2.19",
|
|
28
28
|
"@angular/router": "19.2.19",
|
|
29
|
-
"@getflip/swirl-components": "0.
|
|
29
|
+
"@getflip/swirl-components": "0.478.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', 'variant']
|
|
542
|
+
inputs: ['borderRadius', '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', 'variant'],
|
|
549
|
+
inputs: ['borderRadius', '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 {
|