vanduo-framework 1.1.8-docs-update → 1.2.0
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 +5 -5
- package/dist/build-info.json +3 -3
- package/dist/vanduo.cjs.js +720 -111
- package/dist/vanduo.cjs.js.map +3 -3
- package/dist/vanduo.cjs.min.js +11 -11
- package/dist/vanduo.cjs.min.js.map +3 -3
- package/dist/vanduo.css +285 -1
- package/dist/vanduo.css.map +1 -1
- package/dist/vanduo.esm.js +720 -111
- package/dist/vanduo.esm.js.map +3 -3
- package/dist/vanduo.esm.min.js +11 -11
- package/dist/vanduo.esm.min.js.map +3 -3
- package/dist/vanduo.js +720 -111
- package/dist/vanduo.js.map +3 -3
- package/dist/vanduo.min.css +1 -1
- package/dist/vanduo.min.js +11 -11
- package/dist/vanduo.min.js.map +3 -3
- package/js/components/code-snippet.js +5 -3
- package/js/components/doc-search.js +90 -73
- package/js/components/grid.js +22 -22
- package/js/components/theme-customizer.js +20 -4
- package/js/components/tooltips.js +1 -1
- package/js/utils/helpers.js +24 -12
- package/js/vanduo.js +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Vanduo Framework v1.
|
|
1
|
+
# Vanduo Framework v1.2.0
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<img src="vanduo-banner.svg" alt="Vanduo Framework Banner" width="100%">
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
## Overview
|
|
21
21
|
|
|
22
|
-
A lightweight, pure HTML/CSS/JS framework for designing beautiful
|
|
22
|
+
A lightweight, pure HTML/CSS/JS framework for designing beautiful interfaces. Zero runtime dependencies, no mandatory build tools, just clean and simple code.
|
|
23
23
|
|
|
24
24
|
[**Browse Full Documentation →**]([https://vanduo.dev/#docs](https://vanduo.dev/#docs)
|
|
25
25
|
|
|
@@ -88,8 +88,8 @@ Load directly from jsDelivr — no download required:
|
|
|
88
88
|
|
|
89
89
|
**Pin to a specific version** (recommended for production):
|
|
90
90
|
```html
|
|
91
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Nostromo-618/vanduo-framework@v1.
|
|
92
|
-
<script src="https://cdn.jsdelivr.net/gh/Nostromo-618/vanduo-framework@v1.
|
|
91
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Nostromo-618/vanduo-framework@v1.2.0/dist/vanduo.min.css">
|
|
92
|
+
<script src="https://cdn.jsdelivr.net/gh/Nostromo-618/vanduo-framework@v1.2.0/dist/vanduo.min.js"></script>
|
|
93
93
|
<script>Vanduo.init();</script>
|
|
94
94
|
```
|
|
95
95
|
|
|
@@ -153,7 +153,7 @@ This project includes an [`llms.txt`](llms.txt) file — a structured markdown s
|
|
|
153
153
|
Use the hardened upload script to attach only approved bundle artifacts from `dist/`:
|
|
154
154
|
|
|
155
155
|
```bash
|
|
156
|
-
pnpm run release:assets -- v1.
|
|
156
|
+
pnpm run release:assets -- v1.2.0
|
|
157
157
|
```
|
|
158
158
|
|
|
159
159
|
Notes:
|
package/dist/build-info.json
CHANGED