@getflip/swirl-components-angular 0.120.4 → 0.121.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 +25 -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
|
@@ -2846,7 +2846,7 @@ export declare class SwirlTab {
|
|
|
2846
2846
|
protected el: HTMLElement;
|
|
2847
2847
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2848
2848
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTab, never>;
|
|
2849
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTab, "swirl-tab", never, { "active": "active"; "icon": "icon"; "label": "label"; "tabId": "tabId"; }, {}, never, ["*"], false>;
|
|
2849
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTab, "swirl-tab", never, { "active": "active"; "icon": "icon"; "label": "label"; "padding": "padding"; "tabId": "tabId"; }, {}, never, ["*"], false>;
|
|
2850
2850
|
}
|
|
2851
2851
|
export declare interface SwirlTabBar extends Components.SwirlTabBar {
|
|
2852
2852
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.121.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.121.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6365,13 +6365,13 @@ export declare interface SwirlTab extends Components.SwirlTab {}
|
|
|
6365
6365
|
|
|
6366
6366
|
@ProxyCmp({
|
|
6367
6367
|
defineCustomElementFn: undefined,
|
|
6368
|
-
inputs: ['active', 'icon', 'label', 'tabId']
|
|
6368
|
+
inputs: ['active', 'icon', 'label', 'padding', 'tabId']
|
|
6369
6369
|
})
|
|
6370
6370
|
@Component({
|
|
6371
6371
|
selector: 'swirl-tab',
|
|
6372
6372
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6373
6373
|
template: '<ng-content></ng-content>',
|
|
6374
|
-
inputs: ['active', 'icon', 'label', 'tabId']
|
|
6374
|
+
inputs: ['active', 'icon', 'label', 'padding', 'tabId']
|
|
6375
6375
|
})
|
|
6376
6376
|
export class SwirlTab {
|
|
6377
6377
|
protected el: HTMLElement;
|