@helpscout/ui-kit-react 0.0.1
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/lib/components/badge/badge.d.ts +20 -0
- package/dist/lib/components/badge/badge.d.ts.map +1 -0
- package/dist/lib/components/badge/badge.test.d.ts +2 -0
- package/dist/lib/components/badge/badge.test.d.ts.map +1 -0
- package/dist/lib/components/button/button.d.ts +25 -0
- package/dist/lib/components/button/button.d.ts.map +1 -0
- package/dist/lib/components/button/button.test.d.ts +2 -0
- package/dist/lib/components/button/button.test.d.ts.map +1 -0
- package/dist/lib/components/link/link.d.ts +12 -0
- package/dist/lib/components/link/link.d.ts.map +1 -0
- package/dist/lib/components/link/link.test.d.ts +2 -0
- package/dist/lib/components/link/link.test.d.ts.map +1 -0
- package/dist/lib/components/theme/theme.d.ts +11 -0
- package/dist/lib/components/theme/theme.d.ts.map +1 -0
- package/dist/lib/components/theme/theme.test.d.ts +2 -0
- package/dist/lib/components/theme/theme.test.d.ts.map +1 -0
- package/dist/lib/ui-kit-react.d.ts +5 -0
- package/dist/lib/ui-kit-react.d.ts.map +1 -0
- package/dist/prop-types.json +1470 -0
- package/dist/ui-kit-react.css +1 -0
- package/dist/ui-kit-react.js +21400 -0
- package/dist/ui-kit-react.umd.cjs +187 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@helpscout/ui-kit-react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"module": "./dist/ui-kit-react.js",
|
|
6
|
+
"main": "./dist/ui-kit-react.umd.cjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/ui-kit-react.js",
|
|
13
|
+
"require": "./dist/ui-kit-react.umd.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./prop-types.json": {
|
|
16
|
+
"import": "./dist/prop-types.json",
|
|
17
|
+
"require": "./dist/prop-types.json"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"**/*.css"
|
|
22
|
+
],
|
|
23
|
+
"types": "./dist/ui-kit-react.d.ts",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"class-variance-authority": "^0.7.0",
|
|
26
|
+
"react-aria-components": "^1.1.1"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@helpscout/javascript-sdk": "^0.8.0",
|
|
30
|
+
"@storybook/addon-docs": "^7.6.7",
|
|
31
|
+
"@storybook/addon-essentials": "^7.6.7",
|
|
32
|
+
"@storybook/addon-interactions": "^7.6.17",
|
|
33
|
+
"@storybook/addon-links": "^7.6.7",
|
|
34
|
+
"@storybook/addon-onboarding": "^1.0.11",
|
|
35
|
+
"@storybook/blocks": "^7.6.17",
|
|
36
|
+
"@storybook/builder-vite": "^7.6.17",
|
|
37
|
+
"@storybook/react": "^7.6.7",
|
|
38
|
+
"@storybook/react-vite": "^7.6.7",
|
|
39
|
+
"@storybook/test": "^7.6.17",
|
|
40
|
+
"@testing-library/jest-dom": "^6.4.2",
|
|
41
|
+
"@testing-library/react": "^14.2.2",
|
|
42
|
+
"@testing-library/user-event": "^14.5.2",
|
|
43
|
+
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
44
|
+
"@types/react": "^18.2.56",
|
|
45
|
+
"@types/react-dom": "^18.2.19",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
47
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
48
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
49
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
50
|
+
"@vitest/ui": "^1.4.0",
|
|
51
|
+
"eslint": "^8.56.0",
|
|
52
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
53
|
+
"install": "^0.13.0",
|
|
54
|
+
"jsdom": "^24.0.0",
|
|
55
|
+
"npm": "^10.5.1",
|
|
56
|
+
"prettier": "^3.2.5",
|
|
57
|
+
"react": "^18.2.0",
|
|
58
|
+
"react-docgen-typescript": "^2.2.2",
|
|
59
|
+
"react-dom": "^18.2.0",
|
|
60
|
+
"storybook": "^7.6.7",
|
|
61
|
+
"typescript": "^5.2.2",
|
|
62
|
+
"vite": "^5.1.4",
|
|
63
|
+
"vite-plugin-dts": "^3.7.3",
|
|
64
|
+
"vite-plugin-lib-inject-css": "^1.3.0",
|
|
65
|
+
"vitest": "^1.4.0",
|
|
66
|
+
"@apps-platform/eslint-config": "0.0.0",
|
|
67
|
+
"@apps-platform/theme-config": "0.0.0",
|
|
68
|
+
"@apps-platform/typescript-config": "0.0.0"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"@helpscout/javascript-sdk": "^0.8.0",
|
|
72
|
+
"react": "^18.2.0",
|
|
73
|
+
"react-dom": "^18.2.0"
|
|
74
|
+
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public"
|
|
77
|
+
},
|
|
78
|
+
"lint-staged": {
|
|
79
|
+
"*.{js,jsx,ts,tsx}": [
|
|
80
|
+
"pnpm lint --fix"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"scripts": {
|
|
84
|
+
"build": "tsc --p ./tsconfig.build.json && vite build && node ./scripts/docgen.cjs",
|
|
85
|
+
"build-storybook": "storybook build",
|
|
86
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
87
|
+
"dev": "storybook dev -p 6006",
|
|
88
|
+
"lint": "eslint lib stories --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
89
|
+
"preview": "vite preview",
|
|
90
|
+
"test": "vitest",
|
|
91
|
+
"test-coverage": "vitest run --coverage"
|
|
92
|
+
}
|
|
93
|
+
}
|