@evergis/react 4.0.53 → 4.0.54
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/containers/AttachmentContainer/components/AddButton.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentItem.d.ts +10 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentLinkDialog.d.ts +7 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsGrid.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsHeader.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsList.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/FileImagePreview.d.ts +8 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/ShowMoreButton.d.ts +6 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/constants.d.ts +21 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/index.d.ts +3 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/styled.d.ts +39 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/types.d.ts +27 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/useAttachmentContainer.d.ts +19 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileType.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileTypeIcon.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getMimeTypeFromUrl.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/parseAttachments.d.ts +11 -0
- package/dist/components/Dashboard/containers/EditContainer/components/EditAttachmentContainer.d.ts +3 -0
- package/dist/components/Dashboard/containers/index.d.ts +1 -0
- package/dist/components/Dashboard/containers/registry.d.ts +2 -0
- package/dist/components/Dashboard/hooks/useRenderContainer.d.ts +13 -0
- package/dist/components/Dashboard/hooks/useWidgetContext.d.ts +1 -0
- package/dist/components/Dashboard/types.d.ts +3 -0
- package/dist/components/Dashboard/utils/getDisplayTemplateNameFromAttribute.d.ts +2 -0
- package/dist/components/Dashboard/utils/index.d.ts +1 -0
- package/dist/contexts/DashboardContext/types.d.ts +2 -1
- package/dist/index.js +3257 -2408
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +3258 -2411
- 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.54",
|
|
3
3
|
"name": "@evergis/react",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"storybook": "^7.6.14"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@evergis/api": "^5.0.
|
|
58
|
-
"@evergis/charts": "^4.0.
|
|
57
|
+
"@evergis/api": "^5.0.29",
|
|
58
|
+
"@evergis/charts": "^4.0.28",
|
|
59
59
|
"@evergis/color": "^1.0.0-alpha.1",
|
|
60
60
|
"@evergis/uilib-gl": "^1.0.97",
|
|
61
61
|
"@mapbox/mapbox-gl-draw": "^1.5.1",
|
|
@@ -86,5 +86,6 @@
|
|
|
86
86
|
"swiper": "^8.3.2",
|
|
87
87
|
"uuid": "^13.0.0",
|
|
88
88
|
"wkt": "^0.1.1"
|
|
89
|
-
}
|
|
89
|
+
},
|
|
90
|
+
"gitHead": "6256d738a892f1ed357ea5eaa00b514ad7c01cef"
|
|
90
91
|
}
|