@scripso-homepad/ui 0.4.4 → 0.4.6
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/{chunk-66WR57JJ.js → chunk-Y7I7LA2K.js} +12 -3
- package/dist/chunk-Y7I7LA2K.js.map +1 -0
- package/dist/index.cjs +20 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -6
- package/dist/index.js.map +1 -1
- package/dist/web/index.cjs +10 -1
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Button.tsx +0 -3
- package/src/theme/input.ts +10 -1
- package/src/theme/select.ts +10 -1
- package/dist/chunk-66WR57JJ.js.map +0 -1
package/dist/web/index.cjs
CHANGED
|
@@ -28650,7 +28650,16 @@ function createOutlineStyle(ringColor) {
|
|
|
28650
28650
|
...reactNative.Platform.OS !== "web" ? { overflow: "hidden" } : null
|
|
28651
28651
|
};
|
|
28652
28652
|
}
|
|
28653
|
-
var defaultOutline =
|
|
28653
|
+
var defaultOutline = {
|
|
28654
|
+
borderRadius: radii.lg,
|
|
28655
|
+
borderWidth: 0,
|
|
28656
|
+
borderColor: colors.transparent,
|
|
28657
|
+
padding: 0,
|
|
28658
|
+
backgroundColor: colors.transparent,
|
|
28659
|
+
width: "100%",
|
|
28660
|
+
alignSelf: "stretch",
|
|
28661
|
+
...reactNative.Platform.OS !== "web" ? { overflow: "hidden" } : null
|
|
28662
|
+
};
|
|
28654
28663
|
function getInputFieldStyles(state) {
|
|
28655
28664
|
const containerBase = {
|
|
28656
28665
|
borderRadius: radii.lg,
|