@wordpress/dom 4.1.0 → 4.2.0

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 (2) hide show
  1. package/CHANGELOG.md +8 -6
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.0 (2024-06-26)
6
+
5
7
  ## 4.1.0 (2024-06-15)
6
8
 
7
9
  ## 4.0.0 (2024-05-31)
@@ -114,7 +116,7 @@
114
116
 
115
117
  ## 3.9.0 (2022-05-18)
116
118
 
117
- ### Deprecation
119
+ ### Deprecations
118
120
 
119
121
  - Deprecate `isNumberInput`, as it is no longer used internally ([#40896](https://github.com/WordPress/gutenberg/pull/40896)).
120
122
 
@@ -143,7 +145,7 @@
143
145
 
144
146
  ## 2.18.0 (2021-04-29)
145
147
 
146
- ### New Feature
148
+ ### New Features
147
149
 
148
150
  - Export type definitions.
149
151
 
@@ -151,19 +153,19 @@
151
153
 
152
154
  ## 2.11.0 (2020-06-15)
153
155
 
154
- ### New Feature
156
+ ### New Features
155
157
 
156
158
  - Add `documentHasUncollapsedSelection` to inquire about ranges of selected text in the document, including the separately managed selections inside <input> and <textarea> elements.
157
159
 
158
160
  ## 2.10.0 (2020-05-28)
159
161
 
160
- ### New Feature
162
+ ### New Features
161
163
 
162
164
  - Add `documentHasTextSelection` to inquire specifically about ranges of selected text, in addition to the existing `documentHasSelection`.
163
165
 
164
166
  ## 2.1.0 (2019-03-06)
165
167
 
166
- ### Bug Fix
168
+ ### Bug Fixes
167
169
 
168
170
  - Update `isHorizontalEdge` to account for empty text nodes.
169
171
  - `tabbables.find` considers at most a single radio input for a given name. The checked input is given priority, falling back to the first in the tabindex-sorted set if there is no checked input.
@@ -182,6 +184,6 @@
182
184
 
183
185
  ## 2.0.0 (2018-09-05)
184
186
 
185
- ### Breaking Change
187
+ ### Breaking Changes
186
188
 
187
189
  - Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dom",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "DOM utilities module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -30,10 +30,10 @@
30
30
  "sideEffects": false,
31
31
  "dependencies": {
32
32
  "@babel/runtime": "^7.16.0",
33
- "@wordpress/deprecated": "^4.1.0"
33
+ "@wordpress/deprecated": "^4.2.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
38
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
39
39
  }