@ornikar/kitt-universal 31.4.0 → 31.4.1-canary.2fdbcaad37b7e76ba2442f7c56a4939349d51eb1.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 (52) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/definitions/CardModal/CardModalAnimation/OpacityAnimation.d.ts +8 -0
  3. package/dist/definitions/CardModal/CardModalAnimation/OpacityAnimation.d.ts.map +1 -0
  4. package/dist/definitions/CardModal/CardModalAnimation/{NativeRotationAnimation.d.ts → RotationAnimation.d.ts} +3 -3
  5. package/dist/definitions/CardModal/CardModalAnimation/RotationAnimation.d.ts.map +1 -0
  6. package/dist/definitions/DialogModal/DialogModalAnimation/NativeOpacityAnimation.d.ts.map +1 -1
  7. package/dist/definitions/DialogModal/DialogModalAnimation/NativeRotationAnimation.d.ts.map +1 -1
  8. package/dist/definitions/FullscreenModal/FullscreenModalAnimation.web.d.ts.map +1 -1
  9. package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts +0 -14
  10. package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts.map +1 -1
  11. package/dist/index-metro.es.android.js +44 -42
  12. package/dist/index-metro.es.android.js.map +1 -1
  13. package/dist/index-metro.es.ios.js +44 -42
  14. package/dist/index-metro.es.ios.js.map +1 -1
  15. package/dist/index-node-22.17.cjs.js +44 -42
  16. package/dist/index-node-22.17.cjs.js.map +1 -1
  17. package/dist/index-node-22.17.cjs.web.css +38 -16
  18. package/dist/index-node-22.17.cjs.web.js +262 -179
  19. package/dist/index-node-22.17.cjs.web.js.map +1 -1
  20. package/dist/index-node-22.17.es.mjs +44 -42
  21. package/dist/index-node-22.17.es.mjs.map +1 -1
  22. package/dist/index-node-22.17.es.web.css +38 -16
  23. package/dist/index-node-22.17.es.web.mjs +262 -179
  24. package/dist/index-node-22.17.es.web.mjs.map +1 -1
  25. package/dist/index.es.js +44 -42
  26. package/dist/index.es.js.map +1 -1
  27. package/dist/index.es.web.js +288 -206
  28. package/dist/index.es.web.js.map +1 -1
  29. package/dist/linaria-themes-metro.es.android.js +30 -34
  30. package/dist/linaria-themes-metro.es.android.js.map +1 -1
  31. package/dist/linaria-themes-metro.es.ios.js +30 -34
  32. package/dist/linaria-themes-metro.es.ios.js.map +1 -1
  33. package/dist/linaria-themes-node-22.17.cjs.js +30 -34
  34. package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
  35. package/dist/linaria-themes-node-22.17.cjs.web.js +30 -34
  36. package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
  37. package/dist/linaria-themes-node-22.17.es.mjs +30 -34
  38. package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
  39. package/dist/linaria-themes-node-22.17.es.web.mjs +30 -34
  40. package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
  41. package/dist/linaria-themes.es.js +30 -34
  42. package/dist/linaria-themes.es.js.map +1 -1
  43. package/dist/linaria-themes.es.web.js +30 -34
  44. package/dist/linaria-themes.es.web.js.map +1 -1
  45. package/dist/styles.css +38 -16
  46. package/dist/tsbuildinfo +1 -1
  47. package/package.json +1 -1
  48. package/dist/definitions/CardModal/CardModalAnimation/NativeOpacityAnimation.d.ts +0 -8
  49. package/dist/definitions/CardModal/CardModalAnimation/NativeOpacityAnimation.d.ts.map +0 -1
  50. package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts.map +0 -1
  51. package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts +0 -4
  52. package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts.map +0 -1
@@ -806,15 +806,15 @@ const card = {
806
806
  }
807
807
  };
808
808
 
809
- const webAnimationContentDuration$2 = 400;
810
- const webAnimationContentEasing$2 = {
809
+ const webAnimationContentDuration$1 = 400;
810
+ const webAnimationContentEasing$1 = {
811
811
  x1: 0.77,
812
812
  y1: 0,
813
813
  x2: 0.175,
814
814
  y2: 1
815
815
  };
816
- const webAnimationOverlayDuration$2 = 250;
817
- const webAnimationOverlayEasing$2 = {
816
+ const webAnimationOverlayDuration$1 = 250;
817
+ const webAnimationOverlayEasing$1 = {
818
818
  x1: 0.42,
819
819
  y1: 0,
820
820
  x2: 1,
@@ -849,12 +849,12 @@ const cardModal = {
849
849
  },
850
850
  animation: {
851
851
  overlay: {
852
- duration: webAnimationOverlayDuration$2,
853
- easing: webAnimationOverlayEasing$2
852
+ duration: webAnimationOverlayDuration$1,
853
+ easing: webAnimationOverlayEasing$1
854
854
  },
855
855
  content: {
856
- duration: webAnimationContentDuration$2,
857
- easing: webAnimationContentEasing$2
856
+ duration: webAnimationContentDuration$1,
857
+ easing: webAnimationContentEasing$1
858
858
  }
859
859
  }
860
860
  };
@@ -910,15 +910,15 @@ const choices = {
910
910
  }
911
911
  };
912
912
 
913
- const webAnimationContentDuration$1 = 400;
914
- const webAnimationContentEasing$1 = {
913
+ const webAnimationContentDuration = 400;
914
+ const webAnimationContentEasing = {
915
915
  x1: 0.77,
916
916
  y1: 0,
917
917
  x2: 0.175,
918
918
  y2: 1
919
919
  };
920
- const webAnimationOverlayDuration$1 = 250;
921
- const webAnimationOverlayEasing$1 = {
920
+ const webAnimationOverlayDuration = 250;
921
+ const webAnimationOverlayEasing = {
922
922
  x1: 0.42,
923
923
  y1: 0,
924
924
  x2: 1,
@@ -940,12 +940,12 @@ const dialogModal = {
940
940
  },
941
941
  animation: {
942
942
  overlay: {
943
- duration: webAnimationOverlayDuration$1,
944
- easing: webAnimationOverlayEasing$1
943
+ duration: webAnimationOverlayDuration,
944
+ easing: webAnimationOverlayEasing
945
945
  },
946
946
  content: {
947
- duration: webAnimationContentDuration$1,
948
- easing: webAnimationContentEasing$1
947
+ duration: webAnimationContentDuration,
948
+ easing: webAnimationContentEasing
949
949
  }
950
950
  }
951
951
  };
@@ -1854,20 +1854,6 @@ const forms = {
1854
1854
  timePicker
1855
1855
  };
1856
1856
 
1857
- const webAnimationContentDuration = 600;
1858
- const webAnimationContentEasing = {
1859
- x1: 0.77,
1860
- y1: 0,
1861
- x2: 0.175,
1862
- y2: 1
1863
- };
1864
- const webAnimationOverlayDuration = 250;
1865
- const webAnimationOverlayEasing = {
1866
- x1: 0.42,
1867
- y1: 0,
1868
- x2: 1,
1869
- y2: 1
1870
- };
1871
1857
  const fullscreenModal = {
1872
1858
  header: {
1873
1859
  height: 56
@@ -1881,12 +1867,22 @@ const fullscreenModal = {
1881
1867
  },
1882
1868
  animation: {
1883
1869
  overlay: {
1884
- duration: webAnimationOverlayDuration,
1885
- easing: webAnimationOverlayEasing
1870
+ duration: 250,
1871
+ easing: {
1872
+ x1: 0.42,
1873
+ y1: 0,
1874
+ x2: 1,
1875
+ y2: 1
1876
+ }
1886
1877
  },
1887
1878
  content: {
1888
- duration: webAnimationContentDuration,
1889
- easing: webAnimationContentEasing
1879
+ duration: 600,
1880
+ easing: {
1881
+ x1: 0.77,
1882
+ y1: 0,
1883
+ x2: 0.175,
1884
+ y2: 1
1885
+ }
1890
1886
  }
1891
1887
  }
1892
1888
  };