@selfcommunity/react-theme-default 0.5.0-alpha.22 → 0.5.0-alpha.24

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.
@@ -2,5 +2,10 @@ declare const Component: {
2
2
  defaultProps: {
3
3
  enterDelay: number;
4
4
  };
5
+ styleOverrides: {
6
+ tooltip: ({ theme }: any) => {
7
+ borderRadius: any;
8
+ };
9
+ };
5
10
  };
6
11
  export default Component;
@@ -3,6 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  defaultProps: {
5
5
  enterDelay: 500
6
+ },
7
+ styleOverrides: {
8
+ tooltip: ({ theme }) => ({
9
+ borderRadius: theme.spacing(0.5)
10
+ })
6
11
  }
7
12
  };
8
13
  exports.default = Component;
@@ -232,6 +232,11 @@ declare const theme: {
232
232
  defaultProps: {
233
233
  enterDelay: number;
234
234
  };
235
+ styleOverrides: {
236
+ tooltip: ({ theme }: any) => {
237
+ borderRadius: any;
238
+ };
239
+ };
235
240
  };
236
241
  SCAccordionLessons: {
237
242
  styleOverrides: {
@@ -2,5 +2,10 @@ declare const Component: {
2
2
  defaultProps: {
3
3
  enterDelay: number;
4
4
  };
5
+ styleOverrides: {
6
+ tooltip: ({ theme }: any) => {
7
+ borderRadius: any;
8
+ };
9
+ };
5
10
  };
6
11
  export default Component;
@@ -1,6 +1,11 @@
1
1
  const Component = {
2
2
  defaultProps: {
3
3
  enterDelay: 500
4
+ },
5
+ styleOverrides: {
6
+ tooltip: ({ theme }) => ({
7
+ borderRadius: theme.spacing(0.5)
8
+ })
4
9
  }
5
10
  };
6
11
  export default Component;
@@ -232,6 +232,11 @@ declare const theme: {
232
232
  defaultProps: {
233
233
  enterDelay: number;
234
234
  };
235
+ styleOverrides: {
236
+ tooltip: ({ theme }: any) => {
237
+ borderRadius: any;
238
+ };
239
+ };
235
240
  };
236
241
  SCAccordionLessons: {
237
242
  styleOverrides: {