@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
|
@@ -4636,7 +4636,7 @@ ListItem.SideContainer = ListItemSideContainer;
|
|
|
4636
4636
|
|
|
4637
4637
|
var SvgMarkerLargeinline = function SvgMarkerLargeinline(props) {
|
|
4638
4638
|
return /*#__PURE__*/jsxs("svg", _objectSpread(_objectSpread({
|
|
4639
|
-
fill: "
|
|
4639
|
+
fill: "currentColor",
|
|
4640
4640
|
viewBox: "0 0 54 56",
|
|
4641
4641
|
width: 54,
|
|
4642
4642
|
xmlns: "http://www.w3.org/2000/svg"
|
|
@@ -4708,7 +4708,7 @@ var SvgMarkerLargeinline = function SvgMarkerLargeinline(props) {
|
|
|
4708
4708
|
var SvgMarkerinline = function SvgMarkerinline(props) {
|
|
4709
4709
|
return /*#__PURE__*/jsxs("svg", _objectSpread(_objectSpread({
|
|
4710
4710
|
viewBox: "0 0 40 39",
|
|
4711
|
-
fill: "
|
|
4711
|
+
fill: "currentColor",
|
|
4712
4712
|
xmlns: "http://www.w3.org/2000/svg"
|
|
4713
4713
|
}, props), {}, {
|
|
4714
4714
|
children: [/*#__PURE__*/jsx("path", {
|
|
@@ -4832,20 +4832,34 @@ function MapMarkerSimple(_ref) {
|
|
|
4832
4832
|
var _ref$width = _ref.width,
|
|
4833
4833
|
width = _ref$width === void 0 ? 40 : _ref$width,
|
|
4834
4834
|
_ref$height = _ref.height,
|
|
4835
|
-
height = _ref$height === void 0 ? 39 : _ref$height
|
|
4835
|
+
height = _ref$height === void 0 ? 39 : _ref$height,
|
|
4836
|
+
_ref$color = _ref.color,
|
|
4837
|
+
color = _ref$color === void 0 ? lateOceanColorPalette.lateOcean : _ref$color;
|
|
4838
|
+
var sx = useSx();
|
|
4839
|
+
var styles = sx({
|
|
4840
|
+
color: color
|
|
4841
|
+
});
|
|
4836
4842
|
return /*#__PURE__*/jsx(SvgMarkerinline, {
|
|
4837
4843
|
width: width,
|
|
4838
|
-
height: height
|
|
4844
|
+
height: height,
|
|
4845
|
+
color: styles.color
|
|
4839
4846
|
});
|
|
4840
4847
|
}
|
|
4841
4848
|
function MapMarkerLarge(_ref2) {
|
|
4842
4849
|
var _ref2$width = _ref2.width,
|
|
4843
4850
|
width = _ref2$width === void 0 ? 54 : _ref2$width,
|
|
4844
4851
|
_ref2$height = _ref2.height,
|
|
4845
|
-
height = _ref2$height === void 0 ? 56 : _ref2$height
|
|
4852
|
+
height = _ref2$height === void 0 ? 56 : _ref2$height,
|
|
4853
|
+
_ref2$color = _ref2.color,
|
|
4854
|
+
color = _ref2$color === void 0 ? lateOceanColorPalette.lateOcean : _ref2$color;
|
|
4855
|
+
var sx = useSx();
|
|
4856
|
+
var styles = sx({
|
|
4857
|
+
color: color
|
|
4858
|
+
});
|
|
4846
4859
|
return /*#__PURE__*/jsx(SvgMarkerLargeinline, {
|
|
4847
4860
|
width: width,
|
|
4848
|
-
height: height
|
|
4861
|
+
height: height,
|
|
4862
|
+
color: styles.color
|
|
4849
4863
|
});
|
|
4850
4864
|
}
|
|
4851
4865
|
function MapMarkerPosition(_ref3) {
|