polarvo-layout 1.0.13 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +18 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polarvo-layout",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "type": "module",
5
5
  "author": "unigence <unigencelab@gmail.com>",
6
6
  "repository": {
package/src/index.js CHANGED
@@ -5,12 +5,12 @@ import './styles.scss';
5
5
  import createPolarvoLayout from './library/index.js';
6
6
 
7
7
  // 컴포넌트
8
- import IconBar from './components/IconBar/IconBar.vue';
9
- import DisplayFastMenu from './components/FastMenu/DisplayFastMenu.vue';
10
- import HistoryFastMenu from './components/FastMenu/HistoryFastMenu.vue';
11
- import ActionFastMenu from './components/FastMenu/ActionFastMenu.vue';
12
- import LayoutFastMenu from './components/FastMenu/LayoutFastMenu.vue';
13
- import DesignFastMenu from './components/FastMenu/DesignFastMenu.vue';
8
+ // import IconBar from './components/IconBar/IconBar.vue';
9
+ // import DisplayFastMenu from './components/FastMenu/DisplayFastMenu.vue';
10
+ // import HistoryFastMenu from './components/FastMenu/HistoryFastMenu.vue';
11
+ // import ActionFastMenu from './components/FastMenu/ActionFastMenu.vue';
12
+ // import LayoutFastMenu from './components/FastMenu/LayoutFastMenu.vue';
13
+ // import DesignFastMenu from './components/FastMenu/DesignFastMenu.vue';
14
14
 
15
15
  import ElementSidebar from './components/SideBar/ElementSidebar.vue';
16
16
  import LayoutSideBar from './components/SideBar/LayoutSideBar.vue';
@@ -18,16 +18,21 @@ import LayoutSideBar from './components/SideBar/LayoutSideBar.vue';
18
18
  import LayoutMiniMenu from './components/MiniMenu/LayoutMiniMenu.vue';
19
19
  import CanvasContainer from './components/Layout/CanvasContainer.vue';
20
20
 
21
+ import RedoIcon from './icons/action/RedoIcon.vue'
22
+ import UndoIcon from './icons/history/UndoIcon.vue';
23
+
21
24
  export {
22
25
  createPolarvoLayout,
23
- IconBar,
24
- DisplayFastMenu,
25
- HistoryFastMenu,
26
- ActionFastMenu,
27
- LayoutFastMenu,
28
- DesignFastMenu,
26
+ // IconBar,
27
+ // DisplayFastMenu,
28
+ // HistoryFastMenu,
29
+ // ActionFastMenu,
30
+ // LayoutFastMenu,
31
+ // DesignFastMenu,
29
32
  ElementSidebar,
30
33
  LayoutSideBar,
31
34
  LayoutMiniMenu,
32
- CanvasContainer
35
+ CanvasContainer,
36
+ RedoIcon,
37
+ UndoIcon,
33
38
  };