@dotrino/support 0.8.1 → 0.9.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 +0 -0
- package/README.md +1 -1
- package/package.json +18 -4
- package/src/coin.js +0 -0
- package/src/coin.png +0 -0
- package/src/coin.svg +0 -0
- package/src/index.d.ts +0 -0
- package/src/index.js +6 -1
- package/src/monedalogo.svg +0 -0
- package/src/monedabg.png +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @dotrino/support
|
|
2
2
|
|
|
3
|
-
> **Parte del ecosistema [Dotrino](https://dotrino.com).**
|
|
3
|
+
> **Parte del ecosistema [Dotrino](https://dotrino.com).** Dotrino es un ecosistema de aplicaciones centradas en la privacidad de los datos: tu información es tuya, y las decisiones sobre ella también — qué compartes, con quién, cuándo y por qué. Sin anuncios, sin cookies, sin rastreo de datos, sin vender tu identidad a nadie.
|
|
4
4
|
|
|
5
5
|
Web Component (`<dotrino-support>`) con un **modal de soporte/donaciones**
|
|
6
6
|
reutilizable por **cualquier app del ecosistema Dotrino**: las hechas en
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotrino/support",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Web Component (custom element) de modal de soporte/donaciones reutilizable por cualquier app del ecosistema Dotrino. Autohosteado, sin JS de terceros ni cookies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -28,11 +28,25 @@
|
|
|
28
28
|
],
|
|
29
29
|
"author": "seyacat",
|
|
30
30
|
"license": "MIT",
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@dotrino/store": "0.7.0"
|
|
33
|
-
},
|
|
34
31
|
"repository": {
|
|
35
32
|
"type": "git",
|
|
36
33
|
"url": "git+https://github.com/imdotrino/dotrino-support.git"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/node": "^22.0.0",
|
|
37
|
+
"playwright": "1.62.0",
|
|
38
|
+
"typescript": "5.9.3"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"test": "node test/smoke.mjs",
|
|
42
|
+
"type-check": "tsc --noEmit"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@dotrino/store": ">=0.8.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependenciesMeta": {
|
|
48
|
+
"@dotrino/store": {
|
|
49
|
+
"optional": true
|
|
50
|
+
}
|
|
37
51
|
}
|
|
38
52
|
}
|
package/src/coin.js
CHANGED
|
File without changes
|
package/src/coin.png
CHANGED
|
File without changes
|
package/src/coin.svg
CHANGED
|
File without changes
|
package/src/index.d.ts
CHANGED
|
File without changes
|
package/src/index.js
CHANGED
|
@@ -476,7 +476,12 @@ const _openRecorded = new Set()
|
|
|
476
476
|
// así que caemos al mismo paquete servido por jsDelivr. En apps con bundler el
|
|
477
477
|
// primer import resuelve y nunca se usa el fallback (@vite-ignore evita que el
|
|
478
478
|
// bundler intente analizar la URL).
|
|
479
|
-
|
|
479
|
+
//
|
|
480
|
+
// Iba pineado a `@0.4`, y ese número no lo miraba nadie: el store publicado ya va por
|
|
481
|
+
// 0.8 y la 0.7.0 está declarada ROTA en el roadmap (soltar la bóveda borraba los hilos
|
|
482
|
+
// del perfil, y desde 0.6.0 dejó de adoptar lo guardado antes de IndexedDB). Se sube
|
|
483
|
+
// junto con el rango del peer, porque son la misma decisión por dos caminos.
|
|
484
|
+
const _STORE_CDN = 'https://cdn.jsdelivr.net/npm/@dotrino/store@0.8/src/index.js'
|
|
480
485
|
async function _loadStore() {
|
|
481
486
|
try { return await import('@dotrino/store') }
|
|
482
487
|
catch { return await import(/* @vite-ignore */ _STORE_CDN) }
|
package/src/monedalogo.svg
CHANGED
|
File without changes
|
package/src/monedabg.png
DELETED
|
Binary file
|