@ctlyst.id/internal-ui 2.0.5 → 2.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/config/theme/components/form-label.d.ts +1 -0
- package/dist/internal-ui.cjs.development.js +11 -4
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +4 -4
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +11 -4
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
@@ -2150,20 +2150,26 @@ const InputAddonLeft = ({
|
|
2150
2150
|
children
|
2151
2151
|
}) => {
|
2152
2152
|
return /*#__PURE__*/React__default.createElement(react.InputLeftAddon, {
|
2153
|
-
borderLeftRadius: "md",
|
2154
2153
|
backgroundColor: "neutral.200",
|
2155
2154
|
px: 3,
|
2156
|
-
py: 2.5
|
2155
|
+
py: 2.5,
|
2156
|
+
style: {
|
2157
|
+
border: 0,
|
2158
|
+
marginInlineEnd: 0
|
2159
|
+
}
|
2157
2160
|
}, children);
|
2158
2161
|
};
|
2159
2162
|
const InputAddonRight = ({
|
2160
2163
|
children
|
2161
2164
|
}) => {
|
2162
2165
|
return /*#__PURE__*/React__default.createElement(react.InputRightAddon, {
|
2163
|
-
borderRightRadius: "md",
|
2164
2166
|
backgroundColor: "neutral.200",
|
2165
2167
|
px: 3,
|
2166
|
-
py: 2.5
|
2168
|
+
py: 2.5,
|
2169
|
+
style: {
|
2170
|
+
border: 0,
|
2171
|
+
marginInlineStart: 0
|
2172
|
+
}
|
2167
2173
|
}, children);
|
2168
2174
|
};
|
2169
2175
|
|
@@ -3962,6 +3968,7 @@ const Chips = /*#__PURE__*/styledSystem.defineStyleConfig({
|
|
3962
3968
|
|
3963
3969
|
const baseStyle$2 = /*#__PURE__*/styledSystem.defineStyle({
|
3964
3970
|
fontSize: 'field.sm',
|
3971
|
+
fontWeight: 'normal',
|
3965
3972
|
marginEnd: 1,
|
3966
3973
|
mb: 1
|
3967
3974
|
});
|