@getflip/swirl-components-angular 0.50.0 → 0.52.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 +2 -2
- package/CHANGELOG.md +28 -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
|
@@ -1944,7 +1944,7 @@ export declare class SwirlText {
|
|
|
1944
1944
|
protected el: HTMLElement;
|
|
1945
1945
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1946
1946
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlText, never>;
|
|
1947
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlText, "swirl-text", never, { "align": "align"; "as": "as"; "balance": "balance"; "color": "color"; "fontStyle": "fontStyle"; "lines": "lines"; "size": "size"; "truncate": "truncate"; "weight": "weight"; }, {}, never, ["*"], false>;
|
|
1947
|
+
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>;
|
|
1948
1948
|
}
|
|
1949
1949
|
export declare interface SwirlTextInput extends Components.SwirlTextInput {
|
|
1950
1950
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.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.53.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4326,13 +4326,13 @@ export declare interface SwirlText extends Components.SwirlText {}
|
|
|
4326
4326
|
|
|
4327
4327
|
@ProxyCmp({
|
|
4328
4328
|
defineCustomElementFn: undefined,
|
|
4329
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
4329
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
4330
4330
|
})
|
|
4331
4331
|
@Component({
|
|
4332
4332
|
selector: 'swirl-text',
|
|
4333
4333
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4334
4334
|
template: '<ng-content></ng-content>',
|
|
4335
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
4335
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'weight']
|
|
4336
4336
|
})
|
|
4337
4337
|
export class SwirlText {
|
|
4338
4338
|
protected el: HTMLElement;
|