@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.
- package/css/checkbox-button.css +2 -2
- package/css/checkbox-input.css +1 -1
- package/css/checkbox.css +4 -4
- package/css/dropzone.css +3 -3
- package/css/error-message.css +1 -1
- package/css/form-control.css +1 -1
- package/css/radio.css +4 -4
- package/package.json +1 -1
- package/text-link/text-link.d.ts +1 -1
package/css/checkbox-button.css
CHANGED
package/css/checkbox-input.css
CHANGED
package/css/checkbox.css
CHANGED
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
&.is-invalid {
|
|
70
|
-
@apply border-
|
|
70
|
+
@apply border-error-500;
|
|
71
71
|
|
|
72
72
|
&.is-selected {
|
|
73
|
-
@apply bg-
|
|
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-
|
|
112
|
+
@apply border-error-500;
|
|
113
113
|
|
|
114
114
|
&.is-selected {
|
|
115
|
-
@apply bg-
|
|
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-
|
|
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-
|
|
47
|
+
@apply border-error-500 text-error-500;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
:root .dark & {
|
|
51
|
-
@apply border-error-
|
|
51
|
+
@apply border-error-500 text-error-500;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
package/css/error-message.css
CHANGED
package/css/form-control.css
CHANGED
package/css/radio.css
CHANGED
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&.is-invalid {
|
|
54
|
-
@apply border-
|
|
54
|
+
@apply border-error-500;
|
|
55
55
|
|
|
56
56
|
&.is-selected {
|
|
57
|
-
@apply bg-
|
|
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-
|
|
90
|
+
@apply border-error-500;
|
|
91
91
|
|
|
92
92
|
&.is-selected {
|
|
93
|
-
@apply bg-
|
|
93
|
+
@apply bg-error-500;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.uxf-radio__inner {
|
package/package.json
CHANGED
package/text-link/text-link.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UseAnchorProps } from "@uxf/core/hooks/useAnchorProps";
|
|
2
2
|
import React, { AnchorHTMLAttributes } from "react";
|
|
3
|
-
import { TextLinkVariants } from "
|
|
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;
|