ivi icon indicating copy to clipboard operation
ivi copied to clipboard

Lighweight Embeddable Web UI Library

Results 25 ivi issues
Sort by recently updated
recently updated
newest added

Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....

dependencies

Bumps [acorn](https://github.com/acornjs/acorn) from 6.4.0 to 6.4.1. Commits 9a2e9b6 Mark version 6.4.1 90a9548 More rigorously check surrogate pairs in regexp validator See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=acorn&package-manager=npm_and_yarn&previous-version=6.4.0&new-version=6.4.1)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...

dependencies

The `lis` function has a bug when the first item is new. Currently, `lis([-1, 1])` returns `[0, 1]` instead of `[1]`. Actually, an initial -1 always results in an extra...

Please consider continue develop this project. Hope to see: * [ ] Target Independent reconciler. * [ ] Bridge on React to provide ivi like api.

I have a components which should be rendered asynchronously. For example, under first rendering it triggers data loading (using props) and returns progress. When data is available it invalidates component...

As I see, you access to `process.env` many-many times as here: ```typescript export const EVENT_DISPATCHER_ABORT = ( process.env.IVI_TARGET === "ssr" ? void 0 : /*#__PURE__*/createNativeEventDispatcher(NativeEventSourceFlags.Capture, "abort") ); export const EVENT_DISPATCHER_ACTIVATE...

Hi, I have some issue bundling ivi with Parcel due to the use of __IVI_DEBUG__ and __IVI_TARGET__. I didn't find an equivalent of DefinePlugin for Parcel and even if there...

In my previous experience with VDOM I creating isomorphic apps which attaches at root node of document (i.e. **html**). I suppose it should works in same way with ivi too....

@localvoid ```js ` ${table.schema.cols.map((c, i) => html` onClickCol(i)}> ${c.name} ${sortDir[i] || ''} ${sortPos[i] || ''} `)} ` ``` creates 3 adjacent text nodes with no white space between: ```html genre11...

so here's a fun one. not really ivi specifc. let's say i want to make an interface that renders arbitray CSV files into html tables. this doesnt fit the nice...