@bigbinary/neeto-molecules 1.0.94 → 1.0.96

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.
Files changed (39) hide show
  1. package/dist/CustomDomain.cjs.js +8 -10
  2. package/dist/CustomDomain.cjs.js.map +1 -1
  3. package/dist/CustomDomain.js +10 -13
  4. package/dist/CustomDomain.js.map +1 -1
  5. package/dist/CustomDomainDashboard.cjs.js +8 -10
  6. package/dist/CustomDomainDashboard.cjs.js.map +1 -1
  7. package/dist/CustomDomainDashboard.js +9 -12
  8. package/dist/CustomDomainDashboard.js.map +1 -1
  9. package/dist/IntegrationCard.cjs.js +223 -38
  10. package/dist/IntegrationCard.cjs.js.map +1 -1
  11. package/dist/IntegrationCard.js +227 -42
  12. package/dist/IntegrationCard.js.map +1 -1
  13. package/dist/IntegrationDisconnectAlert.cjs.js +22 -14
  14. package/dist/IntegrationDisconnectAlert.cjs.js.map +1 -1
  15. package/dist/IntegrationDisconnectAlert.js +19 -14
  16. package/dist/IntegrationDisconnectAlert.js.map +1 -1
  17. package/dist/IntegrationWalkthroughModal.cjs.js +17 -9
  18. package/dist/IntegrationWalkthroughModal.cjs.js.map +1 -1
  19. package/dist/IntegrationWalkthroughModal.js +14 -9
  20. package/dist/IntegrationWalkthroughModal.js.map +1 -1
  21. package/dist/IpRestriction.cjs.js +51 -50
  22. package/dist/IpRestriction.cjs.js.map +1 -1
  23. package/dist/IpRestriction.js +52 -51
  24. package/dist/IpRestriction.js.map +1 -1
  25. package/dist/NeetoWidget.cjs.js +5 -20
  26. package/dist/NeetoWidget.cjs.js.map +1 -1
  27. package/dist/NeetoWidget.js +5 -21
  28. package/dist/NeetoWidget.js.map +1 -1
  29. package/dist/Schedule.cjs.js +4 -10
  30. package/dist/Schedule.cjs.js.map +1 -1
  31. package/dist/Schedule.js +5 -11
  32. package/dist/Schedule.js.map +1 -1
  33. package/dist/ShareViaLink.cjs.js +7 -8
  34. package/dist/ShareViaLink.cjs.js.map +1 -1
  35. package/dist/ShareViaLink.js +7 -9
  36. package/dist/ShareViaLink.js.map +1 -1
  37. package/package.json +1 -1
  38. package/src/translations/en.json +11 -2
  39. package/types/IntegrationCard.d.ts +14 -5
@@ -256,7 +256,15 @@
256
256
  "connected": "Connected",
257
257
  "manage": "Manage",
258
258
  "disconnect": "Disconnect",
259
- "connect": "Connect"
259
+ "connect": "Connect",
260
+ "tryAgain": "Try again",
261
+ "tooltip": {
262
+ "integrationNotAvailable": "This integration is not available right now."
263
+ },
264
+ "tags": {
265
+ "connected": "Connected",
266
+ "expired": "Expired"
267
+ }
260
268
  },
261
269
  "ipRestriction": {
262
270
  "switchLabel": "Enable IP restriction",
@@ -265,6 +273,7 @@
265
273
  "ipStart": "IP start",
266
274
  "ipEnd": "IP end",
267
275
  "actions": "Actions",
276
+ "addNew": "Add new IP range",
268
277
  "allowedIpRangeConfirmationTitle": "allowed IP range",
269
278
  "allowedIpRangeConfirmation": "You are permanently deleting IP range <strong>{{ipStart}}</strong> to <strong>{{ipEnd}}</strong>. This can't be undone.",
270
279
  "validations": {
@@ -275,7 +284,7 @@
275
284
  "ipEndRequired": "IP end is required"
276
285
  },
277
286
  "currentIpTitle": "Your current IP is",
278
- "currentIpDescription": "Your current IP will be added to the allowed IP range by default.",
287
+ "currentIpDescription": "and it will be added to the allowed IP range by default.",
279
288
  "warningMessage": "Please be careful enabling this feature. There have been cases where the IP address assigned to people at home is dynamic. After a few days, the IP changed and those people were unable to access neeto applications.\n\nIf you are using a VPN with a fixed range of IP addresses, you are a good candidate for this feature.\n\nIf you get locked out or if you run into any issue, then you can send an email to <strong>support@neeto.com</strong> with your organization name and subdomain.",
280
289
  "enableAlert": {
281
290
  "title": "Enable IP restriction?",
@@ -31,15 +31,24 @@ import React, { ReactElement } from "react";
31
31
  * @endexample
32
32
  */
33
33
  const IntegrationCard: React.FC<{
34
+ icon: React.FC<IconProps>;
35
+ subIcons?: React.FC<IconProps>[];
34
36
  label: string;
35
37
  description: string;
36
- Icon: React.FC<IconProps>;
37
38
  className?: string;
38
- isConnected: boolean;
39
- isStatusLoading?: boolean;
40
- customDropdown?: React.ReactNode;
41
- onDisconnect?: (...args: any[]) => any;
42
39
  onConnect: (...args: any[]) => any;
40
+ onDisconnect?: (...args: any[]) => any;
43
41
  onManage?: (...args: any[]) => any;
42
+ onClick?: (...args: any[]) => any;
43
+ isLoading?: boolean;
44
+ isConnected?: boolean;
45
+ isFailed?: boolean;
46
+ isExpired?: boolean;
47
+ disabled?: boolean;
48
+ hidden?: boolean;
49
+ hideDisconnect?: boolean;
50
+ tooltipProps?: Partial<TooltipProps>;
51
+ customDropdown?: React.ReactNode;
52
+ children?: React.ReactNode;
44
53
  }>;
45
54
  export default IntegrationCard;