ire-preview 2.3.16 → 2.3.17

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.
Files changed (33) hide show
  1. package/dist/lib.es.js +268 -266
  2. package/dist/styles.css +1 -1
  3. package/package.json +1 -1
  4. package/dist/index.d.ts +0 -2
  5. package/dist/src/App.vue.d.ts +0 -2
  6. package/dist/src/components/Project.vue.d.ts +0 -8
  7. package/dist/src/components/demo/form/PreviewSelect.vue.d.ts +0 -21
  8. package/dist/src/components/demo/layout/MouseTracker.vue.d.ts +0 -18
  9. package/dist/src/components/demo/layout/PreviewLayout.vue.d.ts +0 -25
  10. package/dist/src/components/demo/preview/ActionModal.vue.d.ts +0 -7
  11. package/dist/src/components/demo/preview/BlockPreview.vue.d.ts +0 -17
  12. package/dist/src/components/demo/preview/FlatPreview.vue.d.ts +0 -13
  13. package/dist/src/components/demo/preview/FloorPreview.vue.d.ts +0 -19
  14. package/dist/src/components/demo/preview/Preview.vue.d.ts +0 -6
  15. package/dist/src/components/demo/preview/ProjectPreview.vue.d.ts +0 -21
  16. package/dist/src/components/demo/preview/Tooltip_1.vue.d.ts +0 -8
  17. package/dist/src/components/demo/preview/Tooltip_2.vue.d.ts +0 -10
  18. package/dist/src/components/demo/preview/Tooltip_3.vue.d.ts +0 -8
  19. package/dist/src/components/demo/uiComponents/BackButton.vue.d.ts +0 -2
  20. package/dist/src/components/demo/uiComponents/BaseEditor.vue.d.ts +0 -6
  21. package/dist/src/components/demo/uiComponents/Button.vue.d.ts +0 -22
  22. package/dist/src/components/demo/uiComponents/FlatPreviewKeyValue.vue.d.ts +0 -23
  23. package/dist/src/components/demo/uiComponents/PreviewModal.vue.d.ts +0 -20
  24. package/dist/src/components/icons/ArrowRight.vue.d.ts +0 -2
  25. package/dist/src/components/icons/Close.vue.d.ts +0 -2
  26. package/dist/src/components/icons/FlatIcon.vue.d.ts +0 -2
  27. package/dist/src/components/index.d.ts +0 -1
  28. package/dist/src/composable/helper.d.ts +0 -4
  29. package/dist/src/interfaces/index.d.ts +0 -4
  30. package/dist/src/main.d.ts +0 -2
  31. package/dist/src/store/useGlobal.d.ts +0 -31
  32. package/dist/src/types/DemoTypes.d.ts +0 -225
  33. package/dist/styles.d.ts +0 -1
@@ -1,225 +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_number: string;
158
- price: string;
159
- offer_price: string;
160
- block_id?: string | null;
161
- type?: TypeItem;
162
- use_type?: boolean;
163
- created_at: string;
164
- updated_at: string;
165
- }
166
- export interface TypeInterface {
167
- data: TypeItem[];
168
- page: number;
169
- per_page: number;
170
- total: number;
171
- }
172
- export interface TypeItem {
173
- id: string;
174
- title: string;
175
- teaser: string;
176
- project_id: string;
177
- image_2d?: imageInterface[] | null;
178
- image_3d?: imageInterface[] | null;
179
- gallery?: imageInterface[] | null;
180
- area_m2: string;
181
- rooms_count: string;
182
- created_at: string;
183
- updated_at: string;
184
- }
185
- export interface ProjectMeta {
186
- id?: number;
187
- project_id: number;
188
- meta_key: string;
189
- meta_value: string | number;
190
- }
191
- export interface ShortcodeData {
192
- flats: FlatItem[];
193
- floors: FloorItem[];
194
- blocks: BlockItem[];
195
- project: ProjectInterface;
196
- types: TypeItem[];
197
- meta: ProjectMeta[];
198
- actions: ActionItem[];
199
- }
200
- export interface ActionInterface {
201
- data: ActionItem[];
202
- page: number;
203
- per_page: number;
204
- total: number;
205
- }
206
- export interface ActionItem {
207
- id: string;
208
- title: string;
209
- data: ActionData;
210
- created_at: string;
211
- updated_at: string;
212
- }
213
- export interface ActionData {
214
- url: string;
215
- script: string;
216
- targetBlank: boolean;
217
- actionType: string;
218
- modalObject: ModalObject;
219
- }
220
- export interface ModalObject {
221
- title: string;
222
- description: string;
223
- modalImage: null | imageInterface[];
224
- }
225
- export {};
package/dist/styles.d.ts DELETED
@@ -1 +0,0 @@
1
- export {}