uniweb 0.3.0 → 0.3.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 (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -169,12 +169,22 @@ The parser extracts semantic elements from markdown—`title` from the first hea
169
169
 
170
170
  **Learn more:**
171
171
 
172
+ - [Site Configuration](./docs/site-configuration.md) — Complete site.yml reference
173
+ - [Page Configuration](./docs/page-configuration.md) — Complete page.yml reference
172
174
  - [Content Structure](./docs/content-structure.md) — How content is parsed and structured
175
+ - [Navigation Patterns](./docs/navigation-patterns.md) — Building navbars, menus, and sidebars
176
+ - [Special Sections](./docs/special-sections.md) — @header, @footer, and sidebars
177
+ - [Linking](./docs/linking.md) — Stable page references that survive reorganization
173
178
  - [Component Metadata](./docs/component-metadata.md) — Full meta.js schema reference
179
+ - [Foundation Configuration](./docs/foundation-configuration.md) — CSS variables and custom Layout
174
180
  - [Site Theming](./docs/site-theming.md) — Colors, typography, and dark mode
181
+ - [Internationalization](./docs/internationalization.md) — Multi-language sites
175
182
  - [Data Fetching](./docs/data-fetching.md) — Load external data from files or APIs
176
183
  - [Dynamic Routes](./docs/dynamic-routes.md) — Generate pages from data (blogs, catalogs)
177
184
  - [Content Collections](./docs/content-collections.md) — Manage articles, team members, and more
185
+ - [Versioning](./docs/versioning.md) — Multi-version documentation
186
+ - [Site Search](./docs/search.md) — Built-in full-text search
187
+ - [Runtime API](./docs/runtime-api.md) — Hooks and core objects
178
188
 
179
189
  ## Foundations Are Portable
180
190
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -37,9 +37,9 @@
37
37
  "js-yaml": "^4.1.0",
38
38
  "prompts": "^2.4.2",
39
39
  "tar": "^7.0.0",
40
- "@uniweb/build": "0.2.0",
41
- "@uniweb/kit": "0.2.0",
42
- "@uniweb/core": "0.2.0",
43
- "@uniweb/runtime": "0.3.0"
40
+ "@uniweb/build": "0.2.1",
41
+ "@uniweb/core": "0.2.1",
42
+ "@uniweb/runtime": "0.3.0",
43
+ "@uniweb/kit": "0.2.1"
44
44
  }
45
45
  }