@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
|
@@ -805,15 +805,15 @@ const card = {
|
|
|
805
805
|
}
|
|
806
806
|
};
|
|
807
807
|
|
|
808
|
-
const webAnimationContentDuration$
|
|
809
|
-
const webAnimationContentEasing$
|
|
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$
|
|
816
|
-
const webAnimationOverlayEasing$
|
|
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$
|
|
852
|
-
easing: webAnimationOverlayEasing$
|
|
851
|
+
duration: webAnimationOverlayDuration$1,
|
|
852
|
+
easing: webAnimationOverlayEasing$1
|
|
853
853
|
},
|
|
854
854
|
content: {
|
|
855
|
-
duration: webAnimationContentDuration$
|
|
856
|
-
easing: webAnimationContentEasing$
|
|
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
|
|
913
|
-
const webAnimationContentEasing
|
|
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
|
|
920
|
-
const webAnimationOverlayEasing
|
|
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
|
|
943
|
-
easing: webAnimationOverlayEasing
|
|
942
|
+
duration: webAnimationOverlayDuration,
|
|
943
|
+
easing: webAnimationOverlayEasing
|
|
944
944
|
},
|
|
945
945
|
content: {
|
|
946
|
-
duration: webAnimationContentDuration
|
|
947
|
-
easing: webAnimationContentEasing
|
|
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:
|
|
1884
|
-
easing:
|
|
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:
|
|
1888
|
-
easing:
|
|
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
|
};
|