limbo-component 1.6.5 → 1.6.7
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 +4 -5
- package/dist/limbo.cjs.js +3 -3
- package/dist/limbo.cjs.map +1 -1
- package/dist/limbo.css +1 -1
- package/dist/limbo.es.js +72 -32
- package/dist/limbo.es.map +1 -1
- package/dist/limbo.min.js +2 -2
- package/dist/limbo.min.js.map +1 -1
- package/dist/limbo.umd.js +2 -2
- package/dist/limbo.umd.js.map +1 -1
- package/dist/types/components/CropperView.d.ts.map +1 -1
- package/dist/types/components/ImageCard.d.ts.map +1 -1
- package/dist/types/components/ImageVariantsModal.d.ts.map +1 -1
- package/dist/types/services/responseAdapters.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,11 +37,11 @@ pnpm add limbo-component
|
|
|
37
37
|
<!-- Incluir CSS -->
|
|
38
38
|
<link
|
|
39
39
|
rel="stylesheet"
|
|
40
|
-
href="https://
|
|
40
|
+
href="https://cdn.yourcdnsite.com/limbo-component/dist/limbo.css"
|
|
41
41
|
/>
|
|
42
42
|
|
|
43
43
|
<!-- Incluir JS (React ya incluido) -->
|
|
44
|
-
<script src="https://
|
|
44
|
+
<script src="https://cdn.yourcdnsite.com/limbo-component/dist/limbo.min.js"></script>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
## 🚀 Uso Rápido
|
|
@@ -56,7 +56,7 @@ import "limbo-component/css";
|
|
|
56
56
|
Limbo.configure({
|
|
57
57
|
apiKey: "your-api-key",
|
|
58
58
|
prod: true,
|
|
59
|
-
url: "https://
|
|
59
|
+
url: "https://api.site.com",
|
|
60
60
|
});
|
|
61
61
|
|
|
62
62
|
// Crear instancia embebida
|
|
@@ -181,9 +181,8 @@ document.addEventListener("limbo:select", (e) => {
|
|
|
181
181
|
|
|
182
182
|
## 📄 Licencia
|
|
183
183
|
|
|
184
|
-
|
|
184
|
+
Propierary © Lefebvre El Derecho S.A.
|
|
185
185
|
|
|
186
186
|
## 🔗 Links
|
|
187
187
|
|
|
188
|
-
- [Documentación completa](https://limbo.lefebvre.es/docs)
|
|
189
188
|
- [Changelog](./CHANGELOG.md)
|