@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
|
@@ -4612,7 +4612,7 @@ ListItem.SideContent = ListItemSideContent;
|
|
|
4612
4612
|
ListItem.SideContainer = ListItemSideContainer;
|
|
4613
4613
|
|
|
4614
4614
|
const SvgMarkerLargeinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
4615
|
-
fill: "
|
|
4615
|
+
fill: "currentColor",
|
|
4616
4616
|
viewBox: "0 0 54 56",
|
|
4617
4617
|
width: 54,
|
|
4618
4618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4682,7 +4682,7 @@ const SvgMarkerLargeinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
|
4682
4682
|
|
|
4683
4683
|
const SvgMarkerinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
4684
4684
|
viewBox: "0 0 40 39",
|
|
4685
|
-
fill: "
|
|
4685
|
+
fill: "currentColor",
|
|
4686
4686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4687
4687
|
...props,
|
|
4688
4688
|
children: [/*#__PURE__*/jsxRuntime.jsx("path", {
|
|
@@ -4801,20 +4801,32 @@ const SvgPositionMarkerinline = props => /*#__PURE__*/jsxRuntime.jsxs("svg", {
|
|
|
4801
4801
|
|
|
4802
4802
|
function MapMarkerSimple({
|
|
4803
4803
|
width = 40,
|
|
4804
|
-
height = 39
|
|
4804
|
+
height = 39,
|
|
4805
|
+
color = lateOceanColorPalette.lateOcean
|
|
4805
4806
|
}) {
|
|
4807
|
+
const sx = nativeBase.useSx();
|
|
4808
|
+
const styles = sx({
|
|
4809
|
+
color
|
|
4810
|
+
});
|
|
4806
4811
|
return /*#__PURE__*/jsxRuntime.jsx(SvgMarkerinline, {
|
|
4807
4812
|
width: width,
|
|
4808
|
-
height: height
|
|
4813
|
+
height: height,
|
|
4814
|
+
color: styles.color
|
|
4809
4815
|
});
|
|
4810
4816
|
}
|
|
4811
4817
|
function MapMarkerLarge({
|
|
4812
4818
|
width = 54,
|
|
4813
|
-
height = 56
|
|
4819
|
+
height = 56,
|
|
4820
|
+
color = lateOceanColorPalette.lateOcean
|
|
4814
4821
|
}) {
|
|
4822
|
+
const sx = nativeBase.useSx();
|
|
4823
|
+
const styles = sx({
|
|
4824
|
+
color
|
|
4825
|
+
});
|
|
4815
4826
|
return /*#__PURE__*/jsxRuntime.jsx(SvgMarkerLargeinline, {
|
|
4816
4827
|
width: width,
|
|
4817
|
-
height: height
|
|
4828
|
+
height: height,
|
|
4829
|
+
color: styles.color
|
|
4818
4830
|
});
|
|
4819
4831
|
}
|
|
4820
4832
|
function MapMarkerPosition({
|