vatts 2.2.4 → 2.2.6
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 +3 -3
- package/dist/react/BuildingPage.js +1 -1
- package/dist/react/DefaultNotFound.js +1 -1
- package/dist/react/renderer-react.js +0 -1
- package/dist/vue/BuildingPage.vue +1 -1
- package/dist/vue/DefaultNotFound.vue +1 -1
- package/dist/vue/entry.client.js +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<picture>
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/
|
|
4
|
-
<img alt="Vatts.js logo" src="https://raw.githubusercontent.com/
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png">
|
|
4
|
+
<img alt="Vatts.js logo" src="https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png" width="128">
|
|
5
5
|
</picture>
|
|
6
6
|
<h1>Vatts.js</h1>
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/vatts)
|
|
9
9
|
[](./LICENSE)
|
|
10
|
-
[](https://github.com/murillo-frazao-cunha/vatts.js)
|
|
11
11
|
|
|
12
12
|
[](#)
|
|
13
13
|
</div>
|
|
@@ -241,7 +241,7 @@ function BuildingScreen() {
|
|
|
241
241
|
react_1.default.createElement("div", { className: "content" },
|
|
242
242
|
react_1.default.createElement("div", { className: "logo-wrapper" },
|
|
243
243
|
react_1.default.createElement("div", { className: "logo-glow" }),
|
|
244
|
-
react_1.default.createElement("img", { src: "https://raw.githubusercontent.com/
|
|
244
|
+
react_1.default.createElement("img", { src: "https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png", alt: "Vatts Logo" })),
|
|
245
245
|
react_1.default.createElement("h1", null,
|
|
246
246
|
"Vatts",
|
|
247
247
|
react_1.default.createElement("span", null, ".js")),
|
|
@@ -241,7 +241,7 @@ function ErrorPage() {
|
|
|
241
241
|
react_1.default.createElement("div", { style: { width: 6, height: 6, borderRadius: '50%', background: theme.cyan, boxShadow: `0 0 6px ${theme.cyan}` } }),
|
|
242
242
|
react_1.default.createElement("span", { style: { color: theme.cyan } }, "Not Found")))),
|
|
243
243
|
react_1.default.createElement("a", { href: "https://npmjs.com/package/vatts", target: "_blank", rel: "noopener noreferrer", style: brandStyle, onMouseEnter: (e) => e.currentTarget.style.opacity = '1', onMouseLeave: (e) => e.currentTarget.style.opacity = '0.4' },
|
|
244
|
-
react_1.default.createElement("img", { src: "https://raw.githubusercontent.com/
|
|
244
|
+
react_1.default.createElement("img", { src: "https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png", alt: "Vatts Logo", style: { width: 20, height: 20 } }),
|
|
245
245
|
react_1.default.createElement("span", { style: { fontSize: 13, fontWeight: 600, color: '#fff' } },
|
|
246
246
|
"Vatts",
|
|
247
247
|
react_1.default.createElement("span", { style: { color: theme.cyan } }, ".js"))))));
|
|
@@ -117,7 +117,6 @@ async function render({ req, res, route, params, allRoutes }) {
|
|
|
117
117
|
const { generateMetadata } = route;
|
|
118
118
|
const isProduction = !req.hwebDev;
|
|
119
119
|
const hotReloadManager = req.hotReloadManager;
|
|
120
|
-
// SILENCIAR CONSOLE: Inicia o silêncio para evitar logs de renderização
|
|
121
120
|
let assets = null;
|
|
122
121
|
let metadata = { title: 'Vatts App' };
|
|
123
122
|
let layoutInfo = null;
|
|
@@ -246,7 +246,7 @@ const clientReloadScript = `
|
|
|
246
246
|
<div class="content">
|
|
247
247
|
<div class="logo-wrapper">
|
|
248
248
|
<div class="logo-glow"></div>
|
|
249
|
-
<img src="https://raw.githubusercontent.com/
|
|
249
|
+
<img src="https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png" alt="Vatts Logo" />
|
|
250
250
|
</div>
|
|
251
251
|
|
|
252
252
|
<h1>Vatts<span>.js</span></h1>
|
|
@@ -86,7 +86,7 @@ const reload = () => {
|
|
|
86
86
|
</div>
|
|
87
87
|
|
|
88
88
|
<a href="https://npmjs.com/package/vatts" target="_blank" rel="noopener noreferrer" class="brand-link">
|
|
89
|
-
<img src="https://raw.githubusercontent.com/
|
|
89
|
+
<img src="https://raw.githubusercontent.com/murillo-frazao-cunha/vatts-docs/master/public/logo.png" alt="Vatts Logo" class="brand-logo" />
|
|
90
90
|
<span class="brand-text">
|
|
91
91
|
Vatts<span class="brand-highlight">.js</span>
|
|
92
92
|
</span>
|
package/dist/vue/entry.client.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vatts",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"description": "Vatts.js is a high-level framework for building web applications with ease and speed. It provides a robust set of tools and features to streamline development and enhance productivity.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"author": "mfraz",
|