@evergis/react 4.0.53 → 4.0.55

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.
Files changed (35) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +7 -7
  3. package/dist/components/Dashboard/containers/AttachmentContainer/components/AddButton.d.ts +9 -0
  4. package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentItem.d.ts +10 -0
  5. package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentLinkDialog.d.ts +7 -0
  6. package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsGrid.d.ts +9 -0
  7. package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsHeader.d.ts +9 -0
  8. package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsList.d.ts +9 -0
  9. package/dist/components/Dashboard/containers/AttachmentContainer/components/FileImagePreview.d.ts +8 -0
  10. package/dist/components/Dashboard/containers/AttachmentContainer/components/ShowMoreButton.d.ts +6 -0
  11. package/dist/components/Dashboard/containers/AttachmentContainer/constants.d.ts +21 -0
  12. package/dist/components/Dashboard/containers/AttachmentContainer/index.d.ts +3 -0
  13. package/dist/components/Dashboard/containers/AttachmentContainer/styled.d.ts +39 -0
  14. package/dist/components/Dashboard/containers/AttachmentContainer/types.d.ts +27 -0
  15. package/dist/components/Dashboard/containers/AttachmentContainer/useAttachmentContainer.d.ts +19 -0
  16. package/dist/components/Dashboard/containers/AttachmentContainer/usePreviewImages.d.ts +8 -0
  17. package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileType.d.ts +2 -0
  18. package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileTypeIcon.d.ts +2 -0
  19. package/dist/components/Dashboard/containers/AttachmentContainer/utils/getMimeTypeFromUrl.d.ts +2 -0
  20. package/dist/components/Dashboard/containers/AttachmentContainer/utils/parseAttachments.d.ts +11 -0
  21. package/dist/components/Dashboard/containers/EditContainer/components/EditAttachmentContainer.d.ts +3 -0
  22. package/dist/components/Dashboard/containers/index.d.ts +1 -0
  23. package/dist/components/Dashboard/containers/registry.d.ts +2 -0
  24. package/dist/components/Dashboard/hooks/useEditControl.d.ts +1 -1
  25. package/dist/components/Dashboard/hooks/useRenderContainer.d.ts +13 -0
  26. package/dist/components/Dashboard/hooks/useWidgetContext.d.ts +1 -0
  27. package/dist/components/Dashboard/types.d.ts +4 -1
  28. package/dist/components/Dashboard/utils/getDisplayTemplateNameFromAttribute.d.ts +2 -0
  29. package/dist/components/Dashboard/utils/index.d.ts +1 -0
  30. package/dist/contexts/DashboardContext/types.d.ts +2 -1
  31. package/dist/index.js +3315 -2403
  32. package/dist/index.js.map +1 -1
  33. package/dist/react.esm.js +3316 -2406
  34. package/dist/react.esm.js.map +1 -1
  35. package/package.json +6 -5
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.0.53",
2
+ "version": "4.0.55",
3
3
  "name": "@evergis/react",
4
4
  "author": "Everpoint",
5
5
  "license": "MIT",
@@ -54,10 +54,10 @@
54
54
  "storybook": "^7.6.14"
55
55
  },
56
56
  "dependencies": {
57
- "@evergis/api": "^5.0.28",
58
- "@evergis/charts": "^4.0.27",
57
+ "@evergis/api": "^5.0.29",
58
+ "@evergis/charts": "^4.0.28",
59
59
  "@evergis/color": "^1.0.0-alpha.1",
60
- "@evergis/uilib-gl": "^1.0.97",
60
+ "@evergis/uilib-gl": "^1.0.99",
61
61
  "@mapbox/mapbox-gl-draw": "^1.5.1",
62
62
  "@microsoft/signalr": "^8.0.7",
63
63
  "@svgdotjs/svg.js": "^3.1.2",
@@ -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": "5772a2afef1ccedcf7ccd8e72fa271f8e88211b5"
90
91
  }