@getflip/swirl-components-angular 0.172.0 → 0.173.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 +27 -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
|
@@ -3107,7 +3107,7 @@ export declare class SwirlText {
|
|
|
3107
3107
|
protected el: HTMLElement;
|
|
3108
3108
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3109
3109
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlText, never>;
|
|
3110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlText, "swirl-text", never, { "align": "align"; "as": "as"; "balance": "balance"; "color": "color"; "fontFamily": "fontFamily"; "fontStyle": "fontStyle"; "lines": "lines"; "size": "size"; "truncate": "truncate"; "truncateDirection": "truncateDirection"; "weight": "weight"; }, {}, never, ["*"], false>;
|
|
3110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlText, "swirl-text", never, { "align": "align"; "as": "as"; "balance": "balance"; "color": "color"; "fontFamily": "fontFamily"; "fontStyle": "fontStyle"; "lines": "lines"; "size": "size"; "truncate": "truncate"; "truncateDirection": "truncateDirection"; "weight": "weight"; "whiteSpace": "whiteSpace"; }, {}, never, ["*"], false>;
|
|
3111
3111
|
}
|
|
3112
3112
|
export declare interface SwirlTextInput extends Components.SwirlTextInput {
|
|
3113
3113
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.173.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.173.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6941,13 +6941,13 @@ export declare interface SwirlText extends Components.SwirlText {}
|
|
|
6941
6941
|
|
|
6942
6942
|
@ProxyCmp({
|
|
6943
6943
|
defineCustomElementFn: undefined,
|
|
6944
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight']
|
|
6944
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace']
|
|
6945
6945
|
})
|
|
6946
6946
|
@Component({
|
|
6947
6947
|
selector: 'swirl-text',
|
|
6948
6948
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6949
6949
|
template: '<ng-content></ng-content>',
|
|
6950
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight']
|
|
6950
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace']
|
|
6951
6951
|
})
|
|
6952
6952
|
export class SwirlText {
|
|
6953
6953
|
protected el: HTMLElement;
|