@bigbinary/neeto-molecules 1.0.54 → 1.0.55
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/README.md +1 -0
- package/dist/IpRestriction.cjs.js +8 -2
- package/dist/IpRestriction.cjs.js.map +1 -1
- package/dist/IpRestriction.js +9 -3
- package/dist/IpRestriction.js.map +1 -1
- package/dist/ThemeSidebar.cjs.js +13566 -0
- package/dist/ThemeSidebar.cjs.js.map +1 -0
- package/dist/ThemeSidebar.js +13541 -0
- package/dist/ThemeSidebar.js.map +1 -0
- package/package.json +4 -1
- package/src/translations/en.json +67 -6
- package/types/BrowserSupport.d.ts +12 -4
- package/types/CustomDomain.d.ts +4 -5
- package/types/CustomDomainDashboard.d.ts +3 -1
- package/types/IconPicker.d.ts +8 -2
- package/types/IntegrationDisconnectAlert.d.ts +2 -2
- package/types/themeSidebar.d.ts +76 -0
package/dist/IpRestriction.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
2
|
import { Typography, Button as Button$1, Dropdown, Tooltip, Alert, Switch } from '@bigbinary/neetoui';
|
|
3
|
-
import { useTranslation } from 'react-i18next';
|
|
3
|
+
import { useTranslation, Trans } from 'react-i18next';
|
|
4
4
|
import { Neeto } from '@bigbinary/neeto-icons/logos';
|
|
5
5
|
import { Check, Close, MenuVertical, Plus } from '@bigbinary/neeto-icons';
|
|
6
6
|
import { Form, Input, Button } from '@bigbinary/neetoui/formik';
|
|
@@ -3491,9 +3491,15 @@ var Row = function Row(_ref) {
|
|
|
3491
3491
|
}, t("neetoMolecules.common.actions.delete")))), /*#__PURE__*/React.createElement(Alert, {
|
|
3492
3492
|
isOpen: isDeleteIpRangeAlertOpen,
|
|
3493
3493
|
submitButtonLabel: t("neetoMolecules.common.actions.delete"),
|
|
3494
|
-
message:
|
|
3494
|
+
message: /*#__PURE__*/React.createElement(Trans, {
|
|
3495
|
+
i18nKey: "neetoMolecules.ipRestriction.allowedIpRangeConfirmation",
|
|
3496
|
+
values: {
|
|
3497
|
+
ipStart: data.ipStart,
|
|
3498
|
+
ipEnd: data.ipEnd
|
|
3499
|
+
}
|
|
3500
|
+
}),
|
|
3495
3501
|
title: t("neetoMolecules.common.deleteAlert.title", {
|
|
3496
|
-
entity: t("neetoMolecules.ipRestriction.
|
|
3502
|
+
entity: t("neetoMolecules.ipRestriction.allowedIpRangeConfirmationTitle")
|
|
3497
3503
|
}),
|
|
3498
3504
|
onClose: function onClose() {
|
|
3499
3505
|
return setIsDeleteIpRangeAlertOpen(false);
|