TP-34932 |removed the react-native-datetime-picker| Aman Singh
This commit is contained in:
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,3 +1,3 @@
|
||||
[submodule "RN-UI-LIB"]
|
||||
path = RN-UI-LIB
|
||||
url = git@github.cmd.navi-tech.in:medici/RN-UI-LIB.git
|
||||
url = git@github.com:navi-medici/RN-UI-LIB.git
|
||||
|
||||
Submodule RN-UI-LIB updated: 86c41c7d18...465107f462
@@ -53,10 +53,10 @@
|
||||
"react": "18.1.0",
|
||||
"react-hook-form": "7.40.0",
|
||||
"react-native": "0.70.6",
|
||||
"react-native-blob-util": "0.17.3",
|
||||
"react-native-call-log": "2.1.2",
|
||||
"react-native-code-push": "7.1.0",
|
||||
"react-native-contacts": "7.0.5",
|
||||
"react-native-date-picker": "4.2.10",
|
||||
"react-native-device-info": "10.3.0",
|
||||
"react-native-fast-image": "8.6.3",
|
||||
"react-native-geolocation-service": "5.3.1",
|
||||
@@ -74,11 +74,10 @@
|
||||
"react-native-toast-message": "2.1.5",
|
||||
"react-native-vector-icons": "9.2.0",
|
||||
"react-native-version-number": "0.3.6",
|
||||
"react-native-webview": "12.0.2",
|
||||
"react-redux": "8.0.5",
|
||||
"redux": "4.2.0",
|
||||
"redux-persist": "6.0.0",
|
||||
"react-native-webview": "12.0.2",
|
||||
"react-native-blob-util": "0.17.3"
|
||||
"redux-persist": "6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.12.9",
|
||||
@@ -102,6 +101,7 @@
|
||||
"eslint-config-airbnb-base": "^15.0.0",
|
||||
"eslint-config-airbnb-typescript": "17.0.0",
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"eslint-config-prettier-react": "0.0.24",
|
||||
"eslint-config-standard-with-typescript": "^34.0.1",
|
||||
"eslint-plugin-import": "^2.25.2",
|
||||
"eslint-plugin-jsx-a11y": "6.6.1",
|
||||
@@ -117,7 +117,6 @@
|
||||
"miragejs": "0.1.47",
|
||||
"prettier": "^2.8.7",
|
||||
"react-test-renderer": "18.1.0",
|
||||
"eslint-config-prettier-react": "0.0.24",
|
||||
"typescript": "4.8.3"
|
||||
},
|
||||
"jest": {
|
||||
|
||||
@@ -10,12 +10,12 @@ import ErrorMessage from './ErrorMessage';
|
||||
import { addClickstreamEvent } from '../../../services/clickstreamEventService';
|
||||
import { CLICKSTREAM_EVENT_NAMES } from '../../../common/Constants';
|
||||
import { AnswerType } from '../interface';
|
||||
import DateTimePicker, {
|
||||
import WebBasedDatePicker from '../../../../RN-UI-LIB/src/components/WebBasedDatePicker';
|
||||
import {
|
||||
BUSINESS_DATE_FORMAT,
|
||||
DefaultPickerModeVisibleFormatMapping,
|
||||
IDateTimePickerMode,
|
||||
} from '../../../../RN-UI-LIB/src/components/dateTimePicker/DateTimePicker';
|
||||
import WebBasedDatePicker from '../../../../RN-UI-LIB/src/components/WebBasedDatePicker';
|
||||
import { BUSINESS_DATE_FORMAT } from '../../../../RN-UI-LIB/src/utlis/dates';
|
||||
} from '../../../../RN-UI-LIB/src/utlis/dates';
|
||||
|
||||
interface IDateInput {
|
||||
questionType: string;
|
||||
|
||||
@@ -10,12 +10,12 @@ import ErrorMessage from './ErrorMessage';
|
||||
import { addClickstreamEvent } from '../../../services/clickstreamEventService';
|
||||
import { CLICKSTREAM_EVENT_NAMES } from '../../../common/Constants';
|
||||
import { AnswerType } from '../interface';
|
||||
import DateTimePicker, {
|
||||
DefaultPickerModeVisibleFormatMapping,
|
||||
IDateTimePickerMode,
|
||||
} from '../../../../RN-UI-LIB/src/components/dateTimePicker/DateTimePicker';
|
||||
import { convertTo24HourFormat } from '../../utlis/commonFunctions';
|
||||
import WebBasedDatePicker from '../../../../RN-UI-LIB/src/components/WebBasedDatePicker';
|
||||
import {
|
||||
DefaultPickerModeVisibleFormatMapping,
|
||||
IDateTimePickerMode,
|
||||
} from '../../../../RN-UI-LIB/src/utlis/dates';
|
||||
|
||||
interface ITimeInput {
|
||||
questionType: string;
|
||||
|
||||
@@ -7705,13 +7705,6 @@ react-native-contacts@7.0.5:
|
||||
resolved "https://registry.yarnpkg.com/react-native-contacts/-/react-native-contacts-7.0.5.tgz#648b6500ac1f67b79acb2b73b111d31a01f6037f"
|
||||
integrity sha512-RsWf5udhL/wpnBVu/oKVoIzogKcd7IwnxvNK48M4abICGtHxxv+te7hi4q04QjClytIsa5SylpJC2VsnpFDS2A==
|
||||
|
||||
react-native-date-picker@4.2.10:
|
||||
version "4.2.10"
|
||||
resolved "https://registry.yarnpkg.com/react-native-date-picker/-/react-native-date-picker-4.2.10.tgz#e84cba21ce413d72b2da1c784af3a8a4b2020df3"
|
||||
integrity sha512-Qtu5mvuESjhSKCsecl5+V3kcGxjB3yUUJbbAq6u8JVZj9/fRf8+IV/yfDSREqMoiLM1ljMumxFT2Qdqkw/++Lw==
|
||||
dependencies:
|
||||
prop-types "^15.8.1"
|
||||
|
||||
react-native-device-info@10.3.0:
|
||||
version "10.3.0"
|
||||
resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-10.3.0.tgz#6bab64d84d3415dd00cc446c73ec5e2e61fddbe7"
|
||||
|
||||
Reference in New Issue
Block a user