odaptos_design_system 1.4.60 → 1.4.62

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.
Files changed (40) hide show
  1. package/dist/Icons/Illustrations/Blog.d.ts +3 -0
  2. package/dist/Icons/Illustrations/EmotionsHeatMap.d.ts +3 -0
  3. package/dist/Icons/Illustrations/Faq.d.ts +3 -0
  4. package/dist/Icons/Illustrations/IntegratedUsabilityScore.d.ts +3 -0
  5. package/dist/Icons/Illustrations/InterviewTranscript.d.ts +3 -0
  6. package/dist/Icons/Illustrations/MetaAnalyse.d.ts +3 -0
  7. package/dist/Icons/Illustrations/MetaAnalyse2.d.ts +3 -0
  8. package/dist/Icons/Illustrations/ScheduleTasks.d.ts +3 -0
  9. package/dist/Icons/Illustrations/Sentiment.d.ts +3 -0
  10. package/dist/Icons/Illustrations/UsabilityBrowser.d.ts +3 -0
  11. package/dist/Icons/Illustrations/UserFlows.d.ts +3 -0
  12. package/dist/Icons/Illustrations/UserPanel.d.ts +3 -0
  13. package/dist/Icons/Illustrations/UxGuide.d.ts +3 -0
  14. package/dist/Icons/Illustrations/VideoFlag.d.ts +3 -0
  15. package/dist/Icons/Illustrations/VideoFlag2.d.ts +3 -0
  16. package/dist/Icons/index.d.ts +15 -0
  17. package/dist/odaptos_design_system.cjs.development.js +1455 -1
  18. package/dist/odaptos_design_system.cjs.development.js.map +1 -1
  19. package/dist/odaptos_design_system.cjs.production.min.js +1 -1
  20. package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
  21. package/dist/odaptos_design_system.esm.js +1441 -2
  22. package/dist/odaptos_design_system.esm.js.map +1 -1
  23. package/package.json +1 -1
  24. package/src/Icons/Illustrations/Blog.tsx +124 -0
  25. package/src/Icons/Illustrations/EmotionsHeatMap.tsx +113 -0
  26. package/src/Icons/Illustrations/Faq.tsx +74 -0
  27. package/src/Icons/Illustrations/IntegratedUsabilityScore.tsx +101 -0
  28. package/src/Icons/Illustrations/InterviewTranscript.tsx +162 -0
  29. package/src/Icons/Illustrations/MetaAnalyse.tsx +112 -0
  30. package/src/Icons/Illustrations/MetaAnalyse2.tsx +74 -0
  31. package/src/Icons/Illustrations/ScheduleTasks.tsx +118 -0
  32. package/src/Icons/Illustrations/Sentiment.tsx +112 -0
  33. package/src/Icons/Illustrations/UsabilityBrowser.tsx +127 -0
  34. package/src/Icons/Illustrations/UserFlows.tsx +133 -0
  35. package/src/Icons/Illustrations/UserPanel.tsx +127 -0
  36. package/src/Icons/Illustrations/UxGuide.tsx +151 -0
  37. package/src/Icons/Illustrations/VideoFlag.tsx +67 -0
  38. package/src/Icons/Illustrations/VideoFlag2.tsx +69 -0
  39. package/src/Icons/index.ts +15 -0
  40. package/src/TextInput/TextInput.tsx +1 -1
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Blog({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function EmotionsHeatMap({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Faq({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function IntegratedUsabilityScore({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function InterviewTranscript({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function MetaAnalyse({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function MetaAnalyse2({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function ScheduleTasks({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Sentiment({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function UsabilityBrowser({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function UserFlows({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function UserPanel({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function UxGuide({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function VideoFlag({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function VideoFlag2({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -35,6 +35,21 @@ export { default as MobileIcon } from './Equipment/MobileIcon';
35
35
  export { default as TvFlatScreenIcon } from './Equipment/TvFlatScreenIcon';
36
36
  export { default as TvIcon } from './Equipment/TvIcon';
37
37
  export { default as AngryIntervieweeFemale } from './Illustrations/AngryIntervieweeFemale';
38
+ export { default as Faq } from './Illustrations/Faq';
39
+ export { default as UsabilityBrowser } from './Illustrations/UsabilityBrowser';
40
+ export { default as EmotionsHeatMap } from './Illustrations/EmotionsHeatMap';
41
+ export { default as Sentiment } from './Illustrations/Sentiment';
42
+ export { default as UserPanel } from './Illustrations/UserPanel';
43
+ export { default as IntegratedUsabilityScore } from './Illustrations/IntegratedUsabilityScore';
44
+ export { default as VideoFlag2 } from './Illustrations/VideoFlag2';
45
+ export { default as ScheduleTasks } from './Illustrations/ScheduleTasks';
46
+ export { default as UxGuide } from './Illustrations/UxGuide';
47
+ export { default as InterviewTranscript } from './Illustrations/InterviewTranscript';
48
+ export { default as MetaAnalyse2 } from './Illustrations/MetaAnalyse2';
49
+ export { default as MetaAnalyse } from './Illustrations/MetaAnalyse';
50
+ export { default as UserFlows } from './Illustrations/UserFlows';
51
+ export { default as Blog } from './Illustrations/Blog';
52
+ export { default as VideoFlag } from './Illustrations/VideoFlag';
38
53
  export { default as AccountIcon } from './Interaction/AccountIcon';
39
54
  export { default as AddIcon } from './Interaction/AddIcon';
40
55
  export { default as AgendaIcon } from './Interaction/AgendaIcon';