@ornikar/kitt-universal 33.2.3 → 34.0.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/CHANGELOG.md +13 -0
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.d.ts.map +1 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.d.ts.map +1 -1
- package/dist/definitions/FullscreenModal/FullscreenModalAnimation.d.ts.map +1 -1
- package/dist/definitions/PageLoader/AnimatedLoaderCircle.d.ts.map +1 -1
- package/dist/definitions/forms/Autocomplete/Autocomplete.d.ts +3 -5
- package/dist/definitions/forms/Autocomplete/Autocomplete.d.ts.map +1 -1
- package/dist/definitions/forms/InputAddress/InputAddress.d.ts +2 -2
- package/dist/definitions/forms/InputAddress/InputAddress.d.ts.map +1 -1
- package/dist/definitions/typography/Typography.d.ts +6 -6
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +4 -9
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +4 -9
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.22.cjs.js +4 -9
- package/dist/index-node-22.22.cjs.js.map +1 -1
- package/dist/index-node-22.22.cjs.web.css +32 -32
- package/dist/index-node-22.22.cjs.web.js +9 -12
- package/dist/index-node-22.22.cjs.web.js.map +1 -1
- package/dist/index-node-22.22.es.mjs +4 -9
- package/dist/index-node-22.22.es.mjs.map +1 -1
- package/dist/index-node-22.22.es.web.css +32 -32
- package/dist/index-node-22.22.es.web.mjs +9 -12
- package/dist/index-node-22.22.es.web.mjs.map +1 -1
- package/dist/index.es.js +4 -9
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +9 -12
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +32 -32
- package/dist/tsbuildinfo +1 -1
- package/package.json +21 -21
package/dist/index.es.js
CHANGED
|
@@ -4583,7 +4583,6 @@ function CardModalAnimation(_ref) {
|
|
|
4583
4583
|
children: /*#__PURE__*/jsxs(View
|
|
4584
4584
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4585
4585
|
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4586
|
-
// TODO [expo@>=53]: Check if still needed
|
|
4587
4586
|
, {
|
|
4588
4587
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
4589
4588
|
position: "relative",
|
|
@@ -5324,7 +5323,6 @@ function DialogModalAnimation(_ref) {
|
|
|
5324
5323
|
children: /*#__PURE__*/jsxs(View
|
|
5325
5324
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
5326
5325
|
// This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
|
|
5327
|
-
// TODO [expo@>=53]: Check if still needed
|
|
5328
5326
|
, {
|
|
5329
5327
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
5330
5328
|
position: "relative",
|
|
@@ -5952,12 +5950,11 @@ function Autocomplete(_ref) {
|
|
|
5952
5950
|
highlightedIndex = _ref2.highlightedIndex,
|
|
5953
5951
|
selectedItem = _ref2.selectedItem,
|
|
5954
5952
|
openMenu = _ref2.openMenu;
|
|
5955
|
-
var shouldSuppressRefError = Platform.OS !== 'web';
|
|
5956
5953
|
var rootProps = getRootProps(undefined, {
|
|
5957
|
-
suppressRefError:
|
|
5954
|
+
suppressRefError: true
|
|
5958
5955
|
});
|
|
5959
5956
|
var menuProps = getMenuProps(undefined, {
|
|
5960
|
-
suppressRefError:
|
|
5957
|
+
suppressRefError: true
|
|
5961
5958
|
});
|
|
5962
5959
|
var _getToggleButtonProps = getToggleButtonProps({
|
|
5963
5960
|
disabled: disabled
|
|
@@ -8860,7 +8857,6 @@ function FullscreenModalAnimation(_ref) {
|
|
|
8860
8857
|
children: /*#__PURE__*/jsxs(View
|
|
8861
8858
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
8862
8859
|
// This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
|
|
8863
|
-
// TODO [expo@>=53]: Check if still needed
|
|
8864
8860
|
, {
|
|
8865
8861
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
8866
8862
|
position: "relative",
|
|
@@ -11642,14 +11638,14 @@ function createKittNativeBaseCustomTheme(theme, appTheme) {
|
|
|
11642
11638
|
},
|
|
11643
11639
|
bodies: {
|
|
11644
11640
|
regular: theme.typography.types.bodies.fontWeight.regular,
|
|
11645
|
-
//
|
|
11641
|
+
// check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
|
|
11646
11642
|
bold: Platform.OS === 'android' ? 400 : theme.typography.types.bodies.fontWeight.bold
|
|
11647
11643
|
},
|
|
11648
11644
|
labels: {
|
|
11649
11645
|
semibold: theme.typography.types.labels.fontWeight.semibold
|
|
11650
11646
|
},
|
|
11651
11647
|
contentCaps: {
|
|
11652
|
-
//
|
|
11648
|
+
// check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
|
|
11653
11649
|
bold: Platform.OS === 'android' ? 400 : theme.typography.types.contentCaps.fontWeight.bold
|
|
11654
11650
|
}
|
|
11655
11651
|
},
|
|
@@ -12427,7 +12423,6 @@ function AnimatedLoaderCircle(_ref) {
|
|
|
12427
12423
|
};
|
|
12428
12424
|
}, [progress, circlePerimeter]);
|
|
12429
12425
|
return /*#__PURE__*/jsx(AnimatedCircle, {
|
|
12430
|
-
"transform-origin": "center center",
|
|
12431
12426
|
strokeWidth: strokeWidth,
|
|
12432
12427
|
stroke: color,
|
|
12433
12428
|
strokeLinecap: "round",
|