adata-ui 0.1.70 → 0.1.73
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/dist/adata-ui.common.js +319 -69
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +319 -69
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +1 -2
- package/src/assets/_text_field.scss +1 -0
- package/src/components/Header/Profile.vue +415 -158
- package/src/components/MailTo/MailTo.vue +1 -2
- package/src/components/SearchTextField/SearchTextField.vue +6 -1
- package/src/components/TextField/TextField.vue +1 -5
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
<h2 class="mail__title">Интересует больше данных?</h2>
|
|
23
23
|
<p class="mail__text">
|
|
24
|
-
|
|
25
|
-
в кратчайшие сроки.
|
|
24
|
+
Оставьте комментарий мы обязательно ответим Вам в кратчайшие сроки
|
|
26
25
|
</p>
|
|
27
26
|
<form class="mail__form" novalidate>
|
|
28
27
|
<a-text-field
|
|
@@ -15,10 +15,11 @@
|
|
|
15
15
|
@input="$emit('input', $event.target.value)"
|
|
16
16
|
@focus="showAutocomplete = true"
|
|
17
17
|
@click="$emit('showVTour')"
|
|
18
|
+
@search="$emit('onSearch')"
|
|
18
19
|
class="adt-text-block__input"
|
|
19
20
|
:class="{ error: !!errorText }"
|
|
20
21
|
/>
|
|
21
|
-
<label class="adt-text-block__label">
|
|
22
|
+
<label class="adt-text-block__label" :class="{ 'adt-text-block--ellipsis': isEllipsis }">
|
|
22
23
|
{{ label }}
|
|
23
24
|
</label>
|
|
24
25
|
<div
|
|
@@ -149,6 +150,10 @@ export default {
|
|
|
149
150
|
type: Boolean,
|
|
150
151
|
default: false,
|
|
151
152
|
},
|
|
153
|
+
isEllipsis: {
|
|
154
|
+
type: Boolean,
|
|
155
|
+
default: false,
|
|
156
|
+
}
|
|
152
157
|
},
|
|
153
158
|
components: {
|
|
154
159
|
PerfectScrollbar,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
class="adt-text-block__input"
|
|
13
13
|
:class="{ error: !!errorText }"
|
|
14
14
|
/>
|
|
15
|
-
<label class="adt-text-block__label"
|
|
15
|
+
<label class="adt-text-block__label">
|
|
16
16
|
{{ label }}
|
|
17
17
|
<span v-if="required" class="adt-text-block__required">*</span>
|
|
18
18
|
</label>
|
|
@@ -95,10 +95,6 @@ export default {
|
|
|
95
95
|
type: Boolean,
|
|
96
96
|
default: false,
|
|
97
97
|
},
|
|
98
|
-
isEllipsis: {
|
|
99
|
-
type: Boolean,
|
|
100
|
-
default: false,
|
|
101
|
-
}
|
|
102
98
|
},
|
|
103
99
|
data() {
|
|
104
100
|
return {
|