@weavy/uikit-react 22.1.0 → 22.2.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.
package/changelog.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog for Weavy
2
2
 
3
+ ## v22.2.0
4
+
5
+ <time>2024-04-16</time>
6
+
7
+ * Fixed an issue with pending uploads in the editor.
8
+ * Fixed an issue with pending link embeds in the editor.
9
+ * Fixed some issues with types in uikit-web.
10
+ * Added `submodals` property on block components in uikit-web to enable compatibility with external modals, backdrops and focus-traps.
11
+
3
12
  ## v22.1.0
4
13
 
5
14
  <time>2024-04-03</time>
@@ -1,4 +1,4 @@
1
- export { Weavy } from '@weavy/uikit-web';
1
+ export { Weavy } from './weavy';
2
2
  export * from './hooks';
3
3
  export * from './blocks';
4
4
  export * from './components';
@@ -0,0 +1,3 @@
1
+ import { Weavy } from '@weavy/uikit-web';
2
+
3
+ export { Weavy };