telpick 1.0.2 → 1.0.4
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.
Potentially problematic release.
This version of telpick might be problematic. Click here for more details.
- package/README.es.md +2 -0
- package/README.md +2 -0
- package/package.json +4 -2
package/README.es.md
CHANGED
|
@@ -48,6 +48,8 @@ yarn add telpick
|
|
|
48
48
|
<script src="https://unpkg.com/telpick@latest/dist/telpick.umd.js"></script>
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
+
**Importar CSS:** Usa `import 'telpick/dist/style.css'` cuando instalas desde npm (el paquete publicado incluye `dist`). Si instalas desde GitHub (ej. `npm install github:julioalmirooficial/telpick`), usa `import 'telpick/src/telpick.css'` porque `dist` no está en el repo.
|
|
52
|
+
|
|
51
53
|
## Uso
|
|
52
54
|
|
|
53
55
|
### React
|
package/README.md
CHANGED
|
@@ -48,6 +48,8 @@ yarn add telpick
|
|
|
48
48
|
<script src="https://unpkg.com/telpick@latest/dist/telpick.umd.js"></script>
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
+
**Importing CSS:** Use `import 'telpick/dist/style.css'` when you install from npm (the published package includes `dist`). If you install from GitHub (e.g. `npm install github:julioalmirooficial/telpick`), use `import 'telpick/src/telpick.css'` instead, because `dist` is not in the repo.
|
|
52
|
+
|
|
51
53
|
## Usage
|
|
52
54
|
|
|
53
55
|
### React
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "telpick",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Multi-platform country and phone code selector with a modern design, smooth animations, and automatic IP detection.",
|
|
5
5
|
"main": "dist/telpick.umd.js",
|
|
6
6
|
"module": "dist/telpick.esm.js",
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
"import": "./dist/telpick.vanilla.js",
|
|
24
24
|
"types": "./dist/telpick.d.ts"
|
|
25
25
|
},
|
|
26
|
-
"./style.css": "./dist/style.css"
|
|
26
|
+
"./style.css": "./dist/style.css",
|
|
27
|
+
"./dist/style.css": "./dist/style.css",
|
|
28
|
+
"./src/telpick.css": "./src/telpick.css"
|
|
27
29
|
},
|
|
28
30
|
"files": [
|
|
29
31
|
"dist",
|