@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
@@ -805,15 +805,15 @@ const card = {
805
805
  }
806
806
  };
807
807
 
808
- const webAnimationContentDuration$2 = 400;
809
- const webAnimationContentEasing$2 = {
808
+ const webAnimationContentDuration$1 = 400;
809
+ const webAnimationContentEasing$1 = {
810
810
  x1: 0.77,
811
811
  y1: 0,
812
812
  x2: 0.175,
813
813
  y2: 1
814
814
  };
815
- const webAnimationOverlayDuration$2 = 250;
816
- const webAnimationOverlayEasing$2 = {
815
+ const webAnimationOverlayDuration$1 = 250;
816
+ const webAnimationOverlayEasing$1 = {
817
817
  x1: 0.42,
818
818
  y1: 0,
819
819
  x2: 1,
@@ -848,12 +848,12 @@ const cardModal = {
848
848
  },
849
849
  animation: {
850
850
  overlay: {
851
- duration: webAnimationOverlayDuration$2,
852
- easing: webAnimationOverlayEasing$2
851
+ duration: webAnimationOverlayDuration$1,
852
+ easing: webAnimationOverlayEasing$1
853
853
  },
854
854
  content: {
855
- duration: webAnimationContentDuration$2,
856
- easing: webAnimationContentEasing$2
855
+ duration: webAnimationContentDuration$1,
856
+ easing: webAnimationContentEasing$1
857
857
  }
858
858
  }
859
859
  };
@@ -909,15 +909,15 @@ const choices = {
909
909
  }
910
910
  };
911
911
 
912
- const webAnimationContentDuration$1 = 400;
913
- const webAnimationContentEasing$1 = {
912
+ const webAnimationContentDuration = 400;
913
+ const webAnimationContentEasing = {
914
914
  x1: 0.77,
915
915
  y1: 0,
916
916
  x2: 0.175,
917
917
  y2: 1
918
918
  };
919
- const webAnimationOverlayDuration$1 = 250;
920
- const webAnimationOverlayEasing$1 = {
919
+ const webAnimationOverlayDuration = 250;
920
+ const webAnimationOverlayEasing = {
921
921
  x1: 0.42,
922
922
  y1: 0,
923
923
  x2: 1,
@@ -939,12 +939,12 @@ const dialogModal = {
939
939
  },
940
940
  animation: {
941
941
  overlay: {
942
- duration: webAnimationOverlayDuration$1,
943
- easing: webAnimationOverlayEasing$1
942
+ duration: webAnimationOverlayDuration,
943
+ easing: webAnimationOverlayEasing
944
944
  },
945
945
  content: {
946
- duration: webAnimationContentDuration$1,
947
- easing: webAnimationContentEasing$1
946
+ duration: webAnimationContentDuration,
947
+ easing: webAnimationContentEasing
948
948
  }
949
949
  }
950
950
  };
@@ -1853,20 +1853,6 @@ const forms = {
1853
1853
  timePicker
1854
1854
  };
1855
1855
 
1856
- const webAnimationContentDuration = 600;
1857
- const webAnimationContentEasing = {
1858
- x1: 0.77,
1859
- y1: 0,
1860
- x2: 0.175,
1861
- y2: 1
1862
- };
1863
- const webAnimationOverlayDuration = 250;
1864
- const webAnimationOverlayEasing = {
1865
- x1: 0.42,
1866
- y1: 0,
1867
- x2: 1,
1868
- y2: 1
1869
- };
1870
1856
  const fullscreenModal = {
1871
1857
  header: {
1872
1858
  height: 56
@@ -1880,12 +1866,22 @@ const fullscreenModal = {
1880
1866
  },
1881
1867
  animation: {
1882
1868
  overlay: {
1883
- duration: webAnimationOverlayDuration,
1884
- easing: webAnimationOverlayEasing
1869
+ duration: 250,
1870
+ easing: {
1871
+ x1: 0.42,
1872
+ y1: 0,
1873
+ x2: 1,
1874
+ y2: 1
1875
+ }
1885
1876
  },
1886
1877
  content: {
1887
- duration: webAnimationContentDuration,
1888
- easing: webAnimationContentEasing
1878
+ duration: 600,
1879
+ easing: {
1880
+ x1: 0.77,
1881
+ y1: 0,
1882
+ x2: 0.175,
1883
+ y2: 1
1884
+ }
1889
1885
  }
1890
1886
  }
1891
1887
  };