@ornikar/kitt-universal 16.3.0 → 16.3.1
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/definitions/Actions/Actions.d.ts +4 -2
- package/dist/definitions/Actions/Actions.d.ts.map +1 -1
- package/dist/definitions/forms/RadioButtonGroup/RadioButton.d.ts +2 -1
- package/dist/definitions/forms/RadioButtonGroup/RadioButton.d.ts.map +1 -1
- package/dist/definitions/forms/RadioButtonGroup/RadioButtonGroup.d.ts +2 -1
- package/dist/definitions/forms/RadioButtonGroup/RadioButtonGroup.d.ts.map +1 -1
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +6 -4
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +6 -4
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +6 -4
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-browser-all.es.web.js +6 -4
- package/dist/index-browser-all.es.web.js.map +1 -1
- package/dist/index-node-14.17.cjs.js +4 -2
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/index-node-14.17.cjs.web.js +4 -2
- package/dist/index-node-14.17.cjs.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1833,7 +1833,7 @@ function useTypographyDefaultColor() {
|
|
|
1833
1833
|
return react.useContext(TypographyDefaultColorContext);
|
|
1834
1834
|
}
|
|
1835
1835
|
function getTypographyTypeConfigKeyFromTypeName(breakpointName) {
|
|
1836
|
-
return breakpointName ===
|
|
1836
|
+
return breakpointName === exports.KittBreakpointNameEnum.BASE || breakpointName === exports.KittBreakpointNameEnum.SMALL ? 'baseAndSmall' : 'mediumAndWide';
|
|
1837
1837
|
}
|
|
1838
1838
|
|
|
1839
1839
|
// TODO[native-base@>=3.4.19] this currently does not work. Retest when updating native-base.
|
|
@@ -2423,6 +2423,7 @@ function getCurrentAlignSelf(layout) {
|
|
|
2423
2423
|
function Actions({
|
|
2424
2424
|
children,
|
|
2425
2425
|
layout,
|
|
2426
|
+
reversed,
|
|
2426
2427
|
...props
|
|
2427
2428
|
}) {
|
|
2428
2429
|
const currentAlignItems = getCurrentLayout(layout);
|
|
@@ -2433,6 +2434,7 @@ function Actions({
|
|
|
2433
2434
|
alignSelf: currentAlignSelf,
|
|
2434
2435
|
direction: currentDirection,
|
|
2435
2436
|
flexGrow: 1,
|
|
2437
|
+
reversed: !!createResponsiveStyleFromProp(reversed, true, false),
|
|
2436
2438
|
...props,
|
|
2437
2439
|
space: "kitt.3",
|
|
2438
2440
|
children: children
|
|
@@ -4559,7 +4561,7 @@ function RadioButton({
|
|
|
4559
4561
|
accessibilityState: {
|
|
4560
4562
|
checked: selected
|
|
4561
4563
|
},
|
|
4562
|
-
flex: stretch
|
|
4564
|
+
flex: createResponsiveStyleFromProp(stretch, 1, undefined),
|
|
4563
4565
|
disabled: disabled,
|
|
4564
4566
|
onPress: e => {
|
|
4565
4567
|
if (onFocus) onFocus(e);
|