dmed-voice-assistant 1.0.2 → 1.0.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "dmed-voice-assistant",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "main": "src/VoiceAssistant/index.js",
5
5
  "files": [
6
6
  "src/VoiceAssistant",
@@ -16,8 +16,8 @@ import {
16
16
  LanguageIcon,
17
17
  SmallCloseIcon,
18
18
  CommandIcon
19
- } from "../shared/svgs";
20
- import RecognitionListItem from "../shared/RecognitionListItem";
19
+ } from "./components/svgs";
20
+ import RecognitionListItem from "./components/RecognitionListItem";
21
21
 
22
22
  const StyledSelect = styled(Select)(({ theme }) => ({
23
23
  height: '41.4px',
@@ -1,9 +1,9 @@
1
1
  import { useEffect, useState, useRef } from "react";
2
2
  import { Box, Typography, MenuItem } from "@mui/material";
3
3
  import Grid from '@mui/material/Grid2';
4
- import { MicIcon, StartIcon, SmallStartIcon, SettingIcon, StopIcon, RedStopIcon, LanguageIcon, BoxIcon, SmallPauseIcon } from "../shared/svgs";
5
- import StyledSelect from "../shared/StyledSelect";
6
- import RecordListItem from "../shared/RecordListItem";
4
+ import { MicIcon, StartIcon, SmallStartIcon, SettingIcon, StopIcon, RedStopIcon, LanguageIcon, BoxIcon, SmallPauseIcon } from "./components/svgs";
5
+ import StyledSelect from "./components/StyledSelect";
6
+ import RecordListItem from "./components/RecordListItem";
7
7
  import Recorder from "recorder-js";
8
8
 
9
9
  const apiUrl = 'https://api.origintechx.dev/qa/v1/diagnose/voice';
@@ -1,26 +0,0 @@
1
- import { styled } from "@mui/material";
2
- import { MobileDatePicker } from '@mui/x-date-pickers/MobileDatePicker';
3
-
4
- const StyledDatePicker = styled(MobileDatePicker)(({ theme }) => ({
5
- width: '100px',
6
- '& .MuiInputBase-root': {
7
- height: '32.4px',
8
- paddingLeft: '4.5px',
9
- paddingRight: '4.5px',
10
- },
11
- '& .MuiInputBase-input': {
12
- fontFamily: 'Reddit Sans !important',
13
- fontSize: '14px !important',
14
- fontWeight: '400 !important',
15
- lineHeight: '18.18px !important',
16
- color: '#494A48',
17
- padding: "unset",
18
- textAlign: "center"
19
- },
20
- '& .MuiInputBase-root fieldset': {
21
- border: '0.9px solid #D8DEE4',
22
- borderRadius: "5px",
23
- },
24
- }));
25
-
26
- export default StyledDatePicker;