itube-specs 0.0.605 → 0.0.607

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.
@@ -4,6 +4,7 @@
4
4
  :class="[
5
5
  {'s-checkbox--disabled': disabled},
6
6
  {'s-checkbox--error': error},
7
+ {'s-checkbox--right': right},
7
8
  ]"
8
9
  >
9
10
  <input
@@ -39,6 +40,7 @@ const props = defineProps<{
39
40
  name?: string
40
41
  disabled?: boolean
41
42
  error?: boolean
43
+ right?: boolean
42
44
  }>()
43
45
 
44
46
  const emit = defineEmits<{
@@ -5,7 +5,7 @@ import { EAuthSteps } from '../runtime';
5
5
  export const usePlaylistAdd = () => {
6
6
  const videoCard = useState<IVideoCard | IVideoData | null>('playlist-add-card', () => null);
7
7
  const isPlaylistAdd = useState('playlist-add-open', () => false);
8
- const selectValue = useState<string | string[] | undefined>('playlist-add-select', () => '');
8
+ const selectValue = useState<string[]>('playlist-add-select', () => []);
9
9
  const step = useState<'add' | 'new'>('playlist-add-step', () => 'add');
10
10
 
11
11
  const { openAuthPopup } = useAuthPopup();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.605",
4
+ "version": "0.0.607",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {