lilact 0.21.1 → 0.22.0
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/README.md +17 -4
- package/dist/lilact.development.js +485 -38
- package/dist/lilact.development.js.map +4 -4
- package/dist/lilact.development.min.js +33 -23
- package/dist/lilact.development.min.js.map +4 -4
- package/dist/lilact.production.min.js +32 -22
- package/docs/assets/highlight.css +20 -20
- package/docs/classes/accessories.ErrorBoundary.html +8 -8
- package/docs/classes/accessories.Suspense.html +7 -7
- package/docs/classes/components.Component.html +11 -11
- package/docs/classes/components.HTMLComponent.html +12 -12
- package/docs/classes/components.RootComponent.html +12 -12
- package/docs/functions/accessories.DragHandle.html +2 -2
- package/docs/functions/accessories.Spinner.html +2 -2
- package/docs/functions/components.createComponent.html +1 -1
- package/docs/functions/components.createPortal.html +1 -1
- package/docs/functions/components.createRoot.html +1 -1
- package/docs/functions/components.memo.html +1 -1
- package/docs/functions/components.render.html +1 -1
- package/docs/functions/redux.Provider.html +2 -2
- package/docs/functions/redux.connect.html +2 -2
- package/docs/functions/router.HashRouter.html +2 -2
- package/docs/functions/router.Link.html +2 -2
- package/docs/functions/router.NavLink.html +2 -2
- package/docs/functions/router.Routes.html +2 -2
- package/docs/functions/run.lazy.html +9 -3
- package/docs/functions/run.require.html +4 -4
- package/docs/functions/run.run.html +1 -1
- package/docs/functions/run.runScripts.html +1 -1
- package/docs/functions/timers.animationFramePromise.html +1 -1
- package/docs/functions/timers.clearInterval.html +1 -1
- package/docs/functions/timers.clearTimeout.html +1 -1
- package/docs/functions/timers.grabTimers.html +1 -1
- package/docs/functions/timers.pauseTimers.html +1 -1
- package/docs/functions/timers.releaseTimers.html +1 -1
- package/docs/functions/timers.resetTimers.html +1 -1
- package/docs/functions/timers.resumeTimers.html +1 -1
- package/docs/functions/timers.setInterval.html +1 -1
- package/docs/functions/timers.setTimeout.html +1 -1
- package/docs/functions/timers.timeoutPromise.html +3 -145
- package/docs/functions/transition.CSSTransition.html +4 -4
- package/docs/functions/transition.SwitchTransition.html +2 -2
- package/docs/functions/transition.Transition.html +3 -3
- package/docs/index.html +17 -10
- package/docs/static/demos/actionstate.jsx +2 -2
- package/docs/static/demos/capture.jsx +2 -2
- package/docs/static/demos/context.jsx +3 -3
- package/docs/static/demos/css-transition.jsx +3 -3
- package/docs/static/demos/error-boundary.jsx +2 -2
- package/docs/static/demos/error-callback.jsx +1 -1
- package/docs/static/demos/error-component-stack.jsx +2 -2
- package/docs/static/demos/error-init.jsx +1 -1
- package/docs/static/demos/error-parser.jsx +1 -1
- package/docs/static/demos/form-elements.jsx +1 -1
- package/docs/static/demos/forwardref.jsx +2 -2
- package/docs/static/demos/lazy.jsx +3 -3
- package/docs/static/demos/legacy-context.jsx +2 -2
- package/docs/static/demos/memo.jsx +2 -2
- package/docs/static/demos/modal.jsx +2 -2
- package/docs/static/demos/pane.jsx +2 -2
- package/docs/static/demos/portal.jsx +4 -2
- package/docs/static/demos/priorities.jsx +2 -2
- package/docs/static/demos/proptypes.jsx +2 -2
- package/docs/static/demos/reducer.jsx +2 -2
- package/docs/static/demos/redux.jsx +3 -3
- package/docs/static/demos/router.jsx +2 -2
- package/docs/static/demos/stopwatch.jsx +2 -2
- package/docs/static/demos/suspense.jsx +2 -2
- package/docs/static/demos/switch-transition.jsx +2 -2
- package/docs/static/demos/transition.jsx +2 -2
- package/docs/static/demos/usedefered.jsx +2 -2
- package/docs/static/demos/usetransition.jsx +3 -3
- package/docs/static/index.html +3 -3
- package/docs/static/lilact.development.js +485 -38
- package/docs/static/lilact.development.js.map +4 -4
- package/docs/static/lilact.development.min.js +33 -23
- package/docs/static/lilact.development.min.js.map +4 -4
- package/docs/static/lilact.production.min.js +32 -22
- package/docs/variables/accessories.SplitPane.html +1 -1
- package/examples/demos/actionstate.jsx +2 -2
- package/examples/demos/capture.jsx +2 -2
- package/examples/demos/context.jsx +3 -3
- package/examples/demos/css-transition.jsx +3 -3
- package/examples/demos/error-boundary.jsx +2 -2
- package/examples/demos/error-callback.jsx +1 -1
- package/examples/demos/error-component-stack.jsx +2 -2
- package/examples/demos/error-init.jsx +1 -1
- package/examples/demos/error-parser.jsx +1 -1
- package/examples/demos/form-elements.jsx +1 -1
- package/examples/demos/forwardref.jsx +2 -2
- package/examples/demos/lazy.jsx +3 -3
- package/examples/demos/legacy-context.jsx +2 -2
- package/examples/demos/memo.jsx +2 -2
- package/examples/demos/modal.jsx +2 -2
- package/examples/demos/pane.jsx +2 -2
- package/examples/demos/portal.jsx +4 -2
- package/examples/demos/priorities.jsx +2 -2
- package/examples/demos/proptypes.jsx +2 -2
- package/examples/demos/reducer.jsx +2 -2
- package/examples/demos/redux.jsx +3 -3
- package/examples/demos/router.jsx +2 -2
- package/examples/demos/stopwatch.jsx +2 -2
- package/examples/demos/suspense.jsx +2 -2
- package/examples/demos/switch-transition.jsx +2 -2
- package/examples/demos/transition.jsx +2 -2
- package/examples/demos/usedefered.jsx +2 -2
- package/examples/demos/usetransition.jsx +3 -3
- package/examples/index.html +3 -3
- package/examples/lilact.development.js +485 -38
- package/examples/lilact.development.js.map +4 -4
- package/examples/lilact.development.min.js +33 -23
- package/examples/lilact.development.min.js.map +4 -4
- package/examples/lilact.production.min.js +32 -22
- package/impexptest.js +51 -0
- package/package.json +4 -4
- package/src/components.jsx +0 -5
- package/src/expscan.js +404 -0
- package/src/jsx.js +26 -28
- package/src/lilact.jsx +10 -1
- package/src/run.jsx +86 -37
- package/src/timers.jsx +0 -5
- package/src/jsx.addons.js +0 -70
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ If you find Lilact useful, please consider sponsoring. Your support funds ongoin
|
|
|
29
29
|
|
|
30
30
|
## Overview
|
|
31
31
|
|
|
32
|
-
`Lilact` is a very lightweight implementation of the React API designed to run in the browser. It can be used as a single script that is around `
|
|
32
|
+
`Lilact` is a very lightweight implementation of the React API designed to run in the browser. It can be used as a single script that is around `98kb` minified and around `34kb` gzipped and includes its whole API. It is tested and works on **Chrome**, **Firefox**, **Edge**, and **Safari**.
|
|
33
33
|
|
|
34
34
|
`Lilact` is very fast, uses minimal resources, and handles memory very efficiently.
|
|
35
35
|
|
|
@@ -94,10 +94,16 @@ and update the bundle if any file is changed.
|
|
|
94
94
|
|
|
95
95
|
## Using Lilact Outside Node.js (Browser / Script Tag Integration)
|
|
96
96
|
|
|
97
|
-
`Lilact` runs in the browser,
|
|
97
|
+
`Lilact` runs in the browser, and uses `eval` to run the transpiled scripts. You can use both ESModule and CommonJS syntax,
|
|
98
|
+
but in the background `Lilact` converts the ES import and exports to CommonJS as `eval` doesn't allow ES syntax.
|
|
98
99
|
|
|
99
|
-
|
|
100
|
-
|
|
100
|
+
```js
|
|
101
|
+
import { useState, useRef, render } from "lilact";
|
|
102
|
+
|
|
103
|
+
import App from './App.jsx'; // imports the default export
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
or
|
|
101
107
|
|
|
102
108
|
```js
|
|
103
109
|
const { useState, useRef, render, require } = Lilact;
|
|
@@ -107,6 +113,13 @@ const App = require('./App.jsx');
|
|
|
107
113
|
|
|
108
114
|
To export:
|
|
109
115
|
|
|
116
|
+
```js
|
|
117
|
+
export default ...
|
|
118
|
+
// or other standard export statements
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
or
|
|
122
|
+
|
|
110
123
|
```js
|
|
111
124
|
module.exports = ...
|
|
112
125
|
```
|