@yoobic/yobi 8.5.0-77 → 8.5.0-78

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.
@@ -26,7 +26,6 @@ const YooFormAutocompleteComponent = class {
26
26
  this.fetchCustomData = index.createEvent(this, "fetchCustomData", 7);
27
27
  this.webAutocompleteOpened = index.createEvent(this, "webAutocompleteOpened", 7);
28
28
  this.webAutocompleteClosed = index.createEvent(this, "webAutocompleteClosed", 7);
29
- this.mobileAutocompleteClosed = index.createEvent(this, "mobileAutocompleteClosed", 7);
30
29
  this.extraDataChanged = index.createEvent(this, "extraDataChanged", 7);
31
30
  /**
32
31
  * trigger file change with a initial that was passed in
@@ -590,7 +589,6 @@ const YooFormAutocompleteComponent = class {
590
589
  if (!(index$1.isWeb(this.host) && this.showDropdownContent)) {
591
590
  this.inputFocused.emit();
592
591
  await (!index$1.isWeb(this.host) || !this.expandHeightOnShow ? this.showContainerDialog() : this.showContainer());
593
- this.mobileAutocompleteClosed.emit(this.selection);
594
592
  }
595
593
  else {
596
594
  this.webAutocompleteClosed.emit(this.selection);
@@ -569,7 +569,6 @@ export class YooFormAutocompleteComponent {
569
569
  if (!(isWeb(this.host) && this.showDropdownContent)) {
570
570
  this.inputFocused.emit();
571
571
  await (!isWeb(this.host) || !this.expandHeightOnShow ? this.showContainerDialog() : this.showContainer());
572
- this.mobileAutocompleteClosed.emit(this.selection);
573
572
  }
574
573
  else {
575
574
  this.webAutocompleteClosed.emit(this.selection);
@@ -2735,21 +2734,6 @@ export class YooFormAutocompleteComponent {
2735
2734
  "resolved": "any[]",
2736
2735
  "references": {}
2737
2736
  }
2738
- }, {
2739
- "method": "mobileAutocompleteClosed",
2740
- "name": "mobileAutocompleteClosed",
2741
- "bubbles": true,
2742
- "cancelable": true,
2743
- "composed": true,
2744
- "docs": {
2745
- "tags": [],
2746
- "text": ""
2747
- },
2748
- "complexType": {
2749
- "original": "any[]",
2750
- "resolved": "any[]",
2751
- "references": {}
2752
- }
2753
2737
  }, {
2754
2738
  "method": "extraDataChanged",
2755
2739
  "name": "extraDataChanged",
@@ -22,7 +22,6 @@ const YooFormAutocompleteComponent = class {
22
22
  this.fetchCustomData = createEvent(this, "fetchCustomData", 7);
23
23
  this.webAutocompleteOpened = createEvent(this, "webAutocompleteOpened", 7);
24
24
  this.webAutocompleteClosed = createEvent(this, "webAutocompleteClosed", 7);
25
- this.mobileAutocompleteClosed = createEvent(this, "mobileAutocompleteClosed", 7);
26
25
  this.extraDataChanged = createEvent(this, "extraDataChanged", 7);
27
26
  /**
28
27
  * trigger file change with a initial that was passed in
@@ -586,7 +585,6 @@ const YooFormAutocompleteComponent = class {
586
585
  if (!(isWeb(this.host) && this.showDropdownContent)) {
587
586
  this.inputFocused.emit();
588
587
  await (!isWeb(this.host) || !this.expandHeightOnShow ? this.showContainerDialog() : this.showContainer());
589
- this.mobileAutocompleteClosed.emit(this.selection);
590
588
  }
591
589
  else {
592
590
  this.webAutocompleteClosed.emit(this.selection);
@@ -22,7 +22,6 @@ const YooFormAutocompleteComponent = class {
22
22
  this.fetchCustomData = createEvent(this, "fetchCustomData", 7);
23
23
  this.webAutocompleteOpened = createEvent(this, "webAutocompleteOpened", 7);
24
24
  this.webAutocompleteClosed = createEvent(this, "webAutocompleteClosed", 7);
25
- this.mobileAutocompleteClosed = createEvent(this, "mobileAutocompleteClosed", 7);
26
25
  this.extraDataChanged = createEvent(this, "extraDataChanged", 7);
27
26
  /**
28
27
  * trigger file change with a initial that was passed in
@@ -586,7 +585,6 @@ const YooFormAutocompleteComponent = class {
586
585
  if (!(isWeb(this.host) && this.showDropdownContent)) {
587
586
  this.inputFocused.emit();
588
587
  await (!isWeb(this.host) || !this.expandHeightOnShow ? this.showContainerDialog() : this.showContainer());
589
- this.mobileAutocompleteClosed.emit(this.selection);
590
588
  }
591
589
  else {
592
590
  this.webAutocompleteClosed.emit(this.selection);
@@ -107,7 +107,6 @@ export declare class YooFormAutocompleteComponent implements IFormAutocomplete<a
107
107
  fetchCustomData: EventEmitter<any>;
108
108
  webAutocompleteOpened: EventEmitter<void>;
109
109
  webAutocompleteClosed: EventEmitter<any[]>;
110
- mobileAutocompleteClosed: EventEmitter<any[]>;
111
110
  extraDataChanged: EventEmitter<any>;
112
111
  showDropdownContent: boolean;
113
112
  selection: any[];
@@ -12691,7 +12691,6 @@ declare namespace LocalJSX {
12691
12691
  "onInputBlurred"?: (event: YooFormAutocompleteCustomEvent<any>) => void;
12692
12692
  "onInputChanged"?: (event: YooFormAutocompleteCustomEvent<any>) => void;
12693
12693
  "onInputFocused"?: (event: YooFormAutocompleteCustomEvent<any>) => void;
12694
- "onMobileAutocompleteClosed"?: (event: YooFormAutocompleteCustomEvent<any[]>) => void;
12695
12694
  "onValidityChanged"?: (event: YooFormAutocompleteCustomEvent<boolean>) => void;
12696
12695
  "onWebAutocompleteClosed"?: (event: YooFormAutocompleteCustomEvent<any[]>) => void;
12697
12696
  "onWebAutocompleteOpened"?: (event: YooFormAutocompleteCustomEvent<void>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoobic/yobi",
3
- "version": "8.5.0-77",
3
+ "version": "8.5.0-78",
4
4
  "description": "Yobi - Yoobic Design System",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.cjs.js",