lightview 1.6.2-b → 1.6.3-b
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 +35 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# lightview v1.
|
|
1
|
+
# lightview v1.6.3b (BETA)
|
|
2
2
|
|
|
3
3
|
Small, simple, powerful web UI and micro front end creation ...
|
|
4
4
|
|
|
@@ -6,3 +6,37 @@ Great ideas from Svelte, React, Vue and Riot combined into one small tool: < 7K
|
|
|
6
6
|
|
|
7
7
|
See the docs and examples at [https://lightview.dev](https://lightview.dev).
|
|
8
8
|
|
|
9
|
+
Meanwhile, here is what you get:
|
|
10
|
+
|
|
11
|
+
1) Single file and <a href="#local-templates" target=_self>template</a> components.
|
|
12
|
+
|
|
13
|
+
1) [Sandboxed remote components](https://lightview.dev/#sandboxed-components) and micro front ends</a>.
|
|
14
|
+
|
|
15
|
+
1) [Unit testable](https://lightview.dev/#unit-testing) components and a [debug mode](https://lightview.dev/#debugging) for using standard JavaScript debuggers</a>.
|
|
16
|
+
|
|
17
|
+
1) No pre-deployment transpilation/compilation required.
|
|
18
|
+
|
|
19
|
+
1) Svelte like variable usage, i.e. write your state modifying code like normal code.
|
|
20
|
+
|
|
21
|
+
1) Extended variable type declarations including `min`, `max` and `step` on `number` or limits on `string` and `array` lengths.
|
|
22
|
+
|
|
23
|
+
1) [TypeScript like](https://lightview.dev/#variables) runtime type checking of variables in components.
|
|
24
|
+
|
|
25
|
+
1) Automatic server retrieval and update of variables declared as `remote`.
|
|
26
|
+
|
|
27
|
+
1) Automatic import, export, cross-component sync, or reactive response to attributes/props/variables. See [superVariable](https://lightview.dev/#super-variable).
|
|
28
|
+
|
|
29
|
+
1) [Automatic form variable creation and binding](https://lightview.dev/#auto-binding-forms).
|
|
30
|
+
|
|
31
|
+
1) [Attribute directives](https://lightview.dev/#attribute-directives) like `l-if`, and a single powerful `l-for` that handles array and object keys, values, and entries.
|
|
32
|
+
|
|
33
|
+
1) Reactive string template literals for content and attribute value replacement.
|
|
34
|
+
|
|
35
|
+
1) No virtual DOM. The Lightview dependency tracker laser targets just those nodes that need updates.
|
|
36
|
+
|
|
37
|
+
1) SPA, and MPA friendly ... somewhat SEO friendly and short steps away from fully SEO friendly.
|
|
38
|
+
|
|
39
|
+
1) A [component library](https://lightview.dev/components) including charts and gauges.
|
|
40
|
+
|
|
41
|
+
1) Lots of live [editable examples](https://lightview.dev/#examples).
|
|
42
|
+
|
package/package.json
CHANGED