@eohjsc/react-native-smart-city 0.4.33 → 0.4.35

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eohjsc/react-native-smart-city",
3
3
  "title": "React Native Smart Home",
4
- "version": "0.4.33",
4
+ "version": "0.4.35",
5
5
  "description": "TODO",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -100,8 +100,8 @@
100
100
  "typescript": "^4.1.3"
101
101
  },
102
102
  "dependencies": {
103
- "@ant-design/icons-react-native": "^2.2.1",
104
- "@ant-design/react-native": "^4.0.5",
103
+ "@ant-design/icons-react-native": "^2.3.2",
104
+ "@ant-design/react-native": "^5.0.4",
105
105
  "@babel/helper-environment-visitor": "^7.16.7",
106
106
  "@eohjsc/react-native-keyboard-aware-scroll-view": "^0.9.5",
107
107
  "@formatjs/intl-getcanonicallocales": "^1.4.5",
@@ -114,7 +114,7 @@
114
114
  "@react-native-community/async-storage": "^1.12.1",
115
115
  "@react-native-community/cameraroll": "^4.0.0",
116
116
  "@react-native-community/checkbox": "^0.5.5",
117
- "@react-native-community/datetimepicker": "https://github.com/hinh-eoh/datepicker",
117
+ "@react-native-community/datetimepicker": "^7.0.1",
118
118
  "@react-native-community/geolocation": "^2.0.2",
119
119
  "@react-native-community/masked-view": "^0.1.10",
120
120
  "@react-native-community/netinfo": "^9.3.4",
@@ -119,7 +119,7 @@ const DateTimeRangeChange = memo(
119
119
  </View>
120
120
  <DateTimePickerModal
121
121
  isVisible={eventPicker.showModalStart}
122
- date={startDate.valueOf()}
122
+ date={startDate._d}
123
123
  mode={mode}
124
124
  onConfirm={onConfirmStart}
125
125
  onCancel={onCancel}
@@ -132,7 +132,7 @@ const DateTimeRangeChange = memo(
132
132
  />
133
133
  <DateTimePickerModal
134
134
  isVisible={eventPicker.showModalEnd}
135
- date={endDate.valueOf()}
135
+ date={endDate._d}
136
136
  mode={mode}
137
137
  onConfirm={onConfirmEnd}
138
138
  onCancel={onCancel}
@@ -142,7 +142,7 @@ const DateTimeRangeChange = memo(
142
142
  cancelTextIOS={t('cancel')}
143
143
  confirmTextIOS={t('confirm')}
144
144
  maximumDate={new Date()}
145
- minimumDate={startDate.valueOf()}
145
+ minimumDate={startDate._d}
146
146
  />
147
147
  </View>
148
148
  );