datastake-daf 0.6.221 → 0.6.223

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.
@@ -56037,7 +56037,7 @@ const isUnderDevelopmentType = backgroundType => {
56037
56037
  };
56038
56038
  const Style$a = dt.div`
56039
56039
  width: 100%;
56040
- height: 100vh;
56040
+ height: ${props => props.backgroundType === 'globe' || props.backgroundType === 'field' ? '90vh' : '100vh'};
56041
56041
  position: relative;
56042
56042
  overflow: hidden;
56043
56043
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.221",
3
+ "version": "0.6.223",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -7,7 +7,7 @@ const isUnderDevelopmentType = (backgroundType) => {
7
7
 
8
8
  const Style = styled.div`
9
9
  width: 100%;
10
- height: 100vh;
10
+ height: ${props => (props.backgroundType === 'globe' || props.backgroundType === 'field') ? '90vh' : '100vh'};
11
11
  position: relative;
12
12
  overflow: hidden;
13
13