@rsltda/components 1.0.13 → 1.0.15
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 +1 -1
- package/package.json +2 -1
- package/rs-components.es.js +1 -0
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ import "@rsltda/components/rs-components.es.js";
|
|
|
63
63
|
|
|
64
64
|
`rs-map` primero intenta leer puntos desde `IndexedDB` y usa `localStorage` como respaldo.
|
|
65
65
|
|
|
66
|
-
Si aun no existe cache local, el componente puede
|
|
66
|
+
Si aun no existe cache local, el componente puede mostrar una primera carga optimizada mientras actualiza los datos y persiste el resultado en cache para las siguientes visitas.
|
|
67
67
|
|
|
68
68
|
## Tipos y tooling
|
|
69
69
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsltda/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Libreria de Web Components (incluye <rs-map>)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
|
+
"rs-components.es.js",
|
|
8
9
|
"custom-elements.json"
|
|
9
10
|
],
|
|
10
11
|
"main": "dist/rs-components.iife.js",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/rs-components.es.js';
|