@learningpool/ui 1.4.0 → 1.5.0

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 (63) hide show
  1. package/{license → LICENSE} +0 -0
  2. package/{readme.md → README.md} +8 -8
  3. package/assets/Images.d.ts +3 -0
  4. package/assets/Images.js +1 -0
  5. package/components/atoms/Autocomplete/Autocomplete.js +1 -2
  6. package/components/atoms/Button/Button.d.ts +1 -1
  7. package/components/atoms/Button/Button.js +1 -2
  8. package/components/atoms/Checkbox/Checkbox.js +1 -2
  9. package/components/atoms/IconButton/IconButton.js +1 -2
  10. package/components/atoms/Radio/Radio.js +1 -2
  11. package/components/atoms/Select/Select.js +1 -2
  12. package/components/atoms/Slider/Slider.js +1 -2
  13. package/components/atoms/Switch/Switch.js +1 -2
  14. package/components/atoms/TextField/TextField.js +1 -2
  15. package/components/atoms/ToggleButton/ToggleButton.js +1 -2
  16. package/components/datadisplay/Chip/Chip.js +1 -2
  17. package/components/datadisplay/List/List.js +1 -2
  18. package/components/datadisplay/Tooltip/Tooltip.js +1 -2
  19. package/components/feedback/Alert/Alert.js +1 -2
  20. package/components/navigation/Drawer/Drawer.d.ts +1 -1
  21. package/components/navigation/VerticalNavigation/VerticalNavigation.js +93 -147
  22. package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +77 -24
  23. package/components/navigation/VerticalNavigation/VerticalNavigationStyles.js +185 -56
  24. package/components/pages/ErrorPage/ErrorPage.d.ts +8 -0
  25. package/components/pages/ErrorPage/ErrorPage.js +27 -0
  26. package/components/pages/ErrorPage/ErrorPageStyles.d.ts +27 -0
  27. package/components/pages/ErrorPage/ErrorPageStyles.js +32 -0
  28. package/components/pages/SideInSide/SideInSideStyles.d.ts +8 -3
  29. package/index.d.ts +119 -9
  30. package/index.js +130 -11
  31. package/package.json +11 -83
  32. package/utils/theme.d.ts +6 -0
  33. package/utils/theme.js +8 -2
  34. package/components/atoms/Autocomplete/AutocompleteStyles.d.ts +0 -7
  35. package/components/atoms/Autocomplete/AutocompleteStyles.js +0 -2
  36. package/components/atoms/Button/ButtonStyles.d.ts +0 -7
  37. package/components/atoms/Button/ButtonStyles.js +0 -2
  38. package/components/atoms/Checkbox/CheckboxStyles.d.ts +0 -7
  39. package/components/atoms/Checkbox/CheckboxStyles.js +0 -2
  40. package/components/atoms/IconButton/IconButtonStyles.d.ts +0 -7
  41. package/components/atoms/IconButton/IconButtonStyles.js +0 -2
  42. package/components/atoms/Radio/RadioStyles.d.ts +0 -7
  43. package/components/atoms/Radio/RadioStyles.js +0 -2
  44. package/components/atoms/Select/SelectStyles.d.ts +0 -7
  45. package/components/atoms/Select/SelectStyles.js +0 -2
  46. package/components/atoms/Slider/SliderStyles.d.ts +0 -7
  47. package/components/atoms/Slider/SliderStyles.js +0 -2
  48. package/components/atoms/Switch/SwitchStyles.d.ts +0 -7
  49. package/components/atoms/Switch/SwitchStyles.js +0 -2
  50. package/components/atoms/TextField/TextFieldStyles.d.ts +0 -7
  51. package/components/atoms/TextField/TextFieldStyles.js +0 -2
  52. package/components/atoms/ToggleButton/ToggleButtonStyles.d.ts +0 -7
  53. package/components/atoms/ToggleButton/ToggleButtonStyles.js +0 -2
  54. package/components/datadisplay/Avatar/AvatarStyles.d.ts +0 -7
  55. package/components/datadisplay/Avatar/AvatarStyles.js +0 -14
  56. package/components/datadisplay/Chip/ChipStyles.d.ts +0 -7
  57. package/components/datadisplay/Chip/ChipStyles.js +0 -2
  58. package/components/datadisplay/List/ListStyles.d.ts +0 -7
  59. package/components/datadisplay/List/ListStyles.js +0 -2
  60. package/components/datadisplay/Tooltip/TooltipStyles.d.ts +0 -7
  61. package/components/datadisplay/Tooltip/TooltipStyles.js +0 -2
  62. package/components/feedback/Alert/AlertStyles.d.ts +0 -7
  63. package/components/feedback/Alert/AlertStyles.js +0 -2
package/index.js CHANGED
@@ -1,18 +1,67 @@
1
- // Learning Pool intercepted
2
- export { default as Avatar } from './components/datadisplay/Avatar/Avatar';
3
- export { default as Button } from './components/atoms/Button/Button';
4
- export { default as IconButton } from './components/atoms/IconButton/IconButton';
5
- export { default as Checkbox } from './components/atoms/Checkbox/Checkbox';
6
- export { default as TextField } from './components/atoms/TextField/TextField';
7
- export { default as Drawer } from './components/navigation/Drawer/Drawer';
8
- export { default as List } from './components/datadisplay/List/List';
9
- export { default as Tooltip } from './components/datadisplay/Tooltip/Tooltip';
10
- export { default as SideInSide } from './components/pages/SideInSide/SideInSide';
11
- // Straight through MUI
1
+ // Straight from @mui/material
2
+ export { default as Accordion } from '@mui/material/Accordion';
3
+ export { default as AccordionActions } from '@mui/material/AccordionActions';
4
+ export { default as AccordionDetails } from '@mui/material/AccordionDetails';
5
+ export { default as AccordionSummary } from '@mui/material/AccordionSummary';
6
+ export { default as Alert } from '@mui/material/Alert';
7
+ export { default as AlertTitle } from '@mui/material/AlertTitle';
8
+ export { default as AppBar } from '@mui/material/AppBar';
9
+ export { default as Autocomplete } from '@mui/material/Autocomplete';
10
+ // export { default as Avatar } from '@mui/material/Avatar'
12
11
  export { default as AvatarGroup } from '@mui/material/AvatarGroup';
13
12
  export { default as Backdrop } from '@mui/material/Backdrop';
13
+ export { default as Badge } from '@mui/material/Badge';
14
+ export { default as BottomNavigation } from '@mui/material/BottomNavigation';
15
+ export { default as BottomNavigationAction } from '@mui/material/BottomNavigationAction';
16
+ export { default as Box } from '@mui/material/Box';
17
+ export { default as Breadcrumbs } from '@mui/material/Breadcrumbs';
18
+ // export { default as Button } from '@mui/material/Button'
19
+ export { default as ButtonBase } from '@mui/material/ButtonBase';
20
+ export { default as ButtonGroup } from '@mui/material/ButtonGroup';
21
+ export { default as Card } from '@mui/material/Card';
22
+ export { default as CardActionArea } from '@mui/material/CardActionArea';
23
+ export { default as CardActions } from '@mui/material/CardActions';
24
+ export { default as CardContent } from '@mui/material/CardContent';
25
+ export { default as CardHeader } from '@mui/material/CardHeader';
26
+ export { default as CardMedia } from '@mui/material/CardMedia';
27
+ // export { default as Checkbox } from '@mui/material/Checkbox'
28
+ export { default as Chip } from '@mui/material/Chip';
14
29
  export { default as CircularProgress } from '@mui/material/CircularProgress';
30
+ export { default as ClickAwayListener } from '@mui/material/ClickAwayListener';
31
+ export { default as Collapse } from '@mui/material/Collapse';
32
+ export { default as Container } from '@mui/material/Container';
33
+ export { default as CssBaseline } from '@mui/material/CssBaseline';
34
+ export { default as darkScrollbar } from '@mui/material/darkScrollbar';
35
+ export { default as Dialog } from '@mui/material/Dialog';
36
+ export { default as DialogActions } from '@mui/material/DialogActions';
37
+ export { default as DialogContent } from '@mui/material/DialogContent';
38
+ export { default as DialogContentText } from '@mui/material/DialogContentText';
39
+ export { default as DialogTitle } from '@mui/material/DialogTitle';
40
+ export { default as Divider } from '@mui/material/Divider';
41
+ // export { default as Drawer } from '@mui/material/Drawer'
42
+ export { default as Fab } from '@mui/material/Fab';
43
+ export { default as Fade } from '@mui/material/Fade';
44
+ export { default as FilledInput } from '@mui/material/FilledInput';
45
+ export { default as FormControl } from '@mui/material/FormControl';
46
+ export { default as FormControlLabel } from '@mui/material/FormControlLabel';
47
+ export { default as FormGroup } from '@mui/material/FormGroup';
48
+ export { default as FormHelperText } from '@mui/material/FormHelperText';
49
+ export { default as FormLabel } from '@mui/material/FormLabel';
50
+ export { default as Grid } from '@mui/material/Grid';
51
+ export { default as Grow } from '@mui/material/Grow';
52
+ export { default as Hidden } from '@mui/material/Hidden';
53
+ export { default as Icon } from '@mui/material/Icon';
54
+ // export { default as IconButton } from '@mui/material/IconButton'
55
+ export { default as ImageList } from '@mui/material/ImageList';
56
+ export { default as ImageListItem } from '@mui/material/ImageListItem';
57
+ export { default as ImageListItemBar } from '@mui/material/ImageListItemBar';
58
+ export { default as Input } from '@mui/material/Input';
59
+ export { default as InputAdornment } from '@mui/material/InputAdornment';
60
+ export { default as InputBase } from '@mui/material/InputBase';
61
+ export { default as InputLabel } from '@mui/material/InputLabel';
15
62
  export { default as LinearProgress } from '@mui/material/LinearProgress';
63
+ export { default as Link } from '@mui/material/Link';
64
+ // export { default as List } from '@mui/material/List'
16
65
  export { default as ListItem } from '@mui/material/ListItem';
17
66
  export { default as ListItemAvatar } from '@mui/material/ListItemAvatar';
18
67
  export { default as ListItemButton } from '@mui/material/ListItemButton';
@@ -20,5 +69,75 @@ export { default as ListItemIcon } from '@mui/material/ListItemIcon';
20
69
  export { default as ListItemSecondaryAction } from '@mui/material/ListItemSecondaryAction';
21
70
  export { default as ListItemText } from '@mui/material/ListItemText';
22
71
  export { default as ListSubheader } from '@mui/material/ListSubheader';
72
+ export { default as Menu } from '@mui/material/Menu';
73
+ export { default as MenuItem } from '@mui/material/MenuItem';
74
+ export { default as MenuList } from '@mui/material/MenuList';
75
+ export { default as MobileStepper } from '@mui/material/MobileStepper';
76
+ export { default as Modal } from '@mui/material/Modal';
77
+ export { default as NativeSelect } from '@mui/material/NativeSelect';
78
+ export { default as NoSsr } from '@mui/material/NoSsr';
79
+ export { default as OutlinedInput } from '@mui/material/OutlinedInput';
80
+ export { default as Pagination } from '@mui/material/Pagination';
81
+ export { default as PaginationItem } from '@mui/material/PaginationItem';
82
+ export { default as Paper } from '@mui/material/Paper';
83
+ export { default as Popover } from '@mui/material/Popover';
84
+ export { default as Popper } from '@mui/material/Popper';
85
+ export { default as Portal } from '@mui/material/Portal';
86
+ export { default as Radio } from '@mui/material/Radio';
87
+ export { default as RadioGroup } from '@mui/material/RadioGroup';
88
+ export { default as Rating } from '@mui/material/Rating';
89
+ export { default as ScopedCssBaseline } from '@mui/material/ScopedCssBaseline';
90
+ export { default as Select } from '@mui/material/Select';
91
+ export { default as Skeleton } from '@mui/material/Skeleton';
92
+ export { default as Slide } from '@mui/material/Slide';
93
+ export { default as Slider } from '@mui/material/Slider';
94
+ export { default as Snackbar } from '@mui/material/Snackbar';
95
+ export { default as SnackbarContent } from '@mui/material/SnackbarContent';
96
+ export { default as SpeedDial } from '@mui/material/SpeedDial';
97
+ export { default as SpeedDialAction } from '@mui/material/SpeedDialAction';
98
+ export { default as SpeedDialIcon } from '@mui/material/SpeedDialIcon';
99
+ export { default as Stack } from '@mui/material/Stack';
100
+ export { default as Step } from '@mui/material/Step';
101
+ export { default as StepButton } from '@mui/material/StepButton';
102
+ export { default as StepConnector } from '@mui/material/StepConnector';
103
+ export { default as StepContent } from '@mui/material/StepContent';
104
+ export { default as StepIcon } from '@mui/material/StepIcon';
105
+ export { default as StepLabel } from '@mui/material/StepLabel';
106
+ export { default as Stepper } from '@mui/material/Stepper';
107
+ export { default as SvgIcon } from '@mui/material/SvgIcon';
108
+ export { default as SwipeableDrawer } from '@mui/material/SwipeableDrawer';
109
+ export { default as Switch } from '@mui/material/Switch';
110
+ export { default as Tab } from '@mui/material/Tab';
111
+ export { default as Table } from '@mui/material/Table';
112
+ export { default as TableBody } from '@mui/material/TableBody';
113
+ export { default as TableCell } from '@mui/material/TableCell';
114
+ export { default as TableContainer } from '@mui/material/TableContainer';
115
+ export { default as TableFooter } from '@mui/material/TableFooter';
116
+ export { default as TableHead } from '@mui/material/TableHead';
117
+ export { default as TablePagination } from '@mui/material/TablePagination';
118
+ export { default as TableRow } from '@mui/material/TableRow';
119
+ export { default as TableSortLabel } from '@mui/material/TableSortLabel';
120
+ export { default as Tabs } from '@mui/material/Tabs';
121
+ export { default as TabScrollButton } from '@mui/material/TabScrollButton';
122
+ // export { default as TextField } from '@mui/material/TextField'
123
+ export { default as TextareaAutosize } from '@mui/material/TextareaAutosize';
124
+ export { default as ToggleButton } from '@mui/material/ToggleButton';
125
+ export { default as ToggleButtonGroup } from '@mui/material/ToggleButtonGroup';
126
+ export { default as Toolbar } from '@mui/material/Toolbar';
127
+ // export { default as Tooltip } from '@mui/material/Tooltip'
128
+ export { default as Typography } from '@mui/material/Typography';
129
+ // Straight from @mui/x-data-grid
130
+ export * from '@mui/x-data-grid';
131
+ // Learning Pool intercepted
132
+ export { default as Avatar } from './components/datadisplay/Avatar/Avatar';
133
+ export { default as Button } from './components/atoms/Button/Button';
134
+ export { default as IconButton } from './components/atoms/IconButton/IconButton';
135
+ export { default as Checkbox } from './components/atoms/Checkbox/Checkbox';
136
+ export { default as TextField } from './components/atoms/TextField/TextField';
137
+ export { default as Drawer } from './components/navigation/Drawer/Drawer';
138
+ export { default as List } from './components/datadisplay/List/List';
139
+ export { default as Tooltip } from './components/datadisplay/Tooltip/Tooltip';
140
+ export { default as SideInSide } from './components/pages/SideInSide/SideInSide';
141
+ export { default as ErrorPage } from './components/pages/ErrorPage/ErrorPage';
23
142
  // Stream Suite components
24
143
  export { default as VerticalNavigation } from './components/navigation/VerticalNavigation/VerticalNavigation';
package/package.json CHANGED
@@ -9,101 +9,29 @@
9
9
  "components",
10
10
  "ui"
11
11
  ],
12
- "version": "1.4.0",
12
+ "version": "1.5.0",
13
13
  "private": false,
14
- "main": "dist/index.js",
15
- "module": "dist/index.js",
14
+ "main": "index.js",
15
+ "module": "index.js",
16
16
  "dependencies": {
17
17
  "@emotion/react": "^11.7.1",
18
18
  "@emotion/styled": "^11.6.0",
19
- "@learningpool/app-switcher": "^1.0.4",
20
- "@mui/icons-material": "^5.4.1",
21
- "@mui/material": "^5.3.1",
22
- "@testing-library/jest-dom": "^5.16.1",
23
- "@testing-library/react": "^12.1.2",
24
- "@testing-library/user-event": "^13.5.0",
19
+ "@learningpool/app-switcher": "1.0.5-beta.8",
20
+ "@mui/icons-material": "^5.8.4",
21
+ "@mui/material": "^5.8.5",
22
+ "@mui/x-data-grid": "^5.12.3",
25
23
  "@types/jest": "^27.4.0",
26
- "@types/node": "^16.11.36",
27
- "@types/react": "^17.0.38",
24
+ "@types/node": "^16.11.45",
25
+ "@types/react": "^17.0.48",
28
26
  "@types/react-dom": "^17.0.11",
27
+ "@typescript-eslint/parser": "^5.31.0",
29
28
  "anysort": "^2.0.0",
29
+ "eslint-plugin-n": "^15.2.4",
30
30
  "focus-trap-react": "^8.11.0",
31
- "react": "^17.0.2",
32
- "react-dom": "^17.0.2",
33
- "react-scripts": "5.0.1",
34
31
  "tss-react": "^3.3.6",
35
32
  "typescript": "^4.6.2",
36
33
  "web-vitals": "^2.1.4"
37
34
  },
38
- "scripts": {
39
- "analyze:build": "source-map-explorer 'build/static/js/*.js'",
40
- "analyze:module": "source-map-explorer 'dist/*.js'",
41
- "build": "build-storybook",
42
- "build:module": "rm -rf dist && yarn run tsc && yarn run generate:package",
43
- "generate:package": "node ./merge.js",
44
- "lint": "eslint --ext .tsx ./src",
45
- "lint:fix": "eslint --ext .tsx ./src --fix",
46
- "semantic-release": "ht2-release-public-circleci-lib-dist",
47
- "start": "start-storybook -p 6006",
48
- "start:run-tests": "yarn test:generate-output && yarn start",
49
- "test": "jest",
50
- "test:u": "jest --updateSnapshot && yarn run lint:fix",
51
- "test:update-snapshot": "test:u",
52
- "test:generate-output": "jest --json --outputFile=.jest-test-results.json"
53
- },
54
- "browserslist": {
55
- "production": [
56
- ">0.2%",
57
- "not dead",
58
- "not op_mini all"
59
- ],
60
- "development": [
61
- "last 1 chrome version",
62
- "last 1 firefox version",
63
- "last 1 safari version"
64
- ]
65
- },
66
- "devDependencies": {
67
- "@babel/cli": "7.17.6",
68
- "@babel/core": "7.17.8",
69
- "@babel/preset-env": "7.16.11",
70
- "@babel/preset-react": "7.16.7",
71
- "@babel/preset-typescript": "7.16.7",
72
- "@ht2-labs/semantic-release": "3.0.0",
73
- "@storybook/addon-a11y": "6.5.6",
74
- "@storybook/addon-actions": "6.5.6",
75
- "@storybook/addon-essentials": "6.5.6",
76
- "@storybook/addon-jest": "6.5.6",
77
- "@storybook/addon-links": "6.5.6",
78
- "@storybook/addons": "6.5.6",
79
- "@storybook/builder-webpack5": "6.5.6",
80
- "@storybook/manager-webpack5": "6.5.6",
81
- "@storybook/node-logger": "6.5.6",
82
- "@storybook/preset-create-react-app": "4.1.1",
83
- "@storybook/react": "6.5.6",
84
- "@storybook/theming": "6.5.6",
85
- "babel-preset-minify": "0.5.2",
86
- "eslint-config-standard": "16.0.3",
87
- "eslint-config-standard-with-typescript": "21.0.1",
88
- "eslint-plugin-node": "11.1.0",
89
- "eslint-plugin-promise": "6.0.0",
90
- "source-map-explorer": "2.5.2",
91
- "source-map-loader": "3.0.1",
92
- "ts-node": "10.8.0",
93
- "webpack": "5.72.1"
94
- },
95
- "release": {
96
- "branches": [
97
- {
98
- "name": "main"
99
- },
100
- {
101
- "name": "beta",
102
- "channel": "beta",
103
- "prerelease": true
104
- }
105
- ]
106
- },
107
35
  "publishConfig": {
108
36
  "access": "public"
109
37
  }
package/utils/theme.d.ts CHANGED
@@ -81,3 +81,9 @@ export declare const darkTheme: {
81
81
  };
82
82
  };
83
83
  };
84
+ export declare const motion: {
85
+ ease: string;
86
+ easeOut: string;
87
+ easeIn: string;
88
+ easeInOut: string;
89
+ };
package/utils/theme.js CHANGED
@@ -11,10 +11,10 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import { amber, blue, common } from '@mui/material/colors';
13
13
  var DEFAULT_HEADER_TYPOGRAPHY = {
14
- fontFamily: '"Montserrat", "Roboto", "Helvetica", "Arial", sans-serif'
14
+ fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif'
15
15
  };
16
16
  var DEFAULT_BODY_TYPOGRAPHY = {
17
- fontFamily: '"Source Sans Pro", "Roboto", "Helvetica", "Arial", sans-serif'
17
+ fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif'
18
18
  };
19
19
  // @TODO: Discuss this with the experience design team, according to the UUI Figma
20
20
  export var defaultTheme = {
@@ -53,3 +53,9 @@ export var darkTheme = {
53
53
  }
54
54
  }
55
55
  };
56
+ export var motion = {
57
+ ease: 'cubic-bezier(0.4, 0.0, 0.2, 1)',
58
+ easeOut: 'cubic-bezier(0.0, 0.0, 0.2, 1)',
59
+ easeIn: 'cubic-bezier(0.4, 0.0, 1, 1)',
60
+ easeInOut: 'cubic-bezier(0.4, 0.0, 0.6, 1)'
61
+ };
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const AutocompleteStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var AutocompleteStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const ButtonStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var ButtonStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const CheckboxStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var CheckboxStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const IconButtonStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var IconButtonStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const RadioStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var RadioStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const SelectStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var SelectStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const SliderStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var SliderStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const SwitchStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var SwitchStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const TextFieldStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var TextFieldStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const ToggleButtonStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var ToggleButtonStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const AvatarStyles: (params: void) => {
3
- classes: Record<"root", string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,14 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var AvatarStyles = makeStyles()(function (theme, props) {
3
- var _a, _b, _c;
4
- return ({
5
- root: {
6
- backgroundColor: ((_a = props === null || props === void 0 ? void 0 : props.sx) === null || _a === void 0 ? void 0 : _a.bgcolor)
7
- ? props.sx.bgcolor
8
- : theme.palette.primary.main,
9
- color: ((_b = props === null || props === void 0 ? void 0 : props.sx) === null || _b === void 0 ? void 0 : _b.bgcolor)
10
- ? (_c = props.sx.color) !== null && _c !== void 0 ? _c : theme.palette.getContrastText(props.sx.bgcolor)
11
- : theme.palette.primary.contrastText
12
- }
13
- });
14
- });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const ChipStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var ChipStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const ListStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var ListStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const TooltipStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var TooltipStyles = makeStyles()(function (theme) { return ({}); });
@@ -1,7 +0,0 @@
1
- import { Theme } from '@mui/material/styles';
2
- export declare const AlertStyles: (params: void) => {
3
- classes: Record<never, string>;
4
- theme: Theme;
5
- css: import("tss-react").Css;
6
- cx: import("tss-react").Cx;
7
- };
@@ -1,2 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
- export var AlertStyles = makeStyles()(function (theme) { return ({}); });