@helpscout/ui-kit-react 0.0.1 → 0.1.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.
Files changed (43) hide show
  1. package/dist/lib/components/button/button.d.ts +2 -11
  2. package/dist/lib/components/button/button.d.ts.map +1 -1
  3. package/dist/lib/components/input/input.d.ts +16 -0
  4. package/dist/lib/components/input/input.d.ts.map +1 -0
  5. package/dist/lib/components/input/input.test.d.ts +2 -0
  6. package/dist/lib/components/input/input.test.d.ts.map +1 -0
  7. package/dist/lib/components/label/label.d.ts +30 -0
  8. package/dist/lib/components/label/label.d.ts.map +1 -0
  9. package/dist/lib/components/label/label.test.d.ts +2 -0
  10. package/dist/lib/components/label/label.test.d.ts.map +1 -0
  11. package/dist/lib/components/link/link.d.ts +2 -0
  12. package/dist/lib/components/link/link.d.ts.map +1 -1
  13. package/dist/lib/components/numberfield/numberfield.d.ts +8 -0
  14. package/dist/lib/components/numberfield/numberfield.d.ts.map +1 -0
  15. package/dist/lib/components/numberfield/numberfield.test.d.ts +2 -0
  16. package/dist/lib/components/numberfield/numberfield.test.d.ts.map +1 -0
  17. package/dist/lib/components/text/text.d.ts +31 -0
  18. package/dist/lib/components/text/text.d.ts.map +1 -0
  19. package/dist/lib/components/text/text.test.d.ts +2 -0
  20. package/dist/lib/components/text/text.test.d.ts.map +1 -0
  21. package/dist/lib/components/text/text.utils.d.ts +6 -0
  22. package/dist/lib/components/text/text.utils.d.ts.map +1 -0
  23. package/dist/lib/components/text-field/text-field.d.ts +20 -0
  24. package/dist/lib/components/text-field/text-field.d.ts.map +1 -0
  25. package/dist/lib/components/text-field/text-field.test.d.ts +2 -0
  26. package/dist/lib/components/text-field/text-field.test.d.ts.map +1 -0
  27. package/dist/lib/components/thumbnail/thumbnail.d.ts +25 -0
  28. package/dist/lib/components/thumbnail/thumbnail.d.ts.map +1 -0
  29. package/dist/lib/components/thumbnail/thumbnail.test.d.ts +2 -0
  30. package/dist/lib/components/thumbnail/thumbnail.test.d.ts.map +1 -0
  31. package/dist/lib/components/validation-alert/validation-alert.d.ts +15 -0
  32. package/dist/lib/components/validation-alert/validation-alert.d.ts.map +1 -0
  33. package/dist/lib/components/validation-alert/validation-alert.test.d.ts +2 -0
  34. package/dist/lib/components/validation-alert/validation-alert.test.d.ts.map +1 -0
  35. package/dist/lib/hooks/useFocusRing/useFocusRing.d.ts +8 -0
  36. package/dist/lib/hooks/useFocusRing/useFocusRing.d.ts.map +1 -0
  37. package/dist/lib/ui-kit-react.d.ts +8 -0
  38. package/dist/lib/ui-kit-react.d.ts.map +1 -1
  39. package/dist/prop-types.json +2141 -88
  40. package/dist/ui-kit-react.css +1 -1
  41. package/dist/ui-kit-react.js +13185 -10795
  42. package/dist/ui-kit-react.umd.cjs +53 -53
  43. package/package.json +19 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helpscout/ui-kit-react",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "module": "./dist/ui-kit-react.js",
6
6
  "main": "./dist/ui-kit-react.umd.cjs",
@@ -23,20 +23,22 @@
23
23
  "types": "./dist/ui-kit-react.d.ts",
24
24
  "dependencies": {
25
25
  "class-variance-authority": "^0.7.0",
26
- "react-aria-components": "^1.1.1"
26
+ "react-aria": "^3.32.1",
27
+ "react-aria-components": "^1.1.1",
28
+ "clsx": "^2.0.0"
27
29
  },
28
30
  "devDependencies": {
31
+ "@chromatic-com/storybook": "^1",
29
32
  "@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",
33
+ "@storybook/addon-docs": "^8.0.9",
34
+ "@storybook/addon-essentials": "^8.0.9",
35
+ "@storybook/addon-interactions": "^8.0.9",
36
+ "@storybook/addon-links": "^8.0.9",
37
+ "@storybook/addon-onboarding": "^8.0.9",
38
+ "@storybook/blocks": "^8.0.9",
39
+ "@storybook/react": "^8.0.9",
40
+ "@storybook/react-vite": "^8.0.9",
41
+ "@storybook/test": "^8.0.9",
40
42
  "@testing-library/jest-dom": "^6.4.2",
41
43
  "@testing-library/react": "^14.2.2",
42
44
  "@testing-library/user-event": "^14.5.2",
@@ -49,7 +51,7 @@
49
51
  "@vitest/coverage-v8": "^1.4.0",
50
52
  "@vitest/ui": "^1.4.0",
51
53
  "eslint": "^8.56.0",
52
- "eslint-plugin-storybook": "^0.6.15",
54
+ "eslint-plugin-storybook": "^0.8.0",
53
55
  "install": "^0.13.0",
54
56
  "jsdom": "^24.0.0",
55
57
  "npm": "^10.5.1",
@@ -57,15 +59,15 @@
57
59
  "react": "^18.2.0",
58
60
  "react-docgen-typescript": "^2.2.2",
59
61
  "react-dom": "^18.2.0",
60
- "storybook": "^7.6.7",
62
+ "storybook": "^8.0.9",
61
63
  "typescript": "^5.2.2",
62
64
  "vite": "^5.1.4",
63
65
  "vite-plugin-dts": "^3.7.3",
64
66
  "vite-plugin-lib-inject-css": "^1.3.0",
65
67
  "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"
68
+ "@apps-platform/eslint-config": "0.0.1",
69
+ "@helpscout/apps-platform-theme-config": "0.0.1",
70
+ "@helpscout/apps-platform-typescript-config": "0.0.1"
69
71
  },
70
72
  "peerDependencies": {
71
73
  "@helpscout/javascript-sdk": "^0.8.0",