@eturnity/eturnity_reusable_components 6.42.1-EPDM-3013.6 → 6.42.1-EPDM-3013.7
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/package.json
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
<upper-container v-if="filterViews && filterViews.length">
|
4
4
|
<view-container :maxWidth="activeView.length">
|
5
5
|
<select-component
|
6
|
+
@click.native.stop
|
6
7
|
selectWidth="100%"
|
7
8
|
selectHeight="36px"
|
8
9
|
fontSize="13px"
|
@@ -121,10 +122,10 @@
|
|
121
122
|
<input-number
|
122
123
|
:placeholder="
|
123
124
|
filter.unit
|
124
|
-
? $gettext('
|
125
|
-
: $gettext('
|
125
|
+
? $gettext('min') + ' (' + filter.unit + ')'
|
126
|
+
: $gettext('min')
|
126
127
|
"
|
127
|
-
:numberPrecision="
|
128
|
+
:numberPrecision="2"
|
128
129
|
:value="filter.range.start"
|
129
130
|
@input-change="
|
130
131
|
onChange({
|
@@ -141,10 +142,10 @@
|
|
141
142
|
<input-number
|
142
143
|
:placeholder="
|
143
144
|
filter.unit
|
144
|
-
? $gettext('
|
145
|
-
: $gettext('
|
145
|
+
? $gettext('max') + ' (' + filter.unit + ')'
|
146
|
+
: $gettext('max')
|
146
147
|
"
|
147
|
-
:numberPrecision="
|
148
|
+
:numberPrecision="2"
|
148
149
|
:value="filter.range.end"
|
149
150
|
@input-change="
|
150
151
|
onChange({
|