ire-preview 3.2.5 → 3.2.6
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 +67 -67
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/index.d.ts +0 -6
- package/dist/src/components/demo/form/Input.vue.d.ts +0 -30
- package/dist/src/components/demo/form/PreviewSelect.vue.d.ts +0 -21
- package/dist/src/components/demo/layout/MouseTracker.vue.d.ts +0 -21
- package/dist/src/components/demo/layout/PreviewLayout.vue.d.ts +0 -26
- package/dist/src/components/demo/layout/ShortcodeWrapper.vue.d.ts +0 -17
- package/dist/src/components/demo/preview/ActionModal.vue.d.ts +0 -6
- package/dist/src/components/demo/preview/BlockPreview.vue.d.ts +0 -15
- package/dist/src/components/demo/preview/FlatPreview.vue.d.ts +0 -11
- package/dist/src/components/demo/preview/FloorPreview.vue.d.ts +0 -16
- package/dist/src/components/demo/preview/Preview.vue.d.ts +0 -2
- package/dist/src/components/demo/preview/ProjectPreview.vue.d.ts +0 -17
- package/dist/src/components/demo/preview/tooltips/Tooltip_1.vue.d.ts +0 -6
- package/dist/src/components/demo/preview/tooltips/Tooltip_2.vue.d.ts +0 -7
- package/dist/src/components/demo/preview/tooltips/Tooltip_3.vue.d.ts +0 -6
- package/dist/src/components/demo/uiComponents/BackButton.vue.d.ts +0 -2
- package/dist/src/components/demo/uiComponents/BaseEditor.vue.d.ts +0 -5
- package/dist/src/components/demo/uiComponents/Button.vue.d.ts +0 -23
- package/dist/src/components/demo/uiComponents/Filters.vue.d.ts +0 -12
- package/dist/src/components/demo/uiComponents/FlatCard.vue.d.ts +0 -10
- package/dist/src/components/demo/uiComponents/FlatModalImage.vue.d.ts +0 -6
- package/dist/src/components/demo/uiComponents/FlatPreviewKeyValue.vue.d.ts +0 -22
- package/dist/src/components/demo/uiComponents/FlatsTable.vue.d.ts +0 -12
- package/dist/src/components/demo/uiComponents/PreviewModal.vue.d.ts +0 -21
- package/dist/src/components/demo/uiComponents/ReservationForm.vue.d.ts +0 -10
- package/dist/src/components/demo/uiComponents/table/Column.vue.d.ts +0 -2
- package/dist/src/components/demo/uiComponents/table/Table.vue.d.ts +0 -9
- package/dist/src/components/demo/uiComponents/table/TableCol.vue.d.ts +0 -6
- package/dist/src/components/icons/ArrowRight.vue.d.ts +0 -2
- package/dist/src/components/icons/ClipBoard.vue.d.ts +0 -2
- package/dist/src/components/icons/Close.vue.d.ts +0 -2
- package/dist/src/components/icons/ContactIcon.vue.d.ts +0 -2
- package/dist/src/components/icons/Correct.vue.d.ts +0 -2
- package/dist/src/components/icons/Cube3d.vue.d.ts +0 -2
- package/dist/src/components/icons/DownloadIcon.vue.d.ts +0 -2
- package/dist/src/components/icons/FlatIcon.vue.d.ts +0 -2
- package/dist/src/components/icons/GridIcon.vue.d.ts +0 -2
- package/dist/src/components/icons/Logo.vue.d.ts +0 -2
- package/dist/src/components/icons/MagnifyIcon.vue.d.ts +0 -2
- package/dist/src/components/icons/Placeholder.vue.d.ts +0 -2
- package/dist/src/components/icons/SortingArrow.vue.d.ts +0 -2
- package/dist/src/components/icons/SortingArrowAsc.vue.d.ts +0 -2
- package/dist/src/components/icons/TableIcon.vue.d.ts +0 -2
- package/dist/src/composable/helper.d.ts +0 -10
- package/dist/src/composable/useScroll.d.ts +0 -3
- package/dist/src/interfaces/components.d.ts +0 -218
- package/dist/src/interfaces/index.d.ts +0 -11
- package/dist/src/main.d.ts +0 -5
- package/dist/src/shortcodes/FlatsList.vue.d.ts +0 -11
- package/dist/src/shortcodes/Project.vue.d.ts +0 -6
- package/dist/src/shortcodes/index.d.ts +0 -2
- package/dist/src/store/useGlobal.d.ts +0 -71
- package/dist/src/types/DemoTypes.d.ts +0 -235
- package/dist/src/utils/axios.d.ts +0 -2
- package/dist/styles.d.ts +0 -1
|
@@ -1,235 +0,0 @@
|
|
|
1
|
-
export interface constants {
|
|
2
|
-
CIRCLE_RADIUS: number;
|
|
3
|
-
HOVER_CIRCLE_RADIUS: number;
|
|
4
|
-
PATH_COLOR: string;
|
|
5
|
-
SELECTED_PATH_COLOR: string;
|
|
6
|
-
NON_SELECTED_PATH_COLOR: string;
|
|
7
|
-
CIRCLE_COLOR: string;
|
|
8
|
-
CIRCLE_HOVER_COLOR: string;
|
|
9
|
-
PREVIEW_PATH_COLOR: string;
|
|
10
|
-
PREVIEW_PATH_HOVER_COLOR: string;
|
|
11
|
-
PREVIEW_RESERVED_COLOR: string;
|
|
12
|
-
PREVIEW_SOLD_COLOR: string;
|
|
13
|
-
PREVIEW_STROKE_COLOR: string;
|
|
14
|
-
PREVIEW_STROKE_WIDTH: number;
|
|
15
|
-
}
|
|
16
|
-
interface Compat {
|
|
17
|
-
item: string;
|
|
18
|
-
meta: string;
|
|
19
|
-
}
|
|
20
|
-
interface Sizes {
|
|
21
|
-
thumbnail: Thumbnail;
|
|
22
|
-
medium: Thumbnail;
|
|
23
|
-
large: Thumbnail;
|
|
24
|
-
full: Thumbnail;
|
|
25
|
-
}
|
|
26
|
-
interface Thumbnail {
|
|
27
|
-
height: number;
|
|
28
|
-
width: number;
|
|
29
|
-
url: string;
|
|
30
|
-
orientation: string;
|
|
31
|
-
}
|
|
32
|
-
interface Nonces {
|
|
33
|
-
update: string;
|
|
34
|
-
delete: string;
|
|
35
|
-
edit: string;
|
|
36
|
-
}
|
|
37
|
-
export interface imageInterface {
|
|
38
|
-
id: number;
|
|
39
|
-
title: string;
|
|
40
|
-
filename: string;
|
|
41
|
-
url: string;
|
|
42
|
-
link: string;
|
|
43
|
-
alt: string;
|
|
44
|
-
author: string;
|
|
45
|
-
description: string;
|
|
46
|
-
caption: string;
|
|
47
|
-
name: string;
|
|
48
|
-
status: string;
|
|
49
|
-
uploadedTo: number;
|
|
50
|
-
date: string;
|
|
51
|
-
modified: string;
|
|
52
|
-
menuOrder: number;
|
|
53
|
-
mime: string;
|
|
54
|
-
type: string;
|
|
55
|
-
subtype: string;
|
|
56
|
-
icon: string;
|
|
57
|
-
dateFormatted: string;
|
|
58
|
-
nonces: Nonces;
|
|
59
|
-
editLink: string;
|
|
60
|
-
meta: boolean;
|
|
61
|
-
authorName: string;
|
|
62
|
-
authorLink: string;
|
|
63
|
-
filesizeInBytes: number;
|
|
64
|
-
filesizeHumanReadable: string;
|
|
65
|
-
context: string;
|
|
66
|
-
originalImageURL: string;
|
|
67
|
-
originalImageName: string;
|
|
68
|
-
height: number;
|
|
69
|
-
width: number;
|
|
70
|
-
orientation: string;
|
|
71
|
-
sizes: Sizes;
|
|
72
|
-
compat: Compat;
|
|
73
|
-
}
|
|
74
|
-
export interface ProjectInterface {
|
|
75
|
-
id: string;
|
|
76
|
-
title: string;
|
|
77
|
-
svg: string;
|
|
78
|
-
project_image: imageInterface[];
|
|
79
|
-
slug: string;
|
|
80
|
-
polygon_data: PolygonDataCollection[];
|
|
81
|
-
created_at: string;
|
|
82
|
-
updated_at: string;
|
|
83
|
-
}
|
|
84
|
-
export interface FloorInterface {
|
|
85
|
-
data: FloorItem[];
|
|
86
|
-
page: number;
|
|
87
|
-
per_page: number;
|
|
88
|
-
total: number;
|
|
89
|
-
}
|
|
90
|
-
export interface FloorItem {
|
|
91
|
-
id: string;
|
|
92
|
-
title: string;
|
|
93
|
-
floor_number: number;
|
|
94
|
-
conf: "reserved" | "sold";
|
|
95
|
-
floor_image: imageInterface[];
|
|
96
|
-
svg: string;
|
|
97
|
-
project_id: number;
|
|
98
|
-
block_id: number;
|
|
99
|
-
polygon_data: PolygonDataCollection[];
|
|
100
|
-
img_contain: boolean;
|
|
101
|
-
counts?: {
|
|
102
|
-
available?: number;
|
|
103
|
-
reserved?: number;
|
|
104
|
-
sold?: number;
|
|
105
|
-
minimum_price?: number;
|
|
106
|
-
};
|
|
107
|
-
flats?: FlatItem[];
|
|
108
|
-
created_at: string;
|
|
109
|
-
updated_at: string;
|
|
110
|
-
}
|
|
111
|
-
export interface BlockInterface {
|
|
112
|
-
data: FloorItem[];
|
|
113
|
-
page: number;
|
|
114
|
-
per_page: number;
|
|
115
|
-
total: number;
|
|
116
|
-
}
|
|
117
|
-
export interface BlockItem {
|
|
118
|
-
id: string;
|
|
119
|
-
title: string;
|
|
120
|
-
conf: "reserved" | "sold";
|
|
121
|
-
block_image: imageInterface[];
|
|
122
|
-
svg: string;
|
|
123
|
-
project_id: number;
|
|
124
|
-
polygon_data: PolygonDataCollection[];
|
|
125
|
-
img_contain: boolean;
|
|
126
|
-
counts?: {
|
|
127
|
-
available?: number;
|
|
128
|
-
reserved?: number;
|
|
129
|
-
sold?: number;
|
|
130
|
-
};
|
|
131
|
-
created_at: string;
|
|
132
|
-
updated_at: string;
|
|
133
|
-
}
|
|
134
|
-
export interface PolygonDataCollection {
|
|
135
|
-
id: string;
|
|
136
|
-
key: string;
|
|
137
|
-
type: "flat" | "floor" | "block" | "tooltip" | "";
|
|
138
|
-
}
|
|
139
|
-
export interface selectDataItem {
|
|
140
|
-
title: string;
|
|
141
|
-
value: string;
|
|
142
|
-
isLinked?: boolean;
|
|
143
|
-
type?: "" | "flat" | "floor" | "block" | "tooltip";
|
|
144
|
-
}
|
|
145
|
-
export interface FlatsInterface {
|
|
146
|
-
data: FlatItem[];
|
|
147
|
-
page: number;
|
|
148
|
-
per_page: number;
|
|
149
|
-
total: number;
|
|
150
|
-
}
|
|
151
|
-
export interface FlatItem {
|
|
152
|
-
id: string;
|
|
153
|
-
type_id: string | null;
|
|
154
|
-
flat_number: string;
|
|
155
|
-
project_id: string;
|
|
156
|
-
conf: string | null;
|
|
157
|
-
floor_id: string;
|
|
158
|
-
request_price: string;
|
|
159
|
-
price: string;
|
|
160
|
-
offer_price: string;
|
|
161
|
-
block_id?: string | null;
|
|
162
|
-
type?: TypeItem;
|
|
163
|
-
use_type?: boolean;
|
|
164
|
-
files?: imageInterface[] | null;
|
|
165
|
-
created_at: string;
|
|
166
|
-
updated_at: string;
|
|
167
|
-
}
|
|
168
|
-
export interface TypeInterface {
|
|
169
|
-
data: TypeItem[];
|
|
170
|
-
page: number;
|
|
171
|
-
per_page: number;
|
|
172
|
-
total: number;
|
|
173
|
-
}
|
|
174
|
-
export interface TypeItem {
|
|
175
|
-
id: string;
|
|
176
|
-
title: string;
|
|
177
|
-
teaser: string;
|
|
178
|
-
project_id: string;
|
|
179
|
-
image_2d?: imageInterface[] | null;
|
|
180
|
-
image_3d?: imageInterface[] | null;
|
|
181
|
-
gallery?: imageInterface[] | null;
|
|
182
|
-
area_m2: string;
|
|
183
|
-
other: any;
|
|
184
|
-
rooms_count: string;
|
|
185
|
-
created_at: string;
|
|
186
|
-
updated_at: string;
|
|
187
|
-
}
|
|
188
|
-
export interface ProjectMeta {
|
|
189
|
-
id?: number;
|
|
190
|
-
project_id: number;
|
|
191
|
-
meta_key: string;
|
|
192
|
-
meta_value: string | number;
|
|
193
|
-
}
|
|
194
|
-
export interface ShortcodeData {
|
|
195
|
-
flats: FlatItem[];
|
|
196
|
-
floors: FloorItem[];
|
|
197
|
-
blocks: BlockItem[];
|
|
198
|
-
project: ProjectInterface;
|
|
199
|
-
types: TypeItem[];
|
|
200
|
-
meta: ProjectMeta[];
|
|
201
|
-
actions: ActionItem[];
|
|
202
|
-
tableFields: TableFieldsType[];
|
|
203
|
-
tableContactUrl: string;
|
|
204
|
-
}
|
|
205
|
-
export interface TableFieldsType {
|
|
206
|
-
field: number;
|
|
207
|
-
header: number;
|
|
208
|
-
sortable: boolean;
|
|
209
|
-
}
|
|
210
|
-
export interface ActionInterface {
|
|
211
|
-
data: ActionItem[];
|
|
212
|
-
page: number;
|
|
213
|
-
per_page: number;
|
|
214
|
-
total: number;
|
|
215
|
-
}
|
|
216
|
-
export interface ActionItem {
|
|
217
|
-
id: string;
|
|
218
|
-
title: string;
|
|
219
|
-
data: ActionData;
|
|
220
|
-
created_at: string;
|
|
221
|
-
updated_at: string;
|
|
222
|
-
}
|
|
223
|
-
export interface ActionData {
|
|
224
|
-
url: string;
|
|
225
|
-
script: string;
|
|
226
|
-
targetBlank: boolean;
|
|
227
|
-
actionType: string;
|
|
228
|
-
modalObject: ModalObject;
|
|
229
|
-
}
|
|
230
|
-
export interface ModalObject {
|
|
231
|
-
title: string;
|
|
232
|
-
description: string;
|
|
233
|
-
modalImage: null | imageInterface[];
|
|
234
|
-
}
|
|
235
|
-
export {};
|
package/dist/styles.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|