@evergis/react 4.0.118 → 4.0.119
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 +11 -2
- package/dist/components/Dashboard/constants.d.ts +15 -0
- package/dist/components/Dashboard/containers/ContainersGroupContainer/FlowGroup.d.ts +4 -0
- package/dist/components/Dashboard/containers/ContainersGroupContainer/index.d.ts +6 -0
- package/dist/components/Dashboard/containers/GridRowContainer/index.d.ts +11 -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/grid/GridEditContext/index.d.ts +9 -0
- package/dist/components/Dashboard/grid/GridEditSession/index.d.ts +11 -0
- package/dist/components/Dashboard/grid/GridGroup/index.d.ts +11 -0
- package/dist/components/Dashboard/grid/GridGroupView/index.d.ts +10 -0
- package/dist/components/Dashboard/grid/components/GridContextMenu/index.d.ts +16 -0
- package/dist/components/Dashboard/grid/components/GridContextMenu/styled.d.ts +8 -0
- package/dist/components/Dashboard/grid/components/GridHeightResizer/index.d.ts +14 -0
- package/dist/components/Dashboard/grid/components/GridResizer/index.d.ts +13 -0
- package/dist/components/Dashboard/grid/components/GridResizer/styled.d.ts +11 -0
- package/dist/components/Dashboard/grid/components/GridTrack/index.d.ts +24 -0
- package/dist/components/Dashboard/grid/components/GridTracks/index.d.ts +21 -0
- package/dist/components/Dashboard/grid/components/GridTracks/styled.d.ts +51 -0
- package/dist/components/Dashboard/grid/constants.d.ts +77 -0
- package/dist/components/Dashboard/grid/hooks/useGridCellSwap.d.ts +25 -0
- package/dist/components/Dashboard/grid/hooks/useGridDraft.d.ts +22 -0
- package/dist/components/Dashboard/grid/hooks/useGridHeightResize.d.ts +20 -0
- package/dist/components/Dashboard/grid/hooks/useGridMenuOptions.d.ts +2 -0
- package/dist/components/Dashboard/grid/hooks/useGridResize.d.ts +27 -0
- package/dist/components/Dashboard/grid/hooks/useGridSelection.d.ts +12 -0
- package/dist/components/Dashboard/grid/types.d.ts +78 -0
- package/dist/components/Dashboard/grid/utils/createGridNodeId.d.ts +23 -0
- package/dist/components/Dashboard/grid/utils/gridMenuActions.d.ts +14 -0
- package/dist/components/Dashboard/grid/utils/gridOperations.d.ts +18 -0
- package/dist/components/Dashboard/grid/utils/gridResizeOperations.d.ts +18 -0
- package/dist/components/Dashboard/grid/utils/gridTracks.d.ts +33 -0
- package/dist/components/Dashboard/grid/utils/gridTree.d.ts +58 -0
- package/dist/components/Dashboard/grid/utils/readCellAtPoint.d.ts +13 -0
- package/dist/components/Dashboard/grid/utils/readTrackPixels.d.ts +16 -0
- package/dist/components/Dashboard/hooks/useWidgetContext.d.ts +1 -0
- package/dist/components/Dashboard/types.d.ts +21 -0
- package/dist/components/Dashboard/utils/getRenderElement.d.ts +1 -1
- package/dist/components/Dashboard/utils/getWrapperSizeStyle.d.ts +6 -1
- package/dist/contexts/DashboardContext/types.d.ts +10 -1
- package/dist/contexts/FeatureCardContext/types.d.ts +4 -1
- package/dist/index.js +4912 -3427
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +4911 -3430
- 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.119",
|
|
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.43",
|
|
61
|
+
"@evergis/charts": "^4.0.42",
|
|
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": "a4541056dc2965a0e862e8fd46b8c92bfe133e75"
|
|
92
93
|
}
|