@yoobic/yobi 8.5.0-33 → 8.5.0-35
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.
@@ -753,7 +753,7 @@ const YooEntityComponent = class {
|
|
753
753
|
iconTopLeftColor: creationType.color,
|
754
754
|
imgSrc: creationType.imgSrc,
|
755
755
|
tagElements: lodash.compact([
|
756
|
-
creationType.isBeta ? { innerHTML: overlays.translate('BETA'), customColor: overlays.getCssColor('app-color
|
756
|
+
creationType.isBeta ? { innerHTML: overlays.translate('BETA'), customColor: overlays.getCssColor('app-color') } : null,
|
757
757
|
creationType.needsUpgrade ? { innerHTML: overlays.translate('NEEDSUPGRADE'), customColor: overlays.getCssColor('accent') } : null
|
758
758
|
]),
|
759
759
|
tooltip: creationType.needsUpgrade ? creationType.tooltip : null
|
@@ -690,7 +690,7 @@ export class YooEntityComponent {
|
|
690
690
|
iconTopLeftColor: creationType.color,
|
691
691
|
imgSrc: creationType.imgSrc,
|
692
692
|
tagElements: compact([
|
693
|
-
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color
|
693
|
+
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color') } : null,
|
694
694
|
creationType.needsUpgrade ? { innerHTML: translate('NEEDSUPGRADE'), customColor: getCssColor('accent') } : null
|
695
695
|
]),
|
696
696
|
tooltip: creationType.needsUpgrade ? creationType.tooltip : null
|
@@ -749,7 +749,7 @@ const YooEntityComponent = class {
|
|
749
749
|
iconTopLeftColor: creationType.color,
|
750
750
|
imgSrc: creationType.imgSrc,
|
751
751
|
tagElements: compact([
|
752
|
-
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color
|
752
|
+
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color') } : null,
|
753
753
|
creationType.needsUpgrade ? { innerHTML: translate('NEEDSUPGRADE'), customColor: getCssColor('accent') } : null
|
754
754
|
]),
|
755
755
|
tooltip: creationType.needsUpgrade ? creationType.tooltip : null
|
@@ -749,7 +749,7 @@ const YooEntityComponent = class {
|
|
749
749
|
iconTopLeftColor: creationType.color,
|
750
750
|
imgSrc: creationType.imgSrc,
|
751
751
|
tagElements: compact([
|
752
|
-
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color
|
752
|
+
creationType.isBeta ? { innerHTML: translate('BETA'), customColor: getCssColor('app-color') } : null,
|
753
753
|
creationType.needsUpgrade ? { innerHTML: translate('NEEDSUPGRADE'), customColor: getCssColor('accent') } : null
|
754
754
|
]),
|
755
755
|
tooltip: creationType.needsUpgrade ? creationType.tooltip : null
|