ziex 0.1.0-dev.593 → 0.1.0-dev.598

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 (3) hide show
  1. package/README.md +3 -4
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -81,11 +81,10 @@ const zx = @import("zx");
81
81
  ## Feature Checklist
82
82
 
83
83
  - [x] Server Side Rendering (SSR)
84
- - [ ] `on`event handler
85
84
  - [x] Streaming
86
85
  - [x] Static Site Generation (SSG)
87
- - [ ] `getStaticParams`, `getStaticProps`
88
- - [ ] Client Side Rendering (CSR) via WebAssembly (_WIP_)
86
+ - [x] `options.static.params`, `options.static.getParams`
87
+ - [ ] Client Side Rendering (CSR) via WebAssembly (_Alpha_)
89
88
  - [x] Virtual DOM and diffing
90
89
  - [x] Rendering only changed nodes
91
90
  - [x] `on`event handler
@@ -128,7 +127,7 @@ const zx = @import("zx");
128
127
  - [x] Builtin TailwindCSS and Esbuild
129
128
  - [x] Command based plugin system
130
129
  - [ ] Source based plugin system
131
- - [ ] Context (configurable)
130
+ - [x] Context (configurable)
132
131
  - [x] App
133
132
  - [x] Layout
134
133
  - [x] Page
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // src/index.ts
2
2
  var zx = {
3
3
  name: "zx",
4
- version: "0.1.0-dev.593",
4
+ version: "0.1.0-dev.598",
5
5
  description: "ZX is a framework for building web applications with Zig.",
6
6
  repository: "https://github.com/nurulhudaapon/zx",
7
7
  fingerprint: 14616285862371232000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ziex",
3
- "version": "0.1.0-dev.593",
3
+ "version": "0.1.0-dev.598",
4
4
  "description": "ZX is a framework for building web applications with Zig.",
5
5
  "main": "index.js",
6
6
  "type": "module",