itube-specs 0.0.558 → 0.0.560
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.
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
<SInput
|
|
10
10
|
v-model="form.username"
|
|
11
11
|
:label="t('auth.username')"
|
|
12
|
+
:placeholder="t('auth.username')"
|
|
13
|
+
hide-label
|
|
12
14
|
name="login-name"
|
|
13
15
|
:error="error.username"
|
|
14
16
|
@update:error="(val: boolean) => error.username = val"
|
|
@@ -16,6 +18,8 @@
|
|
|
16
18
|
<SInput
|
|
17
19
|
v-model="form.password_hash"
|
|
18
20
|
:label="t('auth.password')"
|
|
21
|
+
:placeholder="t('auth.password')"
|
|
22
|
+
hide-label
|
|
19
23
|
type="password"
|
|
20
24
|
:error="error.password_hash"
|
|
21
25
|
@update:error="(val: boolean) => error.password_hash = val"
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
</p>
|
|
13
13
|
<SInput
|
|
14
14
|
v-model="form.email"
|
|
15
|
+
:placeholder="t('email')"
|
|
15
16
|
:label="t('email')"
|
|
17
|
+
hide-label
|
|
16
18
|
autocomplete="email"
|
|
17
19
|
:error="error.email"
|
|
18
20
|
@update:error="(val: boolean) => error.email = val"
|
|
@@ -20,6 +22,8 @@
|
|
|
20
22
|
<SInput
|
|
21
23
|
v-model="form.username"
|
|
22
24
|
:label="t('login')"
|
|
25
|
+
:placeholder="t('login')"
|
|
26
|
+
hide-label
|
|
23
27
|
name="login-name"
|
|
24
28
|
:error="error.username"
|
|
25
29
|
@update:error="(val: boolean) => error.username = val"
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
<SInput
|
|
28
32
|
v-model="form.password_hash"
|
|
29
33
|
:label="t('auth.password')"
|
|
34
|
+
:placeholder="t('auth.password')"
|
|
35
|
+
hide-label
|
|
30
36
|
type="password"
|
|
31
37
|
:error="error.password_hash"
|
|
32
38
|
autocomplete="new-password"
|
|
@@ -110,7 +110,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
|
|
|
110
110
|
label: 'message',
|
|
111
111
|
required: true,
|
|
112
112
|
wide: true,
|
|
113
|
-
marginClass: '_mb-12 _mt-
|
|
113
|
+
marginClass: '_mb-12 _mt-4'
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
type: 'text',
|
|
@@ -150,7 +150,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
|
|
|
150
150
|
label: 'message',
|
|
151
151
|
required: true,
|
|
152
152
|
wide: true,
|
|
153
|
-
marginClass: '_mb-12 _mt-
|
|
153
|
+
marginClass: '_mb-12 _mt-4'
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
type: 'text',
|
|
@@ -191,7 +191,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
|
|
|
191
191
|
hideLabel: true,
|
|
192
192
|
placeholder: 'email',
|
|
193
193
|
required: true,
|
|
194
|
-
marginClass: '_mb-16 _mt-
|
|
194
|
+
marginClass: '_mb-16 _mt-4'
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
type: 'text',
|
|
@@ -199,7 +199,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
|
|
|
199
199
|
label: 'name',
|
|
200
200
|
hideLabel: true,
|
|
201
201
|
placeholder: 'name',
|
|
202
|
-
marginClass: '_mb-16 _mt-
|
|
202
|
+
marginClass: '_mb-16 _mt-4'
|
|
203
203
|
},
|
|
204
204
|
],
|
|
205
205
|
},
|
|
@@ -238,7 +238,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
|
|
|
238
238
|
placeholder: 'antivirus',
|
|
239
239
|
required: true,
|
|
240
240
|
wide: true,
|
|
241
|
-
marginClass: '_mt-
|
|
241
|
+
marginClass: '_mt-4 _mb-12'
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
type: 'text',
|