@bigbinary/neeto-molecules 3.6.2 → 3.6.3
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/NeetoWidget.js
CHANGED
|
@@ -2258,7 +2258,7 @@ var getEmailWidgetSnippetFormInitialValues = function getEmailWidgetSnippetFormI
|
|
|
2258
2258
|
};
|
|
2259
2259
|
var getSortedPrefixedWidgets = function getSortedPrefixedWidgets(widgets) {
|
|
2260
2260
|
var sortedWidgets = widgets.sort().map(function (widget) {
|
|
2261
|
-
return "
|
|
2261
|
+
return "Neeto".concat(capitalize(widget));
|
|
2262
2262
|
});
|
|
2263
2263
|
return sortedWidgets.length === 1 ? sortedWidgets : t("neetoMolecules.widget.email.widgetList", {
|
|
2264
2264
|
widgets: sortedWidgets
|
|
@@ -2471,7 +2471,7 @@ var TooltipSwitch = withT(function (_ref) {
|
|
|
2471
2471
|
disabled: enabledClientApps.includes(widget),
|
|
2472
2472
|
placement: "right",
|
|
2473
2473
|
content: t("neetoMolecules.widget.tooltips.productIsDisabled", {
|
|
2474
|
-
productName: "
|
|
2474
|
+
productName: "Neeto".concat(capitalize(widget))
|
|
2475
2475
|
}),
|
|
2476
2476
|
children: /*#__PURE__*/jsx(Switch, {
|
|
2477
2477
|
checked: selectedWidgets.includes(widget),
|
|
@@ -2499,7 +2499,7 @@ var SelectionSwitches = function SelectionSwitches(_ref) {
|
|
|
2499
2499
|
updateSelectedWidgets: updateSelectedWidgets,
|
|
2500
2500
|
widget: primaryWidget
|
|
2501
2501
|
}), /*#__PURE__*/jsxs(Label, {
|
|
2502
|
-
children: ["
|
|
2502
|
+
children: ["Neeto", capitalize(primaryWidget)]
|
|
2503
2503
|
})]
|
|
2504
2504
|
}), /*#__PURE__*/jsx("div", {
|
|
2505
2505
|
className: "flex flex-wrap items-center gap-6 sm:justify-end",
|
|
@@ -2512,7 +2512,7 @@ var SelectionSwitches = function SelectionSwitches(_ref) {
|
|
|
2512
2512
|
updateSelectedWidgets: updateSelectedWidgets,
|
|
2513
2513
|
widget: widget
|
|
2514
2514
|
}), /*#__PURE__*/jsxs(Label, {
|
|
2515
|
-
children: ["
|
|
2515
|
+
children: ["Neeto", capitalize(widget)]
|
|
2516
2516
|
})]
|
|
2517
2517
|
}, index);
|
|
2518
2518
|
})
|