lilact 0.11.5 → 0.13.1

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.
Files changed (44) hide show
  1. package/README.md +3 -2
  2. package/dist/lilact.development.js +369 -243
  3. package/dist/lilact.development.js.map +1 -1
  4. package/dist/lilact.development.min.js +1 -1
  5. package/dist/lilact.development.min.js.LICENSE.txt +1 -1
  6. package/dist/lilact.development.min.js.map +1 -1
  7. package/dist/lilact.production.min.js +1 -1
  8. package/dist/lilact.production.min.js.map +1 -1
  9. package/docs/assets/hierarchy.js +1 -1
  10. package/docs/assets/highlight.css +4 -4
  11. package/docs/assets/navigation.js +1 -1
  12. package/docs/assets/search.js +1 -1
  13. package/docs/classes/accessories.ErrorBoundary.html +11 -11
  14. package/docs/classes/accessories.Suspense.html +10 -10
  15. package/docs/classes/components.Component.html +11 -11
  16. package/docs/classes/components.HTMLComponent.html +11 -11
  17. package/docs/classes/components.RootComponent.html +12 -12
  18. package/docs/functions/accessories.DragHandle.html +6 -0
  19. package/docs/functions/accessories.Spinner.html +1 -1
  20. package/docs/functions/components.createComponent.html +1 -1
  21. package/docs/functions/components.createRoot.html +1 -1
  22. package/docs/functions/components.render.html +1 -1
  23. package/docs/hierarchy.html +1 -1
  24. package/docs/index.html +3 -2
  25. package/docs/modules/accessories.html +1 -1
  26. package/docs/modules.html +1 -1
  27. package/docs/static/demos/pane.jsx +3 -3
  28. package/docs/static/index.html +1 -1
  29. package/docs/static/lilact.development.js +369 -243
  30. package/docs/static/lilact.development.min.js +1 -1
  31. package/docs/static/lilact.production.min.js +1 -1
  32. package/docs/variables/{pane.ResizablePane.html → accessories.SplitPane.html} +3 -3
  33. package/package.json +1 -1
  34. package/root/demos/pane.jsx +3 -3
  35. package/root/index.html +1 -1
  36. package/root/lilact.development.js +369 -243
  37. package/root/lilact.development.min.js +1 -1
  38. package/root/lilact.production.min.js +1 -1
  39. package/src/accessories.jsx +391 -0
  40. package/src/components.jsx +24 -4
  41. package/src/lilact.jsx +1 -5
  42. package/typedoc.json +0 -1
  43. package/docs/modules/pane.html +0 -1
  44. package/src/pane.jsx +0 -270
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 `80kb` minified and around `27kb` gzipped, and includes its whole API.
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 `32kb` gzipped, and includes its whole API.
33
33
 
34
34
  `Lilact` is very fast, uses minimal resources, and handles memory very efficiently.
35
35
 
@@ -66,7 +66,8 @@ For convenience, it already includes components such as:
66
66
  and helper components like:
67
67
 
68
68
  - `Spinner`
69
- - `ResizablePane`
69
+ - `SplitPane`
70
+ - `DragHandle`
70
71
 
71
72
  It also includes a specific timeout implementation that can be paused and resumed at will. `Lilact`’s `Suspense` includes additional features beyond the standard API.
72
73