@vygruppen/spor-react 11.3.1 → 11.3.2

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/dist/index.mjs CHANGED
@@ -5985,19 +5985,19 @@ var config9 = helpers6.defineMultiStyleConfig({
5985
5985
  baseStyle: (props) => ({
5986
5986
  container: {
5987
5987
  _hover: {
5988
- "input:enabled:not([aria-invalid]) + .chakra-checkbox__control": {
5988
+ "input:enabled:not([aria-invalid='true']) + .chakra-checkbox__control": {
5989
5989
  ...baseBackground("hover", props),
5990
5990
  borderColor: brandBackground("hover", props).backgroundColor
5991
5991
  },
5992
- "input:enabled[aria-invalid] + .chakra-checkbox__control": {
5992
+ "input:enabled[aria-invalid='true'] + .chakra-checkbox__control": {
5993
5993
  backgroundColor: mode("white", "inherit")(props),
5994
5994
  borderColor: mode("outline.error.light", "outline.error.dark")
5995
5995
  },
5996
- "input:enabled:checked:not([aria-invalid]) + .chakra-checkbox__control": {
5996
+ "input:enabled:checked:not([aria-invalid='true']) + .chakra-checkbox__control": {
5997
5997
  ...brandBackground("hover", props),
5998
5998
  borderColor: brandBackground("hover", props).backgroundColor
5999
5999
  },
6000
- "input:enabled:checked[aria-invalid] + .chakra-checkbox__control": {
6000
+ "input:enabled:checked[aria-invalid='true'] + .chakra-checkbox__control": {
6001
6001
  borderColor: mode("outline.error.light", "outline.error.dark"),
6002
6002
  backgroundColor: mode("outline.error.light", "outline.error.dark")
6003
6003
  }