@yoltra/devtools-ui 0.7.0 → 0.8.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Yoltra — Copyright (c) 2026 Manu Ramirez <@pixerael>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.es.md CHANGED
@@ -4,6 +4,11 @@
4
4
 
5
5
  > 👉 🇲🇽 Versión en Español&nbsp; | &nbsp;[ 🇺🇸 English Version](./README.md)&nbsp;
6
6
 
7
+ [![versión npm](https://img.shields.io/npm/v/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
8
+ [![descargas npm](https://img.shields.io/npm/dm/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
9
+ [![tipos](https://img.shields.io/npm/types/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
10
+ [![Licencia](https://img.shields.io/npm/l/@yoltra/devtools-ui)](https://github.com/yoltra/yoltra/blob/main/LICENSE)
11
+
7
12
  **Hooks de React y lógica de negocio compartidos por las UIs de Yoltra DevTools.**
8
13
 
9
14
  `@yoltra/devtools-ui` es una capa de lógica sin interfaz que ofrece hooks de React para conectarse
package/README.md CHANGED
@@ -4,6 +4,11 @@
4
4
 
5
5
  > [ 🇲🇽 Versión en Español](./README.es.md)&nbsp; | 👉 🇺🇸 English Version &nbsp;
6
6
 
7
+ [![npm version](https://img.shields.io/npm/v/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
8
+ [![npm downloads](https://img.shields.io/npm/dm/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
9
+ [![types](https://img.shields.io/npm/types/@yoltra/devtools-ui)](https://www.npmjs.com/package/@yoltra/devtools-ui)
10
+ [![License](https://img.shields.io/npm/l/@yoltra/devtools-ui)](https://github.com/yoltra/yoltra/blob/main/LICENSE)
11
+
7
12
  **Shared React hooks and business logic for Yoltra DevTools UIs.**
8
13
 
9
14
  `@yoltra/devtools-ui` is a headless logic layer that provides React hooks for connecting to the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoltra/devtools-ui",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Shared React hooks and business logic for Yoltra DevTools UIs",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -17,7 +17,8 @@
17
17
  ],
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/yoltra/yoltra.git"
20
+ "url": "https://github.com/yoltra/yoltra.git",
21
+ "directory": "devtools/devtools-ui"
21
22
  },
22
23
  "bugs": {
23
24
  "url": "https://github.com/yoltra/yoltra/issues"
@@ -34,14 +35,15 @@
34
35
  }
35
36
  },
36
37
  "files": [
37
- "dist"
38
+ "dist",
39
+ "LICENSE"
38
40
  ],
39
41
  "sideEffects": false,
40
42
  "peerDependencies": {
41
43
  "react": "^18 || ^19"
42
44
  },
43
45
  "dependencies": {
44
- "@yoltra/devtools-protocol": "0.7.0"
46
+ "@yoltra/devtools-protocol": "0.8.0"
45
47
  },
46
48
  "devDependencies": {
47
49
  "@types/react": "^19.1.8",