@thi.ng/hiccup 4.2.34 → 4.2.36
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/CHANGELOG.md +1 -1
- package/README.md +15 -3
- package/package.json +10 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -51,9 +51,12 @@ power of ES6 to directly define fully data-driven, purely functional and
|
|
|
51
51
|
easily *composable* components for static serialization to HTML &
|
|
52
52
|
friends.
|
|
53
53
|
|
|
54
|
-
This library is suitable for static website generation, server side
|
|
55
|
-
|
|
56
|
-
[@thi.ng/
|
|
54
|
+
This library is suitable for static website generation, server side rendering
|
|
55
|
+
etc. For interactive use cases, please see companion packages
|
|
56
|
+
[@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom)
|
|
57
|
+
(or the older
|
|
58
|
+
[@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom))
|
|
59
|
+
and their various support packages.
|
|
57
60
|
|
|
58
61
|
### Features
|
|
59
62
|
|
|
@@ -78,6 +81,7 @@ serialization time. Examples below...
|
|
|
78
81
|
- `.innerHTML` body generation
|
|
79
82
|
- SVG asset creation
|
|
80
83
|
- Shape trees for declarative canvas API drawing
|
|
84
|
+
- Generic intermediate representation format for many other use cases...
|
|
81
85
|
|
|
82
86
|
### No special sauce needed (or wanted)
|
|
83
87
|
|
|
@@ -127,10 +131,17 @@ iterable
|
|
|
127
131
|
|
|
128
132
|
## Related packages
|
|
129
133
|
|
|
134
|
+
- [@thi.ng/axidraw](https://github.com/thi-ng/umbrella/tree/develop/packages/axidraw) - Minimal AxiDraw plotter/drawing machine controller for Node.js
|
|
135
|
+
- [@thi.ng/geom](https://github.com/thi-ng/umbrella/tree/develop/packages/geom) - Functional, polymorphic API for 2D geometry types & SVG generation
|
|
136
|
+
- [@thi.ng/geom-axidraw](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-axidraw) - Conversion and preparation of thi.ng/geom shapes & shape groups to/from AxiDraw pen plotter draw commands
|
|
130
137
|
- [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) - Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors
|
|
131
138
|
- [@thi.ng/hdom-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom-canvas) - [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) component wrapper for declarative canvas scenegraphs
|
|
139
|
+
- [@thi.ng/hdom-components](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom-components) - Raw, skinnable UI & SVG components for [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom)
|
|
132
140
|
- [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) - Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) compatible
|
|
133
141
|
- [@thi.ng/rdom-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom-canvas) - [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) component wrapper for [@thi.ng/hiccup-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-canvas) and declarative canvas drawing
|
|
142
|
+
- [@thi.ng/rdom-components](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom-components) - Collection of unstyled, customizable components for [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom)
|
|
143
|
+
- [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers) - Lightweight transducer implementations for ES6 / TypeScript
|
|
144
|
+
- [@thi.ng/zipper](https://github.com/thi-ng/umbrella/tree/develop/packages/zipper) - Functional tree editing, manipulation & navigation
|
|
134
145
|
|
|
135
146
|
### Blog posts
|
|
136
147
|
|
|
@@ -180,6 +191,7 @@ A selection:
|
|
|
180
191
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/commit-table-ssr.png" width="240"/> | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-table-ssr) |
|
|
181
192
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/hdom-canvas/hdom-canvas-shapes-results.png" width="240"/> | Various hdom-canvas shape drawing examples & SVG conversion / export | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-shapes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-shapes) |
|
|
182
193
|
| | Hiccup / hdom DOM hydration example | [Demo](https://demo.thi.ng/umbrella/hydrate-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hydrate-basics) |
|
|
194
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/markdown-parser.jpg" width="240"/> | Markdown to Hiccup to HTML parser / transformer | [Demo](https://demo.thi.ng/umbrella/markdown/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/markdown) |
|
|
183
195
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/package-stats.png" width="240"/> | CLI util to visualize umbrella pkg stats | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/package-stats) |
|
|
184
196
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pointfree-svg.png" width="240"/> | Generate SVG using pointfree DSL | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-svg) |
|
|
185
197
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rstream-grid.jpg" width="240"/> | Interactive grid generator, SVG generation & export, undo/redo support | [Demo](https://demo.thi.ng/umbrella/rstream-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-grid) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.36",
|
|
4
4
|
"description": "HTML/SVG/XML serialization of nested data structures, iterables & closures",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -113,12 +113,19 @@
|
|
|
113
113
|
}
|
|
114
114
|
],
|
|
115
115
|
"related": [
|
|
116
|
+
"axidraw",
|
|
117
|
+
"geom",
|
|
118
|
+
"geom-axidraw",
|
|
116
119
|
"hdom",
|
|
117
120
|
"hdom-canvas",
|
|
121
|
+
"hdom-components",
|
|
118
122
|
"rdom",
|
|
119
|
-
"rdom-canvas"
|
|
123
|
+
"rdom-canvas",
|
|
124
|
+
"rdom-components",
|
|
125
|
+
"transducers",
|
|
126
|
+
"zipper"
|
|
120
127
|
],
|
|
121
128
|
"year": 2016
|
|
122
129
|
},
|
|
123
|
-
"gitHead": "
|
|
130
|
+
"gitHead": "31dd56eba72edd73a3ced5002c0f5145ce3d42d6\n"
|
|
124
131
|
}
|