@evergis/react 4.0.124 → 4.0.127
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/LICENSE +21 -21
- package/README.md +7 -7
- package/dist/components/Dashboard/componentTypes.d.ts +45 -8
- package/dist/components/Dashboard/containers/GridRowContainer/index.d.ts +4 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/StructuredDataContext.d.ts +9 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/components/DeleteRowDialog.d.ts +9 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/constants.d.ts +14 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/index.d.ts +10 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/styled.d.ts +18 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/types.d.ts +48 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredData.d.ts +28 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataDraft.d.ts +25 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataSave.d.ts +17 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/useStructuredDataSchema.d.ts +11 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/utils/buildSchema.d.ts +14 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/utils/draftRows.d.ts +23 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/utils/filterValue.d.ts +14 -0
- package/dist/components/Dashboard/containers/StructuredDataContainer/utils/saveToSource.d.ts +18 -0
- package/dist/components/Dashboard/containers/index.d.ts +1 -0
- package/dist/components/Dashboard/containers/registry.d.ts +1 -0
- package/dist/components/Dashboard/elements/ElementTable/components/TableCell.d.ts +10 -0
- package/dist/components/Dashboard/elements/ElementTable/constants.d.ts +13 -0
- package/dist/components/Dashboard/elements/ElementTable/index.d.ts +9 -0
- package/dist/components/Dashboard/elements/ElementTable/styled.d.ts +28 -0
- package/dist/components/Dashboard/elements/ElementTable/types.d.ts +15 -0
- package/dist/components/Dashboard/elements/ElementTable/useCellEditing.d.ts +15 -0
- package/dist/components/Dashboard/elements/ElementTable/useTableView.d.ts +16 -0
- package/dist/components/Dashboard/elements/ElementTable/utils/isSameCellValue.d.ts +10 -0
- package/dist/components/Dashboard/elements/ElementTable/utils/sortRows.d.ts +12 -0
- package/dist/components/Dashboard/elements/index.d.ts +1 -0
- package/dist/components/Dashboard/elements/registry.d.ts +1 -0
- package/dist/components/Dashboard/grid/GridGroupView/index.d.ts +3 -0
- package/dist/components/Dashboard/grid/components/GridHeightResizer/index.d.ts +2 -0
- package/dist/components/Dashboard/grid/components/GridTrack/index.d.ts +2 -0
- package/dist/components/Dashboard/grid/components/GridTracks/styled.d.ts +14 -1
- package/dist/components/Dashboard/grid/constants.d.ts +8 -0
- package/dist/components/Dashboard/grid/hooks/useGridHeightResize.d.ts +8 -1
- package/dist/components/Dashboard/grid/utils/gridTracks.d.ts +11 -3
- package/dist/components/Dashboard/types.d.ts +89 -14
- package/dist/components/Dashboard/utils/applyTreeFilterToCondition.d.ts +1 -6
- package/dist/components/Dashboard/utils/filterValueKind.d.ts +19 -0
- package/dist/components/Dashboard/utils/formatDataSourceCondition.d.ts +2 -1
- package/dist/components/Dashboard/utils/getSelectedFilterValue.d.ts +1 -1
- package/dist/components/Dashboard/utils/getWrapperSizeStyle.d.ts +7 -1
- package/dist/components/Dashboard/utils/index.d.ts +1 -0
- package/dist/constants/styling.d.ts +1 -1
- package/dist/hooks/map/useIconsFromLayers.d.ts +1 -1
- package/dist/index.js +6268 -5387
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +6269 -5392
- package/dist/react.esm.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.127",
|
|
3
3
|
"name": "@evergis/react",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"storybook": "^7.6.14"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@evergis/api": "^5.0.
|
|
61
|
-
"@evergis/charts": "^4.0.
|
|
60
|
+
"@evergis/api": "^5.0.46",
|
|
61
|
+
"@evergis/charts": "^4.0.45",
|
|
62
62
|
"@evergis/color": "^1.0.0-alpha.1",
|
|
63
63
|
"@evergis/uilib-gl": "^1.0.119",
|
|
64
64
|
"@mapbox/mapbox-gl-draw": "^1.5.1",
|
|
@@ -88,5 +88,6 @@
|
|
|
88
88
|
"swiper": "^8.3.2",
|
|
89
89
|
"uuid": "^13.0.0",
|
|
90
90
|
"wkt": "^0.1.1"
|
|
91
|
-
}
|
|
91
|
+
},
|
|
92
|
+
"gitHead": "8ccceb487919d39f6bfd3559aadbd852f9e27e5a"
|
|
92
93
|
}
|