juxscript 1.0.4 → 1.0.6
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 +6 -1
- package/lib/components/barchart.ts +1248 -0
- package/lib/components/checkbox.ts +8 -37
- package/lib/components/docs-data.json +242 -5
- package/lib/components/input.ts +347 -4
- package/lib/components/select.ts +73 -40
- package/lib/components/sidebar.ts +1 -1
- package/lib/jux.ts +8 -2
- package/lib/presets/notion.css +1 -1
- package/lib/themes/charts.js +126 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
# The web needs a higher level of abstraction: Meet **JUX**
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
```diff
|
|
5
|
+
- IF YOU ARE CURRENTLY USING THIS PACKAGE COOL! But it is still a little fragile. We are working on opening our repo to public and working on our documentation pages. Stay tuned! For now, you will see our roadmap here!
|
|
6
|
+
|
|
7
|
+
```
|
|
3
8
|
- [X] Layouts (100% done.)
|
|
4
9
|
- [ ] Render Dependency Tree
|
|
5
10
|
> Idea here is, one element may be a predicate for another. Will need promises. **predicting problems with slow-loading components that depend on containers from other components. May to to separate concerns with container "building" vs. content addition OR use async processes (promises).
|
|
6
11
|
- [X] Reactivity (90% done.)
|
|
7
12
|
- [ ] Client Components (99% of what would be needed.)
|
|
13
|
+
- [ ] Charts
|
|
8
14
|
- [ ] Poor Intellisense support? Could be this issue.
|
|
9
15
|
- [ ] Api Wrapper
|
|
10
16
|
- [X] Params/Active State for Menu/Nav matching - built in.
|
|
11
17
|
- [ ] CDN Bundle (import CDN/'state', 'jux' from cdn.)
|
|
12
18
|
- [ ] Icon
|
|
13
19
|
- [ ] Cross Page Store.
|
|
14
|
-
|
|
15
20
|
- [ ] Quickstart Boilerplates (20% done,notion.jux)
|
|
16
21
|
- [ ] Mobile Nav
|
|
17
22
|
- [ ] `npx jux present notion|default` etc..
|