@kbss-cvut/s-forms 0.9.1 → 0.9.2-beta-bfb894d.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/dist/components/media/MediaAssetViewer.d.ts +2 -1
- package/dist/components/media/icons/fullscreenIcon.d.ts +2 -0
- package/dist/s-forms.cjs +1 -1
- package/dist/s-forms.cjs.map +1 -1
- package/dist/s-forms.css +1 -1
- package/dist/s-forms.css.map +1 -1
- package/dist/s-forms.js +1 -1
- package/dist/s-forms.js.map +1 -1
- package/dist/s-forms.modern.js +1 -1
- package/dist/s-forms.modern.js.map +1 -1
- package/dist/s-forms.umd.js +1 -1
- package/dist/s-forms.umd.js.map +1 -1
- package/dist/util/MediaAssetViewerUtils.d.ts +58 -0
- package/package.json +1 -1
- package/dist/components/answer/OptimizedMenuList.d.ts +0 -5
- package/dist/components/answer/SelectAnswer.d.ts +0 -29
- package/dist/components/answer/TypeaheadAnswer.d.ts +0 -14
- package/dist/stories/TypeaheadAnswer.stories.d.ts +0 -3
|
@@ -3,8 +3,9 @@ export default MediaAssetViewer;
|
|
|
3
3
|
* Orchestrates the rendering of media assets based on their type and manages fullscreen state.
|
|
4
4
|
* Defaults to an iframe viewer for unsupported types.
|
|
5
5
|
*/
|
|
6
|
-
declare function MediaAssetViewer({ src, annotations, allowFullScreen, showAnnotations, }: {
|
|
6
|
+
declare function MediaAssetViewer({ src, mediaId, annotations, allowFullScreen, showAnnotations, }: {
|
|
7
7
|
src: any;
|
|
8
|
+
mediaId: any;
|
|
8
9
|
annotations?: any[] | undefined;
|
|
9
10
|
allowFullScreen: any;
|
|
10
11
|
showAnnotations?: boolean | undefined;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const fullscreenIconSvg: "<svg viewBox=\"0 0 24 24\" width=\"20\" height=\"20\" fill=\"currentColor\" aria-hidden=\"true\"><path d=\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\"/></svg>";
|
|
2
|
+
export function FullscreenIcon(props: any): import("react/jsx-runtime").JSX.Element;
|