@mx-cartographer/experiences 6.6.5 → 6.7.0

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 (34) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/common/components/index.d.ts +1 -0
  3. package/dist/common/types/Help.d.ts +0 -9
  4. package/dist/common/types/index.d.ts +1 -0
  5. package/dist/common/types/localization/index.d.ts +1 -1
  6. package/dist/help/HelpWidget.d.ts +4 -7
  7. package/dist/help/components/Help.d.ts +6 -0
  8. package/dist/help/{HelpContent.d.ts → components/HelpContent.d.ts} +1 -1
  9. package/dist/help/components/HelpList.d.ts +12 -0
  10. package/dist/help/components/content/section/index.d.ts +15 -15
  11. package/dist/{requestsupport → help/components/requestsupport}/ContactSupport.d.ts +1 -2
  12. package/dist/{requestsupport → help/components/requestsupport}/HelpByCategoryList.d.ts +1 -1
  13. package/dist/{requestsupport → help/components/requestsupport}/MissingInstitution.d.ts +1 -2
  14. package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsDrawer.d.ts +1 -1
  15. package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsList.d.ts +1 -1
  16. package/dist/{requestsupport → help/components/requestsupport}/RequestSupport.d.ts +1 -1
  17. package/dist/{requestsupport → help/components/requestsupport}/RequestSupportFooter.d.ts +1 -1
  18. package/dist/{requestsupport → help/components/requestsupport}/RequestSupportInstitution.d.ts +1 -1
  19. package/dist/{requestsupport → help/components/requestsupport}/SupportSuccessMessage.d.ts +1 -1
  20. package/dist/help/constants/Help.d.ts +70 -0
  21. package/dist/help/constants/index.d.ts +1 -60
  22. package/dist/help/index.d.ts +2 -3
  23. package/dist/help/store/HelpStore.d.ts +1 -1
  24. package/dist/help/utils/getAccessibleHelpCategories.d.ts +3 -0
  25. package/dist/help/utils/index.d.ts +2 -3
  26. package/dist/index.es.js +5248 -5251
  27. package/dist/index.es.js.map +1 -1
  28. package/package.json +1 -1
  29. package/dist/help/HelpList.d.ts +0 -3
  30. package/dist/requestsupport/constants/index.d.ts +0 -10
  31. /package/dist/{requestsupport → help/components/requestsupport}/PopularTopicsRow.d.ts +0 -0
  32. /package/dist/{requestsupport → help/components/requestsupport}/RequestSupportHeader.d.ts +0 -0
  33. /package/dist/{requestsupport → help/components/requestsupport}/index.d.ts +0 -0
  34. /package/dist/{requestsupport/util → help/utils}/getInstitutionsBasedOnGuid.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.6.5",
3
+ "version": "6.7.0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +0,0 @@
1
- import { default as React } from 'react';
2
- import { HelpListProps } from '../common/types/Help';
3
- export declare const HelpList: React.FC<HelpListProps>;
@@ -1,10 +0,0 @@
1
- export declare const HELP_BY_CATEGORY_LIST: {
2
- guid: string;
3
- icon: string;
4
- topics: {
5
- type: string;
6
- }[];
7
- }[];
8
- export declare const POPULAR_TOPICS_LIST: {
9
- type: string;
10
- }[];