@wordpress/block-editor 14.3.11 → 14.3.13

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 (38) hide show
  1. package/build/components/block-popover/index.js +1 -1
  2. package/build/components/block-popover/index.js.map +1 -1
  3. package/build/components/block-settings-menu/block-settings-dropdown.js +7 -1
  4. package/build/components/block-settings-menu/block-settings-dropdown.js.map +1 -1
  5. package/build/components/block-settings-menu-controls/index.js +1 -1
  6. package/build/components/block-settings-menu-controls/index.js.map +1 -1
  7. package/build/components/block-toolbar/index.js +1 -1
  8. package/build/components/block-toolbar/index.js.map +1 -1
  9. package/build/components/block-tools/use-block-toolbar-popover-props.js +1 -1
  10. package/build/components/block-tools/use-block-toolbar-popover-props.js.map +1 -1
  11. package/build/utils/dom.js +27 -22
  12. package/build/utils/dom.js.map +1 -1
  13. package/build-module/components/block-popover/index.js +2 -2
  14. package/build-module/components/block-popover/index.js.map +1 -1
  15. package/build-module/components/block-settings-menu/block-settings-dropdown.js +7 -1
  16. package/build-module/components/block-settings-menu/block-settings-dropdown.js.map +1 -1
  17. package/build-module/components/block-settings-menu-controls/index.js +1 -1
  18. package/build-module/components/block-settings-menu-controls/index.js.map +1 -1
  19. package/build-module/components/block-toolbar/index.js +1 -1
  20. package/build-module/components/block-toolbar/index.js.map +1 -1
  21. package/build-module/components/block-tools/use-block-toolbar-popover-props.js +2 -2
  22. package/build-module/components/block-tools/use-block-toolbar-popover-props.js.map +1 -1
  23. package/build-module/utils/dom.js +25 -21
  24. package/build-module/utils/dom.js.map +1 -1
  25. package/build-style/style-rtl.css +2 -1
  26. package/build-style/style.css +2 -1
  27. package/build-types/utils/dom.d.ts +7 -9
  28. package/build-types/utils/dom.d.ts.map +1 -1
  29. package/package.json +5 -5
  30. package/src/components/block-inspector/style.scss +2 -1
  31. package/src/components/block-popover/index.js +4 -4
  32. package/src/components/block-settings-menu/block-settings-dropdown.js +10 -1
  33. package/src/components/block-settings-menu-controls/index.js +2 -1
  34. package/src/components/block-toolbar/index.js +1 -3
  35. package/src/components/block-tools/use-block-toolbar-popover-props.js +2 -2
  36. package/src/utils/dom.js +26 -21
  37. package/src/utils/test/dom.js +224 -0
  38. package/tsconfig.tsbuildinfo +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-editor",
3
- "version": "14.3.11",
3
+ "version": "14.3.13",
4
4
  "description": "Generic block editor.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -41,8 +41,8 @@
41
41
  "@wordpress/blob": "^4.8.1",
42
42
  "@wordpress/block-serialization-default-parser": "^5.8.1",
43
43
  "@wordpress/blocks": "^13.8.5",
44
- "@wordpress/commands": "^1.8.9",
45
- "@wordpress/components": "^28.8.9",
44
+ "@wordpress/commands": "^1.8.10",
45
+ "@wordpress/components": "^28.8.10",
46
46
  "@wordpress/compose": "^7.8.3",
47
47
  "@wordpress/data": "^10.8.3",
48
48
  "@wordpress/date": "^5.8.2",
@@ -58,7 +58,7 @@
58
58
  "@wordpress/keyboard-shortcuts": "^5.8.3",
59
59
  "@wordpress/keycodes": "^4.8.2",
60
60
  "@wordpress/notices": "^5.8.3",
61
- "@wordpress/preferences": "^4.8.9",
61
+ "@wordpress/preferences": "^4.8.10",
62
62
  "@wordpress/private-apis": "^1.8.1",
63
63
  "@wordpress/rich-text": "^7.8.3",
64
64
  "@wordpress/style-engine": "^2.8.1",
@@ -88,5 +88,5 @@
88
88
  "publishConfig": {
89
89
  "access": "public"
90
90
  },
91
- "gitHead": "e392a1ef96df24a1e3be3b94e91670e0793b8cfe"
91
+ "gitHead": "b7fe267e2fb0c3cb1a37a9dda16f7eebcf5089c9"
92
92
  }
@@ -10,7 +10,8 @@
10
10
  margin-bottom: 1.5em;
11
11
  }
12
12
 
13
- .components-base-control {
13
+ .components-base-control,
14
+ .components-radio-control {
14
15
  &:where(:not(:last-child)) {
15
16
  margin-bottom: $grid-unit-20;
16
17
  }
@@ -20,7 +20,7 @@ import {
20
20
  */
21
21
  import { useBlockElement } from '../block-list/use-block-props/use-block-refs';
22
22
  import usePopoverScroll from './use-popover-scroll';
23
- import { rectUnion, getVisibleElementBounds } from '../../utils/dom';
23
+ import { rectUnion, getElementBounds } from '../../utils/dom';
24
24
 
25
25
  const MAX_POPOVER_RECOMPUTE_COUNTER = Number.MAX_SAFE_INTEGER;
26
26
 
@@ -90,10 +90,10 @@ function BlockPopover(
90
90
  getBoundingClientRect() {
91
91
  return lastSelectedElement
92
92
  ? rectUnion(
93
- getVisibleElementBounds( selectedElement ),
94
- getVisibleElementBounds( lastSelectedElement )
93
+ getElementBounds( selectedElement ),
94
+ getElementBounds( lastSelectedElement )
95
95
  )
96
- : getVisibleElementBounds( selectedElement );
96
+ : getElementBounds( selectedElement );
97
97
  },
98
98
  contextElement: selectedElement,
99
99
  };
@@ -56,6 +56,15 @@ export function BlockSettingsDropdown( {
56
56
  const currentClientId = block?.clientId;
57
57
  const count = clientIds.length;
58
58
  const firstBlockClientId = clientIds[ 0 ];
59
+
60
+ const isZoomOut = useSelect( ( select ) => {
61
+ const { __unstableGetEditorMode } = unlock(
62
+ select( blockEditorStore )
63
+ );
64
+
65
+ return __unstableGetEditorMode() === 'zoom-out';
66
+ } );
67
+
59
68
  const {
60
69
  firstParentClientId,
61
70
  onlyBlock,
@@ -235,7 +244,7 @@ export function BlockSettingsDropdown( {
235
244
  clientId={ firstBlockClientId }
236
245
  />
237
246
  ) }
238
- { ! isContentOnly && (
247
+ { ( ! isContentOnly || isZoomOut ) && (
239
248
  <CopyMenuItem
240
249
  clientIds={ clientIds }
241
250
  onCopy={ onCopy }
@@ -58,7 +58,8 @@ const BlockSettingsMenuControlsSlot = ( { fillProps, clientIds = null } ) => {
58
58
  const convertToGroupButtonProps =
59
59
  useConvertToGroupButtonProps( selectedClientIds );
60
60
  const { isGroupable, isUngroupable } = convertToGroupButtonProps;
61
- const showConvertToGroupButton = isGroupable || isUngroupable;
61
+ const showConvertToGroupButton =
62
+ ( isGroupable || isUngroupable ) && ! isContentOnly;
62
63
 
63
64
  return (
64
65
  <Slot
@@ -255,9 +255,7 @@ export function PrivateBlockToolbar( {
255
255
  </>
256
256
  ) }
257
257
  <BlockEditVisuallyButton clientIds={ blockClientIds } />
258
- { isDefaultEditingMode && (
259
- <BlockSettingsMenu clientIds={ blockClientIds } />
260
- ) }
258
+ <BlockSettingsMenu clientIds={ blockClientIds } />
261
259
  </div>
262
260
  </NavigableToolbar>
263
261
  );
@@ -17,7 +17,7 @@ import {
17
17
  import { store as blockEditorStore } from '../../store';
18
18
  import { useBlockElement } from '../block-list/use-block-props/use-block-refs';
19
19
  import { hasStickyOrFixedPositionValue } from '../../hooks/position';
20
- import { getVisibleElementBounds } from '../../utils/dom';
20
+ import { getElementBounds } from '../../utils/dom';
21
21
 
22
22
  const COMMON_PROPS = {
23
23
  placement: 'top-start',
@@ -68,7 +68,7 @@ function getProps(
68
68
  // Get how far the content area has been scrolled.
69
69
  const scrollTop = scrollContainer?.scrollTop || 0;
70
70
 
71
- const blockRect = getVisibleElementBounds( selectedBlockElement );
71
+ const blockRect = getElementBounds( selectedBlockElement );
72
72
  const contentRect = contentElement.getBoundingClientRect();
73
73
 
74
74
  // Get the vertical position of top of the visible content area.
package/src/utils/dom.js CHANGED
@@ -134,23 +134,21 @@ function isScrollable( element ) {
134
134
  );
135
135
  }
136
136
 
137
+ export const WITH_OVERFLOW_ELEMENT_BLOCKS = [ 'core/navigation' ];
137
138
  /**
138
- * Returns the rect of the element including all visible nested elements.
139
- *
140
- * Visible nested elements, including elements that overflow the parent, are
141
- * taken into account.
142
- *
143
- * This function is useful for calculating the visible area of a block that
144
- * contains nested elements that overflow the block, e.g. the Navigation block,
145
- * which can contain overflowing Submenu blocks.
139
+ * Returns the bounding rectangle of an element, with special handling for blocks
140
+ * that have visible overflowing children (defined in WITH_OVERFLOW_ELEMENT_BLOCKS).
146
141
  *
142
+ * For blocks like Navigation that can have overflowing elements (e.g. submenus),
143
+ * this function calculates the combined bounds of both the parent and its visible
144
+ * children. The returned rect may extend beyond the viewport.
147
145
  * The returned rect represents the full extent of the element and its visible
148
146
  * children, which may extend beyond the viewport.
149
147
  *
150
148
  * @param {Element} element Element.
151
149
  * @return {DOMRect} Bounding client rect of the element and its visible children.
152
150
  */
153
- export function getVisibleElementBounds( element ) {
151
+ export function getElementBounds( element ) {
154
152
  const viewport = element.ownerDocument.defaultView;
155
153
 
156
154
  if ( ! viewport ) {
@@ -158,19 +156,26 @@ export function getVisibleElementBounds( element ) {
158
156
  }
159
157
 
160
158
  let bounds = element.getBoundingClientRect();
161
- const stack = [ element ];
162
- let currentElement;
163
-
164
- while ( ( currentElement = stack.pop() ) ) {
165
- for ( const child of currentElement.children ) {
166
- if ( isElementVisible( child ) ) {
167
- let childBounds = child.getBoundingClientRect();
168
- // If the parent is scrollable, use parent's scrollable bounds.
169
- if ( isScrollable( currentElement ) ) {
170
- childBounds = currentElement.getBoundingClientRect();
159
+ const dataType = element.getAttribute( 'data-type' );
160
+
161
+ /*
162
+ * For blocks with overflowing elements (like Navigation), include the bounds
163
+ * of visible children that extend beyond the parent container.
164
+ */
165
+ if ( dataType && WITH_OVERFLOW_ELEMENT_BLOCKS.includes( dataType ) ) {
166
+ const stack = [ element ];
167
+ let currentElement;
168
+
169
+ while ( ( currentElement = stack.pop() ) ) {
170
+ // Children won’t affect bounds unless the element is not scrollable.
171
+ if ( ! isScrollable( currentElement ) ) {
172
+ for ( const child of currentElement.children ) {
173
+ if ( isElementVisible( child ) ) {
174
+ const childBounds = child.getBoundingClientRect();
175
+ bounds = rectUnion( bounds, childBounds );
176
+ stack.push( child );
177
+ }
171
178
  }
172
- bounds = rectUnion( bounds, childBounds );
173
- stack.push( child );
174
179
  }
175
180
  }
176
181
  }
@@ -0,0 +1,224 @@
1
+ /**
2
+ * Internal dependencies
3
+ */
4
+ import { getElementBounds, WITH_OVERFLOW_ELEMENT_BLOCKS } from '../dom';
5
+ describe( 'dom', () => {
6
+ describe( 'getElementBounds', () => {
7
+ it( 'should return a DOMRectReadOnly object if the viewport is not available', () => {
8
+ const element = {
9
+ ownerDocument: {
10
+ defaultView: null,
11
+ },
12
+ };
13
+ expect( getElementBounds( element ) ).toEqual(
14
+ new window.DOMRectReadOnly()
15
+ );
16
+ } );
17
+ it( 'should return a DOMRectReadOnly object if the viewport is available', () => {
18
+ const element = {
19
+ ownerDocument: {
20
+ defaultView: {
21
+ getComputedStyle: () => ( {
22
+ display: 'block',
23
+ visibility: 'visible',
24
+ opacity: '1',
25
+ } ),
26
+ },
27
+ },
28
+ getBoundingClientRect: () => ( {
29
+ left: 0,
30
+ top: 0,
31
+ right: 100,
32
+ bottom: 100,
33
+ width: 100,
34
+ height: 100,
35
+ } ),
36
+ getAttribute: ( x ) => x,
37
+ };
38
+ expect( getElementBounds( element ) ).toEqual(
39
+ new window.DOMRectReadOnly( 0, 0, 100, 100 )
40
+ );
41
+ } );
42
+ it( 'should clip left and right values when an element is larger than the viewport width', () => {
43
+ const element = window.document.createElement( 'div' );
44
+ element.getBoundingClientRect = jest.fn().mockReturnValue( {
45
+ left: -10,
46
+ top: 0,
47
+ right: window.innerWidth + 10,
48
+ bottom: 100,
49
+ width: window.innerWidth,
50
+ height: 100,
51
+ } );
52
+ expect( getElementBounds( element ).toJSON() ).toEqual( {
53
+ left: 0, // Reset to min left bound.
54
+ top: 0,
55
+ right: window.innerWidth, // Reset to max right bound.
56
+ bottom: 100,
57
+ width: window.innerWidth,
58
+ height: 100,
59
+ x: 0,
60
+ y: 0,
61
+ } );
62
+ } );
63
+ it( 'should return the parent DOMRectReadOnly object if the parent block type is not supported', () => {
64
+ const element = window.document.createElement( 'div' );
65
+ element.getBoundingClientRect = jest.fn().mockReturnValue( {
66
+ left: 0,
67
+ top: 0,
68
+ right: 100,
69
+ bottom: 100,
70
+ width: 100,
71
+ height: 100,
72
+ } );
73
+ element.setAttribute( 'data-type', 'test' );
74
+ const childElement = window.document.createElement( 'div' );
75
+ childElement.getBoundingClientRect = jest.fn().mockReturnValue( {
76
+ left: 0,
77
+ top: 0,
78
+ right: 333,
79
+ bottom: 333,
80
+ width: 333,
81
+ height: 333,
82
+ x: 0,
83
+ y: 0,
84
+ } );
85
+ element.appendChild( childElement );
86
+
87
+ expect( getElementBounds( element ).toJSON() ).toEqual( {
88
+ left: 0,
89
+ top: 0,
90
+ right: 100,
91
+ bottom: 100,
92
+ width: 100,
93
+ height: 100,
94
+ x: 0,
95
+ y: 0,
96
+ } );
97
+ } );
98
+ describe( 'With known block type', () => {
99
+ it( 'should return the child DOMRectReadOnly object if it is visible and a known block type', () => {
100
+ const element = window.document.createElement( 'div' );
101
+ element.getBoundingClientRect = jest.fn().mockReturnValue( {
102
+ left: 0,
103
+ top: 0,
104
+ right: 100,
105
+ bottom: 100,
106
+ width: 100,
107
+ height: 100,
108
+ } );
109
+ element.setAttribute(
110
+ 'data-type',
111
+ WITH_OVERFLOW_ELEMENT_BLOCKS[ 0 ]
112
+ );
113
+ const childElement = window.document.createElement( 'div' );
114
+ childElement.getBoundingClientRect = jest
115
+ .fn()
116
+ .mockReturnValue( {
117
+ left: 0,
118
+ top: 0,
119
+ right: 333,
120
+ bottom: 333,
121
+ width: 333,
122
+ height: 333,
123
+ x: 0,
124
+ y: 0,
125
+ } );
126
+ element.appendChild( childElement );
127
+
128
+ expect( getElementBounds( element ).toJSON() ).toEqual( {
129
+ left: 0,
130
+ top: 0,
131
+ right: 333,
132
+ bottom: 333,
133
+ width: 333,
134
+ height: 333,
135
+ x: 0,
136
+ y: 0,
137
+ } );
138
+ } );
139
+ it( 'should return the parent DOMRectReadOnly if the child is scrollable', () => {
140
+ const element = window.document.createElement( 'div' );
141
+ element.setAttribute(
142
+ 'data-type',
143
+ WITH_OVERFLOW_ELEMENT_BLOCKS[ 0 ]
144
+ );
145
+ element.style.overflowX = 'auto';
146
+ element.style.overflowY = 'auto';
147
+ element.getBoundingClientRect = jest.fn().mockReturnValue( {
148
+ left: 0,
149
+ top: 0,
150
+ right: 100,
151
+ bottom: 100,
152
+ width: 100,
153
+ height: 100,
154
+ } );
155
+ const childElement = window.document.createElement( 'div' );
156
+ childElement.getBoundingClientRect = jest
157
+ .fn()
158
+ .mockReturnValue( {
159
+ left: 0,
160
+ top: 0,
161
+ right: 333,
162
+ bottom: 333,
163
+ width: 333,
164
+ height: 333,
165
+ x: 0,
166
+ y: 0,
167
+ } );
168
+ element.appendChild( childElement );
169
+
170
+ expect( getElementBounds( element ).toJSON() ).toEqual( {
171
+ left: 0,
172
+ top: 0,
173
+ right: 100,
174
+ bottom: 100,
175
+ width: 100,
176
+ height: 100,
177
+ x: 0,
178
+ y: 0,
179
+ } );
180
+ } );
181
+ it( 'should return the parent DOMRectReadOnly object if the child element is not visible', () => {
182
+ const element = window.document.createElement( 'div' );
183
+ element.getBoundingClientRect = jest.fn().mockReturnValue( {
184
+ left: 0,
185
+ top: 0,
186
+ right: 100,
187
+ bottom: 100,
188
+ width: 100,
189
+ height: 100,
190
+ } );
191
+ element.setAttribute(
192
+ 'data-type',
193
+ WITH_OVERFLOW_ELEMENT_BLOCKS[ 0 ]
194
+ );
195
+ const childElement = window.document.createElement( 'div' );
196
+ childElement.getBoundingClientRect = jest
197
+ .fn()
198
+ .mockReturnValue( {
199
+ left: 0,
200
+ top: 0,
201
+ right: 333,
202
+ bottom: 333,
203
+ width: 333,
204
+ height: 333,
205
+ x: 0,
206
+ y: 0,
207
+ } );
208
+ childElement.style.display = 'none';
209
+ element.appendChild( childElement );
210
+
211
+ expect( getElementBounds( element ).toJSON() ).toEqual( {
212
+ left: 0,
213
+ top: 0,
214
+ right: 100,
215
+ bottom: 100,
216
+ width: 100,
217
+ height: 100,
218
+ x: 0,
219
+ y: 0,
220
+ } );
221
+ } );
222
+ } );
223
+ } );
224
+ } );
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../element/build-types/create-interpolate-element.d.ts","../element/build-types/react.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../element/build-types/react-platform.d.ts","../element/build-types/utils.d.ts","../element/build-types/platform.d.ts","../element/build-types/serialize.d.ts","../element/build-types/raw-html.d.ts","../element/build-types/index.d.ts","./src/components/block-context/index.js","./src/utils/dom.js"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"4c506b14512049dfe6f4ceb172b13c6af03663f85ba61fc57efbe6c2e7be9f44","4405cd67ec5f7f748fd793be0ce5842fa0808955b8e37518c011abfa5ab63ba5","adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","472c14cdec534a465e866b6e1feee2d4e0d89c15fdc33ba80ff034fa0e80f3c1","4d807d55c784b72f71c092c34c84d09b95c29500c30252538fd5cf9a0a788c0e","df43a3968118d4b16618d7a0ac8ba89337fcce3c39e39984087ac34bf0cf250c","4714d89e7ea47b8f79a4d448a11674b2a724f93ab03cfa6879dafbab0f0c5a15","cb9a03b327570c1eae5c82a48604ef697ad1a6264ed0490743a3449de61a4fff","af88a0b0f808a6721401550621bfe67c46c6fd55000305058e7c73600d119a9b",{"version":"0a41b61ddcb640fa2a07cb7a04ecddf540b8199f70d3cf5f2d8903be722529eb","signature":"3dd80666c91b4c1ddb04cbf93038f90420af9bc18d7978acb4b9d7a302238f19"},{"version":"f531fb882daf97b248456e8f3d645c7dd6d6cfba9da6bf725bf54da02d21ae52","signature":"f6104a0c5a67150c41196a7cc40a44078eabbbc89d0bb46470f3773679395241"}],"root":[88,89],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"target":99},"fileIdsList":[[77],[74,75,76],[77,87],[78,79,82,83,84,85,86],[80,81]],"referencedMap":[[81,1],[80,1],[77,2],[88,3],[78,1],[87,4],[86,1],[82,5],[79,1],[85,1]],"latestChangedDtsFile":"./build-types/utils/dom.d.ts"},"version":"5.5.3"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../element/build-types/create-interpolate-element.d.ts","../element/build-types/react.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../element/build-types/react-platform.d.ts","../element/build-types/utils.d.ts","../element/build-types/platform.d.ts","../element/build-types/serialize.d.ts","../element/build-types/raw-html.d.ts","../element/build-types/index.d.ts","./src/components/block-context/index.js","./src/utils/dom.js"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"4c506b14512049dfe6f4ceb172b13c6af03663f85ba61fc57efbe6c2e7be9f44","4405cd67ec5f7f748fd793be0ce5842fa0808955b8e37518c011abfa5ab63ba5","adb17fea4d847e1267ae1241fa1ac3917c7e332999ebdab388a24d82d4f58240","05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","472c14cdec534a465e866b6e1feee2d4e0d89c15fdc33ba80ff034fa0e80f3c1","4d807d55c784b72f71c092c34c84d09b95c29500c30252538fd5cf9a0a788c0e","df43a3968118d4b16618d7a0ac8ba89337fcce3c39e39984087ac34bf0cf250c","4714d89e7ea47b8f79a4d448a11674b2a724f93ab03cfa6879dafbab0f0c5a15","cb9a03b327570c1eae5c82a48604ef697ad1a6264ed0490743a3449de61a4fff","af88a0b0f808a6721401550621bfe67c46c6fd55000305058e7c73600d119a9b",{"version":"0a41b61ddcb640fa2a07cb7a04ecddf540b8199f70d3cf5f2d8903be722529eb","signature":"3dd80666c91b4c1ddb04cbf93038f90420af9bc18d7978acb4b9d7a302238f19"},{"version":"e757e00105e7eb8c10520c9033ae8005c04725113f26893732184904ae75b6db","signature":"6144eb6dda3faf523032f1a739fbfa47f4aea6605695f1e1d698fad2d737f080"}],"root":[88,89],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"target":99},"fileIdsList":[[77],[74,75,76],[77,87],[78,79,82,83,84,85,86],[80,81]],"referencedMap":[[81,1],[80,1],[77,2],[88,3],[78,1],[87,4],[86,1],[82,5],[79,1],[85,1]],"latestChangedDtsFile":"./build-types/utils/dom.d.ts"},"version":"5.5.3"}