@veritone-ce/design-system 1.12.35 → 1.12.36
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/assets/theme.js +49 -63
- package/dist/components/Alert/index.d.ts +1 -1
- package/dist/components/Alert/index.js +20 -23
- package/dist/components/AudioSlider/index.js +7 -16
- package/dist/components/Breadcrumbs/breadcrumbs.theme.d.ts +1 -1
- package/dist/components/Breadcrumbs/breadcrumbs.theme.js +1 -8
- package/dist/components/Breadcrumbs/index.js +11 -19
- package/dist/components/Button/Indicator.js +6 -13
- package/dist/components/Button/button.theme.d.ts +1 -1
- package/dist/components/Button/button.theme.js +10 -22
- package/dist/components/Button/index.js +10 -21
- package/dist/components/Checkbox/checkbox.theme.d.ts +1 -1
- package/dist/components/Checkbox/checkbox.theme.js +1 -8
- package/dist/components/Checkbox/index.js +6 -14
- package/dist/components/Drawer/index.js +5 -15
- package/dist/components/FileUploader/index.js +40 -65
- package/dist/components/FileUploader/useUploadFile.d.ts +1 -1
- package/dist/components/FileUploader/useUploadFile.js +22 -44
- package/dist/components/FormControlLabel/index.d.ts +1 -1
- package/dist/components/FormControlLabel/index.js +5 -15
- package/dist/components/Input/index.js +7 -15
- package/dist/components/Input/input.theme.js +3 -10
- package/dist/components/LinearProgress/index.js +10 -16
- package/dist/components/LinearProgress/linearProgress.theme.d.ts +1 -2
- package/dist/components/LinearProgress/linearProgress.theme.js +2 -9
- package/dist/components/Link/index.js +7 -22
- package/dist/components/List/index.js +5 -15
- package/dist/components/ListItem/index.js +5 -15
- package/dist/components/ListItemButton/index.js +5 -15
- package/dist/components/ListItemText/index.js +5 -15
- package/dist/components/MenuFlyout/constants.js +3 -12
- package/dist/components/MenuFlyout/index.js +12 -19
- package/dist/components/MenuFlyout/menuFlyout.theme.d.ts +2 -2
- package/dist/components/MenuFlyout/menuFlyout.theme.js +3 -11
- package/dist/components/Modal/index.js +7 -14
- package/dist/components/Modal/modal.theme.js +2 -9
- package/dist/components/Panel/index.js +18 -25
- package/dist/components/ProgressIndicator/DefaultProgress.d.ts +1 -1
- package/dist/components/ProgressIndicator/DefaultProgress.js +8 -14
- package/dist/components/ProgressIndicator/MLProgress.d.ts +1 -1
- package/dist/components/ProgressIndicator/MLProgress.js +8 -14
- package/dist/components/ProgressIndicator/index.js +10 -23
- package/dist/components/RadioButton/RadioButton.theme.d.ts +1 -1
- package/dist/components/RadioButton/RadioButton.theme.js +4 -11
- package/dist/components/RadioButton/index.js +6 -14
- package/dist/components/RadioGroup/index.d.ts +2 -2
- package/dist/components/RadioGroup/index.js +5 -15
- package/dist/components/Select/index.js +20 -30
- package/dist/components/Select/select.theme.d.ts +1 -1
- package/dist/components/Select/select.theme.js +1 -8
- package/dist/components/StatusChip/constants.js +3 -12
- package/dist/components/StatusChip/index.js +6 -14
- package/dist/components/StatusChip/statusChip.theme.d.ts +1 -1
- package/dist/components/StatusChip/statusChip.theme.js +7 -19
- package/dist/components/Step/index.js +5 -13
- package/dist/components/StepLabel/index.js +5 -15
- package/dist/components/Stepper/index.js +5 -13
- package/dist/components/Stepper/stepper.theme.d.ts +1 -1
- package/dist/components/Stepper/stepper.theme.js +2 -9
- package/dist/components/Table/index.js +27 -49
- package/dist/components/Tabs/index.js +12 -21
- package/dist/components/Tabs/tabs.theme.d.ts +1 -1
- package/dist/components/Tabs/tabs.theme.js +1 -8
- package/dist/components/ThemeProvider/index.js +9 -18
- package/dist/components/Toast/index.d.ts +1 -1
- package/dist/components/Toast/index.js +8 -23
- package/dist/components/Typography/index.js +5 -13
- package/dist/components/UtilityRail/index.js +17 -25
- package/dist/components/UtilityRail/mock.d.ts +1 -1
- package/dist/components/UtilityRail/mock.js +2 -9
- package/dist/components/ZeroState/index.js +5 -12
- package/dist/components/icons/HomeOutlinedIcon/index.js +4 -11
- package/dist/components/icons/IconGroups/index.js +4 -12
- package/dist/components/icons/IconListItem/index.d.ts +1 -1
- package/dist/components/icons/IconListItem/index.js +4 -12
- package/dist/index.d.ts +70 -70
- package/dist/index.js +36 -304
- package/package.json +33 -31
package/dist/index.d.ts
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { createDesignSystemTheme, useTheme } from './assets/theme';
|
|
2
|
-
export type { Theme } from './assets/theme';
|
|
3
|
-
export { default as Alert } from './components/Alert';
|
|
4
|
-
export type { AlertProps } from './components/Alert';
|
|
5
|
-
export { default as AudioSlider } from './components/AudioSlider';
|
|
6
|
-
export type { AudioSliderProps } from './components/AudioSlider';
|
|
7
|
-
export { default as Breadcrumbs } from './components/Breadcrumbs';
|
|
8
|
-
export type { BreadcrumbsProps, BreadcrumbsLinkComponentProps, BreadcrumbsLinkComponent } from './components/Breadcrumbs';
|
|
9
|
-
export { default as Button } from './components/Button';
|
|
10
|
-
export type { ButtonProps } from './components/Button';
|
|
11
|
-
export { default as Checkbox } from './components/Checkbox';
|
|
12
|
-
export type { CheckboxProps } from './components/Checkbox';
|
|
13
|
-
export { default as Drawer } from './components/Drawer';
|
|
14
|
-
export type { DrawerProps } from './components/Drawer';
|
|
15
|
-
export { default as FileUploader } from './components/FileUploader';
|
|
16
|
-
export type { FileUploaderProps } from './components/FileUploader';
|
|
17
|
-
export { default as FormControlLabel } from './components/FormControlLabel';
|
|
18
|
-
export type { FormControlLabelProps } from './components/FormControlLabel';
|
|
19
|
-
export { default as Input } from './components/Input';
|
|
20
|
-
export type { InputProps } from './components/Input';
|
|
21
|
-
export { default as LinearProgress } from './components/LinearProgress';
|
|
22
|
-
export type { LinearProgressProps } from './components/LinearProgress';
|
|
23
|
-
export { default as Link } from './components/Link';
|
|
24
|
-
export type { LinkProps } from './components/Link';
|
|
25
|
-
export { default as List } from './components/List';
|
|
26
|
-
export type { ListProps } from './components/List';
|
|
27
|
-
export { default as ListItem } from './components/ListItem';
|
|
28
|
-
export type { ListItemProps } from './components/ListItem';
|
|
29
|
-
export { default as ListItemButton } from './components/ListItemButton';
|
|
30
|
-
export type { ListItemButtonProps } from './components/ListItemButton';
|
|
31
|
-
export { default as ListItemText } from './components/ListItemText';
|
|
32
|
-
export type { ListItemTextProps } from './components/ListItemText';
|
|
33
|
-
export { default as MenuFlyout } from './components/MenuFlyout';
|
|
34
|
-
export type { MenuFlyoutProps } from './components/MenuFlyout';
|
|
35
|
-
export { default as Modal } from './components/Modal';
|
|
36
|
-
export type { ModalProps } from './components/Modal';
|
|
37
|
-
export { default as Panel } from './components/Panel';
|
|
38
|
-
export type { PanelProps } from './components/Panel';
|
|
39
|
-
export { default as ProgressIndicator } from './components/ProgressIndicator';
|
|
40
|
-
export type { ProgressIndicatorProps } from './components/ProgressIndicator';
|
|
41
|
-
export { default as RadioButton } from './components/RadioButton';
|
|
42
|
-
export type { RadioButtonProps } from './components/RadioButton';
|
|
43
|
-
export { default as RadioGroup } from './components/RadioGroup';
|
|
44
|
-
export type { RadioGroupProps } from './components/RadioGroup';
|
|
45
|
-
export { default as Select } from './components/Select';
|
|
46
|
-
export type { SelectProps } from './components/Select';
|
|
47
|
-
export { default as StatusChip } from './components/StatusChip';
|
|
48
|
-
export type { StatusChipProps } from './components/StatusChip';
|
|
49
|
-
export { default as Step } from './components/Step';
|
|
50
|
-
export type { StepProps } from './components/Step';
|
|
51
|
-
export { default as StepLabel } from './components/StepLabel';
|
|
52
|
-
export type { StepLabelProps } from './components/StepLabel';
|
|
53
|
-
export { default as Stepper } from './components/Stepper';
|
|
54
|
-
export type { StepperProps } from './components/Stepper';
|
|
55
|
-
export { Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel } from './components/Table';
|
|
56
|
-
export type { TableProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableRowProps, TableSortLabelProps } from './components/Table';
|
|
57
|
-
export { default as Tabs } from './components/Tabs';
|
|
58
|
-
export type { BasicTabsProps, Tab } from './components/Tabs';
|
|
59
|
-
export { default as ThemeProvider } from './components/ThemeProvider';
|
|
60
|
-
export type { ThemeProviderProps } from './components/ThemeProvider';
|
|
61
|
-
export { default as Toast } from './components/Toast';
|
|
62
|
-
export type { ToastProps } from './components/Toast';
|
|
63
|
-
export { default as Typography } from './components/Typography';
|
|
64
|
-
export type { TypographyProps } from './components/Typography';
|
|
65
|
-
export { default as HomeOutlinedIcon } from './components/icons/HomeOutlinedIcon';
|
|
66
|
-
export type { HomeOutlinedIconProps } from './components/icons/HomeOutlinedIcon';
|
|
67
|
-
export { default as IconGroups } from './components/icons/IconGroups';
|
|
68
|
-
export type { IconGroupsProps } from './components/icons/IconGroups';
|
|
69
|
-
export { default as IconListItem } from './components/icons/IconListItem';
|
|
70
|
-
export type { IconListItemProps } from './components/icons/IconListItem';
|
|
1
|
+
export { createDesignSystemTheme, useTheme } from './assets/theme.js';
|
|
2
|
+
export type { Theme } from './assets/theme.js';
|
|
3
|
+
export { default as Alert } from './components/Alert/index.js';
|
|
4
|
+
export type { AlertProps } from './components/Alert/index.js';
|
|
5
|
+
export { default as AudioSlider } from './components/AudioSlider/index.js';
|
|
6
|
+
export type { AudioSliderProps } from './components/AudioSlider/index.js';
|
|
7
|
+
export { default as Breadcrumbs } from './components/Breadcrumbs/index.js';
|
|
8
|
+
export type { BreadcrumbsProps, BreadcrumbsLinkComponentProps, BreadcrumbsLinkComponent } from './components/Breadcrumbs/index.js';
|
|
9
|
+
export { default as Button } from './components/Button/index.js';
|
|
10
|
+
export type { ButtonProps } from './components/Button/index.js';
|
|
11
|
+
export { default as Checkbox } from './components/Checkbox/index.js';
|
|
12
|
+
export type { CheckboxProps } from './components/Checkbox/index.js';
|
|
13
|
+
export { default as Drawer } from './components/Drawer/index.js';
|
|
14
|
+
export type { DrawerProps } from './components/Drawer/index.js';
|
|
15
|
+
export { default as FileUploader } from './components/FileUploader/index.js';
|
|
16
|
+
export type { FileUploaderProps } from './components/FileUploader/index.js';
|
|
17
|
+
export { default as FormControlLabel } from './components/FormControlLabel/index.js';
|
|
18
|
+
export type { FormControlLabelProps } from './components/FormControlLabel/index.js';
|
|
19
|
+
export { default as Input } from './components/Input/index.js';
|
|
20
|
+
export type { InputProps } from './components/Input/index.js';
|
|
21
|
+
export { default as LinearProgress } from './components/LinearProgress/index.js';
|
|
22
|
+
export type { LinearProgressProps } from './components/LinearProgress/index.js';
|
|
23
|
+
export { default as Link } from './components/Link/index.js';
|
|
24
|
+
export type { LinkProps } from './components/Link/index.js';
|
|
25
|
+
export { default as List } from './components/List/index.js';
|
|
26
|
+
export type { ListProps } from './components/List/index.js';
|
|
27
|
+
export { default as ListItem } from './components/ListItem/index.js';
|
|
28
|
+
export type { ListItemProps } from './components/ListItem/index.js';
|
|
29
|
+
export { default as ListItemButton } from './components/ListItemButton/index.js';
|
|
30
|
+
export type { ListItemButtonProps } from './components/ListItemButton/index.js';
|
|
31
|
+
export { default as ListItemText } from './components/ListItemText/index.js';
|
|
32
|
+
export type { ListItemTextProps } from './components/ListItemText/index.js';
|
|
33
|
+
export { default as MenuFlyout } from './components/MenuFlyout/index.js';
|
|
34
|
+
export type { MenuFlyoutProps } from './components/MenuFlyout/index.js';
|
|
35
|
+
export { default as Modal } from './components/Modal/index.js';
|
|
36
|
+
export type { ModalProps } from './components/Modal/index.js';
|
|
37
|
+
export { default as Panel } from './components/Panel/index.js';
|
|
38
|
+
export type { PanelProps } from './components/Panel/index.js';
|
|
39
|
+
export { default as ProgressIndicator } from './components/ProgressIndicator/index.js';
|
|
40
|
+
export type { ProgressIndicatorProps } from './components/ProgressIndicator/index.js';
|
|
41
|
+
export { default as RadioButton } from './components/RadioButton/index.js';
|
|
42
|
+
export type { RadioButtonProps } from './components/RadioButton/index.js';
|
|
43
|
+
export { default as RadioGroup } from './components/RadioGroup/index.js';
|
|
44
|
+
export type { RadioGroupProps } from './components/RadioGroup/index.js';
|
|
45
|
+
export { default as Select } from './components/Select/index.js';
|
|
46
|
+
export type { SelectProps } from './components/Select/index.js';
|
|
47
|
+
export { default as StatusChip } from './components/StatusChip/index.js';
|
|
48
|
+
export type { StatusChipProps } from './components/StatusChip/index.js';
|
|
49
|
+
export { default as Step } from './components/Step/index.js';
|
|
50
|
+
export type { StepProps } from './components/Step/index.js';
|
|
51
|
+
export { default as StepLabel } from './components/StepLabel/index.js';
|
|
52
|
+
export type { StepLabelProps } from './components/StepLabel/index.js';
|
|
53
|
+
export { default as Stepper } from './components/Stepper/index.js';
|
|
54
|
+
export type { StepperProps } from './components/Stepper/index.js';
|
|
55
|
+
export { Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel } from './components/Table/index.js';
|
|
56
|
+
export type { TableProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableRowProps, TableSortLabelProps } from './components/Table/index.js';
|
|
57
|
+
export { default as Tabs } from './components/Tabs/index.js';
|
|
58
|
+
export type { BasicTabsProps, Tab } from './components/Tabs/index.js';
|
|
59
|
+
export { default as ThemeProvider } from './components/ThemeProvider/index.js';
|
|
60
|
+
export type { ThemeProviderProps } from './components/ThemeProvider/index.js';
|
|
61
|
+
export { default as Toast } from './components/Toast/index.js';
|
|
62
|
+
export type { ToastProps } from './components/Toast/index.js';
|
|
63
|
+
export { default as Typography } from './components/Typography/index.js';
|
|
64
|
+
export type { TypographyProps } from './components/Typography/index.js';
|
|
65
|
+
export { default as HomeOutlinedIcon } from './components/icons/HomeOutlinedIcon/index.js';
|
|
66
|
+
export type { HomeOutlinedIconProps } from './components/icons/HomeOutlinedIcon/index.js';
|
|
67
|
+
export { default as IconGroups } from './components/icons/IconGroups/index.js';
|
|
68
|
+
export type { IconGroupsProps } from './components/icons/IconGroups/index.js';
|
|
69
|
+
export { default as IconListItem } from './components/icons/IconListItem/index.js';
|
|
70
|
+
export type { IconListItemProps } from './components/icons/IconListItem/index.js';
|
package/dist/index.js
CHANGED
|
@@ -1,305 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
// note to maintainers: keep in alphabetical order
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
get: function get() {
|
|
39
|
-
return _Drawer["default"];
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
Object.defineProperty(exports, "FileUploader", {
|
|
43
|
-
enumerable: true,
|
|
44
|
-
get: function get() {
|
|
45
|
-
return _FileUploader["default"];
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
Object.defineProperty(exports, "FormControlLabel", {
|
|
49
|
-
enumerable: true,
|
|
50
|
-
get: function get() {
|
|
51
|
-
return _FormControlLabel["default"];
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
Object.defineProperty(exports, "HomeOutlinedIcon", {
|
|
55
|
-
enumerable: true,
|
|
56
|
-
get: function get() {
|
|
57
|
-
return _HomeOutlinedIcon["default"];
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
Object.defineProperty(exports, "IconGroups", {
|
|
61
|
-
enumerable: true,
|
|
62
|
-
get: function get() {
|
|
63
|
-
return _IconGroups["default"];
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
Object.defineProperty(exports, "IconListItem", {
|
|
67
|
-
enumerable: true,
|
|
68
|
-
get: function get() {
|
|
69
|
-
return _IconListItem["default"];
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
Object.defineProperty(exports, "Input", {
|
|
73
|
-
enumerable: true,
|
|
74
|
-
get: function get() {
|
|
75
|
-
return _Input["default"];
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
Object.defineProperty(exports, "LinearProgress", {
|
|
79
|
-
enumerable: true,
|
|
80
|
-
get: function get() {
|
|
81
|
-
return _LinearProgress["default"];
|
|
82
|
-
}
|
|
83
|
-
});
|
|
84
|
-
Object.defineProperty(exports, "Link", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function get() {
|
|
87
|
-
return _Link["default"];
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
Object.defineProperty(exports, "List", {
|
|
91
|
-
enumerable: true,
|
|
92
|
-
get: function get() {
|
|
93
|
-
return _List["default"];
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
Object.defineProperty(exports, "ListItem", {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
get: function get() {
|
|
99
|
-
return _ListItem["default"];
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
Object.defineProperty(exports, "ListItemButton", {
|
|
103
|
-
enumerable: true,
|
|
104
|
-
get: function get() {
|
|
105
|
-
return _ListItemButton["default"];
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
Object.defineProperty(exports, "ListItemText", {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
get: function get() {
|
|
111
|
-
return _ListItemText["default"];
|
|
112
|
-
}
|
|
113
|
-
});
|
|
114
|
-
Object.defineProperty(exports, "MenuFlyout", {
|
|
115
|
-
enumerable: true,
|
|
116
|
-
get: function get() {
|
|
117
|
-
return _MenuFlyout["default"];
|
|
118
|
-
}
|
|
119
|
-
});
|
|
120
|
-
Object.defineProperty(exports, "Modal", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function get() {
|
|
123
|
-
return _Modal["default"];
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
Object.defineProperty(exports, "Panel", {
|
|
127
|
-
enumerable: true,
|
|
128
|
-
get: function get() {
|
|
129
|
-
return _Panel["default"];
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
Object.defineProperty(exports, "ProgressIndicator", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
get: function get() {
|
|
135
|
-
return _ProgressIndicator["default"];
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
Object.defineProperty(exports, "RadioButton", {
|
|
139
|
-
enumerable: true,
|
|
140
|
-
get: function get() {
|
|
141
|
-
return _RadioButton["default"];
|
|
142
|
-
}
|
|
143
|
-
});
|
|
144
|
-
Object.defineProperty(exports, "RadioGroup", {
|
|
145
|
-
enumerable: true,
|
|
146
|
-
get: function get() {
|
|
147
|
-
return _RadioGroup["default"];
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
Object.defineProperty(exports, "Select", {
|
|
151
|
-
enumerable: true,
|
|
152
|
-
get: function get() {
|
|
153
|
-
return _Select["default"];
|
|
154
|
-
}
|
|
155
|
-
});
|
|
156
|
-
Object.defineProperty(exports, "StatusChip", {
|
|
157
|
-
enumerable: true,
|
|
158
|
-
get: function get() {
|
|
159
|
-
return _StatusChip["default"];
|
|
160
|
-
}
|
|
161
|
-
});
|
|
162
|
-
Object.defineProperty(exports, "Step", {
|
|
163
|
-
enumerable: true,
|
|
164
|
-
get: function get() {
|
|
165
|
-
return _Step["default"];
|
|
166
|
-
}
|
|
167
|
-
});
|
|
168
|
-
Object.defineProperty(exports, "StepLabel", {
|
|
169
|
-
enumerable: true,
|
|
170
|
-
get: function get() {
|
|
171
|
-
return _StepLabel["default"];
|
|
172
|
-
}
|
|
173
|
-
});
|
|
174
|
-
Object.defineProperty(exports, "Stepper", {
|
|
175
|
-
enumerable: true,
|
|
176
|
-
get: function get() {
|
|
177
|
-
return _Stepper["default"];
|
|
178
|
-
}
|
|
179
|
-
});
|
|
180
|
-
Object.defineProperty(exports, "Table", {
|
|
181
|
-
enumerable: true,
|
|
182
|
-
get: function get() {
|
|
183
|
-
return _Table.Table;
|
|
184
|
-
}
|
|
185
|
-
});
|
|
186
|
-
Object.defineProperty(exports, "TableBody", {
|
|
187
|
-
enumerable: true,
|
|
188
|
-
get: function get() {
|
|
189
|
-
return _Table.TableBody;
|
|
190
|
-
}
|
|
191
|
-
});
|
|
192
|
-
Object.defineProperty(exports, "TableCell", {
|
|
193
|
-
enumerable: true,
|
|
194
|
-
get: function get() {
|
|
195
|
-
return _Table.TableCell;
|
|
196
|
-
}
|
|
197
|
-
});
|
|
198
|
-
Object.defineProperty(exports, "TableContainer", {
|
|
199
|
-
enumerable: true,
|
|
200
|
-
get: function get() {
|
|
201
|
-
return _Table.TableContainer;
|
|
202
|
-
}
|
|
203
|
-
});
|
|
204
|
-
Object.defineProperty(exports, "TableFooter", {
|
|
205
|
-
enumerable: true,
|
|
206
|
-
get: function get() {
|
|
207
|
-
return _Table.TableFooter;
|
|
208
|
-
}
|
|
209
|
-
});
|
|
210
|
-
Object.defineProperty(exports, "TableHead", {
|
|
211
|
-
enumerable: true,
|
|
212
|
-
get: function get() {
|
|
213
|
-
return _Table.TableHead;
|
|
214
|
-
}
|
|
215
|
-
});
|
|
216
|
-
Object.defineProperty(exports, "TablePagination", {
|
|
217
|
-
enumerable: true,
|
|
218
|
-
get: function get() {
|
|
219
|
-
return _Table.TablePagination;
|
|
220
|
-
}
|
|
221
|
-
});
|
|
222
|
-
Object.defineProperty(exports, "TableRow", {
|
|
223
|
-
enumerable: true,
|
|
224
|
-
get: function get() {
|
|
225
|
-
return _Table.TableRow;
|
|
226
|
-
}
|
|
227
|
-
});
|
|
228
|
-
Object.defineProperty(exports, "TableSortLabel", {
|
|
229
|
-
enumerable: true,
|
|
230
|
-
get: function get() {
|
|
231
|
-
return _Table.TableSortLabel;
|
|
232
|
-
}
|
|
233
|
-
});
|
|
234
|
-
Object.defineProperty(exports, "Tabs", {
|
|
235
|
-
enumerable: true,
|
|
236
|
-
get: function get() {
|
|
237
|
-
return _Tabs["default"];
|
|
238
|
-
}
|
|
239
|
-
});
|
|
240
|
-
Object.defineProperty(exports, "ThemeProvider", {
|
|
241
|
-
enumerable: true,
|
|
242
|
-
get: function get() {
|
|
243
|
-
return _ThemeProvider["default"];
|
|
244
|
-
}
|
|
245
|
-
});
|
|
246
|
-
Object.defineProperty(exports, "Toast", {
|
|
247
|
-
enumerable: true,
|
|
248
|
-
get: function get() {
|
|
249
|
-
return _Toast["default"];
|
|
250
|
-
}
|
|
251
|
-
});
|
|
252
|
-
Object.defineProperty(exports, "Typography", {
|
|
253
|
-
enumerable: true,
|
|
254
|
-
get: function get() {
|
|
255
|
-
return _Typography["default"];
|
|
256
|
-
}
|
|
257
|
-
});
|
|
258
|
-
Object.defineProperty(exports, "createDesignSystemTheme", {
|
|
259
|
-
enumerable: true,
|
|
260
|
-
get: function get() {
|
|
261
|
-
return _theme.createDesignSystemTheme;
|
|
262
|
-
}
|
|
263
|
-
});
|
|
264
|
-
Object.defineProperty(exports, "useTheme", {
|
|
265
|
-
enumerable: true,
|
|
266
|
-
get: function get() {
|
|
267
|
-
return _theme.useTheme;
|
|
268
|
-
}
|
|
269
|
-
});
|
|
270
|
-
var _theme = require("./assets/theme");
|
|
271
|
-
var _Alert = _interopRequireDefault(require("./components/Alert"));
|
|
272
|
-
var _AudioSlider = _interopRequireDefault(require("./components/AudioSlider"));
|
|
273
|
-
var _Breadcrumbs = _interopRequireDefault(require("./components/Breadcrumbs"));
|
|
274
|
-
var _Button = _interopRequireDefault(require("./components/Button"));
|
|
275
|
-
var _Checkbox = _interopRequireDefault(require("./components/Checkbox"));
|
|
276
|
-
var _Drawer = _interopRequireDefault(require("./components/Drawer"));
|
|
277
|
-
var _FileUploader = _interopRequireDefault(require("./components/FileUploader"));
|
|
278
|
-
var _FormControlLabel = _interopRequireDefault(require("./components/FormControlLabel"));
|
|
279
|
-
var _Input = _interopRequireDefault(require("./components/Input"));
|
|
280
|
-
var _LinearProgress = _interopRequireDefault(require("./components/LinearProgress"));
|
|
281
|
-
var _Link = _interopRequireDefault(require("./components/Link"));
|
|
282
|
-
var _List = _interopRequireDefault(require("./components/List"));
|
|
283
|
-
var _ListItem = _interopRequireDefault(require("./components/ListItem"));
|
|
284
|
-
var _ListItemButton = _interopRequireDefault(require("./components/ListItemButton"));
|
|
285
|
-
var _ListItemText = _interopRequireDefault(require("./components/ListItemText"));
|
|
286
|
-
var _MenuFlyout = _interopRequireDefault(require("./components/MenuFlyout"));
|
|
287
|
-
var _Modal = _interopRequireDefault(require("./components/Modal"));
|
|
288
|
-
var _Panel = _interopRequireDefault(require("./components/Panel"));
|
|
289
|
-
var _ProgressIndicator = _interopRequireDefault(require("./components/ProgressIndicator"));
|
|
290
|
-
var _RadioButton = _interopRequireDefault(require("./components/RadioButton"));
|
|
291
|
-
var _RadioGroup = _interopRequireDefault(require("./components/RadioGroup"));
|
|
292
|
-
var _Select = _interopRequireDefault(require("./components/Select"));
|
|
293
|
-
var _StatusChip = _interopRequireDefault(require("./components/StatusChip"));
|
|
294
|
-
var _Step = _interopRequireDefault(require("./components/Step"));
|
|
295
|
-
var _StepLabel = _interopRequireDefault(require("./components/StepLabel"));
|
|
296
|
-
var _Stepper = _interopRequireDefault(require("./components/Stepper"));
|
|
297
|
-
var _Table = require("./components/Table");
|
|
298
|
-
var _Tabs = _interopRequireDefault(require("./components/Tabs"));
|
|
299
|
-
var _ThemeProvider = _interopRequireDefault(require("./components/ThemeProvider"));
|
|
300
|
-
var _Toast = _interopRequireDefault(require("./components/Toast"));
|
|
301
|
-
var _Typography = _interopRequireDefault(require("./components/Typography"));
|
|
302
|
-
var _HomeOutlinedIcon = _interopRequireDefault(require("./components/icons/HomeOutlinedIcon"));
|
|
303
|
-
var _IconGroups = _interopRequireDefault(require("./components/icons/IconGroups"));
|
|
304
|
-
var _IconListItem = _interopRequireDefault(require("./components/icons/IconListItem"));
|
|
305
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
3
|
+
export { createDesignSystemTheme, useTheme } from './assets/theme.js';
|
|
4
|
+
export { default as Alert } from './components/Alert/index.js';
|
|
5
|
+
export { default as AudioSlider } from './components/AudioSlider/index.js';
|
|
6
|
+
export { default as Breadcrumbs } from './components/Breadcrumbs/index.js';
|
|
7
|
+
export { default as Button } from './components/Button/index.js';
|
|
8
|
+
export { default as Checkbox } from './components/Checkbox/index.js';
|
|
9
|
+
export { default as Drawer } from './components/Drawer/index.js';
|
|
10
|
+
export { default as FileUploader } from './components/FileUploader/index.js';
|
|
11
|
+
export { default as FormControlLabel } from './components/FormControlLabel/index.js';
|
|
12
|
+
export { default as Input } from './components/Input/index.js';
|
|
13
|
+
export { default as LinearProgress } from './components/LinearProgress/index.js';
|
|
14
|
+
export { default as Link } from './components/Link/index.js';
|
|
15
|
+
export { default as List } from './components/List/index.js';
|
|
16
|
+
export { default as ListItem } from './components/ListItem/index.js';
|
|
17
|
+
export { default as ListItemButton } from './components/ListItemButton/index.js';
|
|
18
|
+
export { default as ListItemText } from './components/ListItemText/index.js';
|
|
19
|
+
export { default as MenuFlyout } from './components/MenuFlyout/index.js';
|
|
20
|
+
export { default as Modal } from './components/Modal/index.js';
|
|
21
|
+
export { default as Panel } from './components/Panel/index.js';
|
|
22
|
+
export { default as ProgressIndicator } from './components/ProgressIndicator/index.js';
|
|
23
|
+
export { default as RadioButton } from './components/RadioButton/index.js';
|
|
24
|
+
export { default as RadioGroup } from './components/RadioGroup/index.js';
|
|
25
|
+
export { default as Select } from './components/Select/index.js';
|
|
26
|
+
export { default as StatusChip } from './components/StatusChip/index.js';
|
|
27
|
+
export { default as Step } from './components/Step/index.js';
|
|
28
|
+
export { default as StepLabel } from './components/StepLabel/index.js';
|
|
29
|
+
export { default as Stepper } from './components/Stepper/index.js';
|
|
30
|
+
export { Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TablePagination, TableRow, TableSortLabel } from './components/Table/index.js';
|
|
31
|
+
export { default as Tabs } from './components/Tabs/index.js';
|
|
32
|
+
export { default as ThemeProvider } from './components/ThemeProvider/index.js';
|
|
33
|
+
export { default as Toast } from './components/Toast/index.js';
|
|
34
|
+
export { default as Typography } from './components/Typography/index.js';
|
|
35
|
+
export { default as HomeOutlinedIcon } from './components/icons/HomeOutlinedIcon/index.js';
|
|
36
|
+
export { default as IconGroups } from './components/icons/IconGroups/index.js';
|
|
37
|
+
export { default as IconListItem } from './components/icons/IconListItem/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veritone-ce/design-system",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.36",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Design System for Veritone CE",
|
|
6
6
|
"keywords": [
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Veritone"
|
|
21
21
|
},
|
|
22
|
+
"type": "module",
|
|
22
23
|
"main": "dist/index.js",
|
|
23
24
|
"module": "dist/index.js",
|
|
24
25
|
"types": "dist/index.d.ts",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"build": "yarn types:check:build && yarn transpile && yarn types:emit && tsc-alias",
|
|
31
32
|
"build-docs": "yarn build-storybook-docs",
|
|
32
33
|
"build-storybook": "storybook build",
|
|
33
|
-
"build-storybook-docs": "build
|
|
34
|
+
"build-storybook-docs": "storybook build --docs",
|
|
34
35
|
"chromatic": "npx chromatic --project-token=2d24b3ec5211 --exit-zero-on-changes",
|
|
35
36
|
"commit": "cz",
|
|
36
37
|
"lint": "ESLINT_USE_PRETTIER=true eslint src",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"release": "auto shipit --base-branch=main",
|
|
40
41
|
"start": "yarn storybook",
|
|
41
42
|
"storybook": "storybook dev -p 6006",
|
|
42
|
-
"test": "jest",
|
|
43
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
43
44
|
"test-storybook": "test-storybook",
|
|
44
45
|
"transpile": "babel src --config-file ./.build.babelrc --out-dir dist --extensions '.js,.jsx,.ts,.tsx'",
|
|
45
46
|
"types:check": "tsc --noEmit",
|
|
@@ -62,29 +63,29 @@
|
|
|
62
63
|
"react-dropzone": "^14.2.3"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
|
-
"@babel/cli": "^7.
|
|
66
|
-
"@babel/core": "^7.
|
|
67
|
-
"@babel/preset-env": "^7.22.
|
|
68
|
-
"@babel/preset-react": "^7.
|
|
69
|
-
"@babel/preset-typescript": "^7.
|
|
70
|
-
"@commitlint/cli": "^17.
|
|
71
|
-
"@commitlint/config-conventional": "^17.0
|
|
72
|
-
"@emotion/babel-plugin": "^11.
|
|
73
|
-
"@emotion/jest": "^11.
|
|
66
|
+
"@babel/cli": "^7.22.15",
|
|
67
|
+
"@babel/core": "^7.22.17",
|
|
68
|
+
"@babel/preset-env": "^7.22.15",
|
|
69
|
+
"@babel/preset-react": "^7.22.15",
|
|
70
|
+
"@babel/preset-typescript": "^7.22.15",
|
|
71
|
+
"@commitlint/cli": "^17.7.1",
|
|
72
|
+
"@commitlint/config-conventional": "^17.7.0",
|
|
73
|
+
"@emotion/babel-plugin": "^11.11.0",
|
|
74
|
+
"@emotion/jest": "^11.11.0",
|
|
74
75
|
"@emotion/react": "^11.10.4",
|
|
75
76
|
"@emotion/styled": "^11.10.4",
|
|
76
77
|
"@fontsource/dosis": "^5.0.5",
|
|
77
78
|
"@fontsource/nunito-sans": "^5.0.5",
|
|
78
79
|
"@mui/icons-material": "^5.10.6",
|
|
79
80
|
"@mui/material": "^5.10.8",
|
|
80
|
-
"@storybook/addon-a11y": "^7.
|
|
81
|
-
"@storybook/addon-essentials": "^7.
|
|
82
|
-
"@storybook/addon-interactions": "^7.
|
|
83
|
-
"@storybook/addon-links": "^7.
|
|
84
|
-
"@storybook/blocks": "^7.
|
|
85
|
-
"@storybook/react": "^7.
|
|
86
|
-
"@storybook/react-webpack5": "^7.
|
|
87
|
-
"@storybook/testing-library": "^0.0
|
|
81
|
+
"@storybook/addon-a11y": "^7.4.1",
|
|
82
|
+
"@storybook/addon-essentials": "^7.4.1",
|
|
83
|
+
"@storybook/addon-interactions": "^7.4.1",
|
|
84
|
+
"@storybook/addon-links": "^7.4.1",
|
|
85
|
+
"@storybook/blocks": "^7.4.1",
|
|
86
|
+
"@storybook/react": "^7.4.1",
|
|
87
|
+
"@storybook/react-webpack5": "^7.4.1",
|
|
88
|
+
"@storybook/testing-library": "^0.2.0",
|
|
88
89
|
"@testing-library/jest-dom": "^5.14.1",
|
|
89
90
|
"@testing-library/react": "^13.4.0",
|
|
90
91
|
"@testing-library/user-event": "^13.2.1",
|
|
@@ -93,29 +94,30 @@
|
|
|
93
94
|
"@types/react": "^18.0.0",
|
|
94
95
|
"@types/react-dom": "^18.0.0",
|
|
95
96
|
"@types/react-dropzone": "^5.1.0",
|
|
96
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
97
|
-
"@typescript-eslint/parser": "^
|
|
97
|
+
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
98
|
+
"@typescript-eslint/parser": "^6.7.0",
|
|
98
99
|
"auto": "^10.37.6",
|
|
99
100
|
"babel-jest": "^29.3.1",
|
|
100
101
|
"babel-plugin-inline-react-svg": "^2.0.2",
|
|
101
102
|
"chromatic": "^6.10.1",
|
|
102
103
|
"cz-conventional-changelog": "^3.3.0",
|
|
103
|
-
"eslint": "^8.
|
|
104
|
-
"eslint-config-prettier": "^
|
|
105
|
-
"eslint-plugin-prettier": "^
|
|
106
|
-
"eslint-plugin-react": "^7.
|
|
104
|
+
"eslint": "^8.49.0",
|
|
105
|
+
"eslint-config-prettier": "^9.0.0",
|
|
106
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
107
|
+
"eslint-plugin-react": "^7.33.2",
|
|
107
108
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
108
|
-
"eslint-plugin-storybook": "^0.6.
|
|
109
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
109
110
|
"husky": "8.0.2",
|
|
110
111
|
"jest": "^29.3.1",
|
|
111
112
|
"jest-environment-jsdom": "^29.3.1",
|
|
112
113
|
"lint-staged": "^14.0.1",
|
|
113
|
-
"prettier": "^
|
|
114
|
+
"prettier": "^3.0.3",
|
|
114
115
|
"react": "^18.2.0",
|
|
115
116
|
"react-dom": "^18.2.0",
|
|
116
|
-
"storybook": "^7.
|
|
117
|
-
"
|
|
118
|
-
"
|
|
117
|
+
"storybook": "^7.4.1",
|
|
118
|
+
"ts-jest": "^29.1.1",
|
|
119
|
+
"tsc-alias": "^1.8.7",
|
|
120
|
+
"typescript": "^5.0.0",
|
|
119
121
|
"webpack": "^5.88.1"
|
|
120
122
|
},
|
|
121
123
|
"peerDependencies": {
|