@getflip/swirl-components-angular 0.100.3 → 0.101.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 +16 -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
|
@@ -146,7 +146,7 @@ export declare class SwirlAvatar {
|
|
|
146
146
|
protected el: HTMLElement;
|
|
147
147
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
148
148
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlAvatar, never>;
|
|
149
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAvatar, "swirl-avatar", never, { "badge": "badge"; "badgePosition": "badgePosition"; "color": "color"; "icon": "icon"; "initials": "initials"; "interactive": "interactive"; "label": "label"; "showLabel": "showLabel"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
149
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAvatar, "swirl-avatar", never, { "badge": "badge"; "badgePosition": "badgePosition"; "color": "color"; "icon": "icon"; "initials": "initials"; "interactive": "interactive"; "label": "label"; "showLabel": "showLabel"; "size": "size"; "src": "src"; "toolPosition": "toolPosition"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
150
150
|
}
|
|
151
151
|
export declare interface SwirlAvatarGroup extends Components.SwirlAvatarGroup {
|
|
152
152
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.101.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.101.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -278,13 +278,13 @@ export declare interface SwirlAvatar extends Components.SwirlAvatar {}
|
|
|
278
278
|
|
|
279
279
|
@ProxyCmp({
|
|
280
280
|
defineCustomElementFn: undefined,
|
|
281
|
-
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
281
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
282
282
|
})
|
|
283
283
|
@Component({
|
|
284
284
|
selector: 'swirl-avatar',
|
|
285
285
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
286
286
|
template: '<ng-content></ng-content>',
|
|
287
|
-
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
287
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'toolPosition', 'variant']
|
|
288
288
|
})
|
|
289
289
|
export class SwirlAvatar {
|
|
290
290
|
protected el: HTMLElement;
|