limbo-component 1.0.0 → 1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +0 -9
  2. package/README.md +13 -15
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -113,12 +113,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
113
113
 
114
114
  - 🎉 Proyecto inicial
115
115
  - 📋 Estructura base del componente
116
-
117
- ---
118
-
119
- [1.0.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v1.0.0
120
- [0.5.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v0.5.0
121
- [0.4.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v0.4.0
122
- [0.3.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v0.3.0
123
- [0.2.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v0.2.0
124
- [0.1.0]: https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/releases/tag/v0.1.0
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @limbojs/component-limbo
1
+ # limbo-component
2
2
 
3
3
  > Componente React altamente configurable para gestión de imágenes en portales web. Incluye galería, subida, recortador, y servicios de IA/Stock.
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@limbojs/component-limbo.svg)](https://www.npmjs.com/package/@limbojs/component-limbo)
5
+ [![npm version](https://img.shields.io/npm/v/limbo-component.svg)](https://www.npmjs.com/package/limbo-component)
6
6
  [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
7
7
 
8
8
  ## 🌟 Características
@@ -24,21 +24,21 @@
24
24
  ### NPM / Yarn / PNPM
25
25
 
26
26
  ```bash
27
- npm install @limbojs/component-limbo
27
+ npm install limbo-component
28
28
  # o
29
- yarn add @limbojs/component-limbo
29
+ yarn add limbo-component
30
30
  # o
31
- pnpm add @limbojs/component-limbo
31
+ pnpm add limbo-component
32
32
  ```
33
33
 
34
34
  ### CDN (UMD)
35
35
 
36
36
  ```html
37
37
  <!-- Incluir CSS -->
38
- <link rel="stylesheet" href="https://unpkg.com/@limbojs/component-limbo/dist/limbo.css">
38
+ <link rel="stylesheet" href="https://unpkg.com/limbo-component/dist/limbo.css">
39
39
 
40
40
  <!-- Incluir JS (React ya incluido) -->
41
- <script src="https://unpkg.com/@limbojs/component-limbo/dist/limbo.min.js"></script>
41
+ <script src="https://unpkg.com/limbo-component/dist/limbo.min.js"></script>
42
42
  ```
43
43
 
44
44
  ## 🚀 Uso Rápido
@@ -46,14 +46,14 @@ pnpm add @limbojs/component-limbo
46
46
  ### Modo Embed (ESM)
47
47
 
48
48
  ```javascript
49
- import Limbo from '@limbojs/component-limbo';
50
- import '@limbojs/component-limbo/css';
49
+ import Limbo from 'limbo-component';
50
+ import 'limbo-component/css';
51
51
 
52
52
  // Configurar globalmente
53
53
  Limbo.configure({
54
54
  apiKey: 'your-api-key',
55
55
  prod: true,
56
- url: 'https://api.limbo.com'
56
+ url: 'https://limbo.lefebvre.es'
57
57
  });
58
58
 
59
59
  // Crear instancia embebida
@@ -70,12 +70,12 @@ Limbo.create({
70
70
  <!DOCTYPE html>
71
71
  <html>
72
72
  <head>
73
- <link rel="stylesheet" href="https://unpkg.com/@limbojs/component-limbo/dist/limbo.css">
73
+ <link rel="stylesheet" href="https://unpkg.com/limbo-component/dist/limbo.css">
74
74
  </head>
75
75
  <body>
76
76
  <div id="limbo-app"></div>
77
77
 
78
- <script src="https://unpkg.com/@limbojs/component-limbo/dist/limbo.min.js"></script>
78
+ <script src="https://unpkg.com/limbo-component/dist/limbo.min.js"></script>
79
79
  <script>
80
80
  // Configurar
81
81
  Limbo.configure({
@@ -147,7 +147,5 @@ ISC © LefebvreWEB
147
147
 
148
148
  ## 🔗 Links
149
149
 
150
- - [Documentación completa](https://docs.limbo.dev)
151
- - [API Backend](https://github.com/Lefebvre-El-Derecho-SA/api-limbo)
152
- - [Reportar issues](https://github.com/Lefebvre-El-Derecho-SA/component-image-manager-bundle/issues)
150
+ - [Documentación completa](https://limbo.lefebvre.es/docs)
153
151
  - [Changelog](./CHANGELOG.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "limbo-component",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Limbo - Highly configurable React image manager component for web portals",