@spectrum-web-components/shared 0.14.4 → 0.14.5

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.
Files changed (53) hide show
  1. package/package.json +52 -6
  2. package/src/first-focusable-in.dev.js +6 -0
  3. package/src/first-focusable-in.dev.js.map +7 -0
  4. package/src/first-focusable-in.js +3 -14
  5. package/src/first-focusable-in.js.map +7 -1
  6. package/src/focus-visible.dev.js +68 -0
  7. package/src/focus-visible.dev.js.map +7 -0
  8. package/src/focus-visible.js +59 -105
  9. package/src/focus-visible.js.map +7 -1
  10. package/src/focusable.dev.js +190 -0
  11. package/src/focusable.dev.js.map +7 -0
  12. package/src/focusable.js +185 -244
  13. package/src/focusable.js.map +7 -1
  14. package/src/get-active-element.dev.js +4 -0
  15. package/src/get-active-element.dev.js.map +7 -0
  16. package/src/get-active-element.js +2 -14
  17. package/src/get-active-element.js.map +7 -1
  18. package/src/get-deep-element-from-point.dev.js +12 -0
  19. package/src/get-deep-element-from-point.dev.js.map +7 -0
  20. package/src/get-deep-element-from-point.js +9 -20
  21. package/src/get-deep-element-from-point.js.map +7 -1
  22. package/src/index.dev.js +10 -0
  23. package/src/index.dev.js.map +7 -0
  24. package/src/index.js +10 -21
  25. package/src/index.js.map +7 -1
  26. package/src/like-anchor.dev.js +58 -0
  27. package/src/like-anchor.dev.js.map +7 -0
  28. package/src/like-anchor.js +45 -40
  29. package/src/like-anchor.js.map +7 -1
  30. package/src/observe-slot-presence.dev.js +52 -0
  31. package/src/observe-slot-presence.dev.js.map +7 -0
  32. package/src/observe-slot-presence.js +47 -55
  33. package/src/observe-slot-presence.js.map +7 -1
  34. package/src/observe-slot-text.dev.js +79 -0
  35. package/src/observe-slot-text.dev.js.map +7 -0
  36. package/src/observe-slot-text.js +73 -64
  37. package/src/observe-slot-text.js.map +7 -1
  38. package/src/platform.dev.js +31 -0
  39. package/src/platform.dev.js.map +7 -0
  40. package/src/platform.js +11 -32
  41. package/src/platform.js.map +7 -1
  42. package/src/reparent-children.dev.js +50 -0
  43. package/src/reparent-children.dev.js.map +7 -0
  44. package/src/reparent-children.js +44 -52
  45. package/src/reparent-children.js.map +7 -1
  46. package/test/focusable.test.js +19 -31
  47. package/test/focusable.test.js.map +7 -1
  48. package/test/observe-slot-presence.test.js +17 -27
  49. package/test/observe-slot-presence.test.js.map +7 -1
  50. package/test/observe-slot-text.test.js +17 -28
  51. package/test/observe-slot-text.test.js.map +7 -1
  52. package/test/reparent-children.test.js +151 -162
  53. package/test/reparent-children.test.js.map +7 -1
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["focusable.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { PropertyValues, SpectrumElement } from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport { FocusVisiblePolyfillMixin } from './focus-visible.dev.js'\n\ntype DisableableElement = HTMLElement & { disabled?: boolean };\n\n/**\n * Focusable base class handles tabindex setting into shadowed elements automatically.\n *\n * This implementation is based heavily on the aybolit delegate-focus-mixin at\n * https://github.com/web-padawan/aybolit/blob/master/packages/core/src/mixins/delegate-focus-mixin.js\n */\nexport class Focusable extends FocusVisiblePolyfillMixin(SpectrumElement) {\n /**\n * Disable this control. It will not receive focus or events\n */\n @property({ type: Boolean, reflect: true })\n public disabled = false;\n\n /**\n * When this control is rendered, focus it automatically\n * @private\n */\n @property({ type: Boolean })\n public override autofocus = false;\n\n /**\n * The tab index to apply to this control. See general documentation about\n * the tabindex HTML property\n *\n * @private\n */\n @property({ type: Number })\n public override get tabIndex(): number {\n if (this.focusElement === this) {\n const tabindex = this.hasAttribute('tabindex')\n ? Number(this.getAttribute('tabindex'))\n : NaN;\n return !isNaN(tabindex) ? tabindex : -1;\n }\n const tabIndexAttribute = parseFloat(\n this.hasAttribute('tabindex')\n ? (this.getAttribute('tabindex') as string) || '0'\n : '0'\n );\n // When `disabled` tabindex is -1.\n // When host tabindex -1, use that as the cache.\n if (this.disabled || tabIndexAttribute < 0) {\n return -1;\n }\n // When `focusElement` isn't available yet,\n // use host tabindex as the cache.\n if (!this.focusElement) {\n return tabIndexAttribute;\n }\n // All other times, use the tabindex of `focusElement`\n // as the cache for this value.\n return this.focusElement.tabIndex;\n }\n public override set tabIndex(tabIndex: number) {\n // Flipping `manipulatingTabindex` to true before a change\n // allows for that change NOT to effect the cached value of tabindex\n if (this.manipulatingTabindex) {\n this.manipulatingTabindex = false;\n return;\n }\n if (this.focusElement === this) {\n if (tabIndex !== this.tabIndex) {\n this._tabIndex = tabIndex;\n const tabindex = this.disabled ? '-1' : '' + tabIndex;\n this.setAttribute('tabindex', tabindex);\n }\n return;\n }\n if (tabIndex === -1) {\n this.addEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n } else {\n // All code paths are about to address the host tabindex without side effect.\n this.manipulatingTabindex = true;\n this.removeEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n }\n if (tabIndex === -1 || this.disabled) {\n // Do not cange the tabindex of `focusElement` as it is the \"old\" value cache.\n // Make element NOT focusable.\n this.setAttribute('tabindex', '-1');\n this.removeAttribute('focusable');\n if (tabIndex !== -1) {\n // Cache all NON-`-1` values on the `focusElement`.\n this.manageFocusElementTabindex(tabIndex);\n }\n return;\n }\n this.setAttribute('focusable', '');\n if (this.hasAttribute('tabindex')) {\n this.removeAttribute('tabindex');\n } else {\n // You can't remove an attribute that isn't there,\n // manually end the `manipulatingTabindex` guard.\n this.manipulatingTabindex = false;\n }\n this.manageFocusElementTabindex(tabIndex);\n }\n private _tabIndex = 0;\n\n private onPointerdownManagementOfTabIndex(): void {\n if (this.tabIndex === -1) {\n this.tabIndex = 0;\n this.focus({ preventScroll: true });\n }\n }\n\n private async manageFocusElementTabindex(tabIndex: number): Promise<void> {\n if (!this.focusElement) {\n // allow setting these values to be async when needed.\n await this.updateComplete;\n }\n if (tabIndex === null) {\n this.focusElement.removeAttribute('tabindex');\n } else {\n this.focusElement.tabIndex = tabIndex;\n }\n }\n\n private manipulatingTabindex = false;\n\n /**\n * @private\n */\n public get focusElement(): DisableableElement {\n throw new Error('Must implement focusElement getter!');\n }\n\n public override focus(options?: FocusOptions): void {\n if (this.disabled || !this.focusElement) {\n return;\n }\n\n if (this.focusElement !== this) {\n this.focusElement.focus(options);\n } else {\n HTMLElement.prototype.focus.apply(this, [options]);\n }\n }\n\n public override blur(): void {\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.blur();\n } else {\n HTMLElement.prototype.blur.apply(this);\n }\n }\n\n public override click(): void {\n if (this.disabled) {\n return;\n }\n\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.click();\n } else {\n HTMLElement.prototype.click.apply(this);\n }\n }\n\n protected manageAutoFocus(): void {\n if (this.autofocus) {\n /**\n * Trick :focus-visible polyfill into thinking keyboard based focus\n *\n * @private\n **/\n this.dispatchEvent(\n new KeyboardEvent('keydown', {\n code: 'Tab',\n })\n );\n this.focusElement.focus();\n }\n }\n\n protected override firstUpdated(changes: PropertyValues): void {\n super.firstUpdated(changes);\n if (\n !this.hasAttribute('tabindex') ||\n this.getAttribute('tabindex') !== '-1'\n ) {\n this.setAttribute('focusable', '');\n }\n }\n\n protected override update(changedProperties: PropertyValues): void {\n if (changedProperties.has('disabled')) {\n this.handleDisabledChanged(\n this.disabled,\n changedProperties.get('disabled') as boolean\n );\n }\n\n super.update(changedProperties);\n }\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('disabled') && this.disabled) {\n this.blur();\n }\n }\n\n private async handleDisabledChanged(\n disabled: boolean,\n oldDisabled: boolean\n ): Promise<void> {\n const canSetDisabled = (): boolean =>\n this.focusElement !== this &&\n typeof this.focusElement.disabled !== 'undefined';\n if (disabled) {\n this.manipulatingTabindex = true;\n this.setAttribute('tabindex', '-1');\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = true;\n } else {\n this.setAttribute('aria-disabled', 'true');\n }\n } else if (oldDisabled) {\n this.manipulatingTabindex = true;\n if (this.focusElement === this) {\n this.setAttribute('tabindex', '' + this._tabIndex);\n } else {\n this.removeAttribute('tabindex');\n }\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = false;\n } else {\n this.removeAttribute('aria-disabled');\n }\n }\n }\n\n public override connectedCallback(): void {\n super.connectedCallback();\n this.updateComplete.then(() => {\n requestAnimationFrame(() => {\n this.manageAutoFocus();\n });\n });\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
package/src/focusable.js CHANGED
@@ -1,249 +1,190 @@
1
- import { __decorate } from "tslib";
2
- /*
3
- Copyright 2020 Adobe. All rights reserved.
4
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
5
- you may not use this file except in compliance with the License. You may obtain a copy
6
- of the License at http://www.apache.org/licenses/LICENSE-2.0
7
-
8
- Unless required by applicable law or agreed to in writing, software distributed under
9
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
10
- OF ANY KIND, either express or implied. See the License for the specific language
11
- governing permissions and limitations under the License.
12
- */
13
- import { SpectrumElement } from '@spectrum-web-components/base';
14
- import { property } from '@spectrum-web-components/base/src/decorators.js';
15
- import { FocusVisiblePolyfillMixin } from './focus-visible.js';
16
- /**
17
- * Focusable base class handles tabindex setting into shadowed elements automatically.
18
- *
19
- * This implementation is based heavily on the aybolit delegate-focus-mixin at
20
- * https://github.com/web-padawan/aybolit/blob/master/packages/core/src/mixins/delegate-focus-mixin.js
21
- */
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __decorateClass = (decorators, target, key, kind) => {
4
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
5
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
6
+ if (decorator = decorators[i])
7
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
8
+ if (kind && result)
9
+ __defProp(target, key, result);
10
+ return result;
11
+ };
12
+ import { SpectrumElement } from "@spectrum-web-components/base";
13
+ import { property } from "@spectrum-web-components/base/src/decorators.js";
14
+ import { FocusVisiblePolyfillMixin } from "./focus-visible.js";
22
15
  export class Focusable extends FocusVisiblePolyfillMixin(SpectrumElement) {
23
- constructor() {
24
- super(...arguments);
25
- /**
26
- * Disable this control. It will not receive focus or events
27
- */
28
- this.disabled = false;
29
- /**
30
- * When this control is rendered, focus it automatically
31
- * @private
32
- */
33
- this.autofocus = false;
34
- this._tabIndex = 0;
35
- this.manipulatingTabindex = false;
36
- }
37
- /**
38
- * The tab index to apply to this control. See general documentation about
39
- * the tabindex HTML property
40
- *
41
- * @private
42
- */
43
- get tabIndex() {
44
- if (this.focusElement === this) {
45
- const tabindex = this.hasAttribute('tabindex')
46
- ? Number(this.getAttribute('tabindex'))
47
- : NaN;
48
- return !isNaN(tabindex) ? tabindex : -1;
49
- }
50
- const tabIndexAttribute = parseFloat(this.hasAttribute('tabindex')
51
- ? this.getAttribute('tabindex') || '0'
52
- : '0');
53
- // When `disabled` tabindex is -1.
54
- // When host tabindex -1, use that as the cache.
55
- if (this.disabled || tabIndexAttribute < 0) {
56
- return -1;
57
- }
58
- // When `focusElement` isn't available yet,
59
- // use host tabindex as the cache.
60
- if (!this.focusElement) {
61
- return tabIndexAttribute;
62
- }
63
- // All other times, use the tabindex of `focusElement`
64
- // as the cache for this value.
65
- return this.focusElement.tabIndex;
66
- }
67
- set tabIndex(tabIndex) {
68
- // Flipping `manipulatingTabindex` to true before a change
69
- // allows for that change NOT to effect the cached value of tabindex
70
- if (this.manipulatingTabindex) {
71
- this.manipulatingTabindex = false;
72
- return;
73
- }
74
- if (this.focusElement === this) {
75
- if (tabIndex !== this.tabIndex) {
76
- this._tabIndex = tabIndex;
77
- const tabindex = this.disabled ? '-1' : '' + tabIndex;
78
- this.setAttribute('tabindex', tabindex);
79
- }
80
- return;
81
- }
82
- if (tabIndex === -1) {
83
- this.addEventListener('pointerdown', this.onPointerdownManagementOfTabIndex);
84
- }
85
- else {
86
- // All code paths are about to address the host tabindex without side effect.
87
- this.manipulatingTabindex = true;
88
- this.removeEventListener('pointerdown', this.onPointerdownManagementOfTabIndex);
89
- }
90
- if (tabIndex === -1 || this.disabled) {
91
- // Do not cange the tabindex of `focusElement` as it is the "old" value cache.
92
- // Make element NOT focusable.
93
- this.setAttribute('tabindex', '-1');
94
- this.removeAttribute('focusable');
95
- if (tabIndex !== -1) {
96
- // Cache all NON-`-1` values on the `focusElement`.
97
- this.manageFocusElementTabindex(tabIndex);
98
- }
99
- return;
100
- }
101
- this.setAttribute('focusable', '');
102
- if (this.hasAttribute('tabindex')) {
103
- this.removeAttribute('tabindex');
104
- }
105
- else {
106
- // You can't remove an attribute that isn't there,
107
- // manually end the `manipulatingTabindex` guard.
108
- this.manipulatingTabindex = false;
109
- }
16
+ constructor() {
17
+ super(...arguments);
18
+ this.disabled = false;
19
+ this.autofocus = false;
20
+ this._tabIndex = 0;
21
+ this.manipulatingTabindex = false;
22
+ }
23
+ get tabIndex() {
24
+ if (this.focusElement === this) {
25
+ const tabindex = this.hasAttribute("tabindex") ? Number(this.getAttribute("tabindex")) : NaN;
26
+ return !isNaN(tabindex) ? tabindex : -1;
27
+ }
28
+ const tabIndexAttribute = parseFloat(this.hasAttribute("tabindex") ? this.getAttribute("tabindex") || "0" : "0");
29
+ if (this.disabled || tabIndexAttribute < 0) {
30
+ return -1;
31
+ }
32
+ if (!this.focusElement) {
33
+ return tabIndexAttribute;
34
+ }
35
+ return this.focusElement.tabIndex;
36
+ }
37
+ set tabIndex(tabIndex) {
38
+ if (this.manipulatingTabindex) {
39
+ this.manipulatingTabindex = false;
40
+ return;
41
+ }
42
+ if (this.focusElement === this) {
43
+ if (tabIndex !== this.tabIndex) {
44
+ this._tabIndex = tabIndex;
45
+ const tabindex = this.disabled ? "-1" : "" + tabIndex;
46
+ this.setAttribute("tabindex", tabindex);
47
+ }
48
+ return;
49
+ }
50
+ if (tabIndex === -1) {
51
+ this.addEventListener("pointerdown", this.onPointerdownManagementOfTabIndex);
52
+ } else {
53
+ this.manipulatingTabindex = true;
54
+ this.removeEventListener("pointerdown", this.onPointerdownManagementOfTabIndex);
55
+ }
56
+ if (tabIndex === -1 || this.disabled) {
57
+ this.setAttribute("tabindex", "-1");
58
+ this.removeAttribute("focusable");
59
+ if (tabIndex !== -1) {
110
60
  this.manageFocusElementTabindex(tabIndex);
61
+ }
62
+ return;
63
+ }
64
+ this.setAttribute("focusable", "");
65
+ if (this.hasAttribute("tabindex")) {
66
+ this.removeAttribute("tabindex");
67
+ } else {
68
+ this.manipulatingTabindex = false;
69
+ }
70
+ this.manageFocusElementTabindex(tabIndex);
71
+ }
72
+ onPointerdownManagementOfTabIndex() {
73
+ if (this.tabIndex === -1) {
74
+ this.tabIndex = 0;
75
+ this.focus({ preventScroll: true });
76
+ }
77
+ }
78
+ async manageFocusElementTabindex(tabIndex) {
79
+ if (!this.focusElement) {
80
+ await this.updateComplete;
81
+ }
82
+ if (tabIndex === null) {
83
+ this.focusElement.removeAttribute("tabindex");
84
+ } else {
85
+ this.focusElement.tabIndex = tabIndex;
86
+ }
87
+ }
88
+ get focusElement() {
89
+ throw new Error("Must implement focusElement getter!");
90
+ }
91
+ focus(options) {
92
+ if (this.disabled || !this.focusElement) {
93
+ return;
94
+ }
95
+ if (this.focusElement !== this) {
96
+ this.focusElement.focus(options);
97
+ } else {
98
+ HTMLElement.prototype.focus.apply(this, [options]);
99
+ }
100
+ }
101
+ blur() {
102
+ const focusElement = this.focusElement || this;
103
+ if (focusElement !== this) {
104
+ focusElement.blur();
105
+ } else {
106
+ HTMLElement.prototype.blur.apply(this);
107
+ }
108
+ }
109
+ click() {
110
+ if (this.disabled) {
111
+ return;
112
+ }
113
+ const focusElement = this.focusElement || this;
114
+ if (focusElement !== this) {
115
+ focusElement.click();
116
+ } else {
117
+ HTMLElement.prototype.click.apply(this);
118
+ }
119
+ }
120
+ manageAutoFocus() {
121
+ if (this.autofocus) {
122
+ this.dispatchEvent(new KeyboardEvent("keydown", {
123
+ code: "Tab"
124
+ }));
125
+ this.focusElement.focus();
126
+ }
127
+ }
128
+ firstUpdated(changes) {
129
+ super.firstUpdated(changes);
130
+ if (!this.hasAttribute("tabindex") || this.getAttribute("tabindex") !== "-1") {
131
+ this.setAttribute("focusable", "");
132
+ }
133
+ }
134
+ update(changedProperties) {
135
+ if (changedProperties.has("disabled")) {
136
+ this.handleDisabledChanged(this.disabled, changedProperties.get("disabled"));
137
+ }
138
+ super.update(changedProperties);
139
+ }
140
+ updated(changedProperties) {
141
+ super.updated(changedProperties);
142
+ if (changedProperties.has("disabled") && this.disabled) {
143
+ this.blur();
111
144
  }
112
- onPointerdownManagementOfTabIndex() {
113
- if (this.tabIndex === -1) {
114
- this.tabIndex = 0;
115
- this.focus({ preventScroll: true });
116
- }
117
- }
118
- async manageFocusElementTabindex(tabIndex) {
119
- if (!this.focusElement) {
120
- // allow setting these values to be async when needed.
121
- await this.updateComplete;
122
- }
123
- if (tabIndex === null) {
124
- this.focusElement.removeAttribute('tabindex');
125
- }
126
- else {
127
- this.focusElement.tabIndex = tabIndex;
128
- }
129
- }
130
- /**
131
- * @private
132
- */
133
- get focusElement() {
134
- throw new Error('Must implement focusElement getter!');
135
- }
136
- focus(options) {
137
- if (this.disabled || !this.focusElement) {
138
- return;
139
- }
140
- if (this.focusElement !== this) {
141
- this.focusElement.focus(options);
142
- }
143
- else {
144
- HTMLElement.prototype.focus.apply(this, [options]);
145
- }
146
- }
147
- blur() {
148
- const focusElement = this.focusElement || this;
149
- if (focusElement !== this) {
150
- focusElement.blur();
151
- }
152
- else {
153
- HTMLElement.prototype.blur.apply(this);
154
- }
155
- }
156
- click() {
157
- if (this.disabled) {
158
- return;
159
- }
160
- const focusElement = this.focusElement || this;
161
- if (focusElement !== this) {
162
- focusElement.click();
163
- }
164
- else {
165
- HTMLElement.prototype.click.apply(this);
166
- }
167
- }
168
- manageAutoFocus() {
169
- if (this.autofocus) {
170
- /**
171
- * Trick :focus-visible polyfill into thinking keyboard based focus
172
- *
173
- * @private
174
- **/
175
- this.dispatchEvent(new KeyboardEvent('keydown', {
176
- code: 'Tab',
177
- }));
178
- this.focusElement.focus();
179
- }
180
- }
181
- firstUpdated(changes) {
182
- super.firstUpdated(changes);
183
- if (!this.hasAttribute('tabindex') ||
184
- this.getAttribute('tabindex') !== '-1') {
185
- this.setAttribute('focusable', '');
186
- }
187
- }
188
- update(changedProperties) {
189
- if (changedProperties.has('disabled')) {
190
- this.handleDisabledChanged(this.disabled, changedProperties.get('disabled'));
191
- }
192
- super.update(changedProperties);
193
- }
194
- updated(changedProperties) {
195
- super.updated(changedProperties);
196
- if (changedProperties.has('disabled') && this.disabled) {
197
- this.blur();
198
- }
199
- }
200
- async handleDisabledChanged(disabled, oldDisabled) {
201
- const canSetDisabled = () => this.focusElement !== this &&
202
- typeof this.focusElement.disabled !== 'undefined';
203
- if (disabled) {
204
- this.manipulatingTabindex = true;
205
- this.setAttribute('tabindex', '-1');
206
- await this.updateComplete;
207
- if (canSetDisabled()) {
208
- this.focusElement.disabled = true;
209
- }
210
- else {
211
- this.setAttribute('aria-disabled', 'true');
212
- }
213
- }
214
- else if (oldDisabled) {
215
- this.manipulatingTabindex = true;
216
- if (this.focusElement === this) {
217
- this.setAttribute('tabindex', '' + this._tabIndex);
218
- }
219
- else {
220
- this.removeAttribute('tabindex');
221
- }
222
- await this.updateComplete;
223
- if (canSetDisabled()) {
224
- this.focusElement.disabled = false;
225
- }
226
- else {
227
- this.removeAttribute('aria-disabled');
228
- }
229
- }
230
- }
231
- connectedCallback() {
232
- super.connectedCallback();
233
- this.updateComplete.then(() => {
234
- requestAnimationFrame(() => {
235
- this.manageAutoFocus();
236
- });
237
- });
145
+ }
146
+ async handleDisabledChanged(disabled, oldDisabled) {
147
+ const canSetDisabled = () => this.focusElement !== this && typeof this.focusElement.disabled !== "undefined";
148
+ if (disabled) {
149
+ this.manipulatingTabindex = true;
150
+ this.setAttribute("tabindex", "-1");
151
+ await this.updateComplete;
152
+ if (canSetDisabled()) {
153
+ this.focusElement.disabled = true;
154
+ } else {
155
+ this.setAttribute("aria-disabled", "true");
156
+ }
157
+ } else if (oldDisabled) {
158
+ this.manipulatingTabindex = true;
159
+ if (this.focusElement === this) {
160
+ this.setAttribute("tabindex", "" + this._tabIndex);
161
+ } else {
162
+ this.removeAttribute("tabindex");
163
+ }
164
+ await this.updateComplete;
165
+ if (canSetDisabled()) {
166
+ this.focusElement.disabled = false;
167
+ } else {
168
+ this.removeAttribute("aria-disabled");
169
+ }
238
170
  }
171
+ }
172
+ connectedCallback() {
173
+ super.connectedCallback();
174
+ this.updateComplete.then(() => {
175
+ requestAnimationFrame(() => {
176
+ this.manageAutoFocus();
177
+ });
178
+ });
179
+ }
239
180
  }
240
- __decorate([
241
- property({ type: Boolean, reflect: true })
242
- ], Focusable.prototype, "disabled", void 0);
243
- __decorate([
244
- property({ type: Boolean })
245
- ], Focusable.prototype, "autofocus", void 0);
246
- __decorate([
247
- property({ type: Number })
248
- ], Focusable.prototype, "tabIndex", null);
249
- //# sourceMappingURL=focusable.js.map
181
+ __decorateClass([
182
+ property({ type: Boolean, reflect: true })
183
+ ], Focusable.prototype, "disabled", 2);
184
+ __decorateClass([
185
+ property({ type: Boolean })
186
+ ], Focusable.prototype, "autofocus", 2);
187
+ __decorateClass([
188
+ property({ type: Number })
189
+ ], Focusable.prototype, "tabIndex", 1);
190
+ //# sourceMappingURL=focusable.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"focusable.js","sourceRoot":"","sources":["focusable.ts"],"names":[],"mappings":"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","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { PropertyValues, SpectrumElement } from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport { FocusVisiblePolyfillMixin } from './focus-visible.js';\n\ntype DisableableElement = HTMLElement & { disabled?: boolean };\n\n/**\n * Focusable base class handles tabindex setting into shadowed elements automatically.\n *\n * This implementation is based heavily on the aybolit delegate-focus-mixin at\n * https://github.com/web-padawan/aybolit/blob/master/packages/core/src/mixins/delegate-focus-mixin.js\n */\nexport class Focusable extends FocusVisiblePolyfillMixin(SpectrumElement) {\n /**\n * Disable this control. It will not receive focus or events\n */\n @property({ type: Boolean, reflect: true })\n public disabled = false;\n\n /**\n * When this control is rendered, focus it automatically\n * @private\n */\n @property({ type: Boolean })\n public override autofocus = false;\n\n /**\n * The tab index to apply to this control. See general documentation about\n * the tabindex HTML property\n *\n * @private\n */\n @property({ type: Number })\n public override get tabIndex(): number {\n if (this.focusElement === this) {\n const tabindex = this.hasAttribute('tabindex')\n ? Number(this.getAttribute('tabindex'))\n : NaN;\n return !isNaN(tabindex) ? tabindex : -1;\n }\n const tabIndexAttribute = parseFloat(\n this.hasAttribute('tabindex')\n ? (this.getAttribute('tabindex') as string) || '0'\n : '0'\n );\n // When `disabled` tabindex is -1.\n // When host tabindex -1, use that as the cache.\n if (this.disabled || tabIndexAttribute < 0) {\n return -1;\n }\n // When `focusElement` isn't available yet,\n // use host tabindex as the cache.\n if (!this.focusElement) {\n return tabIndexAttribute;\n }\n // All other times, use the tabindex of `focusElement`\n // as the cache for this value.\n return this.focusElement.tabIndex;\n }\n public override set tabIndex(tabIndex: number) {\n // Flipping `manipulatingTabindex` to true before a change\n // allows for that change NOT to effect the cached value of tabindex\n if (this.manipulatingTabindex) {\n this.manipulatingTabindex = false;\n return;\n }\n if (this.focusElement === this) {\n if (tabIndex !== this.tabIndex) {\n this._tabIndex = tabIndex;\n const tabindex = this.disabled ? '-1' : '' + tabIndex;\n this.setAttribute('tabindex', tabindex);\n }\n return;\n }\n if (tabIndex === -1) {\n this.addEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n } else {\n // All code paths are about to address the host tabindex without side effect.\n this.manipulatingTabindex = true;\n this.removeEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n }\n if (tabIndex === -1 || this.disabled) {\n // Do not cange the tabindex of `focusElement` as it is the \"old\" value cache.\n // Make element NOT focusable.\n this.setAttribute('tabindex', '-1');\n this.removeAttribute('focusable');\n if (tabIndex !== -1) {\n // Cache all NON-`-1` values on the `focusElement`.\n this.manageFocusElementTabindex(tabIndex);\n }\n return;\n }\n this.setAttribute('focusable', '');\n if (this.hasAttribute('tabindex')) {\n this.removeAttribute('tabindex');\n } else {\n // You can't remove an attribute that isn't there,\n // manually end the `manipulatingTabindex` guard.\n this.manipulatingTabindex = false;\n }\n this.manageFocusElementTabindex(tabIndex);\n }\n private _tabIndex = 0;\n\n private onPointerdownManagementOfTabIndex(): void {\n if (this.tabIndex === -1) {\n this.tabIndex = 0;\n this.focus({ preventScroll: true });\n }\n }\n\n private async manageFocusElementTabindex(tabIndex: number): Promise<void> {\n if (!this.focusElement) {\n // allow setting these values to be async when needed.\n await this.updateComplete;\n }\n if (tabIndex === null) {\n this.focusElement.removeAttribute('tabindex');\n } else {\n this.focusElement.tabIndex = tabIndex;\n }\n }\n\n private manipulatingTabindex = false;\n\n /**\n * @private\n */\n public get focusElement(): DisableableElement {\n throw new Error('Must implement focusElement getter!');\n }\n\n public override focus(options?: FocusOptions): void {\n if (this.disabled || !this.focusElement) {\n return;\n }\n\n if (this.focusElement !== this) {\n this.focusElement.focus(options);\n } else {\n HTMLElement.prototype.focus.apply(this, [options]);\n }\n }\n\n public override blur(): void {\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.blur();\n } else {\n HTMLElement.prototype.blur.apply(this);\n }\n }\n\n public override click(): void {\n if (this.disabled) {\n return;\n }\n\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.click();\n } else {\n HTMLElement.prototype.click.apply(this);\n }\n }\n\n protected manageAutoFocus(): void {\n if (this.autofocus) {\n /**\n * Trick :focus-visible polyfill into thinking keyboard based focus\n *\n * @private\n **/\n this.dispatchEvent(\n new KeyboardEvent('keydown', {\n code: 'Tab',\n })\n );\n this.focusElement.focus();\n }\n }\n\n protected override firstUpdated(changes: PropertyValues): void {\n super.firstUpdated(changes);\n if (\n !this.hasAttribute('tabindex') ||\n this.getAttribute('tabindex') !== '-1'\n ) {\n this.setAttribute('focusable', '');\n }\n }\n\n protected override update(changedProperties: PropertyValues): void {\n if (changedProperties.has('disabled')) {\n this.handleDisabledChanged(\n this.disabled,\n changedProperties.get('disabled') as boolean\n );\n }\n\n super.update(changedProperties);\n }\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('disabled') && this.disabled) {\n this.blur();\n }\n }\n\n private async handleDisabledChanged(\n disabled: boolean,\n oldDisabled: boolean\n ): Promise<void> {\n const canSetDisabled = (): boolean =>\n this.focusElement !== this &&\n typeof this.focusElement.disabled !== 'undefined';\n if (disabled) {\n this.manipulatingTabindex = true;\n this.setAttribute('tabindex', '-1');\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = true;\n } else {\n this.setAttribute('aria-disabled', 'true');\n }\n } else if (oldDisabled) {\n this.manipulatingTabindex = true;\n if (this.focusElement === this) {\n this.setAttribute('tabindex', '' + this._tabIndex);\n } else {\n this.removeAttribute('tabindex');\n }\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = false;\n } else {\n this.removeAttribute('aria-disabled');\n }\n }\n }\n\n public override connectedCallback(): void {\n super.connectedCallback();\n this.updateComplete.then(() => {\n requestAnimationFrame(() => {\n this.manageAutoFocus();\n });\n });\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["focusable.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { PropertyValues, SpectrumElement } from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport { FocusVisiblePolyfillMixin } from './focus-visible.js';\n\ntype DisableableElement = HTMLElement & { disabled?: boolean };\n\n/**\n * Focusable base class handles tabindex setting into shadowed elements automatically.\n *\n * This implementation is based heavily on the aybolit delegate-focus-mixin at\n * https://github.com/web-padawan/aybolit/blob/master/packages/core/src/mixins/delegate-focus-mixin.js\n */\nexport class Focusable extends FocusVisiblePolyfillMixin(SpectrumElement) {\n /**\n * Disable this control. It will not receive focus or events\n */\n @property({ type: Boolean, reflect: true })\n public disabled = false;\n\n /**\n * When this control is rendered, focus it automatically\n * @private\n */\n @property({ type: Boolean })\n public override autofocus = false;\n\n /**\n * The tab index to apply to this control. See general documentation about\n * the tabindex HTML property\n *\n * @private\n */\n @property({ type: Number })\n public override get tabIndex(): number {\n if (this.focusElement === this) {\n const tabindex = this.hasAttribute('tabindex')\n ? Number(this.getAttribute('tabindex'))\n : NaN;\n return !isNaN(tabindex) ? tabindex : -1;\n }\n const tabIndexAttribute = parseFloat(\n this.hasAttribute('tabindex')\n ? (this.getAttribute('tabindex') as string) || '0'\n : '0'\n );\n // When `disabled` tabindex is -1.\n // When host tabindex -1, use that as the cache.\n if (this.disabled || tabIndexAttribute < 0) {\n return -1;\n }\n // When `focusElement` isn't available yet,\n // use host tabindex as the cache.\n if (!this.focusElement) {\n return tabIndexAttribute;\n }\n // All other times, use the tabindex of `focusElement`\n // as the cache for this value.\n return this.focusElement.tabIndex;\n }\n public override set tabIndex(tabIndex: number) {\n // Flipping `manipulatingTabindex` to true before a change\n // allows for that change NOT to effect the cached value of tabindex\n if (this.manipulatingTabindex) {\n this.manipulatingTabindex = false;\n return;\n }\n if (this.focusElement === this) {\n if (tabIndex !== this.tabIndex) {\n this._tabIndex = tabIndex;\n const tabindex = this.disabled ? '-1' : '' + tabIndex;\n this.setAttribute('tabindex', tabindex);\n }\n return;\n }\n if (tabIndex === -1) {\n this.addEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n } else {\n // All code paths are about to address the host tabindex without side effect.\n this.manipulatingTabindex = true;\n this.removeEventListener(\n 'pointerdown',\n this.onPointerdownManagementOfTabIndex\n );\n }\n if (tabIndex === -1 || this.disabled) {\n // Do not cange the tabindex of `focusElement` as it is the \"old\" value cache.\n // Make element NOT focusable.\n this.setAttribute('tabindex', '-1');\n this.removeAttribute('focusable');\n if (tabIndex !== -1) {\n // Cache all NON-`-1` values on the `focusElement`.\n this.manageFocusElementTabindex(tabIndex);\n }\n return;\n }\n this.setAttribute('focusable', '');\n if (this.hasAttribute('tabindex')) {\n this.removeAttribute('tabindex');\n } else {\n // You can't remove an attribute that isn't there,\n // manually end the `manipulatingTabindex` guard.\n this.manipulatingTabindex = false;\n }\n this.manageFocusElementTabindex(tabIndex);\n }\n private _tabIndex = 0;\n\n private onPointerdownManagementOfTabIndex(): void {\n if (this.tabIndex === -1) {\n this.tabIndex = 0;\n this.focus({ preventScroll: true });\n }\n }\n\n private async manageFocusElementTabindex(tabIndex: number): Promise<void> {\n if (!this.focusElement) {\n // allow setting these values to be async when needed.\n await this.updateComplete;\n }\n if (tabIndex === null) {\n this.focusElement.removeAttribute('tabindex');\n } else {\n this.focusElement.tabIndex = tabIndex;\n }\n }\n\n private manipulatingTabindex = false;\n\n /**\n * @private\n */\n public get focusElement(): DisableableElement {\n throw new Error('Must implement focusElement getter!');\n }\n\n public override focus(options?: FocusOptions): void {\n if (this.disabled || !this.focusElement) {\n return;\n }\n\n if (this.focusElement !== this) {\n this.focusElement.focus(options);\n } else {\n HTMLElement.prototype.focus.apply(this, [options]);\n }\n }\n\n public override blur(): void {\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.blur();\n } else {\n HTMLElement.prototype.blur.apply(this);\n }\n }\n\n public override click(): void {\n if (this.disabled) {\n return;\n }\n\n const focusElement = this.focusElement || this;\n if (focusElement !== this) {\n focusElement.click();\n } else {\n HTMLElement.prototype.click.apply(this);\n }\n }\n\n protected manageAutoFocus(): void {\n if (this.autofocus) {\n /**\n * Trick :focus-visible polyfill into thinking keyboard based focus\n *\n * @private\n **/\n this.dispatchEvent(\n new KeyboardEvent('keydown', {\n code: 'Tab',\n })\n );\n this.focusElement.focus();\n }\n }\n\n protected override firstUpdated(changes: PropertyValues): void {\n super.firstUpdated(changes);\n if (\n !this.hasAttribute('tabindex') ||\n this.getAttribute('tabindex') !== '-1'\n ) {\n this.setAttribute('focusable', '');\n }\n }\n\n protected override update(changedProperties: PropertyValues): void {\n if (changedProperties.has('disabled')) {\n this.handleDisabledChanged(\n this.disabled,\n changedProperties.get('disabled') as boolean\n );\n }\n\n super.update(changedProperties);\n }\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('disabled') && this.disabled) {\n this.blur();\n }\n }\n\n private async handleDisabledChanged(\n disabled: boolean,\n oldDisabled: boolean\n ): Promise<void> {\n const canSetDisabled = (): boolean =>\n this.focusElement !== this &&\n typeof this.focusElement.disabled !== 'undefined';\n if (disabled) {\n this.manipulatingTabindex = true;\n this.setAttribute('tabindex', '-1');\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = true;\n } else {\n this.setAttribute('aria-disabled', 'true');\n }\n } else if (oldDisabled) {\n this.manipulatingTabindex = true;\n if (this.focusElement === this) {\n this.setAttribute('tabindex', '' + this._tabIndex);\n } else {\n this.removeAttribute('tabindex');\n }\n await this.updateComplete;\n if (canSetDisabled()) {\n this.focusElement.disabled = false;\n } else {\n this.removeAttribute('aria-disabled');\n }\n }\n }\n\n public override connectedCallback(): void {\n super.connectedCallback();\n this.updateComplete.then(() => {\n requestAnimationFrame(() => {\n this.manageAutoFocus();\n });\n });\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
@@ -0,0 +1,4 @@
1
+ export const getActiveElement = (el) => {
2
+ return el.getRootNode().activeElement;
3
+ };
4
+ //# sourceMappingURL=get-active-element.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["get-active-element.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\n/* c8 ignore next 3 */\nexport const getActiveElement = (el: Node): Element | null => {\n return (el.getRootNode() as Document).activeElement;\n};\n"],
5
+ "mappings": "AAaO,aAAM,mBAAmB,CAAC,OAA6B;AAC1D,SAAQ,GAAG,YAAY,EAAe;AAC1C;",
6
+ "names": []
7
+ }
@@ -1,16 +1,4 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- /* c8 ignore next 3 */
13
1
  export const getActiveElement = (el) => {
14
- return el.getRootNode().activeElement;
2
+ return el.getRootNode().activeElement;
15
3
  };
16
- //# sourceMappingURL=get-active-element.js.map
4
+ //# sourceMappingURL=get-active-element.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"get-active-element.js","sourceRoot":"","sources":["get-active-element.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,sBAAsB;AACtB,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAAQ,EAAkB,EAAE;IACzD,OAAQ,EAAE,CAAC,WAAW,EAAe,CAAC,aAAa,CAAC;AACxD,CAAC,CAAC","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\n/* c8 ignore next 3 */\nexport const getActiveElement = (el: Node): Element | null => {\n return (el.getRootNode() as Document).activeElement;\n};\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["get-active-element.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\n/* c8 ignore next 3 */\nexport const getActiveElement = (el: Node): Element | null => {\n return (el.getRootNode() as Document).activeElement;\n};\n"],
5
+ "mappings": "AAaO,aAAM,mBAAmB,CAAC,OAA6B;AAC1D,SAAQ,GAAG,YAAY,EAAe;AAC1C;",
6
+ "names": []
7
+ }
@@ -0,0 +1,12 @@
1
+ export const getDeepElementFromPoint = (x, y) => {
2
+ let target = document.elementFromPoint(x, y);
3
+ while (target == null ? void 0 : target.shadowRoot) {
4
+ const innerTarget = target.shadowRoot.elementFromPoint(x, y);
5
+ if (!innerTarget || innerTarget === target) {
6
+ break;
7
+ }
8
+ target = innerTarget;
9
+ }
10
+ return target;
11
+ };
12
+ //# sourceMappingURL=get-deep-element-from-point.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["get-deep-element-from-point.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nexport const getDeepElementFromPoint = (\n x: number,\n y: number\n): Element | null => {\n let target = document.elementFromPoint(x, y);\n while (target?.shadowRoot) {\n const innerTarget = (\n target.shadowRoot as unknown as {\n elementFromPoint: (x: number, y: number) => Element | null;\n }\n ).elementFromPoint(x, y);\n if (!innerTarget || innerTarget === target) {\n break;\n }\n target = innerTarget;\n }\n return target;\n};\n"],
5
+ "mappings": "AAYO,aAAM,0BAA0B,CACnC,GACA,MACiB;AACjB,MAAI,SAAS,SAAS,iBAAiB,GAAG,CAAC;AAC3C,SAAO,iCAAQ,YAAY;AACvB,UAAM,cACF,OAAO,WAGT,iBAAiB,GAAG,CAAC;AACvB,QAAI,CAAC,eAAe,gBAAgB,QAAQ;AACxC;AAAA,IACJ;AACA,aAAS;AAAA,EACb;AACA,SAAO;AACX;",
6
+ "names": []
7
+ }