@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.
- package/CHANGELOG.md +15 -0
- package/dist/definitions/CardModal/CardModalAnimation/OpacityAnimation.d.ts +8 -0
- package/dist/definitions/CardModal/CardModalAnimation/OpacityAnimation.d.ts.map +1 -0
- package/dist/definitions/CardModal/CardModalAnimation/{NativeRotationAnimation.d.ts → RotationAnimation.d.ts} +3 -3
- package/dist/definitions/CardModal/CardModalAnimation/RotationAnimation.d.ts.map +1 -0
- package/dist/definitions/DialogModal/DialogModalAnimation/NativeOpacityAnimation.d.ts.map +1 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/NativeRotationAnimation.d.ts.map +1 -1
- package/dist/definitions/FullscreenModal/FullscreenModalAnimation.web.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts +0 -14
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +44 -42
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +44 -42
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +44 -42
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +38 -16
- package/dist/index-node-22.17.cjs.web.js +262 -179
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +44 -42
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +38 -16
- package/dist/index-node-22.17.es.web.mjs +262 -179
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +44 -42
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +288 -206
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js +30 -34
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js +30 -34
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.js +30 -34
- package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js +30 -34
- package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-22.17.es.mjs +30 -34
- package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs +30 -34
- package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
- package/dist/linaria-themes.es.js +30 -34
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +30 -34
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/styles.css +38 -16
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/definitions/CardModal/CardModalAnimation/NativeOpacityAnimation.d.ts +0 -8
- package/dist/definitions/CardModal/CardModalAnimation/NativeOpacityAnimation.d.ts.map +0 -1
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts.map +0 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts +0 -4
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts.map +0 -1
|
@@ -809,15 +809,15 @@ const card = {
|
|
|
809
809
|
}
|
|
810
810
|
};
|
|
811
811
|
|
|
812
|
-
const webAnimationContentDuration$
|
|
813
|
-
const webAnimationContentEasing$
|
|
812
|
+
const webAnimationContentDuration$1 = 400;
|
|
813
|
+
const webAnimationContentEasing$1 = {
|
|
814
814
|
x1: 0.77,
|
|
815
815
|
y1: 0,
|
|
816
816
|
x2: 0.175,
|
|
817
817
|
y2: 1
|
|
818
818
|
};
|
|
819
|
-
const webAnimationOverlayDuration$
|
|
820
|
-
const webAnimationOverlayEasing$
|
|
819
|
+
const webAnimationOverlayDuration$1 = 250;
|
|
820
|
+
const webAnimationOverlayEasing$1 = {
|
|
821
821
|
x1: 0.42,
|
|
822
822
|
y1: 0,
|
|
823
823
|
x2: 1,
|
|
@@ -852,12 +852,12 @@ const cardModal = {
|
|
|
852
852
|
},
|
|
853
853
|
animation: {
|
|
854
854
|
overlay: {
|
|
855
|
-
duration: webAnimationOverlayDuration$
|
|
856
|
-
easing: webAnimationOverlayEasing$
|
|
855
|
+
duration: webAnimationOverlayDuration$1,
|
|
856
|
+
easing: webAnimationOverlayEasing$1
|
|
857
857
|
},
|
|
858
858
|
content: {
|
|
859
|
-
duration: webAnimationContentDuration$
|
|
860
|
-
easing: webAnimationContentEasing$
|
|
859
|
+
duration: webAnimationContentDuration$1,
|
|
860
|
+
easing: webAnimationContentEasing$1
|
|
861
861
|
}
|
|
862
862
|
}
|
|
863
863
|
};
|
|
@@ -913,15 +913,15 @@ const choices = {
|
|
|
913
913
|
}
|
|
914
914
|
};
|
|
915
915
|
|
|
916
|
-
const webAnimationContentDuration
|
|
917
|
-
const webAnimationContentEasing
|
|
916
|
+
const webAnimationContentDuration = 400;
|
|
917
|
+
const webAnimationContentEasing = {
|
|
918
918
|
x1: 0.77,
|
|
919
919
|
y1: 0,
|
|
920
920
|
x2: 0.175,
|
|
921
921
|
y2: 1
|
|
922
922
|
};
|
|
923
|
-
const webAnimationOverlayDuration
|
|
924
|
-
const webAnimationOverlayEasing
|
|
923
|
+
const webAnimationOverlayDuration = 250;
|
|
924
|
+
const webAnimationOverlayEasing = {
|
|
925
925
|
x1: 0.42,
|
|
926
926
|
y1: 0,
|
|
927
927
|
x2: 1,
|
|
@@ -943,12 +943,12 @@ const dialogModal = {
|
|
|
943
943
|
},
|
|
944
944
|
animation: {
|
|
945
945
|
overlay: {
|
|
946
|
-
duration: webAnimationOverlayDuration
|
|
947
|
-
easing: webAnimationOverlayEasing
|
|
946
|
+
duration: webAnimationOverlayDuration,
|
|
947
|
+
easing: webAnimationOverlayEasing
|
|
948
948
|
},
|
|
949
949
|
content: {
|
|
950
|
-
duration: webAnimationContentDuration
|
|
951
|
-
easing: webAnimationContentEasing
|
|
950
|
+
duration: webAnimationContentDuration,
|
|
951
|
+
easing: webAnimationContentEasing
|
|
952
952
|
}
|
|
953
953
|
}
|
|
954
954
|
};
|
|
@@ -1857,20 +1857,6 @@ const forms = {
|
|
|
1857
1857
|
timePicker
|
|
1858
1858
|
};
|
|
1859
1859
|
|
|
1860
|
-
const webAnimationContentDuration = 600;
|
|
1861
|
-
const webAnimationContentEasing = {
|
|
1862
|
-
x1: 0.77,
|
|
1863
|
-
y1: 0,
|
|
1864
|
-
x2: 0.175,
|
|
1865
|
-
y2: 1
|
|
1866
|
-
};
|
|
1867
|
-
const webAnimationOverlayDuration = 250;
|
|
1868
|
-
const webAnimationOverlayEasing = {
|
|
1869
|
-
x1: 0.42,
|
|
1870
|
-
y1: 0,
|
|
1871
|
-
x2: 1,
|
|
1872
|
-
y2: 1
|
|
1873
|
-
};
|
|
1874
1860
|
const fullscreenModal = {
|
|
1875
1861
|
header: {
|
|
1876
1862
|
height: 56
|
|
@@ -1884,12 +1870,22 @@ const fullscreenModal = {
|
|
|
1884
1870
|
},
|
|
1885
1871
|
animation: {
|
|
1886
1872
|
overlay: {
|
|
1887
|
-
duration:
|
|
1888
|
-
easing:
|
|
1873
|
+
duration: 250,
|
|
1874
|
+
easing: {
|
|
1875
|
+
x1: 0.42,
|
|
1876
|
+
y1: 0,
|
|
1877
|
+
x2: 1,
|
|
1878
|
+
y2: 1
|
|
1879
|
+
}
|
|
1889
1880
|
},
|
|
1890
1881
|
content: {
|
|
1891
|
-
duration:
|
|
1892
|
-
easing:
|
|
1882
|
+
duration: 600,
|
|
1883
|
+
easing: {
|
|
1884
|
+
x1: 0.77,
|
|
1885
|
+
y1: 0,
|
|
1886
|
+
x2: 0.175,
|
|
1887
|
+
y2: 1
|
|
1888
|
+
}
|
|
1893
1889
|
}
|
|
1894
1890
|
}
|
|
1895
1891
|
};
|