@getflip/swirl-components-angular 0.448.1 → 0.449.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 +3 -3
- package/CHANGELOG.md +27 -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
|
@@ -269,7 +269,7 @@ export declare class SwirlDataCell {
|
|
|
269
269
|
protected el: HTMLSwirlDataCellElement;
|
|
270
270
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
271
271
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDataCell, never>;
|
|
272
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDataCell, "swirl-data-cell", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
272
|
+
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>;
|
|
273
273
|
}
|
|
274
274
|
export declare interface SwirlDataCell extends Components.SwirlDataCell {
|
|
275
275
|
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.449.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.18",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.18",
|
|
24
24
|
"@angular/router": "19.2.18",
|
|
25
|
-
"@getflip/swirl-components": "0.
|
|
25
|
+
"@getflip/swirl-components": "0.449.0",
|
|
26
26
|
"rxjs": "7.8.2",
|
|
27
27
|
"tslib": "2.4.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -674,14 +674,14 @@ export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayou
|
|
|
674
674
|
|
|
675
675
|
|
|
676
676
|
@ProxyCmp({
|
|
677
|
-
inputs: ['label', 'tooltip', 'value', 'vertical']
|
|
677
|
+
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical']
|
|
678
678
|
})
|
|
679
679
|
@Component({
|
|
680
680
|
selector: 'swirl-data-cell',
|
|
681
681
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
682
682
|
template: '<ng-content></ng-content>',
|
|
683
683
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
684
|
-
inputs: ['label', 'tooltip', 'value', 'vertical'],
|
|
684
|
+
inputs: ['intent', 'label', 'tooltip', 'value', 'vertical'],
|
|
685
685
|
standalone: false
|
|
686
686
|
})
|
|
687
687
|
export class SwirlDataCell {
|