Sha256: 69fcd18b36cfa27a491c51c8e552a8fdd78db290318cacd33bb65e25656f2017
Contents?: true
Size: 603 Bytes
Versions: 92
Compression:
Stored size: 603 Bytes
Contents
// render modes /** Do not re-render a component */ export const NO_RENDER = 0; /** Synchronously re-render a component and its children */ export const SYNC_RENDER = 1; /** Synchronously re-render a component, even if its lifecycle methods attempt to prevent it. */ export const FORCE_RENDER = 2; /** Queue asynchronous re-render of a component and it's children */ export const ASYNC_RENDER = 3; export const ATTR_KEY = '__preactattr_'; /** DOM properties that should NOT have "px" added when numeric */ export const IS_NON_DIMENSIONAL = /acit|ex(?:s|g|n|p|$)|rph|ows|mnc|ntw|ine[ch]|zoo|^ord/i;
Version data entries
92 entries across 92 versions & 1 rubygems