@tealca/core-components 1.0.23 → 1.0.25
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.d.ts +0 -5
- package/dist/tealca-core-components.cjs.js +42 -42
- package/dist/tealca-core-components.es.js +7960 -7962
- package/package.json +86 -86
package/package.json
CHANGED
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tealca/core-components",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"description": "A collection of shared UI components for Tealca's applications.",
|
|
6
|
-
"main": "dist/tealca-core-components.cjs.js",
|
|
7
|
-
"module": "dist/tealca-core-components.es.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"type": "module",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist"
|
|
12
|
-
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"dev": "vite",
|
|
15
|
-
"build": "tsc -b && vite build",
|
|
16
|
-
"lint": "eslint .",
|
|
17
|
-
"preview": "vite preview",
|
|
18
|
-
"storybook": "storybook dev -p 6006",
|
|
19
|
-
"build-storybook": "storybook build"
|
|
20
|
-
},
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"types": "./dist/index.d.ts",
|
|
24
|
-
"import": "./dist/tealca-core-components.es.js",
|
|
25
|
-
"require": "./dist/tealca-core-components.cjs.js"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@react-google-maps/api": "^2.20.7",
|
|
30
|
-
"@reduxjs/toolkit": "^2.11.2",
|
|
31
|
-
"@tailwindcss/vite": "^4.1.12",
|
|
32
|
-
"axios": "^1.13.2",
|
|
33
|
-
"classnames": "^2.5.1",
|
|
34
|
-
"formik": "^2.4.6",
|
|
35
|
-
"moment": "^2.30.1",
|
|
36
|
-
"react-icons": "^5.5.0",
|
|
37
|
-
"react-redux": "^9.2.0",
|
|
38
|
-
"redux-persist": "^6.0.0",
|
|
39
|
-
"tailwindcss": "^4.1.12",
|
|
40
|
-
"yup": "^1.7.1"
|
|
41
|
-
},
|
|
42
|
-
"peerDependencies": {
|
|
43
|
-
"react": "^19.0.0",
|
|
44
|
-
"react-dom": "^19.0.0"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@chromatic-com/storybook": "^4.1.1",
|
|
48
|
-
"@eslint/js": "^9.33.0",
|
|
49
|
-
"@storybook/addon-a11y": "^9.1.4",
|
|
50
|
-
"@storybook/addon-docs": "^9.1.4",
|
|
51
|
-
"@storybook/addon-onboarding": "^9.1.4",
|
|
52
|
-
"@storybook/addon-styling-webpack": "^2.0.0",
|
|
53
|
-
"@storybook/addon-vitest": "^9.1.4",
|
|
54
|
-
"@storybook/builder-vite": "^9.1.4",
|
|
55
|
-
"@storybook/react-vite": "^9.1.4",
|
|
56
|
-
"@storybook/test-runner": "^0.23.0",
|
|
57
|
-
"@tailwindcss/forms": "^0.5.10",
|
|
58
|
-
"@testing-library/jest-dom": "^6.8.0",
|
|
59
|
-
"@testing-library/react": "^16.3.0",
|
|
60
|
-
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
61
|
-
"@types/google.maps": "^3.58.1",
|
|
62
|
-
"@types/node": "^20.6.3",
|
|
63
|
-
"@types/react": "^18.2.22",
|
|
64
|
-
"@types/react-dom": "^18.2.7",
|
|
65
|
-
"@vitejs/plugin-react-swc": "^4.0.0",
|
|
66
|
-
"@vitest/browser": "^3.2.4",
|
|
67
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
68
|
-
"eslint": "^9.33.0",
|
|
69
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
70
|
-
"eslint-plugin-react-refresh": "^0.4.20",
|
|
71
|
-
"eslint-plugin-storybook": "^9.1.4",
|
|
72
|
-
"globals": "^16.3.0",
|
|
73
|
-
"jsdom": "^26.1.0",
|
|
74
|
-
"playwright": "^1.55.0",
|
|
75
|
-
"prettier": "^3.6.2",
|
|
76
|
-
"storybook": "^9.1.4",
|
|
77
|
-
"typescript": "~5.8.3",
|
|
78
|
-
"typescript-eslint": "^8.39.1",
|
|
79
|
-
"vite": "^7.1.2",
|
|
80
|
-
"vite-plugin-dts": "^4.5.4",
|
|
81
|
-
"vitest": "^3.2.4"
|
|
82
|
-
},
|
|
83
|
-
"publishConfig": {
|
|
84
|
-
"access": "public"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tealca/core-components",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.25",
|
|
5
|
+
"description": "A collection of shared UI components for Tealca's applications.",
|
|
6
|
+
"main": "dist/tealca-core-components.cjs.js",
|
|
7
|
+
"module": "dist/tealca-core-components.es.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "vite",
|
|
15
|
+
"build": "tsc -b && vite build",
|
|
16
|
+
"lint": "eslint .",
|
|
17
|
+
"preview": "vite preview",
|
|
18
|
+
"storybook": "storybook dev -p 6006",
|
|
19
|
+
"build-storybook": "storybook build"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/tealca-core-components.es.js",
|
|
25
|
+
"require": "./dist/tealca-core-components.cjs.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@react-google-maps/api": "^2.20.7",
|
|
30
|
+
"@reduxjs/toolkit": "^2.11.2",
|
|
31
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
32
|
+
"axios": "^1.13.2",
|
|
33
|
+
"classnames": "^2.5.1",
|
|
34
|
+
"formik": "^2.4.6",
|
|
35
|
+
"moment": "^2.30.1",
|
|
36
|
+
"react-icons": "^5.5.0",
|
|
37
|
+
"react-redux": "^9.2.0",
|
|
38
|
+
"redux-persist": "^6.0.0",
|
|
39
|
+
"tailwindcss": "^4.1.12",
|
|
40
|
+
"yup": "^1.7.1"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": "^19.0.0",
|
|
44
|
+
"react-dom": "^19.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@chromatic-com/storybook": "^4.1.1",
|
|
48
|
+
"@eslint/js": "^9.33.0",
|
|
49
|
+
"@storybook/addon-a11y": "^9.1.4",
|
|
50
|
+
"@storybook/addon-docs": "^9.1.4",
|
|
51
|
+
"@storybook/addon-onboarding": "^9.1.4",
|
|
52
|
+
"@storybook/addon-styling-webpack": "^2.0.0",
|
|
53
|
+
"@storybook/addon-vitest": "^9.1.4",
|
|
54
|
+
"@storybook/builder-vite": "^9.1.4",
|
|
55
|
+
"@storybook/react-vite": "^9.1.4",
|
|
56
|
+
"@storybook/test-runner": "^0.23.0",
|
|
57
|
+
"@tailwindcss/forms": "^0.5.10",
|
|
58
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
59
|
+
"@testing-library/react": "^16.3.0",
|
|
60
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
61
|
+
"@types/google.maps": "^3.58.1",
|
|
62
|
+
"@types/node": "^20.6.3",
|
|
63
|
+
"@types/react": "^18.2.22",
|
|
64
|
+
"@types/react-dom": "^18.2.7",
|
|
65
|
+
"@vitejs/plugin-react-swc": "^4.0.0",
|
|
66
|
+
"@vitest/browser": "^3.2.4",
|
|
67
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
68
|
+
"eslint": "^9.33.0",
|
|
69
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
70
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
71
|
+
"eslint-plugin-storybook": "^9.1.4",
|
|
72
|
+
"globals": "^16.3.0",
|
|
73
|
+
"jsdom": "^26.1.0",
|
|
74
|
+
"playwright": "^1.55.0",
|
|
75
|
+
"prettier": "^3.6.2",
|
|
76
|
+
"storybook": "^9.1.4",
|
|
77
|
+
"typescript": "~5.8.3",
|
|
78
|
+
"typescript-eslint": "^8.39.1",
|
|
79
|
+
"vite": "^7.1.2",
|
|
80
|
+
"vite-plugin-dts": "^4.5.4",
|
|
81
|
+
"vitest": "^3.2.4"
|
|
82
|
+
},
|
|
83
|
+
"publishConfig": {
|
|
84
|
+
"access": "public"
|
|
85
|
+
}
|
|
86
|
+
}
|