@getflip/swirl-components-angular 0.290.0 → 0.292.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.
@@ -58,7 +58,7 @@ export declare class SwirlActionListSection {
58
58
  protected el: HTMLElement;
59
59
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
60
60
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlActionListSection, never>;
61
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlActionListSection, "swirl-action-list-section", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlActionListSection, "swirl-action-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>;
62
62
  }
63
63
  export declare interface SwirlActionListSection extends Components.SwirlActionListSection {
64
64
  }
@@ -2388,7 +2388,7 @@ export declare class SwirlOptionListSection {
2388
2388
  protected el: HTMLElement;
2389
2389
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2390
2390
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlOptionListSection, never>;
2391
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionListSection, "swirl-option-list-section", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
2391
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlOptionListSection, "swirl-option-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>;
2392
2392
  }
2393
2393
  export declare interface SwirlOptionListSection extends Components.SwirlOptionListSection {
2394
2394
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.290.0",
3
+ "version": "0.292.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.290.0",
17
+ "@getflip/swirl-components": "^0.292.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.13.3"
@@ -125,14 +125,14 @@ export declare interface SwirlActionListItem extends Components.SwirlActionListI
125
125
 
126
126
 
127
127
  @ProxyCmp({
128
- inputs: ['label']
128
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing']
129
129
  })
130
130
  @Component({
131
131
  selector: 'swirl-action-list-section',
132
132
  changeDetection: ChangeDetectionStrategy.OnPush,
133
133
  template: '<ng-content></ng-content>',
134
134
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
135
- inputs: ['label'],
135
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
136
136
  })
137
137
  export class SwirlActionListSection {
138
138
  protected el: HTMLElement;
@@ -5862,14 +5862,14 @@ export declare interface SwirlOptionListItem extends Components.SwirlOptionListI
5862
5862
 
5863
5863
 
5864
5864
  @ProxyCmp({
5865
- inputs: ['label']
5865
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing']
5866
5866
  })
5867
5867
  @Component({
5868
5868
  selector: 'swirl-option-list-section',
5869
5869
  changeDetection: ChangeDetectionStrategy.OnPush,
5870
5870
  template: '<ng-content></ng-content>',
5871
5871
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5872
- inputs: ['label'],
5872
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
5873
5873
  })
5874
5874
  export class SwirlOptionListSection {
5875
5875
  protected el: HTMLElement;