@getflip/swirl-components-angular 0.526.0 → 0.527.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
|
@@ -262,7 +262,7 @@ export declare class SwirlDataCell {
|
|
|
262
262
|
protected el: HTMLSwirlDataCellElement;
|
|
263
263
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
264
264
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDataCell, never>;
|
|
265
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDataCell, "swirl-data-cell", never, { "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
265
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDataCell, "swirl-data-cell", never, { "href": { "alias": "href"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "label": { "alias": "label"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
266
266
|
}
|
|
267
267
|
export declare interface SwirlDataCell extends Components.SwirlDataCell {
|
|
268
268
|
valueChange: 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.527.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.527.0",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -652,14 +652,14 @@ export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayou
|
|
|
652
652
|
|
|
653
653
|
|
|
654
654
|
@ProxyCmp({
|
|
655
|
-
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical']
|
|
655
|
+
inputs: ['href', 'intent', 'interactive', 'label', 'linkTarget', 'size', 'tooltip', 'value', 'vertical']
|
|
656
656
|
})
|
|
657
657
|
@Component({
|
|
658
658
|
selector: 'swirl-data-cell',
|
|
659
659
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
660
660
|
template: '<ng-content></ng-content>',
|
|
661
661
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
662
|
-
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical'],
|
|
662
|
+
inputs: ['href', 'intent', 'interactive', 'label', 'linkTarget', 'size', 'tooltip', 'value', 'vertical'],
|
|
663
663
|
standalone: false
|
|
664
664
|
})
|
|
665
665
|
export class SwirlDataCell {
|