@redneckz/wildless-cms-uni-blocks 0.14.115 → 0.14.116
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/bundle/bundle.umd.js +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ExchangeRateTile/CurrentLocation.js +2 -1
- package/dist/components/ExchangeRateTile/CurrentLocation.js.map +1 -1
- package/lib/components/ExchangeRateTile/CurrentLocation.js +2 -1
- package/lib/components/ExchangeRateTile/CurrentLocation.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/ExchangeRateTile/CurrentLocation.js +2 -1
- package/mobile/dist/components/ExchangeRateTile/CurrentLocation.js.map +1 -1
- package/mobile/lib/components/ExchangeRateTile/CurrentLocation.js +2 -1
- package/mobile/lib/components/ExchangeRateTile/CurrentLocation.js.map +1 -1
- package/mobile/src/components/ExchangeRateTile/CurrentLocation.tsx +9 -2
- package/package.json +1 -1
- package/src/components/ExchangeRateTile/CurrentLocation.tsx +9 -2
package/bundle/bundle.umd.js
CHANGED
|
@@ -3595,7 +3595,7 @@
|
|
|
3595
3595
|
};
|
|
3596
3596
|
|
|
3597
3597
|
const icon = { icon: 'GpsIcon' };
|
|
3598
|
-
const CurrentLocation = JSX(({ className = '', address }) => (jsxs("div", { className: `flex gap-s ${className}`, children: [jsx(RoundedIcon, { ...icon, iconBgVersion: "primary" }), jsxs("div", { className: "space-y-2xs", children: [address ? jsx(
|
|
3598
|
+
const CurrentLocation = JSX(({ className = '', address }) => (jsxs("div", { className: `flex gap-s ${className}`, children: [jsx(RoundedIcon, { ...icon, iconBgVersion: "primary" }), jsxs("div", { className: "space-y-2xs", children: [address ? (jsx(Paragraph, { size: "text-l", color: "text-primary-main", children: address })) : null, jsx(Paragraph, { size: "text-m", color: "text-secondary-text", children: "\u041A\u0443\u0440\u0441 \u0443\u043A\u0430\u0437\u0430\u043D \u0434\u043B\u044F \u0437\u0430\u0434\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0444\u0438\u0441\u0430" })] })] })));
|
|
3599
3599
|
|
|
3600
3600
|
const roundTo = (value, precision = 2) => {
|
|
3601
3601
|
const factor = 10 ** precision;
|
|
@@ -5797,7 +5797,7 @@
|
|
|
5797
5797
|
return (jsx("div", { className: "flex items-end absolute bottom-0 right-0 h-full pointer-events-none", children: jsx(LikeControl, { className: "rounded-tl-3xl sticky bottom-0 pointer-events-auto" }) }));
|
|
5798
5798
|
}
|
|
5799
5799
|
|
|
5800
|
-
const packageVersion = "0.14.
|
|
5800
|
+
const packageVersion = "0.14.115";
|
|
5801
5801
|
|
|
5802
5802
|
exports.Blocks = Blocks;
|
|
5803
5803
|
exports.ContentPage = ContentPage;
|