@jsenv/dom 0.8.0 → 0.8.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/dist/jsenv_dom.js +5 -1
- package/package.json +1 -1
package/dist/jsenv_dom.js
CHANGED
|
@@ -397,10 +397,14 @@ const createSetMany$1 = (setter) => {
|
|
|
397
397
|
const setStyles = createSetMany$1(setStyle);
|
|
398
398
|
const forceStyles = createSetMany$1(forceStyle);
|
|
399
399
|
|
|
400
|
-
// Properties that
|
|
400
|
+
// Properties that can use px units
|
|
401
401
|
const pxPropertySet = new Set([
|
|
402
402
|
"width",
|
|
403
403
|
"height",
|
|
404
|
+
"minWidth",
|
|
405
|
+
"maxWidth",
|
|
406
|
+
"minHeight",
|
|
407
|
+
"maxHeight",
|
|
404
408
|
"top",
|
|
405
409
|
"left",
|
|
406
410
|
"right",
|