@getflip/swirl-components-angular 0.91.2 → 0.92.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 +14 -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
|
@@ -2808,7 +2808,7 @@ export declare class SwirlText {
|
|
|
2808
2808
|
protected el: HTMLElement;
|
|
2809
2809
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2810
2810
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlText, never>;
|
|
2811
|
-
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"; "weight": "weight"; }, {}, never, ["*"], false>;
|
|
2811
|
+
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>;
|
|
2812
2812
|
}
|
|
2813
2813
|
export declare interface SwirlTextInput extends Components.SwirlTextInput {
|
|
2814
2814
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.92.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.93.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6297,13 +6297,13 @@ export declare interface SwirlText extends Components.SwirlText {}
|
|
|
6297
6297
|
|
|
6298
6298
|
@ProxyCmp({
|
|
6299
6299
|
defineCustomElementFn: undefined,
|
|
6300
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
6300
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight']
|
|
6301
6301
|
})
|
|
6302
6302
|
@Component({
|
|
6303
6303
|
selector: 'swirl-text',
|
|
6304
6304
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6305
6305
|
template: '<ng-content></ng-content>',
|
|
6306
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
6306
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight']
|
|
6307
6307
|
})
|
|
6308
6308
|
export class SwirlText {
|
|
6309
6309
|
protected el: HTMLElement;
|