itrm-components 1.0.1 → 1.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itrm-components",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Componentes para todos los desarrollos de itrm-tools y derivados",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
@@ -10,38 +10,26 @@
10
10
  "/dist"
11
11
  ],
12
12
  "scripts": {
13
- "format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
14
- "lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
15
- "build": "tsc && vite build",
16
- "test": "vitest run",
17
- "test-watch": "vitest",
18
- "test:ui": "vitest --ui",
19
- "storybook": "storybook dev -p 6006",
20
- "build-storybook": "storybook build"
13
+ "build": "tsc -b && vite build"
21
14
  },
22
15
  "keywords": [],
23
16
  "author": "",
24
17
  "license": "ISC",
25
18
  "dependencies": {
26
- "react": "^19.0.0",
27
- "sass": "^1.82.0"
19
+ "react": "^18.3.1",
20
+ "react-dom": "^18.3.1"
28
21
  },
29
22
  "devDependencies": {
30
- "@testing-library/jest-dom": "^6.6.3",
31
- "@testing-library/react": "^16.1.0",
32
- "@types/react": "^19.0.0",
33
- "@typescript-eslint/eslint-plugin": "^8.17.0",
34
- "@typescript-eslint/parser": "^8.17.0",
35
- "eslint": "^9.16.0",
36
- "eslint-config-prettier": "^9.1.0",
37
- "eslint-plugin-prettier": "^5.2.1",
38
- "eslint-plugin-react": "^7.37.2",
39
- "eslint-plugin-react-hooks": "^5.1.0",
40
- "jsdom": "^25.0.1",
41
- "prettier": "^3.4.2",
42
- "typescript": "^5.7.2",
43
- "vite": "^6.0.3",
44
- "vite-plugin-dts": "^4.3.0",
45
- "vitest": "^2.1.8"
23
+ "@eslint/js": "^9.15.0",
24
+ "@types/react": "^18.3.12",
25
+ "@types/react-dom": "^18.3.1",
26
+ "@vitejs/plugin-react-swc": "^3.5.0",
27
+ "eslint": "^9.15.0",
28
+ "eslint-plugin-react-hooks": "^5.0.0",
29
+ "eslint-plugin-react-refresh": "^0.4.14",
30
+ "globals": "^15.12.0",
31
+ "typescript": "~5.6.2",
32
+ "typescript-eslint": "^8.15.0",
33
+ "vite": "^6.0.1"
46
34
  }
47
35
  }
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export { default as Tooltip } from './tooltip/components/tooltip';
@@ -1,7 +0,0 @@
1
- import { default as React, ReactNode } from 'react';
2
- interface TooltipProps {
3
- children: ReactNode;
4
- content: string;
5
- }
6
- declare const Tooltip: React.FC<TooltipProps>;
7
- export default Tooltip;