@narmi/design_system 6.19.3 → 6.19.4

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.
@@ -20,7 +20,7 @@ declare const AutocompleteModalItem: {
20
20
  * Use this prop to pass in a custom string you'd like the user to search
21
21
  * against when using typeahead.
22
22
  */
23
- searchValue: PropTypes.Validator<string>;
23
+ searchValue: PropTypes.Requireable<string>;
24
24
  children: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
25
25
  };
26
26
  };
@@ -31,7 +31,7 @@ declare const AutocompleteModal: {
31
31
  displayName: string;
32
32
  propTypes: {
33
33
  value: import('prop-types').Validator<string>;
34
- searchValue: import('prop-types').Validator<string>;
34
+ searchValue: import('prop-types').Requireable<string>;
35
35
  children: import('prop-types').Requireable<NonNullable<import('prop-types').ReactNodeLike>>;
36
36
  };
37
37
  };
@@ -12,7 +12,7 @@ export interface ErrorProps {
12
12
  declare const Error: {
13
13
  ({ error, marginTop }: ErrorProps): React.JSX.Element;
14
14
  propTypes: {
15
- error: PropTypes.Requireable<PropTypes.Requireable<string> | PropTypes.Requireable<string[]>>;
15
+ error: PropTypes.Requireable<NonNullable<string | string[]>>;
16
16
  marginTop: PropTypes.Requireable<string>;
17
17
  };
18
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narmi/design_system",
3
- "version": "6.19.3",
3
+ "version": "6.19.4",
4
4
  "description": "⚡ A consistent look-and-feel and extensible interface for Narmi experiences 🔥",
5
5
  "main": "dist/index.js",
6
6
  "style": "dist/style.css",