equal
deleted
inserted
replaced
14 import jsondiffpatch from 'jsondiffpatch' |
14 import jsondiffpatch from 'jsondiffpatch' |
15 |
15 |
16 const Diff = require('diff') |
16 const Diff = require('diff') |
17 Vue.config.ignoredElements = ["mask"]; |
17 Vue.config.ignoredElements = ["mask"]; |
18 var iconolab = { |
18 var iconolab = { |
19 Cutout : Cutout, |
19 Cutout : Cutout, |
20 JsDiff: Diff, |
20 JsDiff: Diff, |
21 JsonDiff: jsondiffpatch, |
21 JsonDiff: jsondiffpatch, |
22 CollectionSelector: CollectionSelector, |
22 CollectionSelector: CollectionSelector, |
23 TabSelector: TabSelector, |
23 TabSelector: TabSelector, |
24 DescriptionViewer: DescriptionViewer, |
24 DescriptionViewer: DescriptionViewer, |
25 VueComponents : { |
25 VueComponents : { |
26 Typeahead: Typeahead, |
26 Typeahead: Typeahead, |
27 MergeTool: MergeTool, |
27 MergeTool: MergeTool, |
28 Zoomview: Zoomview, |
28 Zoomview: Zoomview, |
29 DiffViewer: DiffViewer |
29 DiffViewer: DiffViewer |
30 } |
30 } |
31 }; |
31 }; |
32 |
32 |
33 if (!window.iconolab) { |
33 if (!window.iconolab) { |
34 window.iconolab = iconolab; |
34 window.iconolab = iconolab; |
35 } |
35 } |