@omnic/widget-locations 1.0.29 → 1.0.30

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.
@@ -1,4 +1,4 @@
1
- const o = "All points", t = "Parcel lockers", c = "Post offices", s = {
1
+ const o = "All points", t = "Post offices", c = "Parcel lockers", s = {
2
2
  all: o,
3
3
  pick_point: t,
4
4
  post_office: c
@@ -0,0 +1,13 @@
1
+ const n = "Pay on location", t = "Sending returns", e = "Sending a parcel", s = "Send", i = {
2
+ payment: n,
3
+ sending_returns: t,
4
+ shipping: e,
5
+ title: s
6
+ };
7
+ export {
8
+ i as default,
9
+ n as payment,
10
+ t as sending_returns,
11
+ e as shipping,
12
+ s as title
13
+ };
@@ -0,0 +1,7 @@
1
+ const o = "Select location", e = {
2
+ choose_from_map: o
3
+ };
4
+ export {
5
+ o as choose_from_map,
6
+ e as default
7
+ };
@@ -0,0 +1,13 @@
1
+ const n = "Оплата на точке", t = "Отправка возвратов", s = "Отправка посылки", e = "Отправить", i = {
2
+ payment: n,
3
+ sending_returns: t,
4
+ shipping: s,
5
+ title: e
6
+ };
7
+ export {
8
+ i as default,
9
+ n as payment,
10
+ t as sending_returns,
11
+ s as shipping,
12
+ e as title
13
+ };
@@ -1,4 +1,4 @@
1
- const o = "Все точки", t = "Постаматы", c = "Отделения", p = {
1
+ const o = "Все точки", t = "Отделения", c = "Постаматы", p = {
2
2
  all: o,
3
3
  pick_point: t,
4
4
  post_office: c
@@ -0,0 +1,7 @@
1
+ const o = "Выберете локацию", s = {
2
+ choose_from_map: o
3
+ };
4
+ export {
5
+ o as choose_from_map,
6
+ s as default
7
+ };
@@ -1,6 +1,7 @@
1
1
  import { FC } from "react";
2
2
  import { CourierPoint } from '../../types/points';
3
3
  type CourierBalloonProps = Partial<CourierPoint> & {
4
+ SSR?: boolean;
4
5
  variant: "error" | "default";
5
6
  className?: string;
6
7
  onDetails?: () => void;
@@ -1,6 +1,7 @@
1
1
  import { FC } from "react";
2
2
  import { LocationPoint } from '../../types/points';
3
3
  type LocationBalloonProps = Partial<LocationPoint> & {
4
+ SSR?: boolean;
4
5
  className?: string;
5
6
  onSubmit?: () => void;
6
7
  onDetails?: () => void;