@votodigital-onpeui/react 0.1.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/dist/chunk-4CXYX4SI.mjs +410 -0
- package/dist/chunk-4CXYX4SI.mjs.map +1 -0
- package/dist/chunk-VPOCM2HP.mjs +1038 -0
- package/dist/chunk-VPOCM2HP.mjs.map +1 -0
- package/dist/chunk-WZWNCN4H.mjs +878 -0
- package/dist/chunk-WZWNCN4H.mjs.map +1 -0
- package/dist/components.d.mts +135 -0
- package/dist/components.d.ts +135 -0
- package/dist/components.js +1456 -0
- package/dist/components.js.map +1 -0
- package/dist/components.mjs +4 -0
- package/dist/components.mjs.map +1 -0
- package/dist/icons.d.mts +68 -0
- package/dist/icons.d.ts +68 -0
- package/dist/icons.js +1314 -0
- package/dist/icons.js.map +1 -0
- package/dist/icons.mjs +4 -0
- package/dist/icons.mjs.map +1 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2359 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -0
- package/dist/styles.css +1 -0
- package/package.json +66 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { BrowserRecommended, Button, Footer, Modal, ModalBrowserIncompatible, ModalConfirm, ModalDnieVersions, ModalLoading, ModalNfc, ModalSystemIncompatible, NotRecommended, Overlay, Portal, Show } from './chunk-VPOCM2HP.mjs';
|
|
2
|
+
export { IconClose, IconElectionsGeneral, IconElectionsRegionalesYMunicipales, IconHome, IconHuawei, IconInfo, IconLogoONPE, IconMozilla, IconMozillaColor, IconPhone, IconVotoDigital, WhatsappIcon } from './chunk-WZWNCN4H.mjs';
|
|
3
|
+
export { FaceBookIcon, IconAndroid, IconApple, IconCheck, IconChrome, IconChromeColor, IconCloseRadius, IconEdge, IconEdgeColor, IconSafari, IconSafariColor, IconSpinnerDesktop, IconSpinnerMobile, IconWarning, IconWarningNotRecommended, IconWindow, InstagramIcon, TikTokIcon, XIcon, YoutubeIcon } from './chunk-4CXYX4SI.mjs';
|
|
4
|
+
//# sourceMappingURL=index.mjs.map
|
|
5
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}
|
package/dist/styles.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tailwindcss v4.2.0 | MIT License | https://tailwindcss.com */
|
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@votodigital-onpeui/react",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Librería de componentes UI para proyectos ONPE",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"style": "./dist/styles.css",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./components": {
|
|
16
|
+
"types": "./dist/components.d.ts",
|
|
17
|
+
"import": "./dist/components.mjs",
|
|
18
|
+
"require": "./dist/components.js"
|
|
19
|
+
},
|
|
20
|
+
"./icons": {
|
|
21
|
+
"types": "./dist/icons.d.ts",
|
|
22
|
+
"import": "./dist/icons.mjs",
|
|
23
|
+
"require": "./dist/icons.js"
|
|
24
|
+
},
|
|
25
|
+
"./styles.css": "./dist/styles.css",
|
|
26
|
+
"./dist/styles.css": "./dist/styles.css",
|
|
27
|
+
"./dist/index.css": "./dist/styles.css"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsup && npm run build:css",
|
|
37
|
+
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"dev:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
40
|
+
"storybook": "storybook dev -p 6006",
|
|
41
|
+
"build-storybook": "storybook build",
|
|
42
|
+
"lint": "eslint src --ext .ts,.tsx"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": ">=18",
|
|
46
|
+
"react-dom": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@storybook/addon-essentials": "^8.6.17",
|
|
50
|
+
"@storybook/addon-interactions": "^8.6.17",
|
|
51
|
+
"@storybook/react": "^8.6.17",
|
|
52
|
+
"@storybook/react-vite": "^8.6.17",
|
|
53
|
+
"@storybook/test": "^8.6.17",
|
|
54
|
+
"@tailwindcss/cli": "^4.2.0",
|
|
55
|
+
"@tailwindcss/vite": "^4.2.0",
|
|
56
|
+
"@types/react": "^19.2.14",
|
|
57
|
+
"@types/react-dom": "^19.2.3",
|
|
58
|
+
"react": "^19.2.4",
|
|
59
|
+
"react-dom": "^19.2.4",
|
|
60
|
+
"storybook": "^8.6.17",
|
|
61
|
+
"tailwindcss": "^4.2.0",
|
|
62
|
+
"tsup": "^8.5.1",
|
|
63
|
+
"typescript": "^5.9.3",
|
|
64
|
+
"vite": "^6.4.1"
|
|
65
|
+
}
|
|
66
|
+
}
|