paris 0.8.21 → 0.8.22

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # paris
2
2
 
3
+ ## 0.8.22
4
+
5
+ ### Patch Changes
6
+
7
+ - 0243ccb: fix(Field): Remove stopPropagation on Field component
8
+
3
9
  ## 0.8.21
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "paris",
3
3
  "author": "Sanil Chawla <sanil@slingshot.fm> (https://sanil.co)",
4
4
  "description": "Paris is Slingshot's React design system. It's a collection of reusable components, design tokens, and guidelines that help us build consistent, accessible, and performant user interfaces.",
5
- "version": "0.8.21",
5
+ "version": "0.8.22",
6
6
  "homepage": "https://paris.slingshot.fm",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -68,7 +68,6 @@ export const Field: FC<PropsWithChildren<FieldProps>> = ({
68
68
  // className,
69
69
  )}
70
70
  onClick={(e) => {
71
- e.preventDefault();
72
71
  if (typeof window !== 'undefined' && htmlFor) {
73
72
  const input = document.getElementById(htmlFor);
74
73
  if (input && !disabled) {