@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
|
@@ -805,15 +805,15 @@ const card = {
|
|
|
805
805
|
}
|
|
806
806
|
};
|
|
807
807
|
|
|
808
|
-
const webAnimationContentDuration$
|
|
809
|
-
const webAnimationContentEasing$
|
|
808
|
+
const webAnimationContentDuration$2 = 400;
|
|
809
|
+
const webAnimationContentEasing$2 = {
|
|
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$2 = 250;
|
|
816
|
+
const webAnimationOverlayEasing$2 = {
|
|
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$2,
|
|
852
|
+
easing: webAnimationOverlayEasing$2
|
|
853
853
|
},
|
|
854
854
|
content: {
|
|
855
|
-
duration: webAnimationContentDuration$
|
|
856
|
-
easing: webAnimationContentEasing$
|
|
855
|
+
duration: webAnimationContentDuration$2,
|
|
856
|
+
easing: webAnimationContentEasing$2
|
|
857
857
|
}
|
|
858
858
|
}
|
|
859
859
|
};
|
|
@@ -909,15 +909,15 @@ const choices = {
|
|
|
909
909
|
}
|
|
910
910
|
};
|
|
911
911
|
|
|
912
|
-
const webAnimationContentDuration = 400;
|
|
913
|
-
const webAnimationContentEasing = {
|
|
912
|
+
const webAnimationContentDuration$1 = 400;
|
|
913
|
+
const webAnimationContentEasing$1 = {
|
|
914
914
|
x1: 0.77,
|
|
915
915
|
y1: 0,
|
|
916
916
|
x2: 0.175,
|
|
917
917
|
y2: 1
|
|
918
918
|
};
|
|
919
|
-
const webAnimationOverlayDuration = 250;
|
|
920
|
-
const webAnimationOverlayEasing = {
|
|
919
|
+
const webAnimationOverlayDuration$1 = 250;
|
|
920
|
+
const webAnimationOverlayEasing$1 = {
|
|
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$1,
|
|
943
|
+
easing: webAnimationOverlayEasing$1
|
|
944
944
|
},
|
|
945
945
|
content: {
|
|
946
|
-
duration: webAnimationContentDuration,
|
|
947
|
-
easing: webAnimationContentEasing
|
|
946
|
+
duration: webAnimationContentDuration$1,
|
|
947
|
+
easing: webAnimationContentEasing$1
|
|
948
948
|
}
|
|
949
949
|
}
|
|
950
950
|
};
|
|
@@ -1853,6 +1853,20 @@ 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
|
+
};
|
|
1856
1870
|
const fullscreenModal = {
|
|
1857
1871
|
header: {
|
|
1858
1872
|
height: 56
|
|
@@ -1866,22 +1880,12 @@ const fullscreenModal = {
|
|
|
1866
1880
|
},
|
|
1867
1881
|
animation: {
|
|
1868
1882
|
overlay: {
|
|
1869
|
-
duration:
|
|
1870
|
-
easing:
|
|
1871
|
-
x1: 0.42,
|
|
1872
|
-
y1: 0,
|
|
1873
|
-
x2: 1,
|
|
1874
|
-
y2: 1
|
|
1875
|
-
}
|
|
1883
|
+
duration: webAnimationOverlayDuration,
|
|
1884
|
+
easing: webAnimationOverlayEasing
|
|
1876
1885
|
},
|
|
1877
1886
|
content: {
|
|
1878
|
-
duration:
|
|
1879
|
-
easing:
|
|
1880
|
-
x1: 0.77,
|
|
1881
|
-
y1: 0,
|
|
1882
|
-
x2: 0.175,
|
|
1883
|
-
y2: 1
|
|
1884
|
-
}
|
|
1887
|
+
duration: webAnimationContentDuration,
|
|
1888
|
+
easing: webAnimationContentEasing
|
|
1885
1889
|
}
|
|
1886
1890
|
}
|
|
1887
1891
|
};
|