@getflip/swirl-components-angular 0.179.0 → 0.181.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 +28 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +7 -7
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -4
|
@@ -586,7 +586,7 @@ export declare class SwirlFormControl {
|
|
|
586
586
|
protected el: HTMLElement;
|
|
587
587
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
588
588
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFormControl, never>;
|
|
589
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFormControl, "swirl-form-control", never, { "description": "description"; "disabled": "disabled"; "errorMessage": "errorMessage"; "hideLabel": "hideLabel"; "inline": "inline"; "invalid": "invalid"; "label": "label"; "labelPosition": "labelPosition"; }, {}, never, ["*"], false>;
|
|
589
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFormControl, "swirl-form-control", never, { "description": "description"; "disabled": "disabled"; "errorMessage": "errorMessage"; "hideLabel": "hideLabel"; "inline": "inline"; "invalid": "invalid"; "label": "label"; "labelPosition": "labelPosition"; "tooltip": "tooltip"; }, {}, never, ["*"], false>;
|
|
590
590
|
}
|
|
591
591
|
export declare interface SwirlFormGroup extends Components.SwirlFormGroup {
|
|
592
592
|
}
|
|
@@ -2407,7 +2407,7 @@ export declare class SwirlShellNavigationItem {
|
|
|
2407
2407
|
protected el: HTMLElement;
|
|
2408
2408
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2409
2409
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlShellNavigationItem, never>;
|
|
2410
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": "active"; "badgeLabel": "badgeLabel"; "href": "href"; "label": "label"; "target": "target"; }, {}, never, ["*"], false>;
|
|
2410
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": "active"; "badgeLabel": "badgeLabel"; "boxed": "boxed"; "href": "href"; "label": "label"; "target": "target"; }, {}, never, ["*"], false>;
|
|
2411
2411
|
}
|
|
2412
2412
|
export declare interface SwirlSkeletonBox extends Components.SwirlSkeletonBox {
|
|
2413
2413
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.181.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.181.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -1210,13 +1210,13 @@ export declare interface SwirlFormControl extends Components.SwirlFormControl {}
|
|
|
1210
1210
|
|
|
1211
1211
|
@ProxyCmp({
|
|
1212
1212
|
defineCustomElementFn: undefined,
|
|
1213
|
-
inputs: ['description', 'disabled', 'errorMessage', 'hideLabel', 'inline', 'invalid', 'label', 'labelPosition']
|
|
1213
|
+
inputs: ['description', 'disabled', 'errorMessage', 'hideLabel', 'inline', 'invalid', 'label', 'labelPosition', 'tooltip']
|
|
1214
1214
|
})
|
|
1215
1215
|
@Component({
|
|
1216
1216
|
selector: 'swirl-form-control',
|
|
1217
1217
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1218
1218
|
template: '<ng-content></ng-content>',
|
|
1219
|
-
inputs: ['description', 'disabled', 'errorMessage', 'hideLabel', 'inline', 'invalid', 'label', 'labelPosition']
|
|
1219
|
+
inputs: ['description', 'disabled', 'errorMessage', 'hideLabel', 'inline', 'invalid', 'label', 'labelPosition', 'tooltip']
|
|
1220
1220
|
})
|
|
1221
1221
|
export class SwirlFormControl {
|
|
1222
1222
|
protected el: HTMLElement;
|
|
@@ -5318,13 +5318,13 @@ export declare interface SwirlShellNavigationItem extends Components.SwirlShellN
|
|
|
5318
5318
|
|
|
5319
5319
|
@ProxyCmp({
|
|
5320
5320
|
defineCustomElementFn: undefined,
|
|
5321
|
-
inputs: ['active', 'badgeLabel', 'href', 'label', 'target']
|
|
5321
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'href', 'label', 'target']
|
|
5322
5322
|
})
|
|
5323
5323
|
@Component({
|
|
5324
5324
|
selector: 'swirl-shell-navigation-item',
|
|
5325
5325
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5326
5326
|
template: '<ng-content></ng-content>',
|
|
5327
|
-
inputs: ['active', 'badgeLabel', 'href', 'label', 'target']
|
|
5327
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'href', 'label', 'target']
|
|
5328
5328
|
})
|
|
5329
5329
|
export class SwirlShellNavigationItem {
|
|
5330
5330
|
protected el: HTMLElement;
|