kitchen-simulator 5.0.0-test.13 → 5.0.0-test.14
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 +5 -5
- package/src/KitchenConfiguratorApp.jsx +1 -1
- package/src/_KitchenConfigurator.jsx +710 -0
- package/src/_index.js +32 -0
- package/src/components/_export.js +1 -19
- package/src/KitchenConfigurator.jsx +0 -1517
package/src/_index.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import Catalog from './catalog/catalog';
|
|
2
|
+
import Translator from './translator/translator';
|
|
3
|
+
import * as Models from './models';
|
|
4
|
+
import reducer from './reducers/reducer';
|
|
5
|
+
import _KitchenConfigurator from './_KitchenConfigurator';
|
|
6
|
+
import Plugins from './plugins/export';
|
|
7
|
+
import * as KitchenConfiguratorConstants from './constants';
|
|
8
|
+
import * as KitchenConfiguratorSharedStyle from './shared-style';
|
|
9
|
+
import KitchenConfiguratorComponents from './components/export';
|
|
10
|
+
import KitchenConfiguratorActions from './actions/export';
|
|
11
|
+
import KitchenConfiguratorReducers from './reducers/export';
|
|
12
|
+
import KitchenConfiguratorClasses from './class/export';
|
|
13
|
+
import ElementsFactories from './catalog/factories/export';
|
|
14
|
+
import KitchenConfiguratorUtils from './utils/export';
|
|
15
|
+
export {
|
|
16
|
+
Catalog,
|
|
17
|
+
Translator,
|
|
18
|
+
Models,
|
|
19
|
+
reducer,
|
|
20
|
+
_KitchenConfigurator,
|
|
21
|
+
Plugins,
|
|
22
|
+
KitchenConfiguratorConstants,
|
|
23
|
+
KitchenConfiguratorSharedStyle,
|
|
24
|
+
KitchenConfiguratorComponents,
|
|
25
|
+
KitchenConfiguratorActions,
|
|
26
|
+
KitchenConfiguratorReducers,
|
|
27
|
+
KitchenConfiguratorClasses,
|
|
28
|
+
ElementsFactories,
|
|
29
|
+
KitchenConfiguratorUtils
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export { default } from './KitchenConfiguratorApp';
|
|
@@ -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
|
};
|