@wordpress/dom 4.0.1 → 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.
- package/CHANGELOG.md +10 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 4.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 4.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -112,7 +116,7 @@
|
|
|
112
116
|
|
|
113
117
|
## 3.9.0 (2022-05-18)
|
|
114
118
|
|
|
115
|
-
###
|
|
119
|
+
### Deprecations
|
|
116
120
|
|
|
117
121
|
- Deprecate `isNumberInput`, as it is no longer used internally ([#40896](https://github.com/WordPress/gutenberg/pull/40896)).
|
|
118
122
|
|
|
@@ -141,7 +145,7 @@
|
|
|
141
145
|
|
|
142
146
|
## 2.18.0 (2021-04-29)
|
|
143
147
|
|
|
144
|
-
### New
|
|
148
|
+
### New Features
|
|
145
149
|
|
|
146
150
|
- Export type definitions.
|
|
147
151
|
|
|
@@ -149,19 +153,19 @@
|
|
|
149
153
|
|
|
150
154
|
## 2.11.0 (2020-06-15)
|
|
151
155
|
|
|
152
|
-
### New
|
|
156
|
+
### New Features
|
|
153
157
|
|
|
154
158
|
- Add `documentHasUncollapsedSelection` to inquire about ranges of selected text in the document, including the separately managed selections inside <input> and <textarea> elements.
|
|
155
159
|
|
|
156
160
|
## 2.10.0 (2020-05-28)
|
|
157
161
|
|
|
158
|
-
### New
|
|
162
|
+
### New Features
|
|
159
163
|
|
|
160
164
|
- Add `documentHasTextSelection` to inquire specifically about ranges of selected text, in addition to the existing `documentHasSelection`.
|
|
161
165
|
|
|
162
166
|
## 2.1.0 (2019-03-06)
|
|
163
167
|
|
|
164
|
-
### Bug
|
|
168
|
+
### Bug Fixes
|
|
165
169
|
|
|
166
170
|
- Update `isHorizontalEdge` to account for empty text nodes.
|
|
167
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.
|
|
@@ -180,6 +184,6 @@
|
|
|
180
184
|
|
|
181
185
|
## 2.0.0 (2018-09-05)
|
|
182
186
|
|
|
183
|
-
### Breaking
|
|
187
|
+
### Breaking Changes
|
|
184
188
|
|
|
185
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.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.0
|
|
33
|
+
"@wordpress/deprecated": "^4.2.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
39
39
|
}
|