odaptos_design_system 1.4.50 → 1.4.52
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/index.d.ts +19 -20
- package/dist/odaptos_design_system.cjs.development.js +2264 -2214
- 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 +2265 -2216
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Interviews/Chat.modules.scss +1 -1
- package/src/index.ts +19 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,48 +1,47 @@
|
|
|
1
1
|
export * from './Accordion/Accordion';
|
|
2
|
-
export * from './SingleSelect/SingleSelect';
|
|
3
|
-
export * from './MultiSelect/MultiSelect';
|
|
4
2
|
export * from './Badge/Badge';
|
|
5
3
|
export * from './Buttons/Button';
|
|
6
4
|
export * from './Buttons/IconButton';
|
|
7
5
|
export * from './Checkbox/Checkbox';
|
|
8
|
-
export * from './
|
|
6
|
+
export * from './ColorGuide/colors';
|
|
7
|
+
export * from './DatePicker/DatePicker';
|
|
9
8
|
export * from './Icons';
|
|
9
|
+
export * from './Interviews/Chat';
|
|
10
|
+
export * from './Interviews/ChatInput';
|
|
11
|
+
export * from './Interviews/CircledIconButton';
|
|
12
|
+
export * from './Interviews/GoBack';
|
|
13
|
+
export * from './Interviews/InterviewButton';
|
|
14
|
+
export * from './Interviews/StartInterview';
|
|
15
|
+
export * from './Interviews/Task';
|
|
16
|
+
export * from './Interviews/WelcomeMessage';
|
|
10
17
|
export * from './LateralMenu/LateralMenu';
|
|
11
18
|
export * from './Modal/Modal';
|
|
19
|
+
export * from './MultiSelect/MultiSelect';
|
|
12
20
|
export * from './Notifications/Banner';
|
|
13
21
|
export * from './Notifications/NotificationIcon';
|
|
14
22
|
export * from './Notifications/Toast';
|
|
15
23
|
export * from './Popover/Popover';
|
|
24
|
+
export * from './PopoverBeta/PopoverBeta';
|
|
16
25
|
export * from './Radio/Radio';
|
|
26
|
+
export * from './Search/Search';
|
|
27
|
+
export * from './SingleSelect/SingleSelect';
|
|
17
28
|
export * from './Step/Step';
|
|
18
29
|
export * from './Switch/Switch';
|
|
19
|
-
export * from './Table/
|
|
30
|
+
export * from './Table/TableFooter';
|
|
20
31
|
export * from './Table/header';
|
|
32
|
+
export * from './Table/index';
|
|
21
33
|
export * from './Table/rows';
|
|
22
34
|
export * from './Table/table-cell';
|
|
23
|
-
export * from './Table/TableFooter';
|
|
24
35
|
export * from './Tabs/Tabs';
|
|
25
36
|
export * from './Tabs/TabsUnderLine';
|
|
26
|
-
export * from './
|
|
37
|
+
export * from './Tag/Tag';
|
|
27
38
|
export * from './TextInput/TextInput';
|
|
39
|
+
export * from './Textarea/Textarea';
|
|
40
|
+
export * from './TimePicker/TimePicker';
|
|
28
41
|
export * from './Tooltip/Tooltip';
|
|
29
42
|
export * from './Typography/Caption';
|
|
30
43
|
export * from './Typography/Text';
|
|
31
44
|
export * from './Typography/TextForButton';
|
|
32
45
|
export * from './Typography/TextForDropDownItem';
|
|
33
46
|
export * from './Typography/Title';
|
|
34
|
-
export * from './Search/Search';
|
|
35
|
-
export * from './ColorGuide/colors';
|
|
36
|
-
export * from './Interviews/Chat';
|
|
37
|
-
export * from './Interviews/ChatInput';
|
|
38
|
-
export * from './Interviews/CircledIconButton';
|
|
39
|
-
export * from './Interviews/InterviewButton';
|
|
40
|
-
export * from './Interviews/GoBack';
|
|
41
|
-
export * from './Interviews/Task';
|
|
42
|
-
export * from './Interviews/StartInterview';
|
|
43
|
-
export * from './Interviews/WelcomeMessage';
|
|
44
|
-
export * from './Icons';
|
|
45
|
-
export * from './ColorGuide/colors';
|
|
46
|
-
export * from './DatePicker/DatePicker';
|
|
47
|
-
export * from './TimePicker/TimePicker';
|
|
48
47
|
export * from './utils/getIconSize';
|