box-ui-elements 23.4.0-beta.15 → 23.4.0-beta.16
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/dist/explorer.js +1 -1
- package/dist/picker.js +1 -1
- package/dist/preview.js +1 -1
- package/dist/preview.js.LICENSE.txt +10 -0
- package/dist/sharing.js +1 -1
- package/dist/sidebar.js +1 -1
- package/dist/sidebar.js.LICENSE.txt +10 -0
- package/dist/uploader.js +1 -1
- package/es/elements/common/annotator-context/types.js.flow +2 -2
- package/es/elements/common/annotator-context/types.js.map +1 -1
- package/es/elements/common/annotator-context/withAnnotations.js +29 -10
- package/es/elements/common/annotator-context/withAnnotations.js.flow +10 -3
- package/es/elements/common/annotator-context/withAnnotations.js.map +1 -1
- package/es/elements/common/annotator-context/withAnnotatorContext.js +47 -23
- package/es/elements/common/annotator-context/withAnnotatorContext.js.flow +1 -0
- package/es/elements/common/annotator-context/withAnnotatorContext.js.map +1 -1
- package/es/elements/common/types/SidebarNavigation.flow.js +14 -0
- package/es/elements/common/types/SidebarNavigation.flow.js.flow +52 -0
- package/es/elements/common/types/SidebarNavigation.flow.js.map +1 -0
- package/es/elements/common/types/SidebarNavigation.js +16 -0
- package/es/elements/common/types/SidebarNavigation.js.map +1 -0
- package/es/elements/content-sidebar/stories/tests/MetadataSidebarRedesign-visual.stories.js +4 -13
- package/es/elements/content-sidebar/stories/tests/MetadataSidebarRedesign-visual.stories.js.map +1 -1
- package/es/src/elements/common/annotator-context/types.d.ts +2 -2
- package/es/src/elements/common/annotator-context/withAnnotations.d.ts +5 -0
- package/es/src/elements/common/annotator-context/withAnnotatorContext.d.ts +4 -1
- package/es/src/elements/common/types/SidebarNavigation.d.ts +37 -0
- package/package.json +35 -37
- package/src/elements/common/annotator-context/__tests__/withAnnotations.test.tsx +46 -0
- package/src/elements/common/annotator-context/__tests__/withAnnotatorContext.test.tsx +116 -20
- package/src/elements/common/annotator-context/types.js.flow +2 -2
- package/src/elements/common/annotator-context/types.ts +2 -2
- package/src/elements/common/annotator-context/withAnnotations.js.flow +10 -3
- package/src/elements/common/annotator-context/withAnnotations.tsx +35 -6
- package/src/elements/common/annotator-context/withAnnotatorContext.js.flow +1 -0
- package/src/elements/common/annotator-context/withAnnotatorContext.tsx +61 -29
- package/src/elements/common/types/SidebarNavigation.flow.js +52 -0
- package/src/elements/common/types/SidebarNavigation.ts +47 -0
- package/src/elements/content-sidebar/stories/tests/MetadataSidebarRedesign-visual.stories.tsx +5 -13
- package/i18n.config.js +0 -9
|
@@ -103,6 +103,16 @@ object-assign
|
|
|
103
103
|
* LICENSE file in the root directory of this source tree.
|
|
104
104
|
*/
|
|
105
105
|
|
|
106
|
+
/**
|
|
107
|
+
* @license React
|
|
108
|
+
* use-sync-external-store-shim.production.js
|
|
109
|
+
*
|
|
110
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
111
|
+
*
|
|
112
|
+
* This source code is licensed under the MIT license found in the
|
|
113
|
+
* LICENSE file in the root directory of this source tree.
|
|
114
|
+
*/
|
|
115
|
+
|
|
106
116
|
/**
|
|
107
117
|
* @license React
|
|
108
118
|
* use-sync-external-store-shim.production.min.js
|