@onehat/ui 0.3.310 → 0.3.312
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
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
} from '../../Constants/Editor.js';
|
|
12
12
|
import UiGlobals from '../../UiGlobals.js';
|
|
13
13
|
import withComponent from '../Hoc/withComponent.js';
|
|
14
|
-
import
|
|
14
|
+
import withPdfButtons from '../Hoc/withPdfButtons.js';
|
|
15
15
|
import inArray from '../../Functions/inArray.js';
|
|
16
16
|
import getComponentFromType from '../../Functions/getComponentFromType.js';
|
|
17
17
|
import buildAdditionalButtons from '../../Functions/buildAdditionalButtons.js';
|
|
@@ -305,4 +305,4 @@ function Viewer(props) {
|
|
|
305
305
|
</Column>;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
export default withComponent(
|
|
308
|
+
export default withComponent(withPdfButtons(Viewer));
|