@bigbinary/neeto-molecules 1.0.78-beta → 1.0.78

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.78-beta",
3
+ "version": "1.0.78",
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>",
@@ -51,9 +51,9 @@
51
51
  "@bigbinary/neeto-commons-frontend": "2.0.106",
52
52
  "@bigbinary/neeto-editor": "1.27.0-beta.1",
53
53
  "@bigbinary/neeto-filters-frontend": "^2.11.15",
54
- "@bigbinary/neeto-icons": "^1.14.0",
54
+ "@bigbinary/neeto-icons": "^1.12.3",
55
55
  "@bigbinary/neeto-molecules": "^1.0.5",
56
- "@bigbinary/neetoui": "^5.0.9",
56
+ "@bigbinary/neetoui": "^5.1.5",
57
57
  "@faker-js/faker": "7.6.0",
58
58
  "@honeybadger-io/react": "2.0.1",
59
59
  "@rails/activestorage": "^7.0.5",
@@ -67,16 +67,12 @@
67
67
  "logout": "Log out",
68
68
  "help": "Help",
69
69
  "productSwitcher": "Product switcher",
70
- "neetoProducts": "neeto products",
71
70
  "helpLinks": {
72
71
  "liveChat": "Live chat",
73
72
  "helpCenter": "Help center",
74
73
  "whatsNew": "What's new",
75
- "keyboardShortcuts": "Keyboard shortcuts",
76
- "helpArticles": "Help articles"
77
- },
78
- "showMenu": "Show menu",
79
- "hideMenu": "Hide menu"
74
+ "keyboardShortcuts": "Keyboard shortcuts"
75
+ }
80
76
  },
81
77
  "appSwitcher": {
82
78
  "noApps": "No apps found",
@@ -57,5 +57,6 @@ const EmailForm: React.FC<{
57
57
  isLoading?: boolean;
58
58
  replyToOptions?: FieldOptions[];
59
59
  isUpdating?: boolean;
60
+ showFields?: boolean;
60
61
  }>;
61
62
  export default EmailForm;
@@ -1,4 +1,8 @@
1
1
  import React from "react";
2
+ import * as yup from 'yup';
3
+ type ValidationMap = {
4
+ [key: string]: yup.AnySchema;
5
+ };
2
6
  /**
3
7
  *
4
8
  * This is a container component for EmailForm that maintains the context values
@@ -36,6 +40,6 @@ declare const EmailFormProvider: <T extends {}>(props: {
36
40
  formikProps: {
37
41
  [key: string]: any;
38
42
  };
39
- validationSchema: yup.Schema<T>;
43
+ validationSchema?: ValidationMap;
40
44
  }) => JSX.Element;
41
45
  export default EmailFormProvider;
@@ -24,7 +24,7 @@ interface ProfileInfo {
24
24
  interface HelpLinks {
25
25
  liveChatProps?: LinkType;
26
26
  helpCenterProps?: LinkType;
27
- changelogProps?: ChangeLogPropsType;
27
+ changelogProps?: LinkType;
28
28
  keyboardShortcutProps?: LinkType;
29
29
  }
30
30
  /**