@innovardix-com-mx/capi-ui 0.1.0 → 0.1.2
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 +498 -498
- package/dist/capi-ui.css +1 -0
- package/dist/capi-ui.d.ts +754 -0
- package/dist/capi-ui.js +147 -0
- package/dist/capi-ui.umd.cjs +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +112 -112
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@innovardix-com-mx/capi-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Biblioteca de componentes React con Ant Design y Tailwind CSS",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist"
|
|
8
|
-
],
|
|
9
|
-
"main": "./dist/capi-ui.umd.cjs",
|
|
10
|
-
"module": "./dist/capi-ui.js",
|
|
11
|
-
"types": "./dist/capi-ui.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": "./dist/capi-ui.js",
|
|
15
|
-
"require": "./dist/capi-ui.umd.cjs",
|
|
16
|
-
"types": "./dist/capi-ui.d.ts"
|
|
17
|
-
},
|
|
18
|
-
"./style.css": "./dist/style.css"
|
|
19
|
-
},
|
|
20
|
-
"repository": {
|
|
21
|
-
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/innovardix-com-mx/capi_ui.git"
|
|
23
|
-
},
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://github.com/innovardix-com-mx/capi_ui/issues"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://capi-ui.netlify.app/",
|
|
28
|
-
"publishConfig": {
|
|
29
|
-
"access": "public",
|
|
30
|
-
"registry": "https://registry.npmjs.org/"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"react",
|
|
34
|
-
"typescript",
|
|
35
|
-
"vite",
|
|
36
|
-
"tailwindcss",
|
|
37
|
-
"antd",
|
|
38
|
-
"components",
|
|
39
|
-
"ui-library"
|
|
40
|
-
],
|
|
41
|
-
"author": "Innovardix",
|
|
42
|
-
"license": "MIT",
|
|
43
|
-
"scripts": {
|
|
44
|
-
"dev": "vite",
|
|
45
|
-
"build": "tsc -b && vite build",
|
|
46
|
-
"lint": "eslint .",
|
|
47
|
-
"preview": "vite preview",
|
|
48
|
-
"storybook": "storybook dev -p 6006",
|
|
49
|
-
"build-storybook": "storybook build"
|
|
50
|
-
},
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"antd": "^5.24.0",
|
|
53
|
-
"axios": "^1.7.9",
|
|
54
|
-
"dayjs": "^1.11.13",
|
|
55
|
-
"react": "19.0.0",
|
|
56
|
-
"react-dom": "19.0.0"
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@ant-design/icons": "^6.1.0",
|
|
60
|
-
"@tailwindcss/vite": "^4.1.11",
|
|
61
|
-
"@tanstack/react-query": "^5.67.3",
|
|
62
|
-
"ajv": "^8.17.1",
|
|
63
|
-
"clsx": "^2.1.1",
|
|
64
|
-
"jspdf": "^2.5.2",
|
|
65
|
-
"jspdf-autotable": "^3.8.4",
|
|
66
|
-
"react-icons": "^5.4.0",
|
|
67
|
-
"xlsx": "^0.18.5"
|
|
68
|
-
},
|
|
69
|
-
"devDependencies": {
|
|
70
|
-
"@chromatic-com/storybook": "^3.2.6",
|
|
71
|
-
"@eslint/js": "^9.17.0",
|
|
72
|
-
"@storybook/addon-docs": "^8.6.14",
|
|
73
|
-
"@storybook/addon-essentials": "^8.6.14",
|
|
74
|
-
"@storybook/addon-interactions": "^8.6.14",
|
|
75
|
-
"@storybook/addon-onboarding": "^8.6.14",
|
|
76
|
-
"@storybook/addon-storysource": "^8.6.14",
|
|
77
|
-
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
78
|
-
"@storybook/blocks": "^8.6.14",
|
|
79
|
-
"@storybook/react": "^8.6.14",
|
|
80
|
-
"@storybook/react-vite": "^8.6.14",
|
|
81
|
-
"@storybook/test": "^8.6.14",
|
|
82
|
-
"@tailwindcss/postcss": "^4.0.0",
|
|
83
|
-
"@types/react": "19.0.8",
|
|
84
|
-
"@types/react-dom": "19.0.3",
|
|
85
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
86
|
-
"antd": "^6.1.0",
|
|
87
|
-
"autoprefixer": "^10.4.20",
|
|
88
|
-
"axios": "^1.7.9",
|
|
89
|
-
"dayjs": "^1.11.19",
|
|
90
|
-
"eslint": "^9.17.0",
|
|
91
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
92
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
93
|
-
"eslint-plugin-storybook": "^0.11.6",
|
|
94
|
-
"globals": "^15.14.0",
|
|
95
|
-
"postcss": "^8.4.49",
|
|
96
|
-
"react": "19.2.1",
|
|
97
|
-
"react-dom": "19.2.1",
|
|
98
|
-
"storybook": "^8.6.14",
|
|
99
|
-
"storybook-addon-customize-antd-theme": "^1.1.0",
|
|
100
|
-
"tailwindcss": "^4.1.11",
|
|
101
|
-
"terser": "^5.37.0",
|
|
102
|
-
"typescript": "^5.7.3",
|
|
103
|
-
"typescript-eslint": "^8.18.2",
|
|
104
|
-
"vite": "^7.2.7",
|
|
105
|
-
"vite-plugin-dts": "^4.5.0"
|
|
106
|
-
},
|
|
107
|
-
"eslintConfig": {
|
|
108
|
-
"extends": [
|
|
109
|
-
"plugin:storybook/recommended"
|
|
110
|
-
]
|
|
111
|
-
}
|
|
112
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@innovardix-com-mx/capi-ui",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Biblioteca de componentes React con Ant Design y Tailwind CSS",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/capi-ui.umd.cjs",
|
|
10
|
+
"module": "./dist/capi-ui.js",
|
|
11
|
+
"types": "./dist/capi-ui.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/capi-ui.js",
|
|
15
|
+
"require": "./dist/capi-ui.umd.cjs",
|
|
16
|
+
"types": "./dist/capi-ui.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./style.css": "./dist/style.css"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/innovardix-com-mx/capi_ui.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/innovardix-com-mx/capi_ui/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://capi-ui.netlify.app/",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"registry": "https://registry.npmjs.org/"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"react",
|
|
34
|
+
"typescript",
|
|
35
|
+
"vite",
|
|
36
|
+
"tailwindcss",
|
|
37
|
+
"antd",
|
|
38
|
+
"components",
|
|
39
|
+
"ui-library"
|
|
40
|
+
],
|
|
41
|
+
"author": "Innovardix",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"scripts": {
|
|
44
|
+
"dev": "vite",
|
|
45
|
+
"build": "tsc -b && vite build",
|
|
46
|
+
"lint": "eslint .",
|
|
47
|
+
"preview": "vite preview",
|
|
48
|
+
"storybook": "storybook dev -p 6006",
|
|
49
|
+
"build-storybook": "storybook build"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"antd": "^5.24.0",
|
|
53
|
+
"axios": "^1.7.9",
|
|
54
|
+
"dayjs": "^1.11.13",
|
|
55
|
+
"react": "19.0.0",
|
|
56
|
+
"react-dom": "19.0.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@ant-design/icons": "^6.1.0",
|
|
60
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
61
|
+
"@tanstack/react-query": "^5.67.3",
|
|
62
|
+
"ajv": "^8.17.1",
|
|
63
|
+
"clsx": "^2.1.1",
|
|
64
|
+
"jspdf": "^2.5.2",
|
|
65
|
+
"jspdf-autotable": "^3.8.4",
|
|
66
|
+
"react-icons": "^5.4.0",
|
|
67
|
+
"xlsx": "^0.18.5"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@chromatic-com/storybook": "^3.2.6",
|
|
71
|
+
"@eslint/js": "^9.17.0",
|
|
72
|
+
"@storybook/addon-docs": "^8.6.14",
|
|
73
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
74
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
75
|
+
"@storybook/addon-onboarding": "^8.6.14",
|
|
76
|
+
"@storybook/addon-storysource": "^8.6.14",
|
|
77
|
+
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
78
|
+
"@storybook/blocks": "^8.6.14",
|
|
79
|
+
"@storybook/react": "^8.6.14",
|
|
80
|
+
"@storybook/react-vite": "^8.6.14",
|
|
81
|
+
"@storybook/test": "^8.6.14",
|
|
82
|
+
"@tailwindcss/postcss": "^4.0.0",
|
|
83
|
+
"@types/react": "19.0.8",
|
|
84
|
+
"@types/react-dom": "19.0.3",
|
|
85
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
86
|
+
"antd": "^6.1.0",
|
|
87
|
+
"autoprefixer": "^10.4.20",
|
|
88
|
+
"axios": "^1.7.9",
|
|
89
|
+
"dayjs": "^1.11.19",
|
|
90
|
+
"eslint": "^9.17.0",
|
|
91
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
92
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
93
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
94
|
+
"globals": "^15.14.0",
|
|
95
|
+
"postcss": "^8.4.49",
|
|
96
|
+
"react": "19.2.1",
|
|
97
|
+
"react-dom": "19.2.1",
|
|
98
|
+
"storybook": "^8.6.14",
|
|
99
|
+
"storybook-addon-customize-antd-theme": "^1.1.0",
|
|
100
|
+
"tailwindcss": "^4.1.11",
|
|
101
|
+
"terser": "^5.37.0",
|
|
102
|
+
"typescript": "^5.7.3",
|
|
103
|
+
"typescript-eslint": "^8.18.2",
|
|
104
|
+
"vite": "^7.2.7",
|
|
105
|
+
"vite-plugin-dts": "^4.5.0"
|
|
106
|
+
},
|
|
107
|
+
"eslintConfig": {
|
|
108
|
+
"extends": [
|
|
109
|
+
"plugin:storybook/recommended"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
}
|