@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
|
@@ -792,9 +792,19 @@ const card = {
|
|
|
792
792
|
};
|
|
793
793
|
|
|
794
794
|
const webAnimationContentDuration$2 = 400;
|
|
795
|
-
const webAnimationContentEasing$2 =
|
|
795
|
+
const webAnimationContentEasing$2 = {
|
|
796
|
+
x1: 0.77,
|
|
797
|
+
y1: 0,
|
|
798
|
+
x2: 0.175,
|
|
799
|
+
y2: 1
|
|
800
|
+
};
|
|
796
801
|
const webAnimationOverlayDuration$2 = 250;
|
|
797
|
-
const webAnimationOverlayEasing$2 =
|
|
802
|
+
const webAnimationOverlayEasing$2 = {
|
|
803
|
+
x1: 0.42,
|
|
804
|
+
y1: 0,
|
|
805
|
+
x2: 1,
|
|
806
|
+
y2: 1
|
|
807
|
+
};
|
|
798
808
|
const maxWidth = 540;
|
|
799
809
|
const overlayHorizontalPadding = 24;
|
|
800
810
|
const cardModal = {
|
|
@@ -868,9 +878,19 @@ const choices = {
|
|
|
868
878
|
};
|
|
869
879
|
|
|
870
880
|
const webAnimationContentDuration$1 = 400;
|
|
871
|
-
const webAnimationContentEasing$1 =
|
|
881
|
+
const webAnimationContentEasing$1 = {
|
|
882
|
+
x1: 0.77,
|
|
883
|
+
y1: 0,
|
|
884
|
+
x2: 0.175,
|
|
885
|
+
y2: 1
|
|
886
|
+
};
|
|
872
887
|
const webAnimationOverlayDuration$1 = 250;
|
|
873
|
-
const webAnimationOverlayEasing$1 =
|
|
888
|
+
const webAnimationOverlayEasing$1 = {
|
|
889
|
+
x1: 0.42,
|
|
890
|
+
y1: 0,
|
|
891
|
+
x2: 1,
|
|
892
|
+
y2: 1
|
|
893
|
+
};
|
|
874
894
|
const dialogModal = {
|
|
875
895
|
borderRadius: 20,
|
|
876
896
|
maxWidth: 540,
|
|
@@ -1796,9 +1816,19 @@ const forms = {
|
|
|
1796
1816
|
};
|
|
1797
1817
|
|
|
1798
1818
|
const webAnimationContentDuration = 600;
|
|
1799
|
-
const webAnimationContentEasing =
|
|
1819
|
+
const webAnimationContentEasing = {
|
|
1820
|
+
x1: 0.77,
|
|
1821
|
+
y1: 0,
|
|
1822
|
+
x2: 0.175,
|
|
1823
|
+
y2: 1
|
|
1824
|
+
};
|
|
1800
1825
|
const webAnimationOverlayDuration = 250;
|
|
1801
|
-
const webAnimationOverlayEasing =
|
|
1826
|
+
const webAnimationOverlayEasing = {
|
|
1827
|
+
x1: 0.42,
|
|
1828
|
+
y1: 0,
|
|
1829
|
+
x2: 1,
|
|
1830
|
+
y2: 1
|
|
1831
|
+
};
|
|
1802
1832
|
const fullscreenModal = {
|
|
1803
1833
|
header: {
|
|
1804
1834
|
height: 56
|