@ornikar/kitt-universal 27.4.0 → 27.5.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 (61) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts.map +1 -1
  3. package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts.map +1 -1
  4. package/dist/definitions/FullscreenModal/FullscreenModalAnimation.web.d.ts.map +1 -1
  5. package/dist/definitions/GoogleMapsAutocompleteProvider/GoogleMapsAutocompleteProvider.d.ts.map +1 -1
  6. package/dist/definitions/MapMarker/MapMarker.d.ts +2 -5
  7. package/dist/definitions/MapMarker/MapMarker.d.ts.map +1 -1
  8. package/dist/definitions/MapMarker/constants.d.ts +6 -0
  9. package/dist/definitions/MapMarker/constants.d.ts.map +1 -0
  10. package/dist/definitions/MapMarker/utils/getBackgroundColor.d.ts +2 -1
  11. package/dist/definitions/MapMarker/utils/getBackgroundColor.d.ts.map +1 -1
  12. package/dist/definitions/Picker/Picker.web.d.ts.map +1 -1
  13. package/dist/definitions/TabBar/TabBar.d.ts.map +1 -1
  14. package/dist/definitions/TimePicker/TimePicker.web.d.ts.map +1 -1
  15. package/dist/definitions/themes/late-ocean/cardModal.d.ts +21 -4
  16. package/dist/definitions/themes/late-ocean/cardModal.d.ts.map +1 -1
  17. package/dist/definitions/themes/late-ocean/dialogModal.d.ts +21 -4
  18. package/dist/definitions/themes/late-ocean/dialogModal.d.ts.map +1 -1
  19. package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts +21 -4
  20. package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts.map +1 -1
  21. package/dist/definitions/themes/late-ocean/shadows.d.ts +4 -2
  22. package/dist/definitions/themes/late-ocean/shadows.d.ts.map +1 -1
  23. package/dist/definitions/themes/late-ocean/skeleton.d.ts +2 -1
  24. package/dist/definitions/themes/late-ocean/skeleton.d.ts.map +1 -1
  25. package/dist/index-metro.es.android.js +100 -39
  26. package/dist/index-metro.es.android.js.map +1 -1
  27. package/dist/index-metro.es.ios.js +100 -39
  28. package/dist/index-metro.es.ios.js.map +1 -1
  29. package/dist/index-node-22.17.cjs.js +99 -38
  30. package/dist/index-node-22.17.cjs.js.map +1 -1
  31. package/dist/index-node-22.17.cjs.web.css +2 -2
  32. package/dist/index-node-22.17.cjs.web.js +66 -32
  33. package/dist/index-node-22.17.cjs.web.js.map +1 -1
  34. package/dist/index-node-22.17.es.mjs +99 -38
  35. package/dist/index-node-22.17.es.mjs.map +1 -1
  36. package/dist/index-node-22.17.es.web.css +2 -2
  37. package/dist/index-node-22.17.es.web.mjs +66 -32
  38. package/dist/index-node-22.17.es.web.mjs.map +1 -1
  39. package/dist/index.es.js +97 -74
  40. package/dist/index.es.js.map +1 -1
  41. package/dist/index.es.web.js +76 -44
  42. package/dist/index.es.web.js.map +1 -1
  43. package/dist/linaria-themes-metro.es.android.js +40 -10
  44. package/dist/linaria-themes-metro.es.android.js.map +1 -1
  45. package/dist/linaria-themes-metro.es.ios.js +40 -10
  46. package/dist/linaria-themes-metro.es.ios.js.map +1 -1
  47. package/dist/linaria-themes-node-22.17.cjs.js +40 -10
  48. package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
  49. package/dist/linaria-themes-node-22.17.cjs.web.js +40 -10
  50. package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
  51. package/dist/linaria-themes-node-22.17.es.mjs +40 -10
  52. package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
  53. package/dist/linaria-themes-node-22.17.es.web.mjs +40 -10
  54. package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
  55. package/dist/linaria-themes.es.js +40 -10
  56. package/dist/linaria-themes.es.js.map +1 -1
  57. package/dist/linaria-themes.es.web.js +40 -10
  58. package/dist/linaria-themes.es.web.js.map +1 -1
  59. package/dist/styles.css +2 -2
  60. package/dist/tsbuildinfo +1 -1
  61. package/package.json +1 -1
@@ -704,9 +704,19 @@ const card = {
704
704
  };
705
705
 
706
706
  const webAnimationContentDuration$2 = 400;
707
- const webAnimationContentEasing$2 = [0.77, 0, 0.175, 1];
707
+ const webAnimationContentEasing$2 = {
708
+ x1: 0.77,
709
+ y1: 0,
710
+ x2: 0.175,
711
+ y2: 1
712
+ };
708
713
  const webAnimationOverlayDuration$2 = 250;
709
- const webAnimationOverlayEasing$2 = [0.42, 0, 1, 1];
714
+ const webAnimationOverlayEasing$2 = {
715
+ x1: 0.42,
716
+ y1: 0,
717
+ x2: 1,
718
+ y2: 1
719
+ };
710
720
  const maxWidth = 540;
711
721
  const overlayHorizontalPadding = 24;
712
722
  const cardModal = {
@@ -798,9 +808,19 @@ const choices = {
798
808
  };
799
809
 
800
810
  const webAnimationContentDuration$1 = 400;
801
- const webAnimationContentEasing$1 = [0.77, 0, 0.175, 1];
811
+ const webAnimationContentEasing$1 = {
812
+ x1: 0.77,
813
+ y1: 0,
814
+ x2: 0.175,
815
+ y2: 1
816
+ };
802
817
  const webAnimationOverlayDuration$1 = 250;
803
- const webAnimationOverlayEasing$1 = [0.42, 0, 1, 1];
818
+ const webAnimationOverlayEasing$1 = {
819
+ x1: 0.42,
820
+ y1: 0,
821
+ x2: 1,
822
+ y2: 1
823
+ };
804
824
  const dialogModal = {
805
825
  borderRadius: spacing * 2,
806
826
  maxWidth: 540,
@@ -1732,9 +1752,19 @@ const forms = {
1732
1752
  };
1733
1753
 
1734
1754
  const webAnimationContentDuration = 600;
1735
- const webAnimationContentEasing = [0.77, 0, 0.175, 1];
1755
+ const webAnimationContentEasing = {
1756
+ x1: 0.77,
1757
+ y1: 0,
1758
+ x2: 0.175,
1759
+ y2: 1
1760
+ };
1736
1761
  const webAnimationOverlayDuration = 250;
1737
- const webAnimationOverlayEasing = [0.42, 0, 1, 1];
1762
+ const webAnimationOverlayEasing = {
1763
+ x1: 0.42,
1764
+ y1: 0,
1765
+ x2: 1,
1766
+ y2: 1
1767
+ };
1738
1768
  const fullscreenModal = {
1739
1769
  header: {
1740
1770
  height: 56
@@ -1882,8 +1912,8 @@ const listItem = {
1882
1912
 
1883
1913
  const mapMarker = {
1884
1914
  home: {
1885
- default: colors.primaryLight,
1886
- selected: colors.primary,
1915
+ default: deepPurpleColorPalette['grey.9'],
1916
+ selected: deepPurpleColorPalette['grey.7'],
1887
1917
  svg: {
1888
1918
  height: 36
1889
1919
  },
@@ -1893,8 +1923,8 @@ const mapMarker = {
1893
1923
  }
1894
1924
  },
1895
1925
  meetingPoint: {
1896
- default: colors.black,
1897
- selected: colors.blackAnthracite,
1926
+ default: deepPurpleColorPalette['deepPurple.8'],
1927
+ selected: deepPurpleColorPalette['deepPurple.6'],
1898
1928
  svg: {
1899
1929
  width: 40,
1900
1930
  height: 43