@nocios/crudify-ui 1.0.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/README.md ADDED
File without changes
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface HelloWorldProps {
3
+ text?: string;
4
+ }
5
+ declare const HelloWorld: React.FC<HelloWorldProps>;
6
+ export default HelloWorld;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Typography } from "@mui/material";
3
+ import HomeOutlinedIcon from "@mui/icons-material/HomeOutlined";
4
+ const HelloWorld = ({ text = "¡Hola Mundo!" }) => (_jsxs(Box, { display: "flex", alignItems: "center", gap: 1, p: 2, borderRadius: 2, boxShadow: 1, children: [_jsx(HomeOutlinedIcon, { fontSize: "large" }), _jsx(Typography, { variant: "h6", children: text })] }));
5
+ export default HelloWorld;
@@ -0,0 +1 @@
1
+ export { default as HelloWorld } from "./components/HelloWorld";
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export { default as HelloWorld } from "./components/HelloWorld";
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@nocios/crudify-ui",
3
+ "version": "1.0.0",
4
+ "description": "Biblioteca de componentes UI para Crudify",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "prepare": "npm run build"
11
+ },
12
+ "dependencies": {
13
+ "@emotion/react": "^11.13.1",
14
+ "@emotion/styled": "^11.13.0",
15
+ "@mui/icons-material": "^7.1.0",
16
+ "@mui/material": "^7.1.0",
17
+ "@mui/x-data-grid": "^8.5.1",
18
+ "i18next-browser-languagedetector": "^8.1.0",
19
+ "i18next-http-backend": "^3.0.2",
20
+ "react": "^19.1.0",
21
+ "react-dom": "^19.1.0",
22
+ "react-i18next": "^15.5.2"
23
+ },
24
+ "devDependencies": {
25
+ "typescript": "^5.1.3",
26
+ "@types/react": "^19.0.3",
27
+ "@types/react-dom": "^19.0.1"
28
+ },
29
+ "peerDependencies": {
30
+ "react": "^19.1.0",
31
+ "react-dom": "^19.1.0",
32
+ "@mui/material": "^7.1.0",
33
+ "@mui/icons-material": "^7.1.0"
34
+ },
35
+ "files": [
36
+ "dist"
37
+ ],
38
+ "keywords": [
39
+ "crudify",
40
+ "ui",
41
+ "mui",
42
+ "react"
43
+ ],
44
+ "author": "",
45
+ "license": "MIT"
46
+ }