lilact 0.0.0 → 0.2.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 +13 -2
- package/dist/{lilact.development.js → lilact.development.min.js} +690 -315
- package/dist/lilact.development.min.js.LICENSE.txt +77 -0
- package/dist/lilact.development.min.js.map +1 -0
- package/dist/lilact.production.min.js +1 -1
- package/dist/lilact.production.min.js.map +1 -1
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/accessories.ErrorBoundary.html +11 -10
- package/docs/classes/accessories.Suspense.html +12 -22
- package/docs/classes/components.Component.html +11 -10
- package/docs/classes/components.HTMLComponent.html +11 -10
- package/docs/classes/components.RootComponent.html +11 -10
- package/docs/functions/accessories.Spinner.html +1 -1
- package/docs/functions/components.createComponent.html +1 -1
- package/docs/functions/components.createRoot.html +1 -1
- package/docs/functions/components.render.html +1 -1
- package/docs/functions/hooks.createContext.html +1 -1
- package/docs/functions/hooks.forwardRef.html +4 -0
- package/docs/functions/hooks.useActionState.html +1 -1
- package/docs/functions/hooks.useImperativeHandle.html +7 -0
- package/docs/functions/hooks.useReducer.html +1 -1
- package/docs/functions/hooks.useState.html +2 -2
- package/docs/functions/hooks.useTransition.html +1 -1
- package/docs/functions/jsx.transpileJSX.html +1 -1
- package/docs/functions/run.lazy.html +7 -0
- package/docs/functions/run.require.html +11 -11
- package/docs/functions/run.run.html +3 -5
- package/docs/functions/run.runScripts.html +1 -1
- package/docs/functions/run.traceError.html +1 -1
- package/docs/functions/transition.CSSTransition.html +1 -1
- package/docs/functions/transition.Transition.html +15 -0
- package/docs/functions/transition.TransitionGroup.html +1 -1
- package/docs/index.html +8 -2
- package/docs/modules/hooks.html +1 -1
- package/docs/modules/jsx.html +1 -1
- package/docs/modules/run.html +1 -1
- package/docs/modules/transition.html +1 -1
- package/docs/static/demos/actionstate.jsx +5 -7
- package/docs/static/demos/context.jsx +2 -4
- package/docs/static/demos/css-transition.jsx +1 -1
- package/docs/static/demos/lazy.jsx +14 -0
- package/docs/static/demos/modal.jsx +14 -16
- package/docs/static/demos/proptypes.jsx +6 -9
- package/docs/static/demos/reducer.jsx +22 -24
- package/docs/static/demos/redux.jsx +1 -1
- package/docs/static/demos/router.jsx +1 -8
- package/docs/static/demos/stopwatch.jsx +1 -1
- package/docs/static/demos/suspense.jsx +5 -7
- package/docs/static/demos/transition.jsx +25 -25
- package/{root/demos/use-differed.jsx → docs/static/demos/use-deffered.jsx} +1 -1
- package/docs/static/demos/usetransition.jsx +2 -4
- package/docs/static/index 2.html +95 -0
- package/docs/static/index.html +27 -29
- package/docs/static/{lilact.development.js → lilact.development.min.js} +690 -315
- package/docs/static/lilact.production.min.js +1 -1
- package/package.json +2 -2
- package/root/demos/actionstate.jsx +5 -7
- package/root/demos/context.jsx +2 -4
- package/root/demos/css-transition.jsx +1 -1
- package/root/demos/lazy.jsx +14 -0
- package/root/demos/modal.jsx +14 -16
- package/root/demos/proptypes.jsx +6 -9
- package/root/demos/reducer.jsx +22 -24
- package/root/demos/redux.jsx +1 -1
- package/root/demos/router.jsx +1 -8
- package/root/demos/stopwatch.jsx +1 -1
- package/root/demos/suspense.jsx +5 -7
- package/root/demos/transition.jsx +25 -25
- package/{docs/static/demos/use-differed.jsx → root/demos/use-deffered.jsx} +1 -1
- package/root/demos/usetransition.jsx +2 -4
- package/root/index 2.html +95 -0
- package/root/index.html +27 -29
- package/root/{lilact.development.js → lilact.development.min.js} +690 -315
- package/root/lilact.production.min.js +1 -1
- package/src/accessories.jsx +12 -11
- package/src/components.jsx +11 -5
- package/src/hooks.jsx +47 -6
- package/src/jsx.js +1 -0
- package/src/lilact.jsx +5 -7
- package/src/pane.jsx +287 -0
- package/src/run.jsx +91 -43
- package/src/transition.jsx +32 -21
- package/webpack.config.js +2 -12
- package/dist/lilact.development.js.map +0 -1
- package/docs/classes/transition.Transition.html +0 -31
- package/docs/variables/jsx.transpilerConfig.html +0 -1
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*! ./checkPropTypes */
|
|
8
|
+
|
|
9
|
+
/*! ./cjs/react-is.development.js */
|
|
10
|
+
|
|
11
|
+
/*! ./factoryWithTypeCheckers */
|
|
12
|
+
|
|
13
|
+
/*! ./jsx.addons.js */
|
|
14
|
+
|
|
15
|
+
/*! ./lib/ReactPropTypesSecret */
|
|
16
|
+
|
|
17
|
+
/*! ./lib/has */
|
|
18
|
+
|
|
19
|
+
/*! ./lilact.jsx */
|
|
20
|
+
|
|
21
|
+
/*! ./vlq.js */
|
|
22
|
+
|
|
23
|
+
/*! object-assign */
|
|
24
|
+
|
|
25
|
+
/*! react-is */
|
|
26
|
+
|
|
27
|
+
/*!********************!*\
|
|
28
|
+
!*** ./src/jsx.js ***!
|
|
29
|
+
\********************/
|
|
30
|
+
|
|
31
|
+
/*!********************!*\
|
|
32
|
+
!*** ./src/vlq.js ***!
|
|
33
|
+
\********************/
|
|
34
|
+
|
|
35
|
+
/*!*********************!*\
|
|
36
|
+
!*** ./src/run.jsx ***!
|
|
37
|
+
\*********************/
|
|
38
|
+
|
|
39
|
+
/*!***************************!*\
|
|
40
|
+
!*** ./src/jsx.addons.js ***!
|
|
41
|
+
\***************************/
|
|
42
|
+
|
|
43
|
+
/*!*************************************!*\
|
|
44
|
+
!*** ./src/lilact.jsx + 27 modules ***!
|
|
45
|
+
\*************************************/
|
|
46
|
+
|
|
47
|
+
/*!****************************************!*\
|
|
48
|
+
!*** ./node_modules/react-is/index.js ***!
|
|
49
|
+
\****************************************/
|
|
50
|
+
|
|
51
|
+
/*!******************************************!*\
|
|
52
|
+
!*** ./node_modules/prop-types/index.js ***!
|
|
53
|
+
\******************************************/
|
|
54
|
+
|
|
55
|
+
/*!********************************************!*\
|
|
56
|
+
!*** ./node_modules/prop-types/lib/has.js ***!
|
|
57
|
+
\********************************************/
|
|
58
|
+
|
|
59
|
+
/*!*********************************************!*\
|
|
60
|
+
!*** ./node_modules/object-assign/index.js ***!
|
|
61
|
+
\*********************************************/
|
|
62
|
+
|
|
63
|
+
/*!***************************************************!*\
|
|
64
|
+
!*** ./node_modules/prop-types/checkPropTypes.js ***!
|
|
65
|
+
\***************************************************/
|
|
66
|
+
|
|
67
|
+
/*!***********************************************************!*\
|
|
68
|
+
!*** ./node_modules/react-is/cjs/react-is.development.js ***!
|
|
69
|
+
\***********************************************************/
|
|
70
|
+
|
|
71
|
+
/*!************************************************************!*\
|
|
72
|
+
!*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
|
73
|
+
\************************************************************/
|
|
74
|
+
|
|
75
|
+
/*!*************************************************************!*\
|
|
76
|
+
!*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
|
|
77
|
+
\*************************************************************/
|