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

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.19",
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.14",
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
 
@@ -290,11 +290,11 @@ function TreeActionBar(props: Props) {
290
290
  width="1em"
291
291
  height="1em"
292
292
  viewBox="0 0 24 24"
293
- stroke-width="1.5"
293
+ strokeWidth="1.5"
294
294
  fill="none"
295
295
  stroke="currentColor"
296
- stroke-linecap="round"
297
- stroke-linejoin="round"
296
+ strokeLinecap="round"
297
+ strokeLinejoin="round"
298
298
  >
299
299
  <path stroke="none" d="M0 0h24v24H0z" fill="none" />
300
300
  <ellipse cx="12" cy="6" rx="8" ry="3" />
@@ -354,7 +354,7 @@ function TreeActionBar(props: Props) {
354
354
  limit={limit}
355
355
  totalRegisters={totalItems || 0}
356
356
  selectedRegistersToExport={selectedRowItems}
357
- visibleRegisters={results?.length}
357
+ visibleRegisters={results?.length || 0}
358
358
  context={parentContext}
359
359
  />
360
360
  </Space>