You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,9 @@ Please note after `1.0` Semver will be followed using normal protocols.
39
39
***Feature** - Added [`appendTo()`](https://next.semantic-ui.com/api/query/dom-manipulation#appendto) method for appending elements as last child of target.
40
40
***Feature** - Added [`prependTo()`](https://next.semantic-ui.com/api/query/dom-manipulation#prependto) method for prepending elements as first child of target.
41
41
***Feature** - Added [`isVisible()`](https://next.semantic-ui.com/api/query/logical-operators#isvisible) method for checking if ALL elements have layout dimensions using modern `getBoundingClientRect()` API, with optional opacity checking.
42
-
***Feature** - Added [`naturalDisplay()`](https://next.semantic-ui.com/api/query/css#naturaldisplay) for getting the natural display value of elements (ignoring display: none rules).
42
+
***Feature** - Added [`naturalDisplay()`](https://next.semantic-ui.com/api/query/dimensions#naturaldisplay) for getting the natural display value of elements (ignoring display: none rules).
43
43
***Feature** - You can now use `documentFragment` with content manipulation like [`append()`](https://next.semantic-ui.com/api/query/dom-manipulation#append) and [`prepend()`](https://next.semantic-ui.com/api/query/dom-manipulation#prepend).
44
-
***Improvement** - [`clippingParent()`](https://next.semantic-ui.com/api/query/dom-traversal#clippingparent) now correctly detects all CSS properties that create clipping contexts including `contain` (paint/layout/size/strict), `clip-path`, and `mask`/`mask-image` in addition to `overflow`.
44
+
***Improvement** - [`clippingParent()`](https://next.semantic-ui.com/api/query/dimensions#clippingparent) now correctly detects all CSS properties that create clipping contexts including `contain` (paint/layout/size/strict), `clip-path`, and `mask`/`mask-image` in addition to `overflow`.
45
45
***Improvement** - [`trigger()`](https://next.semantic-ui.com/api/query/events#trigger) now triggers native event handlers. Use [`dispatchEvent`](https://next.semantic-ui.com/api/query/events#dispatchevent) to avoid this behavior.
46
46
***Improvement** - [`.submit()`](https://next.semantic-ui.com/api/query/events#submit) now uses `requestSubmit` so that it can trigger native event handlers and be cancelable.
47
47
***Bug** - [`dataContext()`](https://next.semantic-ui.com/api/query/components#datacontext) now returns the entire data context including state.
@@ -169,14 +169,14 @@ We've now linked the ESM build to a build that inlines raw text imports to preve
169
169
170
170
### Query
171
171
***Feature** - Added namespaced events to [`on`](https://next.semantic-ui.com/api/query/events#on) and [`off`](https://next.semantic-ui.com/api/query/events#off).
172
-
***Feature** - Added [`clippingParent`](https://next.semantic-ui.com/api/query/dom-traversal#clippingparent) to find closest ancestor that will clip the current element. See [example](https://next.semantic-ui.com/examples/query-clippingparent).
172
+
***Feature** - Added [`clippingParent`](https://next.semantic-ui.com/api/query/dimensions#clippingparent) to find closest ancestor that will clip the current element. See [example](https://next.semantic-ui.com/examples/query-clippingparent).
173
173
***Feature** - Added [`.data()`](https://next.semantic-ui.com/api/query/attributes#data) for getting and setting HTML data. See [example](https://next.semantic-ui.com/examples/query-data).
174
174
***Feature** - Added [`.slice()`](https://next.semantic-ui.com/api/query/iterators#slice) for returning a portion of the element collection. See [example](https://next.semantic-ui.com/examples/query-slice).
175
175
***Feature** - Added [`closestAll()`](https://next.semantic-ui.com/api/query/dom-traversal#closestall) for finding all ancestor elements matching a selector.
176
176
***Feature** - Added [`before()`](https://next.semantic-ui.com/api/query/dom-manipulation#before) and [`after()`](https://next.semantic-ui.com/api/query/dom-manipulation#after) aliases for more intuitive content insertion.
177
177
***Feature** - Added [`contains()`](https://next.semantic-ui.com/api/query/dom-traversal#contains) method for checking if elements contain a specific selector with [Shadow DOM](https://next.semantic-ui.com/query/shadow-dom) support. See [example](https://next.semantic-ui.com/examples/query-contains).
178
178
***Enhancement** - Enhanced [`closest()`](https://next.semantic-ui.com/api/query/dom-traversal#closest) with `returnAll` option to optionally return all matching ancestors.
179
-
***Improvement** - `offsetParent` has been renamed to [`containingParent`](https://next.semantic-ui.com/api/query/dom-traversal#containingparent) and now includes many other possible containing parent checks like `will-change` and `filter`.
179
+
***Improvement** - `offsetParent` has been renamed to [`containingParent`](https://next.semantic-ui.com/api/query/dimensions#containingparent) and now includes many other possible containing parent checks like `will-change` and `filter`.
180
180
***Bug** - [`setting()`](https://next.semantic-ui.com/api/query/components#setting) can now be used as a getter.
181
181
***Bug** - Fixed `offsetParent` to correctly return offset parent for `willChange`.
182
182
***Bug** - Fixed bug where `useAlias()` was not working as intended to alias Query.
0 commit comments