katoikia-app/web-ui/web-react/node_modules/dom-helpers
Maria Sanchez 5abf040b42 fix web ui template 2022-07-05 22:15:11 -06:00
..
activeElement fix web ui template 2022-07-05 22:15:11 -06:00
addClass fix web ui template 2022-07-05 22:15:11 -06:00
addEventListener fix web ui template 2022-07-05 22:15:11 -06:00
animate fix web ui template 2022-07-05 22:15:11 -06:00
animationFrame fix web ui template 2022-07-05 22:15:11 -06:00
attribute fix web ui template 2022-07-05 22:15:11 -06:00
camelize fix web ui template 2022-07-05 22:15:11 -06:00
camelizeStyle fix web ui template 2022-07-05 22:15:11 -06:00
canUseDOM fix web ui template 2022-07-05 22:15:11 -06:00
childElements fix web ui template 2022-07-05 22:15:11 -06:00
childNodes fix web ui template 2022-07-05 22:15:11 -06:00
cjs fix web ui template 2022-07-05 22:15:11 -06:00
clear fix web ui template 2022-07-05 22:15:11 -06:00
closest fix web ui template 2022-07-05 22:15:11 -06:00
collectElements fix web ui template 2022-07-05 22:15:11 -06:00
collectSiblings fix web ui template 2022-07-05 22:15:11 -06:00
contains fix web ui template 2022-07-05 22:15:11 -06:00
css fix web ui template 2022-07-05 22:15:11 -06:00
esm fix web ui template 2022-07-05 22:15:11 -06:00
filterEventHandler fix web ui template 2022-07-05 22:15:11 -06:00
getComputedStyle fix web ui template 2022-07-05 22:15:11 -06:00
getScrollAccessor fix web ui template 2022-07-05 22:15:11 -06:00
hasClass fix web ui template 2022-07-05 22:15:11 -06:00
height fix web ui template 2022-07-05 22:15:11 -06:00
hyphenate fix web ui template 2022-07-05 22:15:11 -06:00
hyphenateStyle fix web ui template 2022-07-05 22:15:11 -06:00
insertAfter fix web ui template 2022-07-05 22:15:11 -06:00
isDocument fix web ui template 2022-07-05 22:15:11 -06:00
isInput fix web ui template 2022-07-05 22:15:11 -06:00
isTransform fix web ui template 2022-07-05 22:15:11 -06:00
isVisible fix web ui template 2022-07-05 22:15:11 -06:00
isWindow fix web ui template 2022-07-05 22:15:11 -06:00
listen fix web ui template 2022-07-05 22:15:11 -06:00
matches fix web ui template 2022-07-05 22:15:11 -06:00
nextUntil fix web ui template 2022-07-05 22:15:11 -06:00
offset fix web ui template 2022-07-05 22:15:11 -06:00
offsetParent fix web ui template 2022-07-05 22:15:11 -06:00
ownerDocument fix web ui template 2022-07-05 22:15:11 -06:00
ownerWindow fix web ui template 2022-07-05 22:15:11 -06:00
parents fix web ui template 2022-07-05 22:15:11 -06:00
position fix web ui template 2022-07-05 22:15:11 -06:00
prepend fix web ui template 2022-07-05 22:15:11 -06:00
querySelectorAll fix web ui template 2022-07-05 22:15:11 -06:00
remove fix web ui template 2022-07-05 22:15:11 -06:00
removeClass fix web ui template 2022-07-05 22:15:11 -06:00
removeEventListener fix web ui template 2022-07-05 22:15:11 -06:00
scrollLeft fix web ui template 2022-07-05 22:15:11 -06:00
scrollParent fix web ui template 2022-07-05 22:15:11 -06:00
scrollTo fix web ui template 2022-07-05 22:15:11 -06:00
scrollTop fix web ui template 2022-07-05 22:15:11 -06:00
scrollbarSize fix web ui template 2022-07-05 22:15:11 -06:00
siblings fix web ui template 2022-07-05 22:15:11 -06:00
text fix web ui template 2022-07-05 22:15:11 -06:00
toggleClass fix web ui template 2022-07-05 22:15:11 -06:00
transitionEnd fix web ui template 2022-07-05 22:15:11 -06:00
triggerEvent fix web ui template 2022-07-05 22:15:11 -06:00
width fix web ui template 2022-07-05 22:15:11 -06:00
LICENSE fix web ui template 2022-07-05 22:15:11 -06:00
README.md fix web ui template 2022-07-05 22:15:11 -06:00
package.json fix web ui template 2022-07-05 22:15:11 -06:00

README.md

dom-helpers

tiny modular DOM lib for ie9+

Install

npm i -S dom-helpers

Mostly just naive wrappers around common DOM API inconsistencies, Cross browser work is minimal and mostly taken from jQuery. This library doesn't do a lot to normalize behavior across browsers, it mostly seeks to provide a common interface, and eliminate the need to write the same damn if (ie9) statements in every project.

For example on() works in all browsers ie9+ but it uses the native event system so actual event oddities will continue to exist. If you need robust cross-browser support, use jQuery. If you are just tired of rewriting:

if (document.addEventListener)
  return (node, eventName, handler, capture) =>
    node.addEventListener(eventName, handler, capture || false)
else if (document.attachEvent)
  return (node, eventName, handler) =>
    node.attachEvent('on' + eventName, handler)

over and over again, or you need a ok getComputedStyle polyfill but don't want to include all of jQuery, use this.

dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use es5-shim where needed

The real advantage to this collection is that any method can be required individually, meaning bundlers like webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as React where you only occasionally need to do direct DOM manipulation.

All methods are exported as a flat namesapce

var helpers = require('dom-helpers')
var offset = require('dom-helpers/offset')

// style is a function
require('dom-helpers/css')(node, { width: '40px' })
  • dom-helpers
    • ownerDocument(element): returns the element's document owner
    • ownerWindow(element): returns the element's document window
    • activeElement: return focused element safely
    • querySelectorAll(element, selector): optimized qsa, uses getElementBy{Id|TagName|ClassName} if it can.
    • contains(container, element)
    • height(element, useClientHeight)
    • width(element, useClientWidth)
    • matches(element, selector)
    • offset(element) -> { top: Number, left: Number, height: Number, width: Number}
    • offsetParent(element): return the parent node that the element is offset from
    • position(element, [offsetParent]: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" one
    • scrollTop(element, [value])
    • scrollLeft(element, [value])
    • scrollParent(element)
    • addClass(element, className)
    • removeClass(element, className)
    • hasClass(element, className)
    • toggleClass(element, className)
    • style(element, propName) or style(element, objectOfPropValues)
    • getComputedStyle(element) -> getPropertyValue(name)
    • animate(node, properties, duration, easing, callback) programmatically start css transitions
    • transitionEnd(node, handler, [duration], [padding]) listens for transition end, and ensures that the handler if called even if the transition fails to fire its end event. Will attempt to read duration from the element, otherwise one can be provided
    • addEventListener(node, eventName, handler, [options]):
    • removeEventListener(node, eventName, handler, [options]):
    • listen(node, eventName, handler, [options]): wraps addEventlistener and returns a function that calls removeEventListener for you
    • filter(selector, fn): returns a function handler that only fires when the target matches or is contained in the selector ex: on(list, 'click', filter('li > a', handler))
    • requestAnimationFrame(cb) returns an ID for canceling
    • cancelAnimationFrame(id)
    • scrollbarSize([recalc]) returns the scrollbar's width size in pixels
    • scrollTo(element, [scrollParent])