@gisce/react-ooui 1.2.0-rc.17 → 1.2.0-rc.18

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gisce/react-ooui",
3
- "version": "1.2.0-rc.17",
3
+ "version": "1.2.0-rc.18",
4
4
  "files": [
5
5
  "dist",
6
6
  "src",
@@ -37,11 +37,11 @@
37
37
  "dependencies": {
38
38
  "@ant-design/plots": "^1.0.9",
39
39
  "@gisce/ooui": "^0.17.11-rc.0",
40
- "@gisce/react-formiga-components": "^1.0.9-rc.12",
40
+ "@gisce/react-formiga-components": "^1.0.9-rc.13",
41
41
  "@gisce/react-formiga-table": "^0.5.0",
42
42
  "@monaco-editor/react": "^4.4.5",
43
43
  "@tabler/icons": "^1.96.0",
44
- "antd": "^4.12.3",
44
+ "antd": "^4.24.3",
45
45
  "buffer": "^6.0.3",
46
46
  "fiber-diagram": "github:gisce/fiber-diagram",
47
47
  "file-type": "^16.5.0",
@@ -104,7 +104,7 @@ function ChangeViewButton(props: Props) {
104
104
  }
105
105
 
106
106
  return (
107
- <>
107
+ <div style={{ display: "flex" }}>
108
108
  <ButtonWithTooltip
109
109
  tooltip={previousView ? t("viewAs") + " " + t(previousView.type) : ""}
110
110
  icon={getIconForView(previousView)}
@@ -124,7 +124,7 @@ function ChangeViewButton(props: Props) {
124
124
  onClick={(e) => e.preventDefault()}
125
125
  ></Button>
126
126
  </Dropdown>
127
- </>
127
+ </div>
128
128
  );
129
129
  }
130
130