@salesforcedevs/dx-components 1.3.6-alpha.1 → 1.3.6-alpha.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "1.3.6-alpha.1",
3
+ "version": "1.3.6-alpha.3",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@coveo/headless": "^1.32.0",
14
- "@floating-ui/dom": "0.5.3",
14
+ "@floating-ui/dom": "^1.0.4",
15
15
  "@sfdocs-internal/wires": "^0.6.3",
16
16
  "@vimeo/player": "^2.16.4",
17
17
  "classnames": "^2.2.6",
@@ -20,7 +20,6 @@
20
20
  onclear={onInputEscape}
21
21
  onsubmit={onInputSubmit}
22
22
  onfocus={openDropdown}
23
- onblur={onDropdownRequestClose}
24
23
  placeholder="Search"
25
24
  size="override"
26
25
  type="search"
@@ -52,7 +51,6 @@
52
51
  onclear={onInputEscape}
53
52
  onsubmit={onInputSubmit}
54
53
  onfocus={openDropdown}
55
- onblur={onDropdownRequestClose}
56
54
  placeholder="Search"
57
55
  shortcut-key="k"
58
56
  size="small"
@@ -69,7 +69,6 @@ export default class HeaderSearch extends LightningElement {
69
69
  switch (e.detail as PopoverRequestCloseType) {
70
70
  case "interact-outside":
71
71
  case "keypress-escape":
72
- case "input-blur":
73
72
  this.closeDropdown();
74
73
  break;
75
74
  default:
@@ -186,8 +186,6 @@ export default class Input extends LightningElement {
186
186
  if (this.validityOnBlur) {
187
187
  this.reportValidity();
188
188
  }
189
-
190
- this.dispatchEvent(new CustomEvent("blur", { detail: "input-blur" }));
191
189
  }
192
190
 
193
191
  onInputChange(e: InputEvent) {
@@ -18,7 +18,6 @@
18
18
  value={value}
19
19
  onchange={onInputChange}
20
20
  onfocus={onInputFocus}
21
- onblur={onDropdownRequestClose}
22
21
  onclear={onInputClear}
23
22
  shortcut-key="j"
24
23
  clearable
@@ -422,7 +422,6 @@ export default class SidebarSearch extends LightningElement {
422
422
  switch (e.detail as PopoverRequestCloseType) {
423
423
  case "interact-outside":
424
424
  case "keypress-escape":
425
- case "input-blur":
426
425
  this.dropdownRequestedOpen = false;
427
426
  break;
428
427
  default: