odaptos_design_system 2.0.26 → 2.0.28

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,5 +1,5 @@
1
1
  {
2
- "version": "2.0.26",
2
+ "version": "2.0.28",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -39,6 +39,7 @@ export const PopoverBeta = ({
39
39
  viewBox="0 0 78 16"
40
40
  fill="none"
41
41
  xmlns="http://www.w3.org/2000/svg"
42
+ className={className}
42
43
  >
43
44
  <rect
44
45
  width="78"
@@ -17,9 +17,9 @@ interface Texts {
17
17
  endOfScenarioTitle: string;
18
18
  endOfScenarioDescription: string;
19
19
  endOfScenarioCTA: string;
20
- stopRecTitle: string;
21
- stopRecDescription: string;
22
- stopRecCTA: string;
20
+ stopRecTitleNM: string;
21
+ stopRecDescriptionNM: string;
22
+ stopRecCTANM: string;
23
23
  SusExplanationTitle: string;
24
24
  SusExplanationDescription: string;
25
25
  }
@@ -205,9 +205,9 @@ export const SelfProtocolManager = ({
205
205
  {/* End of the interview */}
206
206
  {areAllTasksSend && !isRecordingFinished && isLastScenario && (
207
207
  <EndRecording
208
- stopRecTitle={texts.stopRecTitle}
209
- stopRecDescription={texts.stopRecDescription}
210
- stopRecCTA={texts.stopRecCTA}
208
+ stopRecTitle={texts.stopRecTitleNM}
209
+ stopRecDescription={texts.stopRecDescriptionNM}
210
+ stopRecCTA={texts.stopRecCTANM}
211
211
  stopRecording={stopRecording}
212
212
  />
213
213
  )}
@@ -7,12 +7,12 @@ import { Text, colors } from '../../';
7
7
  const CssTextField = styled(TextField)({
8
8
  '& .MuiInputBase-input': {
9
9
  color: '#26292E',
10
- fontFamily: 'OpenSans !important',
10
+ fontFamily: 'Open Sans !important',
11
11
  fontSize: '1rem',
12
12
  },
13
13
  '& .MuiInputBase-input.Mui-disabled': {
14
14
  color: '#26292E',
15
- fontFamily: 'OpenSans !important',
15
+ fontFamily: 'Open Sans !important',
16
16
  fontSize: '1rem',
17
17
  },
18
18
  '& .MuiInputBase-input.MuiOutlinedInput-input.Mui-disabled': {
@@ -39,25 +39,25 @@ const CssTextField = styled(TextField)({
39
39
  },
40
40
  '& label': {
41
41
  color: '#26292E',
42
- fontFamily: 'OpenSans !important',
42
+ fontFamily: 'Open Sans !important',
43
43
  fontSize: '1rem',
44
44
  },
45
45
  '& label.Mui-disabled.Mui-error': {
46
46
  color: '#26292E',
47
47
  opacity: 0.5,
48
- fontFamily: 'OpenSans !important',
48
+ fontFamily: 'Open Sans !important',
49
49
  fontSize: '1rem',
50
50
  },
51
51
  '& label.Mui-focused': {
52
52
  color: '#26292E',
53
- fontFamily: 'OpenSans',
53
+ fontFamily: 'Open Sans',
54
54
  fontSize: '1rem',
55
55
  backgroundColor: 'transparent',
56
56
  marginRight: 5,
57
57
  paddingRight: 5,
58
58
  },
59
59
  '& .MuiOutlinedInput-root': {
60
- fontFamily: 'OpenSans',
60
+ fontFamily: 'Open Sans',
61
61
  '& fieldset': {
62
62
  borderColor: '#96989A',
63
63
  },
@@ -173,12 +173,12 @@ export const TextInput = (props: InputProps) => {
173
173
  endAdornment,
174
174
  startAdornment,
175
175
  style: {
176
- fontFamily: 'OpenSans',
176
+ fontFamily: 'Open Sans',
177
177
  fontSize: '1rem',
178
178
  },
179
179
  }}
180
180
  InputLabelProps={{
181
- style: { fontFamily: 'OpenSans', fontSize: '1rem' },
181
+ style: { fontFamily: 'Open Sans', fontSize: '1rem' },
182
182
  ...InputLabelProps,
183
183
  }}
184
184
  inputProps={inputProps}