@eturnity/eturnity_reusable_components 7.48.1-EPDM-12680.28 → 7.48.1-EPDM-12680.31
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,
|
@@ -118,10 +121,8 @@
|
|
118
121
|
{{ $gettext('kWAC') }}
|
119
122
|
</MarkerItem>
|
120
123
|
<MarkerItem
|
121
|
-
v-if="
|
122
|
-
|
123
|
-
(!hasExpandedSection || item.quantity == 1)
|
124
|
-
"
|
124
|
+
v-if="!itemHasStrings(item) && item.type !== 'optimizer'"
|
125
|
+
:title="$gettext('The DC power is the maximum DC input power.')"
|
125
126
|
>
|
126
127
|
{{
|
127
128
|
numberToString({
|