@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.
Files changed (32) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.d.ts.map +1 -1
  3. package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.d.ts.map +1 -1
  4. package/dist/definitions/FullscreenModal/FullscreenModalAnimation.d.ts.map +1 -1
  5. package/dist/definitions/PageLoader/AnimatedLoaderCircle.d.ts.map +1 -1
  6. package/dist/definitions/forms/Autocomplete/Autocomplete.d.ts +3 -5
  7. package/dist/definitions/forms/Autocomplete/Autocomplete.d.ts.map +1 -1
  8. package/dist/definitions/forms/InputAddress/InputAddress.d.ts +2 -2
  9. package/dist/definitions/forms/InputAddress/InputAddress.d.ts.map +1 -1
  10. package/dist/definitions/typography/Typography.d.ts +6 -6
  11. package/dist/definitions/typography/Typography.d.ts.map +1 -1
  12. package/dist/index-metro.es.android.js +4 -9
  13. package/dist/index-metro.es.android.js.map +1 -1
  14. package/dist/index-metro.es.ios.js +4 -9
  15. package/dist/index-metro.es.ios.js.map +1 -1
  16. package/dist/index-node-22.22.cjs.js +4 -9
  17. package/dist/index-node-22.22.cjs.js.map +1 -1
  18. package/dist/index-node-22.22.cjs.web.css +32 -32
  19. package/dist/index-node-22.22.cjs.web.js +9 -12
  20. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  21. package/dist/index-node-22.22.es.mjs +4 -9
  22. package/dist/index-node-22.22.es.mjs.map +1 -1
  23. package/dist/index-node-22.22.es.web.css +32 -32
  24. package/dist/index-node-22.22.es.web.mjs +9 -12
  25. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  26. package/dist/index.es.js +4 -9
  27. package/dist/index.es.js.map +1 -1
  28. package/dist/index.es.web.js +9 -12
  29. package/dist/index.es.web.js.map +1 -1
  30. package/dist/styles.css +32 -32
  31. package/dist/tsbuildinfo +1 -1
  32. package/package.json +21 -21
@@ -4540,7 +4540,6 @@ function CardModalAnimation({
4540
4540
  children: /*#__PURE__*/jsxs(View
4541
4541
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
4542
4542
  // This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
4543
- // TODO [expo@>=53]: Check if still needed
4544
4543
  , {
4545
4544
  height: Platform.OS === 'android' ? 1 : undefined,
4546
4545
  position: "relative",
@@ -5288,7 +5287,6 @@ function DialogModalAnimation({
5288
5287
  children: /*#__PURE__*/jsxs(View
5289
5288
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
5290
5289
  // This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
5291
- // TODO [expo@>=53]: Check if still needed
5292
5290
  , {
5293
5291
  height: Platform.OS === 'android' ? 1 : undefined,
5294
5292
  position: "relative",
@@ -5847,12 +5845,11 @@ function Autocomplete({
5847
5845
  selectedItem,
5848
5846
  openMenu
5849
5847
  }) => {
5850
- const shouldSuppressRefError = Platform.OS !== 'web';
5851
5848
  const rootProps = getRootProps(undefined, {
5852
- suppressRefError: shouldSuppressRefError
5849
+ suppressRefError: true
5853
5850
  });
5854
5851
  const menuProps = getMenuProps(undefined, {
5855
- suppressRefError: shouldSuppressRefError
5852
+ suppressRefError: true
5856
5853
  });
5857
5854
  const {
5858
5855
  onClick: onClickToggle,
@@ -8617,7 +8614,6 @@ function FullscreenModalAnimation({
8617
8614
  children: /*#__PURE__*/jsxs(View
8618
8615
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
8619
8616
  // This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
8620
- // TODO [expo@>=53]: Check if still needed
8621
8617
  , {
8622
8618
  height: Platform.OS === 'android' ? 1 : undefined,
8623
8619
  position: "relative",
@@ -11398,14 +11394,14 @@ function createKittNativeBaseCustomTheme(theme, appTheme) {
11398
11394
  },
11399
11395
  bodies: {
11400
11396
  regular: theme.typography.types.bodies.fontWeight.regular,
11401
- // TODO [expo@>=53]: Check if still needed with new expo-fonts version
11397
+ // check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
11402
11398
  bold: Platform.OS === 'android' ? 400 : theme.typography.types.bodies.fontWeight.bold
11403
11399
  },
11404
11400
  labels: {
11405
11401
  semibold: theme.typography.types.labels.fontWeight.semibold
11406
11402
  },
11407
11403
  contentCaps: {
11408
- // TODO [expo@>=53]: Check if still needed with new expo-fonts version
11404
+ // check if still needed with new expo-fonts version (https://ornikar.atlassian.net/browse/OSE-23205)
11409
11405
  bold: Platform.OS === 'android' ? 400 : theme.typography.types.contentCaps.fontWeight.bold
11410
11406
  }
11411
11407
  },
@@ -12185,7 +12181,6 @@ function AnimatedLoaderCircle({
12185
12181
  };
12186
12182
  }, [progress, circlePerimeter]);
12187
12183
  return /*#__PURE__*/jsx(AnimatedCircle, {
12188
- "transform-origin": "center center",
12189
12184
  strokeWidth: strokeWidth,
12190
12185
  stroke: color,
12191
12186
  strokeLinecap: "round",