@uxf/ui 1.0.0-beta.135 → 1.0.0-beta.137

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.
@@ -52,7 +52,7 @@
52
52
  }
53
53
 
54
54
  &.is-invalid {
55
- @apply before:border-red-600;
55
+ @apply before:border-error-500;
56
56
  }
57
57
  }
58
58
 
@@ -92,7 +92,7 @@
92
92
  }
93
93
 
94
94
  &.is-invalid {
95
- @apply before:border-red-600;
95
+ @apply before:border-error-500;
96
96
  }
97
97
  }
98
98
  }
@@ -17,7 +17,7 @@
17
17
 
18
18
  &.is-disabled,
19
19
  &.is-readonly {
20
- & + .uxf-checkbox__label {
20
+ & + .uxf-checkbox-input__label {
21
21
  @apply pointer-events-none;
22
22
  }
23
23
  }
package/css/checkbox.css CHANGED
@@ -67,10 +67,10 @@
67
67
  }
68
68
 
69
69
  &.is-invalid {
70
- @apply border-red-600;
70
+ @apply border-error-500;
71
71
 
72
72
  &.is-selected {
73
- @apply bg-red-600;
73
+ @apply bg-error-500;
74
74
  }
75
75
 
76
76
  .uxf-checkbox__inner {
@@ -109,10 +109,10 @@
109
109
  }
110
110
 
111
111
  &.is-invalid {
112
- @apply border-red-600;
112
+ @apply border-error-500;
113
113
 
114
114
  &.is-selected {
115
- @apply bg-red-600;
115
+ @apply bg-error-500;
116
116
  }
117
117
 
118
118
  .uxf-checkbox__inner {
package/css/dropzone.css CHANGED
@@ -14,7 +14,7 @@
14
14
  }
15
15
 
16
16
  &.is-invalid {
17
- @apply border-error-600;
17
+ @apply border-error-500;
18
18
  }
19
19
 
20
20
  &.is-disabled {
@@ -44,11 +44,11 @@
44
44
 
45
45
  &.is-invalid {
46
46
  :root .light & {
47
- @apply border-error-600 text-error-600;
47
+ @apply border-error-500 text-error-500;
48
48
  }
49
49
 
50
50
  :root .dark & {
51
- @apply border-error-600 text-error-600;
51
+ @apply border-error-500 text-error-500;
52
52
  }
53
53
  }
54
54
 
@@ -1,3 +1,3 @@
1
1
  .uxf-error-message {
2
- @apply block text-error-600 mt-1 text-right;
2
+ @apply block text-error-500 mt-1 text-right;
3
3
  }
@@ -2,6 +2,6 @@
2
2
  @apply mt-1 text-xs text-gray-500;
3
3
 
4
4
  &.is-invalid {
5
- @apply text-error-600;
5
+ @apply text-error-500;
6
6
  }
7
7
  }
package/css/radio.css CHANGED
@@ -51,10 +51,10 @@
51
51
  }
52
52
 
53
53
  &.is-invalid {
54
- @apply border-red-600;
54
+ @apply border-error-500;
55
55
 
56
56
  &.is-selected {
57
- @apply bg-red-600;
57
+ @apply bg-error-500;
58
58
  }
59
59
 
60
60
  .uxf-radio__inner {
@@ -87,10 +87,10 @@
87
87
  }
88
88
 
89
89
  &.is-invalid {
90
- @apply border-red-600;
90
+ @apply border-error-500;
91
91
 
92
92
  &.is-selected {
93
- @apply bg-red-600;
93
+ @apply bg-error-500;
94
94
  }
95
95
 
96
96
  .uxf-radio__inner {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/ui",
3
- "version": "1.0.0-beta.135",
3
+ "version": "1.0.0-beta.137",
4
4
  "description": "",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,6 +1,6 @@
1
1
  import { UseAnchorProps } from "@uxf/core/hooks/useAnchorProps";
2
2
  import React, { AnchorHTMLAttributes } from "react";
3
- import { TextLinkVariants } from "./theme";
3
+ import { TextLinkVariants } from "@uxf/ui/text-link/theme";
4
4
  export type TextLinkVariant = keyof TextLinkVariants;
5
5
  export interface TextLinkProps extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, "type">, UseAnchorProps {
6
6
  variant?: TextLinkVariant;