@agility/plenum-ui 2.1.23-rc1 → 2.1.23

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": "@agility/plenum-ui",
3
- "version": "2.1.23-rc1",
3
+ "version": "2.1.23",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -43,7 +43,7 @@ const Radio: React.FC<IRadioProps> = ({
43
43
  if (!id) id = `input-${uniqueID}`;
44
44
  if (!name) name = id;
45
45
 
46
- const checboxStyles = cn("focus:ring-purple-500 h-4 w-4 text-blue-600 border-gray-300", {
46
+ const checboxStyles = cn("focus:ring-purple-500 h-4 w-4 text-purple-600 border-gray-300", {
47
47
  "border-red-500 shadow-none": isError
48
48
  });
49
49
  const wrapperStyles = cn("relative flex items-start", { "opacity-50": isDisabled });