react-timezone-select 1.2.3-experimental.4 → 1.2.3-experimental.5

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 (2) hide show
  1. package/dist/index.js +1 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
1
  import * as React from 'react';
3
2
  import Select from 'react-select';
4
3
  import spacetime from 'spacetime';
@@ -104,6 +103,6 @@ const TimezoneSelect = ({ value, onBlur, onChange, labelStyle = 'original', time
104
103
  return getOptions.find(tz => tz.value === zone.value);
105
104
  }
106
105
  };
107
- return (_jsx(Select, { value: parseTimezone(value), onChange: handleChange, options: getOptions, onBlur: onBlur, ...props }, void 0));
106
+ return (React.createElement(Select, { value: parseTimezone(value), onChange: handleChange, options: getOptions, onBlur: onBlur, ...props }));
108
107
  };
109
108
  export default TimezoneSelect;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-timezone-select",
3
- "version": "1.2.3-experimental.4",
3
+ "version": "1.2.3-experimental.5",
4
4
  "description": "Usable, dynamic React Timezone Select",
5
5
  "scripts": {
6
6
  "start": "concurrently npm:start:example npm:build",