itube-specs 0.0.552 → 0.0.554

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.
@@ -12,10 +12,15 @@
12
12
  ]"
13
13
  >
14
14
  <label
15
- v-if="isTextArea"
16
- class="s-input__label s-input__label--external"
15
+ v-if="isTextArea || label"
16
+ class="s-input__label"
17
17
  :for="name"
18
18
  >
19
+ <SIcon
20
+ v-if="labelIcon"
21
+ :name="labelIcon"
22
+ size="16"
23
+ />
19
24
  {{ label }}
20
25
  </label>
21
26
  <div class="s-input__wrapper">
@@ -54,11 +59,6 @@
54
59
  @blur="onBlur"
55
60
  @keyup.enter="(event) => emit('enter', event)"
56
61
  >
57
- <!-- <span-->
58
- <!-- v-if="!isTextArea && isFilled"-->
59
- <!-- class="s-input__label">-->
60
- <!-- {{ label }}-->
61
- <!-- </span>-->
62
62
  <button
63
63
  v-if="isPassword || icon"
64
64
  type="button"
@@ -101,6 +101,7 @@ const props = withDefaults(defineProps<{
101
101
  name?: string
102
102
  label?: string
103
103
  icon?: string
104
+ labelIcon?: string
104
105
  }>(), {
105
106
  type: 'text',
106
107
  inputmode: 'text',
@@ -52,6 +52,7 @@ export const reportFormsScheme: Array<IReportScheme> = [
52
52
  value: 'from',
53
53
  label: 'email',
54
54
  required: true,
55
+ wide: true,
55
56
  },
56
57
  {
57
58
  type: 'checkbox',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.552",
4
+ "version": "0.0.554",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {