itube-specs 0.0.431 → 0.0.433
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/components/auth/s-auth-login.vue +3 -0
- package/components/auth/s-auth-recovery.vue +2 -0
- package/components/auth/s-auth-register.vue +2 -0
- package/components/page-components/s-filter-button.vue +1 -5
- package/components/page-components/s-filter-popup.vue +2 -0
- package/components/page-components/s-model-filters.vue +2 -0
- package/components/page-components/s-report.vue +2 -0
- package/components/page-components/s-share.vue +1 -0
- package/components/playlist/s-playlist-add.vue +2 -0
- package/components/playlist/s-playlist-delete-video.vue +2 -0
- package/components/playlist/s-playlist-edit.vue +4 -0
- package/components/ui/s-button.vue +1 -1
- package/package.json +1 -1
|
@@ -27,18 +27,21 @@
|
|
|
27
27
|
<div class="s-auth-login__buttons">
|
|
28
28
|
<SButton
|
|
29
29
|
wide
|
|
30
|
+
size="l"
|
|
30
31
|
:disabled="loading"
|
|
31
32
|
@click="login"
|
|
32
33
|
>{{ t('auth.log_in') }}
|
|
33
34
|
</SButton>
|
|
34
35
|
<SButton
|
|
35
36
|
wide
|
|
37
|
+
size="l"
|
|
36
38
|
theme="ghost"
|
|
37
39
|
@click="onForgotClick"
|
|
38
40
|
>{{ t('auth.forgot') }}
|
|
39
41
|
</SButton>
|
|
40
42
|
<SButton
|
|
41
43
|
wide
|
|
44
|
+
size="l"
|
|
42
45
|
theme="ghost"
|
|
43
46
|
@click="onCreateClick"
|
|
44
47
|
>{{ t('auth_no_account') }}
|
|
@@ -20,12 +20,14 @@
|
|
|
20
20
|
<div class="s-auth-recovery__buttons">
|
|
21
21
|
<SButton
|
|
22
22
|
wide
|
|
23
|
+
size="l"
|
|
23
24
|
:disabled="loading"
|
|
24
25
|
@click="submit"
|
|
25
26
|
>{{ t('auth.get_recovery') }}
|
|
26
27
|
</SButton>
|
|
27
28
|
<SButton
|
|
28
29
|
wide
|
|
30
|
+
size="l"
|
|
29
31
|
theme="ghost"
|
|
30
32
|
@click="onLoginClick"
|
|
31
33
|
>{{ t('auth.back_to_login')}}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
>
|
|
10
10
|
<SIcon name="adjustments-horizontal" size="16"/>
|
|
11
11
|
<span class="_from-sm"
|
|
12
|
-
>{{
|
|
12
|
+
>{{ t('filter') }}
|
|
13
13
|
</span>
|
|
14
14
|
<SIcon
|
|
15
15
|
class="s-filter-button__icon _to-sm"
|
|
@@ -40,10 +40,6 @@ const emit = defineEmits<{
|
|
|
40
40
|
|
|
41
41
|
const { t } = useI18n()
|
|
42
42
|
|
|
43
|
-
const buttonName = computed(() => {
|
|
44
|
-
return props.count > 0 ? t('plural.filter', props.count) : t('filter');
|
|
45
|
-
})
|
|
46
|
-
|
|
47
43
|
const mobileCount = computed(() => props.count > 9 ? '9+' : props.count);
|
|
48
44
|
</script>
|
|
49
45
|
|
|
@@ -23,12 +23,14 @@
|
|
|
23
23
|
wide
|
|
24
24
|
class="s-model-filters__reset"
|
|
25
25
|
:disabled="!isFiltered"
|
|
26
|
+
size="l"
|
|
26
27
|
@click="onResetClick"
|
|
27
28
|
theme="secondary"
|
|
28
29
|
>{{ t('reset_all') }}
|
|
29
30
|
</SButton>
|
|
30
31
|
<SButton
|
|
31
32
|
wide
|
|
33
|
+
size="l"
|
|
32
34
|
@click="onShowClick"
|
|
33
35
|
>{{ t('show_results') }}
|
|
34
36
|
</SButton>
|
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
<SButton
|
|
93
93
|
:disabled="loading"
|
|
94
94
|
wide
|
|
95
|
+
size="l"
|
|
95
96
|
@click="submit"
|
|
96
97
|
>{{ t('report_form.send_report') }}
|
|
97
98
|
</SButton>
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
</div>
|
|
100
101
|
<SButton
|
|
101
102
|
wide
|
|
103
|
+
size="l"
|
|
102
104
|
theme="secondary"
|
|
103
105
|
@click="closeReportPopup"
|
|
104
106
|
>{{ t('cancel') }}
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
<div class="s-playlist-add__buttons">
|
|
50
50
|
<SButton
|
|
51
51
|
wide
|
|
52
|
+
size="l"
|
|
52
53
|
:disabled="loadingUserPlaylists || loadingPostVideo"
|
|
53
54
|
theme="secondary"
|
|
54
55
|
@click="closePopup"
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
</SButton>
|
|
57
58
|
<SButton
|
|
58
59
|
wide
|
|
60
|
+
size="l"
|
|
59
61
|
:disabled="loadingUserPlaylists || loadingPostVideo"
|
|
60
62
|
@click="onSaveClick"
|
|
61
63
|
>{{ $t('add') }}
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
<SButton
|
|
21
21
|
:disabled="loadingAll"
|
|
22
22
|
wide
|
|
23
|
+
size="l"
|
|
23
24
|
theme="secondary"
|
|
24
25
|
@click="closePlaylistEdit"
|
|
25
26
|
>{{ $t('cancel') }}
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
<SButton
|
|
28
29
|
:disabled="loadingAll"
|
|
29
30
|
wide
|
|
31
|
+
size="l"
|
|
30
32
|
@click="onBinClick"
|
|
31
33
|
>{{ $t('playlist.delete') }}
|
|
32
34
|
</SButton>
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
<template #footer>
|
|
29
29
|
<div class="s-playlist-edit__buttons">
|
|
30
30
|
<SButton
|
|
31
|
+
size="l"
|
|
31
32
|
:disabled="loadingAll"
|
|
32
33
|
wide
|
|
33
34
|
theme="secondary"
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
>{{ $t('cancel') }}
|
|
36
37
|
</SButton>
|
|
37
38
|
<SButton
|
|
39
|
+
size="l"
|
|
38
40
|
:disabled="loadingAll"
|
|
39
41
|
wide
|
|
40
42
|
@click="onDeleteClick"
|
|
@@ -94,12 +96,14 @@
|
|
|
94
96
|
<div class="s-playlist-edit__buttons">
|
|
95
97
|
<SButton
|
|
96
98
|
wide
|
|
99
|
+
size="l"
|
|
97
100
|
:disabled="loadingAll"
|
|
98
101
|
theme="secondary"
|
|
99
102
|
@click="closePlaylistEdit"
|
|
100
103
|
>{{ $t('cancel') }}
|
|
101
104
|
</SButton>
|
|
102
105
|
<SButton
|
|
106
|
+
size="l"
|
|
103
107
|
:disabled="loadingAll"
|
|
104
108
|
wide
|
|
105
109
|
@click="onSaveClick"
|