@getflip/swirl-components-angular 0.158.0 → 0.159.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 +21 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2020/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
|
@@ -3047,7 +3047,7 @@ export declare class SwirlTableRowGroup {
|
|
|
3047
3047
|
protected el: HTMLElement;
|
|
3048
3048
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3049
3049
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTableRowGroup, never>;
|
|
3050
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTableRowGroup, "swirl-table-row-group", never, { "label": "label"; "tooltip": "tooltip"; }, {}, never, ["*"], false>;
|
|
3050
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTableRowGroup, "swirl-table-row-group", never, { "collapseButtonLabel": "collapseButtonLabel"; "collapsible": "collapsible"; "label": "label"; "tooltip": "tooltip"; }, {}, never, ["*"], false>;
|
|
3051
3051
|
}
|
|
3052
3052
|
export declare interface SwirlTabs extends Components.SwirlTabs {
|
|
3053
3053
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.159.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.159.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6820,13 +6820,13 @@ export declare interface SwirlTableRowGroup extends Components.SwirlTableRowGrou
|
|
|
6820
6820
|
|
|
6821
6821
|
@ProxyCmp({
|
|
6822
6822
|
defineCustomElementFn: undefined,
|
|
6823
|
-
inputs: ['label', 'tooltip']
|
|
6823
|
+
inputs: ['collapseButtonLabel', 'collapsible', 'label', 'tooltip']
|
|
6824
6824
|
})
|
|
6825
6825
|
@Component({
|
|
6826
6826
|
selector: 'swirl-table-row-group',
|
|
6827
6827
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6828
6828
|
template: '<ng-content></ng-content>',
|
|
6829
|
-
inputs: ['label', 'tooltip']
|
|
6829
|
+
inputs: ['collapseButtonLabel', 'collapsible', 'label', 'tooltip']
|
|
6830
6830
|
})
|
|
6831
6831
|
export class SwirlTableRowGroup {
|
|
6832
6832
|
protected el: HTMLElement;
|