@arkitektbedriftene/fe-lib 5.2.1 → 5.2.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/ui.es.js +8 -1
- package/package.json +1 -1
package/dist/ui.es.js
CHANGED
|
@@ -132,6 +132,7 @@ const bo = h({
|
|
|
132
132
|
primary: {
|
|
133
133
|
$$solid: "$colors$blue600",
|
|
134
134
|
$$solidHover: "$colors$blue700",
|
|
135
|
+
$$text: "$colors$white",
|
|
135
136
|
$$outline: "$colors$blue600",
|
|
136
137
|
$$outlineHover: "$colors$blue100",
|
|
137
138
|
$$outlineText: "$colors$blue600",
|
|
@@ -140,6 +141,7 @@ const bo = h({
|
|
|
140
141
|
secondary: {
|
|
141
142
|
$$solid: "$colors$gray600",
|
|
142
143
|
$$solidHover: "$colors$gray700",
|
|
144
|
+
$$text: "$colors$white",
|
|
143
145
|
$$outline: "$colors$gray400",
|
|
144
146
|
$$outlineHover: "$colors$gray100",
|
|
145
147
|
$$outlineText: "$colors$gray600",
|
|
@@ -148,6 +150,7 @@ const bo = h({
|
|
|
148
150
|
success: {
|
|
149
151
|
$$solid: "$colors$green600",
|
|
150
152
|
$$solidHover: "$colors$green700",
|
|
153
|
+
$$text: "$colors$white",
|
|
151
154
|
$$outline: "$colors$green600",
|
|
152
155
|
$$outlineHover: "$colors$green100",
|
|
153
156
|
$$outlineText: "$colors$green600",
|
|
@@ -156,6 +159,7 @@ const bo = h({
|
|
|
156
159
|
danger: {
|
|
157
160
|
$$solid: "$colors$red600",
|
|
158
161
|
$$solidHover: "$colors$red700",
|
|
162
|
+
$$text: "$colors$white",
|
|
159
163
|
$$outline: "$colors$red600",
|
|
160
164
|
$$outlineHover: "$colors$red100",
|
|
161
165
|
$$outlineText: "$colors$red600",
|
|
@@ -164,6 +168,7 @@ const bo = h({
|
|
|
164
168
|
warning: {
|
|
165
169
|
$$solid: "$colors$yellow600",
|
|
166
170
|
$$solidHover: "$colors$yellow700",
|
|
171
|
+
$$text: "$colors$white",
|
|
167
172
|
$$outline: "$colors$yellow400",
|
|
168
173
|
$$outlineHover: "$colors$yellow50",
|
|
169
174
|
$$outlineText: "$colors$yellow600",
|
|
@@ -172,6 +177,7 @@ const bo = h({
|
|
|
172
177
|
NEW_primary: {
|
|
173
178
|
$$solid: "$colors$flask",
|
|
174
179
|
$$solidHover: "$colors$flaskHover",
|
|
180
|
+
$$text: "$colors$white",
|
|
175
181
|
$$outline: "$colors$flask",
|
|
176
182
|
$$outlineHover: "$colors$flaskHover",
|
|
177
183
|
$$outlineText: "$colors$flask",
|
|
@@ -180,6 +186,7 @@ const bo = h({
|
|
|
180
186
|
NEW_tertiary: {
|
|
181
187
|
$$solid: "$colors$sand",
|
|
182
188
|
$$solidHover: "$colors$sandHover",
|
|
189
|
+
$$text: "$colors$black",
|
|
183
190
|
$$outline: "$colors$sand",
|
|
184
191
|
$$outlineHover: "$colors$sandHover",
|
|
185
192
|
$$outlineText: "$colors$black",
|
|
@@ -206,7 +213,7 @@ const bo = h({
|
|
|
206
213
|
variant: {
|
|
207
214
|
primary: {
|
|
208
215
|
background: "$$solid",
|
|
209
|
-
color: "
|
|
216
|
+
color: "$$text",
|
|
210
217
|
"&:hover:not(:disabled)": {
|
|
211
218
|
backgroundColor: "$$solidHover"
|
|
212
219
|
},
|