easy 13.0.45 → 14.1.1
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/README.md +1 -1
- package/example.js +58 -69
- package/lib/bounds.js +1 -1
- package/lib/buttons.js +1 -1
- package/lib/constants.js +1 -1
- package/lib/contentTypes.js +1 -1
- package/lib/document.js +30 -5
- package/lib/element/body.js +1 -1
- package/lib/element/button.js +1 -1
- package/lib/element/checkbox.js +1 -1
- package/lib/element/link.js +1 -1
- package/lib/element/select.js +1 -1
- package/lib/element.js +20 -20
- package/lib/eventTypes.js +1 -46
- package/lib/example/checkbox.js +1 -1
- package/lib/example/preamble.js +1 -1
- package/lib/example/view.js +1 -1
- package/lib/example.js +1 -1
- package/lib/index.js +1 -1
- package/lib/inputElement/input.js +1 -1
- package/lib/inputElement/textarea.js +1 -1
- package/lib/inputElement.js +1 -1
- package/lib/mixins/change.js +1 -1
- package/lib/mixins/click.js +1 -1
- package/lib/mixins/element.js +1 -1
- package/lib/mixins/event.js +1 -1
- package/lib/mixins/jsx.js +1 -1
- package/lib/mixins/key.js +1 -1
- package/lib/mixins/mouse.js +1 -1
- package/lib/mixins/resize.js +1 -1
- package/lib/mixins/scroll.js +1 -1
- package/lib/mixins/state.js +1 -1
- package/lib/mixins/window.js +1 -1
- package/lib/offset.js +1 -1
- package/lib/react.js +1 -1
- package/lib/textElement.js +1 -1
- package/lib/utilities/array.js +1 -1
- package/lib/utilities/dom.js +1 -1
- package/lib/utilities/elements.js +1 -1
- package/lib/utilities/name.js +1 -1
- package/lib/utilities/object.js +1 -1
- package/lib/window.js +7 -1
- package/package.json +1 -1
- package/src/document.js +2 -0
- package/src/eventTypes.js +0 -18
- package/src/window.js +2 -0
package/README.md
CHANGED
|
@@ -218,7 +218,7 @@ The `TextElement` class has the following methods only:
|
|
|
218
218
|
- `insertAfter(siblingElement)`
|
|
219
219
|
- `remove()`
|
|
220
220
|
|
|
221
|
-
Each of the supported elements has methods specific to its function, check the source for details.
|
|
221
|
+
Each of the supported elements has methods specific to its function, check the source for details, especially for the `window` and `document` singletons.
|
|
222
222
|
|
|
223
223
|
## Building
|
|
224
224
|
|