@ornikar/kitt-universal 31.4.1-canary.2fdbcaad37b7e76ba2442f7c56a4939349d51eb1.0 → 32.0.1
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 +14 -6
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.d.ts +1 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.d.ts.map +1 -1
- package/dist/definitions/FullscreenModal/FullscreenModalAnimation.web.d.ts.map +1 -1
- package/dist/definitions/forms/InputAddress/InputAddress.d.ts +12 -8
- package/dist/definitions/forms/InputAddress/InputAddress.d.ts.map +1 -1
- package/dist/definitions/forms/InputAddress/InputAddressLegacy.d.ts +15 -0
- package/dist/definitions/forms/InputAddress/InputAddressLegacy.d.ts.map +1 -0
- package/dist/definitions/forms/InputAddress/InputAddressOption.d.ts +5 -4
- package/dist/definitions/forms/InputAddress/InputAddressOption.d.ts.map +1 -1
- package/dist/definitions/forms/InputAddress/InputAddressOptionLegacy.d.ts +7 -0
- package/dist/definitions/forms/InputAddress/InputAddressOptionLegacy.d.ts.map +1 -0
- package/dist/definitions/index.d.ts +4 -1
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts +14 -0
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +184 -101
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +184 -101
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +119 -36
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +8 -38
- package/dist/index-node-22.17.cjs.web.js +177 -101
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +119 -37
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +8 -38
- package/dist/index-node-22.17.es.web.mjs +177 -102
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +185 -101
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +225 -148
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js +34 -30
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js +34 -30
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.js +34 -30
- package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js +34 -30
- package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-22.17.es.mjs +34 -30
- package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs +34 -30
- package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
- package/dist/linaria-themes.es.js +34 -30
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +34 -30
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/styles.css +8 -38
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -809,15 +809,15 @@ const card = {
|
|
|
809
809
|
}
|
|
810
810
|
};
|
|
811
811
|
|
|
812
|
-
const webAnimationContentDuration$
|
|
813
|
-
const webAnimationContentEasing$
|
|
812
|
+
const webAnimationContentDuration$2 = 400;
|
|
813
|
+
const webAnimationContentEasing$2 = {
|
|
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$2 = 250;
|
|
820
|
+
const webAnimationOverlayEasing$2 = {
|
|
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$2,
|
|
856
|
+
easing: webAnimationOverlayEasing$2
|
|
857
857
|
},
|
|
858
858
|
content: {
|
|
859
|
-
duration: webAnimationContentDuration$
|
|
860
|
-
easing: webAnimationContentEasing$
|
|
859
|
+
duration: webAnimationContentDuration$2,
|
|
860
|
+
easing: webAnimationContentEasing$2
|
|
861
861
|
}
|
|
862
862
|
}
|
|
863
863
|
};
|
|
@@ -913,15 +913,15 @@ const choices = {
|
|
|
913
913
|
}
|
|
914
914
|
};
|
|
915
915
|
|
|
916
|
-
const webAnimationContentDuration = 400;
|
|
917
|
-
const webAnimationContentEasing = {
|
|
916
|
+
const webAnimationContentDuration$1 = 400;
|
|
917
|
+
const webAnimationContentEasing$1 = {
|
|
918
918
|
x1: 0.77,
|
|
919
919
|
y1: 0,
|
|
920
920
|
x2: 0.175,
|
|
921
921
|
y2: 1
|
|
922
922
|
};
|
|
923
|
-
const webAnimationOverlayDuration = 250;
|
|
924
|
-
const webAnimationOverlayEasing = {
|
|
923
|
+
const webAnimationOverlayDuration$1 = 250;
|
|
924
|
+
const webAnimationOverlayEasing$1 = {
|
|
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$1,
|
|
947
|
+
easing: webAnimationOverlayEasing$1
|
|
948
948
|
},
|
|
949
949
|
content: {
|
|
950
|
-
duration: webAnimationContentDuration,
|
|
951
|
-
easing: webAnimationContentEasing
|
|
950
|
+
duration: webAnimationContentDuration$1,
|
|
951
|
+
easing: webAnimationContentEasing$1
|
|
952
952
|
}
|
|
953
953
|
}
|
|
954
954
|
};
|
|
@@ -1857,6 +1857,20 @@ 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
|
+
};
|
|
1860
1874
|
const fullscreenModal = {
|
|
1861
1875
|
header: {
|
|
1862
1876
|
height: 56
|
|
@@ -1870,22 +1884,12 @@ const fullscreenModal = {
|
|
|
1870
1884
|
},
|
|
1871
1885
|
animation: {
|
|
1872
1886
|
overlay: {
|
|
1873
|
-
duration:
|
|
1874
|
-
easing:
|
|
1875
|
-
x1: 0.42,
|
|
1876
|
-
y1: 0,
|
|
1877
|
-
x2: 1,
|
|
1878
|
-
y2: 1
|
|
1879
|
-
}
|
|
1887
|
+
duration: webAnimationOverlayDuration,
|
|
1888
|
+
easing: webAnimationOverlayEasing
|
|
1880
1889
|
},
|
|
1881
1890
|
content: {
|
|
1882
|
-
duration:
|
|
1883
|
-
easing:
|
|
1884
|
-
x1: 0.77,
|
|
1885
|
-
y1: 0,
|
|
1886
|
-
x2: 0.175,
|
|
1887
|
-
y2: 1
|
|
1888
|
-
}
|
|
1891
|
+
duration: webAnimationContentDuration,
|
|
1892
|
+
easing: webAnimationContentEasing
|
|
1889
1893
|
}
|
|
1890
1894
|
}
|
|
1891
1895
|
};
|