@lotics/ui 1.20.0 → 1.21.0
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 +1 -1
- package/src/card.tsx +1 -3
- package/src/combobox.tsx +1 -4
- package/src/date_field.tsx +1 -4
- package/src/index.css +0 -1
- package/src/picker.tsx +1 -4
- package/src/select_item.tsx +1 -3
- package/src/time_field.tsx +1 -4
package/package.json
CHANGED
package/src/card.tsx
CHANGED
package/src/combobox.tsx
CHANGED
|
@@ -155,10 +155,7 @@ const styles = StyleSheet.create({
|
|
|
155
155
|
cursor: "pointer",
|
|
156
156
|
},
|
|
157
157
|
opened: {
|
|
158
|
-
|
|
159
|
-
outlineWidth: 2,
|
|
160
|
-
outlineStyle: "solid",
|
|
161
|
-
outlineOffset: -2,
|
|
158
|
+
borderColor: colors.zinc["900"],
|
|
162
159
|
},
|
|
163
160
|
disabled: {
|
|
164
161
|
opacity: 0.5,
|
package/src/date_field.tsx
CHANGED
|
@@ -150,10 +150,7 @@ const styles = StyleSheet.create({
|
|
|
150
150
|
backgroundColor: colors.background,
|
|
151
151
|
},
|
|
152
152
|
frameFocused: {
|
|
153
|
-
|
|
154
|
-
outlineWidth: 2,
|
|
155
|
-
outlineStyle: "solid",
|
|
156
|
-
outlineOffset: -2,
|
|
153
|
+
borderColor: colors.zinc["900"],
|
|
157
154
|
},
|
|
158
155
|
frameDisabled: {
|
|
159
156
|
backgroundColor: colors.zinc["50"],
|
package/src/index.css
CHANGED
package/src/picker.tsx
CHANGED
|
@@ -331,10 +331,7 @@ const styles = StyleSheet.create({
|
|
|
331
331
|
height: 40,
|
|
332
332
|
},
|
|
333
333
|
opened: {
|
|
334
|
-
|
|
335
|
-
outlineWidth: 2,
|
|
336
|
-
outlineStyle: "solid",
|
|
337
|
-
outlineOffset: -2,
|
|
334
|
+
borderColor: colors.zinc["900"],
|
|
338
335
|
},
|
|
339
336
|
disabled: {
|
|
340
337
|
opacity: 0.5,
|
package/src/select_item.tsx
CHANGED
package/src/time_field.tsx
CHANGED
|
@@ -273,10 +273,7 @@ const styles = StyleSheet.create({
|
|
|
273
273
|
backgroundColor: colors.background,
|
|
274
274
|
},
|
|
275
275
|
triggerOpen: {
|
|
276
|
-
|
|
277
|
-
outlineWidth: 2,
|
|
278
|
-
outlineStyle: "solid",
|
|
279
|
-
outlineOffset: -2,
|
|
276
|
+
borderColor: colors.zinc["900"],
|
|
280
277
|
},
|
|
281
278
|
triggerDisabled: {
|
|
282
279
|
backgroundColor: colors.zinc["50"],
|