@ndla/video-search 6.0.15 → 6.0.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/lib/VideoResultList.d.ts +2 -2
- package/lib/VideoSearch.d.ts +1 -1
- package/package.json +7 -7
package/lib/VideoResultList.d.ts
CHANGED
|
@@ -13,12 +13,12 @@ interface Props {
|
|
|
13
13
|
locale: string;
|
|
14
14
|
onSelectVideo: (video: BrightcoveApiType) => void;
|
|
15
15
|
}
|
|
16
|
-
export declare const VideoResultList: ({ videos, translations, locale, onSelectVideo }: Props) => import("
|
|
16
|
+
export declare const VideoResultList: ({ videos, translations, locale, onSelectVideo }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
interface VideoListItemProps {
|
|
18
18
|
video: BrightcoveApiType;
|
|
19
19
|
translations: Translations;
|
|
20
20
|
locale: string;
|
|
21
21
|
onSelectVideo: (video: BrightcoveApiType) => void;
|
|
22
22
|
}
|
|
23
|
-
export declare const VideoListItem: ({ video, onSelectVideo, translations, locale }: VideoListItemProps) => import("
|
|
23
|
+
export declare const VideoListItem: ({ video, onSelectVideo, translations, locale }: VideoListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
24
|
export {};
|
package/lib/VideoSearch.d.ts
CHANGED
|
@@ -27,5 +27,5 @@ export interface VideoQueryType {
|
|
|
27
27
|
offset: number;
|
|
28
28
|
limit: number;
|
|
29
29
|
}
|
|
30
|
-
export declare const VideoSearch: ({ onVideoSelect, searchVideos, onError, translations, locale }: Props) => import("
|
|
30
|
+
export declare const VideoSearch: ({ onVideoSelect, searchVideos, onError, translations, locale }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
31
31
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ndla/video-search",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.16",
|
|
4
4
|
"description": "A simple library for searching NDLA videos",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
"react-dom": ">= 16.8.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@ndla/types-embed": "^4.1.
|
|
34
|
+
"@ndla/types-embed": "^4.1.8"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@ndla/button": "^13.0.
|
|
37
|
+
"@ndla/button": "^13.0.5",
|
|
38
38
|
"@ndla/core": "^5.0.1",
|
|
39
|
-
"@ndla/forms": "^8.0.
|
|
40
|
-
"@ndla/icons": "^6.1.
|
|
39
|
+
"@ndla/forms": "^8.0.5",
|
|
40
|
+
"@ndla/icons": "^6.1.8",
|
|
41
41
|
"@ndla/licenses": "^7.2.6",
|
|
42
|
-
"@ndla/notion": "^7.0.
|
|
42
|
+
"@ndla/notion": "^7.0.4",
|
|
43
43
|
"@ndla/util": "^4.0.4"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c3c7ec99f9fa1bcd8e6d6f0c96d77f59773323cc"
|
|
49
49
|
}
|