@cambly/syntax-core 5.9.0 → 5.10.0

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.mjs CHANGED
@@ -1200,6 +1200,7 @@ var SelectList = ({
1200
1200
  helperText,
1201
1201
  label,
1202
1202
  onChange,
1203
+ onClick,
1203
1204
  placeholderText,
1204
1205
  selectedValue = "",
1205
1206
  size = "md"
@@ -1232,7 +1233,7 @@ var SelectList = ({
1232
1233
  // for focus mouse
1233
1234
  }),
1234
1235
  onChange,
1235
- onClick: (e) => e.stopPropagation(),
1236
+ onClick,
1236
1237
  value: placeholderText && !selectedValue ? placeholderText : selectedValue,
1237
1238
  onFocus: () => setIsFocused(true),
1238
1239
  onBlur: () => setIsFocused(false),