@getflip/swirl-components-angular 0.226.0 → 0.227.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 +33 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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
|
@@ -3080,7 +3080,7 @@ export declare class SwirlText {
|
|
|
3080
3080
|
protected el: HTMLElement;
|
|
3081
3081
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3082
3082
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlText, never>;
|
|
3083
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlText, "swirl-text", never, { "align": { "alias": "align"; "required": false; }; "as": { "alias": "as"; "required": false; }; "balance": { "alias": "balance"; "required": false; }; "color": { "alias": "color"; "required": false; }; "fontFamily": { "alias": "fontFamily"; "required": false; }; "fontStyle": { "alias": "fontStyle"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "size": { "alias": "size"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "truncateDirection": { "alias": "truncateDirection"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; "whiteSpace": { "alias": "whiteSpace"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
3083
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlText, "swirl-text", never, { "align": { "alias": "align"; "required": false; }; "as": { "alias": "as"; "required": false; }; "balance": { "alias": "balance"; "required": false; }; "color": { "alias": "color"; "required": false; }; "fontFamily": { "alias": "fontFamily"; "required": false; }; "fontStyle": { "alias": "fontStyle"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "responsive": { "alias": "responsive"; "required": false; }; "size": { "alias": "size"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "truncateDirection": { "alias": "truncateDirection"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; "whiteSpace": { "alias": "whiteSpace"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
3084
3084
|
}
|
|
3085
3085
|
export declare interface SwirlText extends Components.SwirlText {
|
|
3086
3086
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.227.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.227.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -7563,14 +7563,14 @@ export declare interface SwirlTag extends Components.SwirlTag {
|
|
|
7563
7563
|
|
|
7564
7564
|
|
|
7565
7565
|
@ProxyCmp({
|
|
7566
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace']
|
|
7566
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'responsive', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace']
|
|
7567
7567
|
})
|
|
7568
7568
|
@Component({
|
|
7569
7569
|
selector: 'swirl-text',
|
|
7570
7570
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7571
7571
|
template: '<ng-content></ng-content>',
|
|
7572
7572
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7573
|
-
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace'],
|
|
7573
|
+
inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'responsive', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace'],
|
|
7574
7574
|
})
|
|
7575
7575
|
export class SwirlText {
|
|
7576
7576
|
protected el: HTMLElement;
|