@getflip/swirl-components-angular 0.35.0 → 0.36.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 +24 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +6 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +5 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +5 -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 +4 -2
|
@@ -1641,7 +1641,7 @@ export declare class SwirlSeparator {
|
|
|
1641
1641
|
protected el: HTMLElement;
|
|
1642
1642
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1643
1643
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSeparator, never>;
|
|
1644
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, {}, {}, never, ["*"], false>;
|
|
1644
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, { "spacing": "spacing"; }, {}, never, ["*"], false>;
|
|
1645
1645
|
}
|
|
1646
1646
|
export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
|
|
1647
1647
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.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.37.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3650,12 +3650,14 @@ export class SwirlSelect {
|
|
|
3650
3650
|
export declare interface SwirlSeparator extends Components.SwirlSeparator {}
|
|
3651
3651
|
|
|
3652
3652
|
@ProxyCmp({
|
|
3653
|
-
defineCustomElementFn: undefined
|
|
3653
|
+
defineCustomElementFn: undefined,
|
|
3654
|
+
inputs: ['spacing']
|
|
3654
3655
|
})
|
|
3655
3656
|
@Component({
|
|
3656
3657
|
selector: 'swirl-separator',
|
|
3657
3658
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3658
|
-
template: '<ng-content></ng-content>'
|
|
3659
|
+
template: '<ng-content></ng-content>',
|
|
3660
|
+
inputs: ['spacing']
|
|
3659
3661
|
})
|
|
3660
3662
|
export class SwirlSeparator {
|
|
3661
3663
|
protected el: HTMLElement;
|