react-timezone-select 1.1.14 → 1.2.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/README.md +3 -3
- package/dist/index.cjs +5704 -0
- package/dist/index.cjs.map +7 -0
- package/dist/index.d.ts +3 -7
- package/dist/index.js +5683 -117
- package/dist/index.js.map +7 -1
- package/package.json +27 -18
- package/dist/__mocks__/cssStub.d.ts +0 -0
- package/dist/__mocks__/cssStub.js +0 -6
- package/dist/__mocks__/cssStub.js.map +0 -1
- package/dist/__tests__/TimezoneSelect.test.d.ts +0 -1
- package/dist/__tests__/TimezoneSelect.test.js +0 -178
- package/dist/__tests__/TimezoneSelect.test.js.map +0 -1
- package/dist/index.css +0 -3
- package/dist/index.jsx +0 -139
- package/dist/index.jsx.map +0 -1
- package/dist/timezone-list.js +0 -83
- package/dist/timezone-list.js.map +0 -1
- package/dist/types/globals.js +0 -2
- package/dist/types/globals.js.map +0 -1
- package/dist/types/timezone.js +0 -2
- package/dist/types/timezone.js.map +0 -1
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@ Another react timezone select component, I know.. However this one has a few key
|
|
|
11
11
|
|
|
12
12
|
While looking around for a good option, I had trouble finding a timezone select components which:
|
|
13
13
|
|
|
14
|
-
1
|
|
15
|
-
2
|
|
14
|
+
1. Adjusted the choices automatically with Daylight Savings Time (DST)
|
|
15
|
+
2. Didn't have a huge list of choices to scroll through when technically only 24 (ish) are necessary
|
|
16
16
|
|
|
17
17
|
#### Demo: [ndom91.github.io/react-timezone-select](https://ndom91.github.io/react-timezone-select/)
|
|
18
18
|
|
|
@@ -101,7 +101,7 @@ module.exports = withTM({
|
|
|
101
101
|
})
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
**Update**: Next.js
|
|
104
|
+
**Update**: Next.js 12 now supports ESM packages by default. If you have any problems with this package in a Next.js 12 project, please let me know!
|
|
105
105
|
|
|
106
106
|
### 🕒 Custom Timezones
|
|
107
107
|
|