itube-specs 0.0.639 → 0.0.643

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.
@@ -13,6 +13,7 @@ export const useSharePopup = () => {
13
13
 
14
14
  const closeSharePopup = () => {
15
15
  isSharePopupOpen.value = false;
16
+ sharedVideoCard.value = {} as IVideoCard;
16
17
  };
17
18
 
18
19
  return {
@@ -1,7 +1,7 @@
1
1
  import { parseApiError } from '../runtime';
2
2
 
3
- const SUCCESS_TIME = 5000;
4
- const ERROR_TIME = 8000;
3
+ const SUCCESS_TIME = 2000;
4
+ const ERROR_TIME = 4000;
5
5
 
6
6
  let _timeoutClosure: null | ReturnType<typeof setTimeout> = null;
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.639",
4
+ "version": "0.0.643",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -24,7 +24,7 @@ export const cleanModelCard = (card: IRawModelCard): IModelCard => ({
24
24
  return {
25
25
  icon: item.name.split('_')[0],
26
26
  title: item.name,
27
- value: item.values?.[0]?.title,
27
+ value: item.values?.[0]?.name,
28
28
  }
29
29
  }
30
30
  return {