@@ -4,9 +4,9 @@ import Media from "react-media";
4
4
import Loadable from "react-loadable" ;
5
5
import changeCase from "change-case" ;
6
6
7
- import { colors , colorNames } from "../src/ Lumi/ Components/ Color" ;
8
- import { column , column_ } from "../src/ Lumi/ Components/ Column" ;
9
- import { row , row_ } from "../src/ Lumi/ Components/ Row" ;
7
+ import { colors , colorNames } from "purs/ Lumi. Components. Color" ;
8
+ import { column , column_ } from "purs/ Lumi. Components. Column" ;
9
+ import { row , row_ } from "purs/ Lumi. Components. Row" ;
10
10
import {
11
11
text ,
12
12
body_ ,
@@ -17,13 +17,13 @@ import {
17
17
subtext_ ,
18
18
h1_ ,
19
19
h3_
20
- } from "../src/ Lumi/ Components/ Text" ;
21
- import { icon , iconRearrange } from "../src/ Lumi/ Components/ Icon" ;
22
- import { loader } from "../src/ Lumi/ Components/ Loader" ;
23
- import { exampleStyleToggle } from "./ Example" ;
24
- import { dragDropContext } from "./App.purs_bundle_hacks " ;
25
- import { cssStringHSLA } from "./ColorHelper " ;
26
- import { attachGlobalComponentStyles } from "../src/ Lumi/ Components/ Styles" ;
20
+ } from "purs/ Lumi. Components. Text" ;
21
+ import { icon , iconRearrange } from "purs/ Lumi. Components. Icon" ;
22
+ import { loader } from "purs/ Lumi. Components. Loader" ;
23
+ import { exampleStyleToggle } from "purs/Lumi.Components. Example" ;
24
+ import { dragDropContext } from "purs/AppSetup " ;
25
+ import { cssStringHSLA } from "purs/Color " ;
26
+ import { attachGlobalComponentStyles } from "purs/ Lumi. Components. Styles" ;
27
27
28
28
attachGlobalComponentStyles ( ) ;
29
29
@@ -34,7 +34,9 @@ const fromComponentPath = title => ({
34
34
loader : ( ) =>
35
35
// Note: The string bits inside `require(...)` need to stay static strings, or Webpack
36
36
// won't be able to infer which files need to be included in the bundle.
37
- import ( `./Examples/${ title } .example` ) . then ( module_ => ( ) => module_ . docs ) ,
37
+ import ( `purs/Lumi.Components.Examples.${ title } ` ) . then ( module_ => ( ) =>
38
+ module_ . docs
39
+ ) ,
38
40
loading : ( ) => null // these load quickly enough that a noisy loader makes it look slower
39
41
} ) ,
40
42
title,
0 commit comments