kitchen-simulator 5.0.0-test.13 → 5.0.0-test.15
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,7 +2,7 @@ import Catalog from './catalog/catalog';
|
|
|
2
2
|
import Translator from './translator/translator';
|
|
3
3
|
import * as Models from './models';
|
|
4
4
|
import reducer from './reducers/reducer';
|
|
5
|
-
import
|
|
5
|
+
import _KitchenConfigurator from './_KitchenConfigurator';
|
|
6
6
|
import Plugins from './plugins/export';
|
|
7
7
|
import * as KitchenConfiguratorConstants from './constants';
|
|
8
8
|
import * as KitchenConfiguratorSharedStyle from './shared-style';
|
|
@@ -17,7 +17,7 @@ export {
|
|
|
17
17
|
Translator,
|
|
18
18
|
Models,
|
|
19
19
|
reducer,
|
|
20
|
-
|
|
20
|
+
_KitchenConfigurator,
|
|
21
21
|
Plugins,
|
|
22
22
|
KitchenConfiguratorConstants,
|
|
23
23
|
KitchenConfiguratorSharedStyle,
|
|
@@ -2,28 +2,10 @@ import Content from './content';
|
|
|
2
2
|
import Viewer2DComponents from './viewer2d/export';
|
|
3
3
|
import StyleComponents from './style/export';
|
|
4
4
|
|
|
5
|
-
export {
|
|
6
|
-
// ToolbarComponents,
|
|
7
|
-
Content,
|
|
8
|
-
// SidebarComponents,
|
|
9
|
-
// FooterBarComponents,
|
|
10
|
-
Viewer2DComponents,
|
|
11
|
-
StyleComponents
|
|
12
|
-
// HeaderComponents,
|
|
13
|
-
// WizardStepComponents,
|
|
14
|
-
// SignComponents,
|
|
15
|
-
// MyProjectsComonents
|
|
16
|
-
};
|
|
5
|
+
export { Content, Viewer2DComponents, StyleComponents };
|
|
17
6
|
|
|
18
7
|
export default {
|
|
19
|
-
// ToolbarComponents,
|
|
20
8
|
Content,
|
|
21
|
-
// SidebarComponents,
|
|
22
|
-
// FooterBarComponents,
|
|
23
|
-
// WizardStepComponents,
|
|
24
9
|
Viewer2DComponents,
|
|
25
10
|
StyleComponents
|
|
26
|
-
// HeaderComponents,
|
|
27
|
-
// SignComponents,
|
|
28
|
-
// MyProjectsComonents
|
|
29
11
|
};
|