@learningpool/ui 1.3.0-beta.3 → 1.4.0-beta.10

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 (60) hide show
  1. package/{license → LICENSE} +0 -0
  2. package/{readme.md → README.md} +9 -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.js +1 -2
  7. package/components/atoms/Checkbox/Checkbox.js +1 -2
  8. package/components/atoms/IconButton/IconButton.js +1 -2
  9. package/components/atoms/Radio/Radio.js +1 -2
  10. package/components/atoms/Select/Select.js +1 -2
  11. package/components/atoms/Slider/Slider.js +1 -2
  12. package/components/atoms/Switch/Switch.js +1 -2
  13. package/components/atoms/TextField/TextField.js +1 -2
  14. package/components/atoms/ToggleButton/ToggleButton.js +1 -2
  15. package/components/datadisplay/Chip/Chip.js +1 -2
  16. package/components/datadisplay/List/List.js +1 -2
  17. package/components/datadisplay/Tooltip/Tooltip.js +1 -2
  18. package/components/feedback/Alert/Alert.js +1 -2
  19. package/components/navigation/Drawer/Drawer.d.ts +1 -1
  20. package/components/navigation/VerticalNavigation/VerticalNavigation.js +93 -147
  21. package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +77 -23
  22. package/components/navigation/VerticalNavigation/VerticalNavigationStyles.js +185 -56
  23. package/components/pages/ErrorPage/ErrorPage.d.ts +8 -0
  24. package/components/pages/ErrorPage/ErrorPage.js +27 -0
  25. package/components/pages/ErrorPage/ErrorPageStyles.d.ts +28 -0
  26. package/components/pages/ErrorPage/ErrorPageStyles.js +32 -0
  27. package/components/pages/SideInSide/SideInSideStyles.d.ts +8 -3
  28. package/index.d.ts +119 -9
  29. package/index.js +130 -11
  30. package/package.json +13 -81
  31. package/utils/theme.d.ts +6 -0
  32. package/utils/theme.js +8 -2
  33. package/components/atoms/Autocomplete/AutocompleteStyles.d.ts +0 -7
  34. package/components/atoms/Autocomplete/AutocompleteStyles.js +0 -2
  35. package/components/atoms/Button/ButtonStyles.d.ts +0 -7
  36. package/components/atoms/Button/ButtonStyles.js +0 -2
  37. package/components/atoms/Checkbox/CheckboxStyles.d.ts +0 -7
  38. package/components/atoms/Checkbox/CheckboxStyles.js +0 -2
  39. package/components/atoms/IconButton/IconButtonStyles.d.ts +0 -7
  40. package/components/atoms/IconButton/IconButtonStyles.js +0 -2
  41. package/components/atoms/Radio/RadioStyles.d.ts +0 -7
  42. package/components/atoms/Radio/RadioStyles.js +0 -2
  43. package/components/atoms/Select/SelectStyles.d.ts +0 -7
  44. package/components/atoms/Select/SelectStyles.js +0 -2
  45. package/components/atoms/Slider/SliderStyles.d.ts +0 -7
  46. package/components/atoms/Slider/SliderStyles.js +0 -2
  47. package/components/atoms/Switch/SwitchStyles.d.ts +0 -7
  48. package/components/atoms/Switch/SwitchStyles.js +0 -2
  49. package/components/atoms/TextField/TextFieldStyles.d.ts +0 -7
  50. package/components/atoms/TextField/TextFieldStyles.js +0 -2
  51. package/components/atoms/ToggleButton/ToggleButtonStyles.d.ts +0 -7
  52. package/components/atoms/ToggleButton/ToggleButtonStyles.js +0 -2
  53. package/components/datadisplay/Chip/ChipStyles.d.ts +0 -7
  54. package/components/datadisplay/Chip/ChipStyles.js +0 -2
  55. package/components/datadisplay/List/ListStyles.d.ts +0 -7
  56. package/components/datadisplay/List/ListStyles.js +0 -2
  57. package/components/datadisplay/Tooltip/TooltipStyles.d.ts +0 -7
  58. package/components/datadisplay/Tooltip/TooltipStyles.js +0 -2
  59. package/components/feedback/Alert/AlertStyles.d.ts +0 -7
  60. package/components/feedback/Alert/AlertStyles.js +0 -2
@@ -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 ({}); });