@@ -8,7 +8,10 @@ import japgolly.scalajs.react.vdom.VdomNode
88
99package object styles {
1010
11- @ JSImport (" @material-ui/core/styles/colorManipulator.js" , JSImport .Default )
11+ @ JSImport (
12+ " @material-ui/core/styles/colorManipulator.js" ,
13+ JSImport .Default
14+ )
1215 @ js.native
1316 object colorManipulator extends js.Object {
1417 def hexToRgb (hex : String ): String = js.native
@@ -34,13 +37,19 @@ package object styles {
3437 def lighten (color : String , coefficient : js.UndefOr [Double ]): String = js.native
3538 }
3639
37- @ JSImport (" @material-ui/core/styles/createMuiTheme.js" , JSImport .Default )
40+ @ JSImport (
41+ " @material-ui/core/styles/createMuiTheme.js" ,
42+ JSImport .Default
43+ )
3844 @ js.native
3945 object createMuiTheme extends js.Function1 [js.UndefOr [ThemeOptions ], Theme ] {
4046 override def apply (options : js.UndefOr [ThemeOptions ] = js.undefined): Theme = js.native
4147 }
4248
43- @ JSImport (" @material-ui/core/styles/createPalette.js" , JSImport .Default )
49+ @ JSImport (
50+ " @material-ui/core/styles/createPalette.js" ,
51+ JSImport .Default
52+ )
4453 @ js.native
4554 object createPalette extends js.Function1 [PaletteOptions , Palette ] {
4655 override def apply (palette : PaletteOptions ): Palette = js.native
@@ -52,13 +61,19 @@ package object styles {
5261 override def apply (breakpoints : Breakpoints , spacing : Spacing , mixins : MixinsOptions ): Mixins = js.native
5362 }
5463
55- @ JSImport (" @material-ui/core/styles/createBreakpoints.js" , JSImport .Default )
64+ @ JSImport (
65+ " @material-ui/core/styles/createBreakpoints.js" ,
66+ JSImport .Default
67+ )
5668 @ js.native
5769 object createBreakpoints extends js.Function1 [BreakpointsOptions , Breakpoints ] {
5870 override def apply (options : BreakpointsOptions ): Breakpoints = js.native
5971 }
6072
61- @ JSImport (" @material-ui/core/styles/createTypography.js" , JSImport .Default )
73+ @ JSImport (
74+ " @material-ui/core/styles/createTypography.js" ,
75+ JSImport .Default
76+ )
6277 @ js.native
6378 object createTypography
6479 extends js.Function2 [Palette , TypographyOptions | js.Function1 [Palette , TypographyOptions ], Typography ] {
@@ -70,13 +85,19 @@ package object styles {
7085
7186 }
7287
73- @ JSImport (" @material-ui/core/styles/getStylesCreator.js" , JSImport .Default )
88+ @ JSImport (
89+ " @material-ui/core/styles/getStylesCreator.js" ,
90+ JSImport .Default
91+ )
7492 @ js.native
7593 object getStylesCreator extends js.Function1 [js.Object | js.Function , js.Object ] {
7694 override def apply (stylesOrCreator : js.Object | js.Function ): js.Object = js.native
7795 }
7896
79- @ JSImport (" @material-ui/core/styles/getThemeProps.js" , JSImport .Default )
97+ @ JSImport (
98+ " @material-ui/core/styles/getThemeProps.js" ,
99+ JSImport .Default
100+ )
80101 @ js.native
81102 object getThemeProps extends js.Function1 [js.Object , js.Any ] {
82103 override def apply (params : js.Object ): js.Any = js.native
0 commit comments