kitchen-simulator 5.0.0-test.8 → 5.0.0-test.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitchen-simulator",
3
- "version": "5.0.0-test.8",
3
+ "version": "5.0.0-test.9",
4
4
  "description": "It is a kitchen simulator.",
5
5
  "type": "module",
6
6
 
@@ -29,7 +29,7 @@
29
29
  "README.md",
30
30
  "LICENSE",
31
31
 
32
- "src/components/_export.js",
32
+ "src/components/export.js",
33
33
  "src/components/atoms",
34
34
  "src/components/button",
35
35
  "src/components/molecules",
@@ -37,7 +37,6 @@
37
37
  "src/components/tutorial-view",
38
38
  "src/components/viewer2d",
39
39
  "src/components/viewer3d",
40
- "src/components/_export.js",
41
40
  "src/components/content.jsx"
42
41
  ],
43
42
 
@@ -0,0 +1,29 @@
1
+ import Content from './content';
2
+ import Viewer2DComponents from './viewer2d/export';
3
+ import StyleComponents from './style/export';
4
+
5
+ export {
6
+ // ToolbarComponents,
7
+ Content,
8
+ // SidebarComponents,
9
+ // FooterBarComponents,
10
+ Viewer2DComponents,
11
+ StyleComponents
12
+ // HeaderComponents,
13
+ // WizardStepComponents,
14
+ // SignComponents,
15
+ // MyProjectsComonents
16
+ };
17
+
18
+ export default {
19
+ // ToolbarComponents,
20
+ Content,
21
+ // SidebarComponents,
22
+ // FooterBarComponents,
23
+ // WizardStepComponents,
24
+ Viewer2DComponents,
25
+ StyleComponents
26
+ // HeaderComponents,
27
+ // SignComponents,
28
+ // MyProjectsComonents
29
+ };
@@ -1,11 +0,0 @@
1
- import Content from './content';
2
- import Viewer2DComponents from './viewer2d/export';
3
- import StyleComponents from './style/export';
4
-
5
- export { Content, Viewer2DComponents, StyleComponents };
6
-
7
- export default {
8
- Content,
9
- Viewer2DComponents,
10
- StyleComponents
11
- };