@kaizen/components 1.70.18 → 1.70.19

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": "@kaizen/components",
3
- "version": "1.70.18",
3
+ "version": "1.70.19",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -57,7 +57,6 @@ export const Select = React.forwardRef<any, SelectProps>(
57
57
  description,
58
58
  fullWidth: propsFullWidth,
59
59
  className: propsClassName,
60
- isDisabled,
61
60
  placeholder,
62
61
  ...props
63
62
  },
@@ -76,7 +75,7 @@ export const Select = React.forwardRef<any, SelectProps>(
76
75
  variant === 'secondary' && styles.secondary,
77
76
  variant === 'secondary-small' && styles.secondarySmall,
78
77
  !fullWidth && styles.notFullWidth,
79
- isDisabled && styles.disabled,
78
+ props.isDisabled && styles.disabled,
80
79
  status === 'error' && styles.error,
81
80
  )
82
81