@bigbinary/neeto-molecules 1.0.66 → 1.0.68

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "1.0.66",
3
+ "version": "1.0.68",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -294,16 +294,16 @@
294
294
  "copyLink": "Copy link",
295
295
  "open": "Open {{entity}}",
296
296
  "regenerateUrl": {
297
- "title": "Regenerate URL",
298
- "inputLabel": "Your current URL is given below",
299
- "description": "Once a new URL is generated then the current URL will stop working. This can't be undone.",
300
- "submitButtonLabel": "Regenerate URL",
297
+ "title": "Regenerate link",
298
+ "inputLabel": "Your current link is given below",
299
+ "description": "Once a new link is generated then the current link will stop working. This can't be undone.",
300
+ "submitButtonLabel": "Regenerate link",
301
301
  "cancelButtonLabel": "Cancel"
302
302
  },
303
303
  "editUrl": {
304
- "title": "Edit URL",
305
- "inputLabel": "URL",
306
- "description": "Once this URL is edited, the current URL will stop working. This can't be undone.",
304
+ "title": "Edit link",
305
+ "inputLabel": "Link",
306
+ "description": "Once this link is edited, the current link will stop working. This can't be undone.",
307
307
  "submitButtonLabel": "Submit",
308
308
  "cancelButtonLabel": "Cancel",
309
309
  "validationError": "Please enter a valid path without special characters, except '/', '-' and '_'."
@@ -12,9 +12,6 @@ type LinkType = {
12
12
  label?: React.ReactNode;
13
13
  icon?: any;
14
14
  } & React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
15
- type ChangeLogPropsType = LinkType & {
16
- changesCount?: number;
17
- };
18
15
  interface ProfileInfo {
19
16
  name?: string;
20
17
  email?: string;
@@ -27,7 +24,7 @@ interface ProfileInfo {
27
24
  interface HelpLinks {
28
25
  liveChatProps?: LinkType;
29
26
  helpCenterProps?: LinkType;
30
- changelogProps?: ChangeLogType;
27
+ changelogProps?: LinkType;
31
28
  keyboardShortcutProps?: LinkType;
32
29
  }
33
30
  /**