@getflip/swirl-components-angular 0.280.0 → 0.281.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 +13 -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
|
@@ -2495,7 +2495,7 @@ export declare class SwirlResourceListSection {
|
|
|
2495
2495
|
protected el: HTMLElement;
|
|
2496
2496
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2497
2497
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlResourceListSection, never>;
|
|
2498
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlResourceListSection, "swirl-resource-list-section", never, { "hasSeparator": { "alias": "hasSeparator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2498
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlResourceListSection, "swirl-resource-list-section", never, { "hasSeparator": { "alias": "hasSeparator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "separatorSpacing": { "alias": "separatorSpacing"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2499
2499
|
}
|
|
2500
2500
|
export declare interface SwirlResourceListSection extends Components.SwirlResourceListSection {
|
|
2501
2501
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.281.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.281.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -6122,14 +6122,14 @@ export declare interface SwirlResourceListItem extends Components.SwirlResourceL
|
|
|
6122
6122
|
|
|
6123
6123
|
|
|
6124
6124
|
@ProxyCmp({
|
|
6125
|
-
inputs: ['hasSeparator', 'label', 'spacing']
|
|
6125
|
+
inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing']
|
|
6126
6126
|
})
|
|
6127
6127
|
@Component({
|
|
6128
6128
|
selector: 'swirl-resource-list-section',
|
|
6129
6129
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6130
6130
|
template: '<ng-content></ng-content>',
|
|
6131
6131
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6132
|
-
inputs: ['hasSeparator', 'label', 'spacing'],
|
|
6132
|
+
inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
|
|
6133
6133
|
})
|
|
6134
6134
|
export class SwirlResourceListSection {
|
|
6135
6135
|
protected el: HTMLElement;
|