@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
|
@@ -4536,7 +4536,6 @@ function CardModalAnimation({
|
|
|
4536
4536
|
children: /*#__PURE__*/jsxs(View
|
|
4537
4537
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4538
4538
|
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4539
|
-
// TODO [expo@>=53]: Check if still needed
|
|
4540
4539
|
, {
|
|
4541
4540
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
4542
4541
|
position: "relative",
|
|
@@ -5280,7 +5279,6 @@ function DialogModalAnimation({
|
|
|
5280
5279
|
children: /*#__PURE__*/jsxs(View
|
|
5281
5280
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
5282
5281
|
// This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
|
|
5283
|
-
// TODO [expo@>=53]: Check if still needed
|
|
5284
5282
|
, {
|
|
5285
5283
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
5286
5284
|
position: "relative",
|
|
@@ -5852,12 +5850,11 @@ function Autocomplete(_ref) {
|
|
|
5852
5850
|
selectedItem,
|
|
5853
5851
|
openMenu
|
|
5854
5852
|
}) => {
|
|
5855
|
-
const shouldSuppressRefError = Platform.OS !== 'web';
|
|
5856
5853
|
const rootProps = getRootProps(undefined, {
|
|
5857
|
-
suppressRefError:
|
|
5854
|
+
suppressRefError: true
|
|
5858
5855
|
});
|
|
5859
5856
|
const menuProps = getMenuProps(undefined, {
|
|
5860
|
-
suppressRefError:
|
|
5857
|
+
suppressRefError: true
|
|
5861
5858
|
});
|
|
5862
5859
|
const _getToggleButtonProps = getToggleButtonProps({
|
|
5863
5860
|
disabled
|
|
@@ -8635,7 +8632,6 @@ function FullscreenModalAnimation({
|
|
|
8635
8632
|
children: /*#__PURE__*/jsxs(View
|
|
8636
8633
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
8637
8634
|
// This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
|
|
8638
|
-
// TODO [expo@>=53]: Check if still needed
|
|
8639
8635
|
, {
|
|
8640
8636
|
height: Platform.OS === 'android' ? 1 : undefined,
|
|
8641
8637
|
position: "relative",
|
|
@@ -11409,14 +11405,14 @@ function createKittNativeBaseCustomTheme(theme, appTheme) {
|
|
|
11409
11405
|
},
|
|
11410
11406
|
bodies: {
|
|
11411
11407
|
regular: theme.typography.types.bodies.fontWeight.regular,
|
|
11412
|
-
//
|
|
11408
|
+
// check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
|
|
11413
11409
|
bold: Platform.OS === 'android' ? 400 : theme.typography.types.bodies.fontWeight.bold
|
|
11414
11410
|
},
|
|
11415
11411
|
labels: {
|
|
11416
11412
|
semibold: theme.typography.types.labels.fontWeight.semibold
|
|
11417
11413
|
},
|
|
11418
11414
|
contentCaps: {
|
|
11419
|
-
//
|
|
11415
|
+
// check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
|
|
11420
11416
|
bold: Platform.OS === 'android' ? 400 : theme.typography.types.contentCaps.fontWeight.bold
|
|
11421
11417
|
}
|
|
11422
11418
|
},
|
|
@@ -12189,7 +12185,6 @@ function AnimatedLoaderCircle({
|
|
|
12189
12185
|
};
|
|
12190
12186
|
}, [progress, circlePerimeter]);
|
|
12191
12187
|
return /*#__PURE__*/jsx(AnimatedCircle, {
|
|
12192
|
-
"transform-origin": "center center",
|
|
12193
12188
|
strokeWidth: strokeWidth,
|
|
12194
12189
|
stroke: color,
|
|
12195
12190
|
strokeLinecap: "round",
|