ire-preview 3.2.52 → 3.2.53
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/lib.es.js
CHANGED
|
@@ -6129,7 +6129,7 @@ const Logo = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["render", _sfc_render$a]
|
|
|
6129
6129
|
createTextVNode(toDisplayString(unref(getPrice)(Number((Pi = Be.flat) == null ? void 0 : Pi.offer_price))) + " ", 1),
|
|
6130
6130
|
createElementVNode("span", null, toDisplayString(unref(currencySymbol)()), 1)
|
|
6131
6131
|
])
|
|
6132
|
-
])) : Number((Ni = Be.flat) == null ? void 0 : Ni.
|
|
6132
|
+
])) : Number((Ni = Be.flat) == null ? void 0 : Ni.price) > 0 ? (openBlock(), createElementBlock("div", _hoisted_12$1, [
|
|
6133
6133
|
createTextVNode(toDisplayString(unref(getPrice)(Number((Mi = Be.flat) == null ? void 0 : Mi.price))) + " ", 1),
|
|
6134
6134
|
createElementVNode("span", null, toDisplayString(unref(currencySymbol)()), 1)
|
|
6135
6135
|
])) : (openBlock(), createElementBlock("div", _hoisted_13$1, toDisplayString(unref(tr)("available")), 1))
|
|
@@ -7391,22 +7391,25 @@ const MagnifyIcon = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_re
|
|
|
7391
7391
|
const _e = useGlobalStore(), { shortcodeData: ke } = storeToRefs(_e), $e = [
|
|
7392
7392
|
{ title: tr("any price"), value: "0-Infinity" },
|
|
7393
7393
|
{
|
|
7394
|
-
title: `${currencySymbol()} 0 - ${currencySymbol()}
|
|
7394
|
+
title: `${currencySymbol()} 0 - ${currencySymbol()} ${getPrice(5e4)}`,
|
|
7395
7395
|
value: "0-50000"
|
|
7396
7396
|
},
|
|
7397
7397
|
{
|
|
7398
|
-
title: `${currencySymbol()}
|
|
7398
|
+
title: `${currencySymbol()} ${getPrice(5e4)} - ${currencySymbol()} ${getPrice(1e5)}`,
|
|
7399
7399
|
value: "50000-100000"
|
|
7400
7400
|
},
|
|
7401
7401
|
{
|
|
7402
|
-
title: `${currencySymbol()}
|
|
7402
|
+
title: `${currencySymbol()} ${getPrice(1e5)} - ${currencySymbol()} ${getPrice(2e5)}`,
|
|
7403
7403
|
value: "100000-200000"
|
|
7404
7404
|
},
|
|
7405
7405
|
{
|
|
7406
|
-
title: `${currencySymbol()}
|
|
7406
|
+
title: `${currencySymbol()} ${getPrice(2e5)} - ${currencySymbol()} ${getPrice(5e5)}`,
|
|
7407
7407
|
value: "200000-500000"
|
|
7408
7408
|
},
|
|
7409
|
-
{
|
|
7409
|
+
{
|
|
7410
|
+
title: `${currencySymbol()} ${getPrice(5e5)}+`,
|
|
7411
|
+
value: "500000-Infinity"
|
|
7412
|
+
}
|
|
7410
7413
|
], Ne = [
|
|
7411
7414
|
{ title: tr("any area"), value: "0-Infinity" },
|
|
7412
7415
|
{
|
|
@@ -8,9 +8,9 @@ type __VLS_Props = {
|
|
|
8
8
|
projectMeta: ProjectMeta[] | undefined;
|
|
9
9
|
};
|
|
10
10
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
-
changeComponent: (flowComponent: "" | "
|
|
11
|
+
changeComponent: (flowComponent: "" | "flat" | "floor" | "block" | "tooltip", hoveredData: any) => any;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
-
onChangeComponent?: ((flowComponent: "" | "
|
|
13
|
+
onChangeComponent?: ((flowComponent: "" | "flat" | "floor" | "block" | "tooltip", hoveredData: any) => any) | undefined;
|
|
14
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
15
|
svgRef: HTMLDivElement;
|
|
16
16
|
}, HTMLDivElement>;
|
|
@@ -3,10 +3,10 @@ type __VLS_Props = {
|
|
|
3
3
|
flats: FlatItem[];
|
|
4
4
|
};
|
|
5
5
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
|
-
sortColumn: (field: string, sortOrder: "" | "asc" | "desc") => any;
|
|
7
6
|
openFlat: (flatId: string) => any;
|
|
7
|
+
sortColumn: (field: string, sortOrder: "" | "desc" | "asc") => any;
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
-
onSortColumn?: ((field: string, sortOrder: "" | "asc" | "desc") => any) | undefined;
|
|
10
9
|
onOpenFlat?: ((flatId: string) => any) | undefined;
|
|
10
|
+
onSortColumn?: ((field: string, sortOrder: "" | "desc" | "asc") => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -2,8 +2,8 @@ type __VLS_Props = {
|
|
|
2
2
|
data: any;
|
|
3
3
|
};
|
|
4
4
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
5
|
-
sortColumn: (field: string, sortOrder: "" | "
|
|
5
|
+
sortColumn: (field: string, sortOrder: "" | "desc" | "asc") => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
7
|
-
onSortColumn?: ((field: string, sortOrder: "" | "
|
|
7
|
+
onSortColumn?: ((field: string, sortOrder: "" | "desc" | "asc") => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
9
|
export default _default;
|