@getflip/swirl-components-angular 0.99.0 → 0.100.1

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.
@@ -15,6 +15,10 @@ export declare class FileManager {
15
15
  static ɵcmp: i0.ɵɵComponentDeclaration<FileManager, "file-manager", never, {}, {}, never, ["*"], false>;
16
16
  }
17
17
  export declare interface SwirlAccordion extends Components.SwirlAccordion {
18
+ /**
19
+ *
20
+ */
21
+ expandedItemChange: EventEmitter<CustomEvent<string>>;
18
22
  }
19
23
  export declare class SwirlAccordion {
20
24
  protected z: NgZone;
@@ -282,7 +286,7 @@ export declare class SwirlColorInput {
282
286
  protected el: HTMLElement;
283
287
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
284
288
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlColorInput, never>;
285
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlColorInput, "swirl-color-input", never, { "autoFocus": "autoFocus"; "autoSelect": "autoSelect"; "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "placeholder": "placeholder"; "required": "required"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "value": "value"; }, {}, never, ["*"], false>;
289
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlColorInput, "swirl-color-input", never, { "autoFocus": "autoFocus"; "autoSelect": "autoSelect"; "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "pickerButtonLabel": "pickerButtonLabel"; "pickerLabel": "pickerLabel"; "placeholder": "placeholder"; "required": "required"; "swirlAriaDescribedby": "swirlAriaDescribedby"; "value": "value"; }, {}, never, ["*"], false>;
286
290
  }
287
291
  export declare interface SwirlColumns extends Components.SwirlColumns {
288
292
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.99.0",
3
+ "version": "0.100.1",
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.99.0",
17
+ "@getflip/swirl-components": "^0.100.1",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.11.4"
@@ -27,7 +27,13 @@ export class FileManager {
27
27
  }
28
28
 
29
29
 
30
- export declare interface SwirlAccordion extends Components.SwirlAccordion {}
30
+ export declare interface SwirlAccordion extends Components.SwirlAccordion {
31
+ /**
32
+ *
33
+ */
34
+ expandedItemChange: EventEmitter<CustomEvent<string>>;
35
+
36
+ }
31
37
 
32
38
  @ProxyCmp({
33
39
  defineCustomElementFn: undefined,
@@ -43,6 +49,7 @@ export class SwirlAccordion {
43
49
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
44
50
  c.detach();
45
51
  this.el = r.nativeElement;
52
+ proxyOutputs(this, this.el, ['expandedItemChange']);
46
53
  }
47
54
  }
48
55
 
@@ -570,13 +577,13 @@ export declare interface SwirlColorInput extends Components.SwirlColorInput {
570
577
 
571
578
  @ProxyCmp({
572
579
  defineCustomElementFn: undefined,
573
- inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
580
+ inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'pickerButtonLabel', 'pickerLabel', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
574
581
  })
575
582
  @Component({
576
583
  selector: 'swirl-color-input',
577
584
  changeDetection: ChangeDetectionStrategy.OnPush,
578
585
  template: '<ng-content></ng-content>',
579
- inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
586
+ inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'pickerButtonLabel', 'pickerLabel', 'placeholder', 'required', 'swirlAriaDescribedby', 'value']
580
587
  })
581
588
  export class SwirlColorInput {
582
589
  protected el: HTMLElement;