@infra-cryptomate/react-components 0.0.2 → 0.0.4
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 +9 -10
- package/dist/components.es.js +0 -7799
- package/dist/components.umd.js +0 -41
- package/dist/index.d.ts +0 -1
- package/dist/src/components/atoms/button/button.d.ts +0 -7
- package/dist/src/components/atoms/button/button.enums.d.ts +0 -15
- package/dist/src/components/atoms/button/button.types.d.ts +0 -3
- package/dist/src/components/atoms/button/button.variants.d.ts +0 -15
- package/dist/src/components/atoms/checkbox/checkbox.d.ts +0 -4
- package/dist/src/components/atoms/heading/heading.d.ts +0 -6
- package/dist/src/components/atoms/heading/heading.enums.d.ts +0 -8
- package/dist/src/components/atoms/heading/heading.types.d.ts +0 -2
- package/dist/src/components/atoms/heading/heading.variants.d.ts +0 -8
- package/dist/src/components/atoms/index.d.ts +0 -8
- package/dist/src/components/atoms/input/input.d.ts +0 -4
- package/dist/src/components/atoms/label/label.d.ts +0 -5
- package/dist/src/components/atoms/paragraph/paragraph.d.ts +0 -4
- package/dist/src/components/atoms/spinner/spinner.d.ts +0 -7
- package/dist/src/components/atoms/spinner/spinner.enums.d.ts +0 -11
- package/dist/src/components/atoms/spinner/spinner.types.d.ts +0 -3
- package/dist/src/components/atoms/spinner/spinner.variants.d.ts +0 -11
- package/dist/src/components/atoms/text-area/text-area.d.ts +0 -4
- package/dist/src/components/index.d.ts +0 -2
- package/dist/src/components/molecules/card/card.d.ts +0 -8
- package/dist/src/components/molecules/checkbox-container/checkbox-container.d.ts +0 -6
- package/dist/src/components/molecules/checkbox-container/checkbox-container.enums.d.ts +0 -3
- package/dist/src/components/molecules/checkbox-container/checkbox-container.types.d.ts +0 -6
- package/dist/src/components/molecules/checkbox-container/checkbox-container.variants.d.ts +0 -3
- package/dist/src/components/molecules/dropdown/dropdown.d.ts +0 -42
- package/dist/src/components/molecules/index.d.ts +0 -5
- package/dist/src/components/molecules/radio/radio.d.ts +0 -9
- package/dist/src/components/molecules/select/select.d.ts +0 -11
- package/dist/src/components/molecules/toast/index.d.ts +0 -5
- package/dist/src/components/molecules/toast/toast.d.ts +0 -30
- package/dist/src/components/molecules/toast/toast.enum.d.ts +0 -4
- package/dist/src/components/molecules/toast/toast.types.d.ts +0 -2
- package/dist/src/components/molecules/toast/toast.variants.d.ts +0 -4
- package/dist/src/components/molecules/toast/toaster.d.ts +0 -1
- package/dist/src/components/molecules/toast/use-toast.d.ts +0 -44
- package/dist/src/components/utils.d.ts +0 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/style.css +0 -1275
- package/dist/test/button.test.d.ts +0 -1
- package/dist/test/card.test.d.ts +0 -1
- package/dist/test/checkbox.test.d.ts +0 -1
- package/dist/test/dropdown.test.d.ts +0 -1
- package/dist/test/input.test.d.ts +0 -1
- package/dist/test/select.test.d.ts +0 -1
- package/dist/test/spinner.test.d.ts +0 -1
- package/dist/test/text-area.test.d.ts +0 -1
- package/dist/test/toast.test.d.ts +0 -3
- package/dist/vite.svg +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infra-cryptomate/react-components",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/components.umd.js",
|
|
7
7
|
"module": "./dist/components.es.js",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"@radix-ui/react-toast": "1.1.4",
|
|
40
40
|
"@types/uuid": "9.0.3",
|
|
41
41
|
"autoprefixer": "10.4.15",
|
|
42
|
-
"clsx": "2.0.0",
|
|
43
42
|
"lucide-react": "0.274.0",
|
|
44
43
|
"postcss": "8.4.29",
|
|
45
44
|
"tailwind-merge": "1.14.0",
|
|
@@ -52,21 +51,21 @@
|
|
|
52
51
|
"@testing-library/react": "14.0.0",
|
|
53
52
|
"@types/react": "18.2.15",
|
|
54
53
|
"@types/react-dom": "18.2.7",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "6.7.0",
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
56
55
|
"@typescript-eslint/parser": "6.0.0",
|
|
57
56
|
"@vitejs/plugin-react": "4.0.4",
|
|
58
57
|
"@vitejs/plugin-react-swc": "3.3.2",
|
|
59
|
-
"eslint": "8.49.0",
|
|
60
|
-
"eslint-config-standard-with-typescript": "39.0.0",
|
|
61
|
-
"eslint-plugin-import": "2.28.1",
|
|
62
|
-
"eslint-plugin-n": "16.1.0",
|
|
63
|
-
"eslint-plugin-promise": "6.1.1",
|
|
64
|
-
"eslint-plugin-react": "7.33.2",
|
|
58
|
+
"eslint": "^8.49.0",
|
|
59
|
+
"eslint-config-standard-with-typescript": "^39.0.0",
|
|
60
|
+
"eslint-plugin-import": "^2.28.1",
|
|
61
|
+
"eslint-plugin-n": "^16.1.0",
|
|
62
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
63
|
+
"eslint-plugin-react": "^7.33.2",
|
|
65
64
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
66
65
|
"eslint-plugin-react-refresh": "0.4.3",
|
|
67
66
|
"jsdom": "22.1.0",
|
|
68
67
|
"postcss-cli": "10.1.0",
|
|
69
|
-
"typescript": "5.0.2",
|
|
68
|
+
"typescript": "^5.0.2",
|
|
70
69
|
"vite": "4.4.5",
|
|
71
70
|
"vitest": "0.34.3"
|
|
72
71
|
},
|