@onpe/ui 1.2.29 → 1.2.30
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/index.css +5 -13
- package/package.json +120 -120
package/dist/index.css
CHANGED
|
@@ -1828,19 +1828,11 @@
|
|
|
1828
1828
|
.onpe-fast-blink {
|
|
1829
1829
|
animation: onpe-fast-blink 0.8s ease-in-out infinite;
|
|
1830
1830
|
}
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
box-sizing: border-box;
|
|
1837
|
-
}
|
|
1838
|
-
button {
|
|
1839
|
-
cursor: pointer;
|
|
1840
|
-
}
|
|
1841
|
-
button:disabled {
|
|
1842
|
-
cursor: not-allowed;
|
|
1843
|
-
}
|
|
1831
|
+
.onpe-ui-container button {
|
|
1832
|
+
cursor: pointer;
|
|
1833
|
+
}
|
|
1834
|
+
.onpe-ui-container button:disabled {
|
|
1835
|
+
cursor: not-allowed;
|
|
1844
1836
|
}
|
|
1845
1837
|
.font-consolas {
|
|
1846
1838
|
font-family: 'Consolas', monospace;
|
package/package.json
CHANGED
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@onpe/ui",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Librería de componentes UI para ONPE - Componentes, Hooks, Utils y Librerías",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.esm.js",
|
|
12
|
-
"require": "./dist/index.js",
|
|
13
|
-
"types": "./dist/index.d.ts"
|
|
14
|
-
},
|
|
15
|
-
"./components": {
|
|
16
|
-
"import": "./dist/components.esm.js",
|
|
17
|
-
"require": "./dist/components.js",
|
|
18
|
-
"types": "./dist/components.d.ts"
|
|
19
|
-
},
|
|
20
|
-
"./hooks": {
|
|
21
|
-
"import": "./dist/hooks.esm.js",
|
|
22
|
-
"require": "./dist/hooks.js",
|
|
23
|
-
"types": "./dist/hooks.d.ts"
|
|
24
|
-
},
|
|
25
|
-
"./utils": {
|
|
26
|
-
"import": "./dist/utils.esm.js",
|
|
27
|
-
"require": "./dist/utils.js",
|
|
28
|
-
"types": "./dist/utils.d.ts"
|
|
29
|
-
},
|
|
30
|
-
"./lib": {
|
|
31
|
-
"import": "./dist/lib.esm.js",
|
|
32
|
-
"require": "./dist/lib.js",
|
|
33
|
-
"types": "./dist/lib.d.ts"
|
|
34
|
-
},
|
|
35
|
-
"./styles": "./dist/index.css",
|
|
36
|
-
"./tailwind-preset": "./tailwind-preset.js",
|
|
37
|
-
"./css": "./dist/index.css",
|
|
38
|
-
"./dist/index.css": "./dist/index.css"
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"dist",
|
|
42
|
-
"!dist/**/*.stories.*",
|
|
43
|
-
"!dist/**/IconsOverview.*",
|
|
44
|
-
"!dist/**/*.map"
|
|
45
|
-
],
|
|
46
|
-
"scripts": {
|
|
47
|
-
"dev": "storybook dev -p 6006",
|
|
48
|
-
"build": "npm run build:css:prod && rollup -c",
|
|
49
|
-
"build:css": "node scripts/build-css.js",
|
|
50
|
-
"build:css:prod": "node scripts/build-css.js",
|
|
51
|
-
"prepublishOnly": "npm run build",
|
|
52
|
-
"test": "jest",
|
|
53
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
54
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
55
|
-
"type-check": "tsc --noEmit",
|
|
56
|
-
"storybook": "storybook dev -p 6006",
|
|
57
|
-
"build-storybook": "storybook build"
|
|
58
|
-
},
|
|
59
|
-
"keywords": [
|
|
60
|
-
"react",
|
|
61
|
-
"components",
|
|
62
|
-
"hooks",
|
|
63
|
-
"utils",
|
|
64
|
-
"lib",
|
|
65
|
-
"tailwind",
|
|
66
|
-
"ui",
|
|
67
|
-
"typescript",
|
|
68
|
-
"onpe",
|
|
69
|
-
"peru",
|
|
70
|
-
"elecciones"
|
|
71
|
-
],
|
|
72
|
-
"author": "ONPE",
|
|
73
|
-
"license": "MIT",
|
|
74
|
-
"repository": {
|
|
75
|
-
"type": "git",
|
|
76
|
-
"url": "https://github.com/ricardosv46/onpe-ui.git"
|
|
77
|
-
},
|
|
78
|
-
"bugs": {
|
|
79
|
-
"url": "https://github.com/ricardosv46/onpe-ui/issues"
|
|
80
|
-
},
|
|
81
|
-
"homepage": "https://github.com/ricardosv46/onpe-ui#readme",
|
|
82
|
-
"peerDependencies": {
|
|
83
|
-
"react": ">=16.8.0",
|
|
84
|
-
"react-dom": ">=16.8.0"
|
|
85
|
-
},
|
|
86
|
-
"devDependencies": {
|
|
87
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
|
88
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
89
|
-
"@rollup/plugin-typescript": "^11.1.5",
|
|
90
|
-
"@storybook/addon-essentials": "^7.6.6",
|
|
91
|
-
"@storybook/addon-interactions": "^7.6.6",
|
|
92
|
-
"@storybook/addon-links": "^7.6.6",
|
|
93
|
-
"@storybook/blocks": "^7.6.6",
|
|
94
|
-
"@storybook/react": "^7.6.6",
|
|
95
|
-
"@storybook/react-vite": "^7.6.6",
|
|
96
|
-
"@storybook/testing-library": "^0.2.2",
|
|
97
|
-
"@tailwindcss/postcss": "^4.1.13",
|
|
98
|
-
"@types/react": "^18.2.45",
|
|
99
|
-
"@types/react-dom": "^18.2.18",
|
|
100
|
-
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
101
|
-
"@typescript-eslint/parser": "^6.14.0",
|
|
102
|
-
"autoprefixer": "^10.4.21",
|
|
103
|
-
"eslint": "^8.55.0",
|
|
104
|
-
"eslint-plugin-react": "^7.33.2",
|
|
105
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
106
|
-
"postcss": "^8.5.6",
|
|
107
|
-
"react": "^18.2.0",
|
|
108
|
-
"react-dom": "^18.2.0",
|
|
109
|
-
"rollup": "^4.9.1",
|
|
110
|
-
"rollup-plugin-dts": "^6.1.0",
|
|
111
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
112
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
113
|
-
"storybook": "^7.6.6",
|
|
114
|
-
"tailwindcss": "^4.1.13",
|
|
115
|
-
"typescript": "^5.3.3"
|
|
116
|
-
},
|
|
117
|
-
"dependencies": {
|
|
118
|
-
"clsx": "^2.0.0"
|
|
119
|
-
}
|
|
120
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@onpe/ui",
|
|
3
|
+
"version": "1.2.30",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Librería de componentes UI para ONPE - Componentes, Hooks, Utils y Librerías",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./components": {
|
|
16
|
+
"import": "./dist/components.esm.js",
|
|
17
|
+
"require": "./dist/components.js",
|
|
18
|
+
"types": "./dist/components.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./hooks": {
|
|
21
|
+
"import": "./dist/hooks.esm.js",
|
|
22
|
+
"require": "./dist/hooks.js",
|
|
23
|
+
"types": "./dist/hooks.d.ts"
|
|
24
|
+
},
|
|
25
|
+
"./utils": {
|
|
26
|
+
"import": "./dist/utils.esm.js",
|
|
27
|
+
"require": "./dist/utils.js",
|
|
28
|
+
"types": "./dist/utils.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./lib": {
|
|
31
|
+
"import": "./dist/lib.esm.js",
|
|
32
|
+
"require": "./dist/lib.js",
|
|
33
|
+
"types": "./dist/lib.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./styles": "./dist/index.css",
|
|
36
|
+
"./tailwind-preset": "./tailwind-preset.js",
|
|
37
|
+
"./css": "./dist/index.css",
|
|
38
|
+
"./dist/index.css": "./dist/index.css"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"!dist/**/*.stories.*",
|
|
43
|
+
"!dist/**/IconsOverview.*",
|
|
44
|
+
"!dist/**/*.map"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"dev": "storybook dev -p 6006",
|
|
48
|
+
"build": "npm run build:css:prod && rollup -c",
|
|
49
|
+
"build:css": "node scripts/build-css.js",
|
|
50
|
+
"build:css:prod": "node scripts/build-css.js",
|
|
51
|
+
"prepublishOnly": "npm run build",
|
|
52
|
+
"test": "jest",
|
|
53
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
54
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
55
|
+
"type-check": "tsc --noEmit",
|
|
56
|
+
"storybook": "storybook dev -p 6006",
|
|
57
|
+
"build-storybook": "storybook build"
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"react",
|
|
61
|
+
"components",
|
|
62
|
+
"hooks",
|
|
63
|
+
"utils",
|
|
64
|
+
"lib",
|
|
65
|
+
"tailwind",
|
|
66
|
+
"ui",
|
|
67
|
+
"typescript",
|
|
68
|
+
"onpe",
|
|
69
|
+
"peru",
|
|
70
|
+
"elecciones"
|
|
71
|
+
],
|
|
72
|
+
"author": "ONPE",
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"repository": {
|
|
75
|
+
"type": "git",
|
|
76
|
+
"url": "https://github.com/ricardosv46/onpe-ui.git"
|
|
77
|
+
},
|
|
78
|
+
"bugs": {
|
|
79
|
+
"url": "https://github.com/ricardosv46/onpe-ui/issues"
|
|
80
|
+
},
|
|
81
|
+
"homepage": "https://github.com/ricardosv46/onpe-ui#readme",
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"react": ">=16.8.0",
|
|
84
|
+
"react-dom": ">=16.8.0"
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
88
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
89
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
90
|
+
"@storybook/addon-essentials": "^7.6.6",
|
|
91
|
+
"@storybook/addon-interactions": "^7.6.6",
|
|
92
|
+
"@storybook/addon-links": "^7.6.6",
|
|
93
|
+
"@storybook/blocks": "^7.6.6",
|
|
94
|
+
"@storybook/react": "^7.6.6",
|
|
95
|
+
"@storybook/react-vite": "^7.6.6",
|
|
96
|
+
"@storybook/testing-library": "^0.2.2",
|
|
97
|
+
"@tailwindcss/postcss": "^4.1.13",
|
|
98
|
+
"@types/react": "^18.2.45",
|
|
99
|
+
"@types/react-dom": "^18.2.18",
|
|
100
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
101
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
102
|
+
"autoprefixer": "^10.4.21",
|
|
103
|
+
"eslint": "^8.55.0",
|
|
104
|
+
"eslint-plugin-react": "^7.33.2",
|
|
105
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
106
|
+
"postcss": "^8.5.6",
|
|
107
|
+
"react": "^18.2.0",
|
|
108
|
+
"react-dom": "^18.2.0",
|
|
109
|
+
"rollup": "^4.9.1",
|
|
110
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
111
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
112
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
113
|
+
"storybook": "^7.6.6",
|
|
114
|
+
"tailwindcss": "^4.1.13",
|
|
115
|
+
"typescript": "^5.3.3"
|
|
116
|
+
},
|
|
117
|
+
"dependencies": {
|
|
118
|
+
"clsx": "^2.0.0"
|
|
119
|
+
}
|
|
120
|
+
}
|