@ornikar/kitt-universal 26.3.1-canary.e22389b8233ad973bed14e560f86aaaf62ad890a.0 → 26.3.1-canary.fcd36361858696a81c52c40672737eeca6e22f42.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 +8 -7
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts.map +1 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.web.d.ts.map +1 -1
- package/dist/definitions/FullscreenModal/FullscreenModalAnimation.web.d.ts.map +1 -1
- package/dist/definitions/GoogleMapsAutocompleteProvider/GoogleMapsAutocompleteProvider.d.ts.map +1 -1
- package/dist/definitions/Picker/Picker.web.d.ts.map +1 -1
- package/dist/definitions/TabBar/TabBar.d.ts.map +1 -1
- package/dist/definitions/TimePicker/TimePicker.web.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/cardModal.d.ts +21 -4
- package/dist/definitions/themes/late-ocean/cardModal.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/dialogModal.d.ts +21 -4
- package/dist/definitions/themes/late-ocean/dialogModal.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts +21 -4
- package/dist/definitions/themes/late-ocean/fullscreenModal.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/shadows.d.ts +4 -2
- package/dist/definitions/themes/late-ocean/shadows.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/skeleton.d.ts +2 -1
- package/dist/definitions/themes/late-ocean/skeleton.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +87 -26
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +87 -26
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +86 -25
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +2 -2
- package/dist/index-node-22.17.cjs.web.js +53 -19
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +86 -25
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +2 -2
- package/dist/index-node-22.17.es.web.mjs +53 -19
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +84 -61
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +63 -31
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js +36 -6
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js +36 -6
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.js +36 -6
- package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js +36 -6
- package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-22.17.es.mjs +36 -6
- package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs +36 -6
- package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
- package/dist/linaria-themes.es.js +36 -6
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +36 -6
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/styles.css +2 -2
- package/dist/tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -791,9 +791,19 @@ const card = {
|
|
|
791
791
|
};
|
|
792
792
|
|
|
793
793
|
const webAnimationContentDuration$2 = 400;
|
|
794
|
-
const webAnimationContentEasing$2 =
|
|
794
|
+
const webAnimationContentEasing$2 = {
|
|
795
|
+
x1: 0.77,
|
|
796
|
+
y1: 0,
|
|
797
|
+
x2: 0.175,
|
|
798
|
+
y2: 1
|
|
799
|
+
};
|
|
795
800
|
const webAnimationOverlayDuration$2 = 250;
|
|
796
|
-
const webAnimationOverlayEasing$2 =
|
|
801
|
+
const webAnimationOverlayEasing$2 = {
|
|
802
|
+
x1: 0.42,
|
|
803
|
+
y1: 0,
|
|
804
|
+
x2: 1,
|
|
805
|
+
y2: 1
|
|
806
|
+
};
|
|
797
807
|
const maxWidth = 540;
|
|
798
808
|
const overlayHorizontalPadding = 24;
|
|
799
809
|
const cardModal = {
|
|
@@ -867,9 +877,19 @@ const choices = {
|
|
|
867
877
|
};
|
|
868
878
|
|
|
869
879
|
const webAnimationContentDuration$1 = 400;
|
|
870
|
-
const webAnimationContentEasing$1 =
|
|
880
|
+
const webAnimationContentEasing$1 = {
|
|
881
|
+
x1: 0.77,
|
|
882
|
+
y1: 0,
|
|
883
|
+
x2: 0.175,
|
|
884
|
+
y2: 1
|
|
885
|
+
};
|
|
871
886
|
const webAnimationOverlayDuration$1 = 250;
|
|
872
|
-
const webAnimationOverlayEasing$1 =
|
|
887
|
+
const webAnimationOverlayEasing$1 = {
|
|
888
|
+
x1: 0.42,
|
|
889
|
+
y1: 0,
|
|
890
|
+
x2: 1,
|
|
891
|
+
y2: 1
|
|
892
|
+
};
|
|
873
893
|
const dialogModal = {
|
|
874
894
|
borderRadius: 20,
|
|
875
895
|
maxWidth: 540,
|
|
@@ -1795,9 +1815,19 @@ const forms = {
|
|
|
1795
1815
|
};
|
|
1796
1816
|
|
|
1797
1817
|
const webAnimationContentDuration = 600;
|
|
1798
|
-
const webAnimationContentEasing =
|
|
1818
|
+
const webAnimationContentEasing = {
|
|
1819
|
+
x1: 0.77,
|
|
1820
|
+
y1: 0,
|
|
1821
|
+
x2: 0.175,
|
|
1822
|
+
y2: 1
|
|
1823
|
+
};
|
|
1799
1824
|
const webAnimationOverlayDuration = 250;
|
|
1800
|
-
const webAnimationOverlayEasing =
|
|
1825
|
+
const webAnimationOverlayEasing = {
|
|
1826
|
+
x1: 0.42,
|
|
1827
|
+
y1: 0,
|
|
1828
|
+
x2: 1,
|
|
1829
|
+
y2: 1
|
|
1830
|
+
};
|
|
1801
1831
|
const fullscreenModal = {
|
|
1802
1832
|
header: {
|
|
1803
1833
|
height: 56
|