@conduction/components 2.1.4 → 2.1.5

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  - **Version 2.1 (breaking changes from 2.0.x)**
6
6
 
7
- - 2.1.4: Remove IInputProps from CreateKeyValue to undo duplicate defaultValue prop
7
+ - 2.1.4 & 2.1.5: Remove IInputProps from CreateKeyValue to undo duplicate defaultValue prop
8
8
  - 2.1.3: Export IKeyValue from CreateKeyValue component.
9
9
  - 2.1.2: REVERT 2.1.1 and 2.1.0.
10
10
  - 2.1.1: Deploy issues.
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
2
  import { Control, FieldValues } from "react-hook-form";
3
3
  import { IReactHookFormProps } from "../types";
4
- import { IInputProps } from "../input";
5
4
  /**
6
5
  * Export KeyValue input component (wrapped in FormFieldGroup)
7
6
  */
8
7
  interface CreateKeyValueProps {
8
+ name: string;
9
9
  control: Control<FieldValues, any>;
10
10
  defaultValue?: IKeyValue[];
11
11
  }
@@ -13,5 +13,5 @@ export interface IKeyValue {
13
13
  key: string;
14
14
  value: string;
15
15
  }
16
- export declare const CreateKeyValue: React.FC<CreateKeyValueProps & IInputProps & IReactHookFormProps>;
16
+ export declare const CreateKeyValue: React.FC<CreateKeyValueProps & IReactHookFormProps>;
17
17
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {