@getflip/swirl-components-angular 0.192.2 → 0.193.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/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
|
@@ -2390,7 +2390,7 @@ export declare class SwirlSeparator {
|
|
|
2390
2390
|
protected el: HTMLElement;
|
|
2391
2391
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2392
2392
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSeparator, never>;
|
|
2393
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, { "orientation": { "alias": "orientation"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSeparator, "swirl-separator", never, { "borderColor": { "alias": "borderColor"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2394
2394
|
}
|
|
2395
2395
|
export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
|
|
2396
2396
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.193.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.193.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -5285,13 +5285,13 @@ export declare interface SwirlSeparator extends Components.SwirlSeparator {}
|
|
|
5285
5285
|
|
|
5286
5286
|
@ProxyCmp({
|
|
5287
5287
|
defineCustomElementFn: undefined,
|
|
5288
|
-
inputs: ['orientation', 'spacing']
|
|
5288
|
+
inputs: ['borderColor', 'orientation', 'spacing']
|
|
5289
5289
|
})
|
|
5290
5290
|
@Component({
|
|
5291
5291
|
selector: 'swirl-separator',
|
|
5292
5292
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5293
5293
|
template: '<ng-content></ng-content>',
|
|
5294
|
-
inputs: ['orientation', 'spacing']
|
|
5294
|
+
inputs: ['borderColor', 'orientation', 'spacing']
|
|
5295
5295
|
})
|
|
5296
5296
|
export class SwirlSeparator {
|
|
5297
5297
|
protected el: HTMLElement;
|