itube-specs 0.0.559 → 0.0.561

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"
@@ -13,6 +13,8 @@
13
13
  <SInput
14
14
  v-model="form.email"
15
15
  label="Email"
16
+ placeholder="Email"
17
+ hide-label
16
18
  autocomplete="email"
17
19
  :error="error.email"
18
20
  @update:error="(val: boolean) => error.email = 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"
@@ -69,7 +69,7 @@
69
69
  <SIcon
70
70
  :name="isPassword ? 'show' : icon || ''"
71
71
  class="s-input__button-icon"
72
- size="24"
72
+ size="20"
73
73
  />
74
74
  </button>
75
75
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.559",
4
+ "version": "0.0.561",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {