@royaloperahouse/chord 2.6.1-c-development → 2.6.1-e-development

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.
@@ -1,6 +1,6 @@
1
1
  import { ICreditListing } from '../../../../types';
2
2
  export declare const DEFAULT_COLUMN_COUNT = 4;
3
3
  export declare const DEFAULT_LARGE_COLUMN_SPAN = 2;
4
- export declare const DEFAULT_CHARACTER_THRESHOLD = 180;
4
+ export declare const DEFAULT_CHARACTER_THRESHOLD = 120;
5
5
  declare const CreditListing: ({ roles, columnCount, expandLargeEntries, largeColumnSpan, characterThreshold, }: ICreditListing) => JSX.Element;
6
6
  export default CreditListing;
@@ -7,9 +7,14 @@ export declare const formValidationMessages: {
7
7
  requiredFieldMessage: string;
8
8
  firstName: {
9
9
  invalid: string;
10
+ required: string;
11
+ };
12
+ lastName: {
13
+ required: string;
10
14
  };
11
15
  email: {
12
16
  required: string;
13
17
  invalid: string;
14
18
  };
15
19
  };
20
+ export declare const getFormErrorMessage: (field: string, value?: string | undefined) => string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royaloperahouse/chord",
3
- "version": "2.6.1-c-development",
3
+ "version": "2.6.1-e-development",
4
4
  "author": "Royal Opera House",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -123,5 +123,6 @@
123
123
  "resolutions": {
124
124
  "**/@typescript-eslint/eslint-plugin": "^4.1.1",
125
125
  "**/@typescript-eslint/parser": "^4.1.1"
126
- }
126
+ },
127
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
127
128
  }