tosijs-ui
v1.5.24
Published
simple robust web-components for use with tosijs or anything else
Maintainers
Readme
tosijs-ui
ui.tosijs.net live demo | tosijs | discord | github | npm
Copyright ©2023-2025 Tonio Loewald
the tosijs-ui library
A set of web-components created with tosijs, designed to augment what the browser gives you for free rather than replace it.
It works beautifully with other web-component libraries, such as shoelace.style.
Migrating to v1.3.0
v1.3.0 completes the rename from xinjs-ui to tosijs-ui. All custom element
tags now use the tosi- prefix and all exports use Tosi*/tosi* names.
Breaking changes
- Custom element tags have changed from
<xin-*>to<tosi-*>. For example:<xin-select>is now<tosi-select>,<xin-icon>is now<tosi-icon>,<xin-example>is now<tosi-example>, etc. - CSS selectors targeting old tag names (e.g.
xin-select { ... }) must be updated. - CSS custom properties in component
styleSpecobjects retain--xin-*fallbacks for backward compatibility, but new code should use--tosi-*.
Deprecated exports still work
The old xin* JavaScript exports (xinSelect, xinTabs, xinTable, etc.)
remain available and will continue to work. Most log a runtime deprecation
warning; a few are silent aliases marked with JSDoc @deprecated. They will
be removed in a future major version.
Migration checklist
- Search your HTML for
<xin-and replace with<tosi- - Search your CSS for
xin-selectors and update totosi- - Search your JS/TS for
xinSelect,xinTabs, etc. and switch totosiSelect,tosiTabs, etc. - Search for
--xin-CSS variable overrides and switch to--tosi-
Quick Start
Using npm and a bundler
Add tosijs-ui to your project, e.g.
npm add tosijs-uiThen import the component elementCreator and create elements. A tosijs
elementCreator is syntax sugar around document.createElement().
import { tosiTable } from 'tosijs-ui'
document.body.append(tosiTable())Using the iife via cdn
The tosijs-ui iife build bundles tosijs, tosijs-ui, and marked into
a single minified javascript source file. You can access xinjs and xinjsui
as globals which contain all the things exported by tosijs and tosijs-ui.
<script src="https://ui.tosijs.net/iife.js"></script>
<button id="menu">Menu <tosi-icon icon="chevronDown"></tosi-icon></button>
<script>
const { elements } = xinjs
const { popMenu, icons } = xinjsui
const { button } = elements
const showMenu = (target) => {
popMenu({
target,
menuItems: [
{
caption: 'Say hello',
action() {
alert('hello')
}
},
null,
{
caption: 'Version',
action() {
alert(`tosijs ${xinjs.version}\ntosijs-ui ${xinjsui.version}`)
}
}
]
})
}
document.body.append(
button(
{
onClick(event) {
showMenu(event.target)
}
},
'Menu',
icons.chevronDown()
)
)
</script>Click here to see a simple iife demo
custom-elements
The simplest way to use these elements is to simply import the element and then either
use HTML or the ElementCreator function exported.
E.g. to use the markdown viewer:
import { tosiMd } from 'tosijs-ui'
document.body.append(tosiMd('# hello world\nthis is a test'))import { tosiMd } from 'tosijs-ui'
preview.append(
tosiMd(`
## hello world
here is some markdown
`)
)Assuming you import the module somewhere, the HTML will work as well.
<tosi-md>
## hello world
here is some markdown
</tosi-md>The big difference with using the tosiMd() function is that the tosijs Component
class will automatically pick a new tag if the expected tag is taken (e.g. by a previously
defined custom-element from another library). tosiMd() will create an element of
the correct type.
The other thing is that tosijs ElementCreator functions are convenient and composable,
allowing you to build DOM elements with less code than pretty much any other option, including
JSX, TSX, or HTML.
Philosophy
In general, tosijs strives to work with the browser rather than trying to replace it.
In a similar vein, tosijs-ui comprises a collection of web-components
with the goal of augmenting what already works well, and the components are intended to be
as similar as possible to things that you already use, such as <input> or <select> elements.
E.g. where appropriate, the value of an element is its malleable state, and when this changes,
the element emits a change event.
Similarly, the tosijs base Component class and the components in this collection strive to
be as similar in operation as possible to DOM elements as makes sense. E.g. binary attributes
work as expected. Adding the hidden attribute makes them disappear. If a component subclass
has a value property then it will be rendered if the value changes (similarly it will be
rendered if an initialized attribute is changed). Intrinsic properties of components will
default to null rather than undefined.
Similarly, because web-components are highly interoperable, there's no reason to reinvent
wheels. In particular, this library won't try to replace existing, excellent libraries
such as shoelace.style or wrap perfectly functional HTML
elements, like the venerable <input> or <form> elements that are already capable
and accessible.
The goal here is to provide useful components and other utilities that add to what's built
into HTML5 and CSS3 and to make custom-elements work as much as possible like drop-in replacements
for an <input> or <textarea> (while mitigating the historical pathologies of things like
<select> and <input type="radio">). E.g. the <tosi-select> does not suffer from a
race-condition between having its value set and being given an <option> with the intended value
and you can differentiate between the user picking a value (action) and the value changing (change).
Credits
tosijs-ui is being developed using bun.
bun is crazy fast (based on Webkit's JS engine, vs. V8), does a lot of stuff
natively, and runs TypeScript (with import and require) directly.
Logo animations by @anicoremotion.
