@builds-dev/react-ui
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -50,18 +50,2 @@ 'use strict'; | ||
const edges = Object.assign(n => ({ | ||
top: n, | ||
bottom: n, | ||
left: n, | ||
right: n | ||
}), { | ||
x: n => ({ | ||
left: n, | ||
right: n | ||
}), | ||
y: n => ({ | ||
top: n, | ||
bottom: n | ||
}) | ||
}); | ||
const css_infinity = 100000000; | ||
@@ -318,2 +302,3 @@ | ||
const ascended = 'ascended'; | ||
const ascended_background = 'ascended_background'; | ||
@@ -323,2 +308,10 @@ const background = 'background'; | ||
var plane = /*#__PURE__*/Object.freeze({ | ||
__proto__: null, | ||
ascended: ascended, | ||
ascended_background: ascended_background, | ||
background: background, | ||
foreground: foreground | ||
}); | ||
const Box_child_style_context = /*#__PURE__*/React.createContext(); | ||
@@ -439,2 +432,18 @@ | ||
const edges = Object.assign(n => ({ | ||
top: n, | ||
bottom: n, | ||
left: n, | ||
right: n | ||
}), { | ||
x: n => ({ | ||
left: n, | ||
right: n | ||
}), | ||
y: n => ({ | ||
top: n, | ||
bottom: n | ||
}) | ||
}); | ||
var createRoot; | ||
@@ -602,4 +611,5 @@ | ||
exports.overflow = overflow; | ||
exports.plane = plane; | ||
exports.px = px; | ||
exports.ratio = ratio; | ||
exports.to_css_value = to_css_value; |
{ | ||
"name": "@builds-dev/react-ui", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "A library of React components that abstract over HTML and CSS, for building UIs from high-level, simple expressions.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -277,11 +277,11 @@ # builds React UI | ||
##### `scroll ({ overscroll = { x = overscroll_default, y = overscroll_default } })` | ||
##### `overflow.scroll ({ overscroll = { x = overscroll_default, y = overscroll_default } })` | ||
All overflow is scrollable. | ||
##### `scroll_x ({ overscroll = overscroll_default })` | ||
##### `overflow.scroll_x ({ overscroll = overscroll_default })` | ||
Overflow on the `x` axis is scrollable. Overflow on the `y` axis is hidden. | ||
##### `scroll_y ({ overscroll = overscroll_default })` | ||
##### `overflow.scroll_y ({ overscroll = overscroll_default })` | ||
@@ -288,0 +288,0 @@ Overflow on the `y` axis is scrollable. Overflow on the `x` axis is hidden. |
Sorry, the diff of this file is not supported yet
51574
1054