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.
Files changed (46) hide show
  1. package/README.md +1 -1
  2. package/example.js +58 -69
  3. package/lib/bounds.js +1 -1
  4. package/lib/buttons.js +1 -1
  5. package/lib/constants.js +1 -1
  6. package/lib/contentTypes.js +1 -1
  7. package/lib/document.js +30 -5
  8. package/lib/element/body.js +1 -1
  9. package/lib/element/button.js +1 -1
  10. package/lib/element/checkbox.js +1 -1
  11. package/lib/element/link.js +1 -1
  12. package/lib/element/select.js +1 -1
  13. package/lib/element.js +20 -20
  14. package/lib/eventTypes.js +1 -46
  15. package/lib/example/checkbox.js +1 -1
  16. package/lib/example/preamble.js +1 -1
  17. package/lib/example/view.js +1 -1
  18. package/lib/example.js +1 -1
  19. package/lib/index.js +1 -1
  20. package/lib/inputElement/input.js +1 -1
  21. package/lib/inputElement/textarea.js +1 -1
  22. package/lib/inputElement.js +1 -1
  23. package/lib/mixins/change.js +1 -1
  24. package/lib/mixins/click.js +1 -1
  25. package/lib/mixins/element.js +1 -1
  26. package/lib/mixins/event.js +1 -1
  27. package/lib/mixins/jsx.js +1 -1
  28. package/lib/mixins/key.js +1 -1
  29. package/lib/mixins/mouse.js +1 -1
  30. package/lib/mixins/resize.js +1 -1
  31. package/lib/mixins/scroll.js +1 -1
  32. package/lib/mixins/state.js +1 -1
  33. package/lib/mixins/window.js +1 -1
  34. package/lib/offset.js +1 -1
  35. package/lib/react.js +1 -1
  36. package/lib/textElement.js +1 -1
  37. package/lib/utilities/array.js +1 -1
  38. package/lib/utilities/dom.js +1 -1
  39. package/lib/utilities/elements.js +1 -1
  40. package/lib/utilities/name.js +1 -1
  41. package/lib/utilities/object.js +1 -1
  42. package/lib/window.js +7 -1
  43. package/package.json +1 -1
  44. package/src/document.js +2 -0
  45. package/src/eventTypes.js +0 -18
  46. 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