Dropped CJS & Deno support.
Updated deps.
Fixes https://github.com/NodeSecure/cli/issues/93.
Fixes wrapped alignment.
Fixes :align: right no longer overflow container width.
This PR introduce breaking changes.
divs are now block & full-width so spans can no longer be aligned right/left a div.
ui.div('my div', 'my div')
is now same as
ui.div('my div'); ui.div('my div')
align: right with weird padding/width can be laggy.
some tests have been adjusted to pass, it's about leading/trailing whitespaces & align: right changes. I've made multiple tests (function tests on my side) and it seem ok for all basic usage, and more.
Dropped CJS & Deno support. Updated deps. Fixes https://github.com/NodeSecure/cli/issues/93. Fixes wrapped alignment. Fixes :
align: right
no longer overflow container width.This PR introduce breaking changes.
ui.div('my div', 'my div')
is now same asui.div('my div'); ui.div('my div')
align: right
with weird padding/width can be laggy.align: right
changes. I've made multiple tests (function tests on my side) and it seem ok for all basic usage, and more.