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.
- package/dist/Icons/Illustrations/Blog.d.ts +3 -0
- package/dist/Icons/Illustrations/EmotionsHeatMap.d.ts +3 -0
- package/dist/Icons/Illustrations/Faq.d.ts +3 -0
- package/dist/Icons/Illustrations/IntegratedUsabilityScore.d.ts +3 -0
- package/dist/Icons/Illustrations/InterviewTranscript.d.ts +3 -0
- package/dist/Icons/Illustrations/MetaAnalyse.d.ts +3 -0
- package/dist/Icons/Illustrations/MetaAnalyse2.d.ts +3 -0
- package/dist/Icons/Illustrations/ScheduleTasks.d.ts +3 -0
- package/dist/Icons/Illustrations/Sentiment.d.ts +3 -0
- package/dist/Icons/Illustrations/UsabilityBrowser.d.ts +3 -0
- package/dist/Icons/Illustrations/UserFlows.d.ts +3 -0
- package/dist/Icons/Illustrations/UserPanel.d.ts +3 -0
- package/dist/Icons/Illustrations/UxGuide.d.ts +3 -0
- package/dist/Icons/Illustrations/VideoFlag.d.ts +3 -0
- package/dist/Icons/Illustrations/VideoFlag2.d.ts +3 -0
- package/dist/Icons/index.d.ts +15 -0
- package/dist/odaptos_design_system.cjs.development.js +1455 -1
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +1441 -2
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/Illustrations/Blog.tsx +124 -0
- package/src/Icons/Illustrations/EmotionsHeatMap.tsx +113 -0
- package/src/Icons/Illustrations/Faq.tsx +74 -0
- package/src/Icons/Illustrations/IntegratedUsabilityScore.tsx +101 -0
- package/src/Icons/Illustrations/InterviewTranscript.tsx +162 -0
- package/src/Icons/Illustrations/MetaAnalyse.tsx +112 -0
- package/src/Icons/Illustrations/MetaAnalyse2.tsx +74 -0
- package/src/Icons/Illustrations/ScheduleTasks.tsx +118 -0
- package/src/Icons/Illustrations/Sentiment.tsx +112 -0
- package/src/Icons/Illustrations/UsabilityBrowser.tsx +127 -0
- package/src/Icons/Illustrations/UserFlows.tsx +133 -0
- package/src/Icons/Illustrations/UserPanel.tsx +127 -0
- package/src/Icons/Illustrations/UxGuide.tsx +151 -0
- package/src/Icons/Illustrations/VideoFlag.tsx +67 -0
- package/src/Icons/Illustrations/VideoFlag2.tsx +69 -0
- package/src/Icons/index.ts +15 -0
- package/src/TextInput/TextInput.tsx +1 -1
package/dist/Icons/index.d.ts
CHANGED
|
@@ -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';
|