umwd-components 0.1.765 → 0.1.766

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.
@@ -86,6 +86,8 @@ export { updateCategoryAction } from './data/actions/e-commerce/categories/updat
86
86
  export { flattenAttributes, formDataToBlocks, getStrapiMedia, getStrapiURL, setOpacity } from './lib/utils.js';
87
87
  export { default as getIcon } from './lib/getIcon.js';
88
88
  export { StrapiImage } from './components/StrapiImage.js';
89
+ export { default as MarkdownDisplay } from './components/common/markdown/MarkdownDisplay.js';
90
+ export { default as MarkdownEditor } from './components/common/markdown/MarkdownEditor.js';
89
91
  export { areBusinessCredentailsComplete } from './lib/areBusinessCredentialsComplete.js';
90
92
  export { isCustomerProfileComplete } from './lib/isCustomerProfileComplete.js';
91
93
  export { isCustomerProfileCompleteV2 } from './lib/isCustomerProfileCompleteV2.js';
@@ -95,7 +95,7 @@ function getIcon(icon) {
95
95
  case "AccessTimeIcon":
96
96
  return AccessTimeIcon;
97
97
  default:
98
- return null;
98
+ return APIcon;
99
99
  }
100
100
  }
101
101