@decido/plugin-frubeala-ui 3.0.0 → 4.0.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.
- package/CHANGELOG.md +21 -0
- package/README.md +31 -0
- package/package.json +3 -3
- package/dist/assets/__federation_expose_Plugin-WvTCD-o4.js +0 -8665
- package/dist/assets/__federation_fn_import-eohqPj63.js +0 -423
- package/dist/assets/__federation_shared_react-B_Erx0pB.js +0 -4
- package/dist/assets/__federation_shared_react-dom-BYCW6Jpt.js +0 -6672
- package/dist/assets/__federation_shared_zustand-BE2cJPMx.js +0 -194
- package/dist/assets/core-Bo9SoPMG.js +0 -142
- package/dist/assets/event-CGIJhKma.js +0 -63
- package/dist/assets/index-DLaxava2.js +0 -65
- package/dist/assets/index-Daqo0uNT.js +0 -122
- package/dist/assets/index-S0MgceH3.js +0 -272
- package/dist/assets/remoteEntry.js +0 -80
- package/dist/index.html +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @decido/plugin-frubeala-ui
|
|
2
2
|
|
|
3
|
+
## 4.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- readme
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @decido/kernel-bridge@4.0.1
|
|
10
|
+
- @decido/shell@4.0.1
|
|
11
|
+
|
|
12
|
+
## 4.0.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- build
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @decido/kernel-bridge@4.0.0
|
|
22
|
+
- @decido/shell@4.0.0
|
|
23
|
+
|
|
3
24
|
## 3.0.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# 🚀 @decido/plugin-frubeala-ui
|
|
2
|
+
|
|
3
|
+
> Frubeala Ui plugin for Decido OS
|
|
4
|
+
|
|
5
|
+
Bienvenido a la documentación oficial de **@decido/plugin-frubeala-ui**, un componente integral del ecosistema **Decido OS**.
|
|
6
|
+
|
|
7
|
+
## 📦 Instalación
|
|
8
|
+
|
|
9
|
+
Para aprovisionar este módulo dentro de otra área del monorepo o consumirlo remotamente:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @decido/plugin-frubeala-ui
|
|
13
|
+
# o mediante el gestor oficial del monorepo
|
|
14
|
+
pnpm add @decido/plugin-frubeala-ui
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 🔧 Estructura y Dependencias
|
|
18
|
+
|
|
19
|
+
Este paquete está diseñado para interoperar de forma nativa con la infraestructura central.
|
|
20
|
+
Para su correcto funcionamiento en un entorno aislado (Sandboxed), se apoya en los siguientes cimientos tecnológicos:
|
|
21
|
+
|
|
22
|
+
- `@decido/kernel-bridge`
|
|
23
|
+
- `@decido/shell`
|
|
24
|
+
- `react`
|
|
25
|
+
- `react-dom`
|
|
26
|
+
- `lucide-react`
|
|
27
|
+
|
|
28
|
+
## 🔐 Licencia y Privacidad
|
|
29
|
+
El código de este componente se encuentra auditado y restringido (Sin Sourcemaps).
|
|
30
|
+
Propiedad Intelectual Protegida - Framework Decido OS.
|
|
31
|
+
Distribuido bajo licencia **UNLICENSED**.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decido/plugin-frubeala-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Frubeala Ui plugin for Decido OS",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"react": "^18.3.1",
|
|
21
21
|
"react-dom": "^18.3.1",
|
|
22
|
-
"@decido/
|
|
23
|
-
"@decido/
|
|
22
|
+
"@decido/kernel-bridge": "4.0.1",
|
|
23
|
+
"@decido/shell": "4.0.1"
|
|
24
24
|
},
|
|
25
25
|
"license": "UNLICENSED",
|
|
26
26
|
"scripts": {
|