@eturnity/eturnity_reusable_components 7.48.1-EPDM-12680.30 → 7.48.1-EPDM-12680.32
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
@@ -42,7 +42,7 @@
|
|
42
42
|
? item.quantity + ' x'
|
43
43
|
: ''
|
44
44
|
}}
|
45
|
-
{{ item.model }}
|
45
|
+
{{ item.brandName }} - {{ item.model }}
|
46
46
|
</TitleText>
|
47
47
|
<TitleSubText>
|
48
48
|
<span>{{ item.brandName }}</span>
|
@@ -107,7 +107,10 @@
|
|
107
107
|
<RCIcon color="white" :name="getIconName(item)" size="14px" />
|
108
108
|
<div>{{ getTypeName(item.type) }}</div>
|
109
109
|
</MarkerItem>
|
110
|
-
<MarkerItem
|
110
|
+
<MarkerItem
|
111
|
+
v-if="item.type !== 'optimizer'"
|
112
|
+
:title="$gettext('AC power is the nominal AC output power.')"
|
113
|
+
>
|
111
114
|
{{
|
112
115
|
numberToString({
|
113
116
|
value: item.pacKw,
|
@@ -117,7 +120,10 @@
|
|
117
120
|
}}
|
118
121
|
{{ $gettext('kWAC') }}
|
119
122
|
</MarkerItem>
|
120
|
-
<MarkerItem
|
123
|
+
<MarkerItem
|
124
|
+
v-if="!itemHasStrings(item) && item.type !== 'optimizer'"
|
125
|
+
:title="$gettext('The DC power is the maximum DC input power.')"
|
126
|
+
>
|
121
127
|
{{
|
122
128
|
numberToString({
|
123
129
|
value: item.inputMaxPowerKw,
|