datastake-daf 0.6.119 → 0.6.121
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/dist/components/index.js
CHANGED
|
@@ -12934,9 +12934,9 @@ DAFFooter.propTypes = {
|
|
|
12934
12934
|
isViewMode: PropTypes__default["default"].bool
|
|
12935
12935
|
};
|
|
12936
12936
|
|
|
12937
|
-
const PAGE_HEIGHT =
|
|
12937
|
+
const PAGE_HEIGHT = 3508;
|
|
12938
12938
|
// margin-top: 20, bottom: 20;
|
|
12939
|
-
const FOOTER_HEIGHT =
|
|
12939
|
+
const FOOTER_HEIGHT = 40;
|
|
12940
12940
|
const HEADER_HEIGHT = 100;
|
|
12941
12941
|
const Row = _ref => {
|
|
12942
12942
|
let {
|
package/package.json
CHANGED
|
@@ -3,9 +3,9 @@ import PropTypes from 'prop-types';
|
|
|
3
3
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
4
4
|
import { formatClassname } from "../../../../../helpers/ClassesHelper";
|
|
5
5
|
|
|
6
|
-
const PAGE_HEIGHT =
|
|
6
|
+
const PAGE_HEIGHT = 3508;
|
|
7
7
|
// margin-top: 20, bottom: 20;
|
|
8
|
-
const FOOTER_HEIGHT =
|
|
8
|
+
const FOOTER_HEIGHT = 40;
|
|
9
9
|
const HEADER_HEIGHT = 100;
|
|
10
10
|
|
|
11
11
|
const Row = ({ widgets, i, onChangeHeight = () => { } }) => {
|