@ornikar/kitt-universal 9.46.2 → 9.47.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/dist/definitions/MapMarker/MapMarker.d.ts +6 -2
- package/dist/definitions/MapMarker/MapMarker.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +20 -6
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +20 -6
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +20 -6
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-browser-all.es.web.js +21 -7
- package/dist/index-browser-all.es.web.js.map +1 -1
- package/dist/index-node-14.17.cjs.js +18 -6
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/index-node-14.17.cjs.web.js +18 -6
- package/dist/index-node-14.17.cjs.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +3 -3
- package/typings/react-native-web.d.ts +4 -0
|
@@ -3685,7 +3685,7 @@ ListItem.SideContent = ListItemSideContent;
|
|
|
3685
3685
|
ListItem.SideContainer = ListItemSideContainer;
|
|
3686
3686
|
|
|
3687
3687
|
const SvgMarkerLargeinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
3688
|
-
fill: "
|
|
3688
|
+
fill: "currentColor",
|
|
3689
3689
|
viewBox: "0 0 54 56",
|
|
3690
3690
|
width: 54,
|
|
3691
3691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3755,7 +3755,7 @@ const SvgMarkerLargeinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
|
3755
3755
|
|
|
3756
3756
|
const SvgMarkerinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
3757
3757
|
viewBox: "0 0 40 39",
|
|
3758
|
-
fill: "
|
|
3758
|
+
fill: "currentColor",
|
|
3759
3759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3760
3760
|
...props,
|
|
3761
3761
|
children: [/*#__PURE__*/jsxRuntime.jsx("path", {
|
|
@@ -3874,20 +3874,32 @@ const SvgPositionMarkerinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
|
3874
3874
|
|
|
3875
3875
|
function MapMarkerSimple({
|
|
3876
3876
|
width = 40,
|
|
3877
|
-
height = 39
|
|
3877
|
+
height = 39,
|
|
3878
|
+
color = lateOceanColorPalette.lateOcean
|
|
3878
3879
|
}) {
|
|
3880
|
+
const sx = nativeBase.useSx();
|
|
3881
|
+
const styles = sx({
|
|
3882
|
+
color
|
|
3883
|
+
});
|
|
3879
3884
|
return /*#__PURE__*/jsxRuntime.jsx(SvgMarkerinline, {
|
|
3880
3885
|
width: width,
|
|
3881
|
-
height: height
|
|
3886
|
+
height: height,
|
|
3887
|
+
color: styles.color
|
|
3882
3888
|
});
|
|
3883
3889
|
}
|
|
3884
3890
|
function MapMarkerLarge({
|
|
3885
3891
|
width = 54,
|
|
3886
|
-
height = 56
|
|
3892
|
+
height = 56,
|
|
3893
|
+
color = lateOceanColorPalette.lateOcean
|
|
3887
3894
|
}) {
|
|
3895
|
+
const sx = nativeBase.useSx();
|
|
3896
|
+
const styles = sx({
|
|
3897
|
+
color
|
|
3898
|
+
});
|
|
3888
3899
|
return /*#__PURE__*/jsxRuntime.jsx(SvgMarkerLargeinline, {
|
|
3889
3900
|
width: width,
|
|
3890
|
-
height: height
|
|
3901
|
+
height: height,
|
|
3902
|
+
color: styles.color
|
|
3891
3903
|
});
|
|
3892
3904
|
}
|
|
3893
3905
|
function MapMarkerPosition({
|