@conduction/components 2.0.26 → 2.0.27

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,6 +4,7 @@
4
4
 
5
5
  - **Version 2**
6
6
 
7
+ - 2.0.27: Cleanup
7
8
  - 2.0.26: Added Select element error states
8
9
  - 2.0.25: Added InputURL component;
9
10
  - 2.0.24: Bugfix: @conduction not showing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -87,7 +87,7 @@ export const SelectSingle: React.FC<ISelectProps & IReactHookFormProps> = ({
87
87
  render={({ field: { onChange, value } }) => {
88
88
  return (
89
89
  <ReactSelect
90
- className={clsx(styles.select, styles.abcdefg, errors[name] && styles.error)}
90
+ className={clsx(styles.select, errors[name] && styles.error)}
91
91
  isDisabled={disabled}
92
92
  {...{ options, onChange, value, errors, isClearable, defaultValue }}
93
93
  />