@hotelinking/ui 5.39.17 → 6.39.0
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/types/components/Atoms/uiButton/uiButton.vue.d.ts +42 -0
- package/dist/types/components/Atoms/uiCheckbox/uiCheckbox.vue.d.ts +45 -0
- package/dist/types/components/Atoms/uiDropdown/uiDropdown.vue.d.ts +33 -0
- package/dist/types/components/Atoms/uiIcon/uiIcon.vue.d.ts +32 -0
- package/dist/types/components/Atoms/uiInput/uiInput.vue.d.ts +47 -0
- package/dist/types/components/Atoms/uiInputFile/uiInputFile.vue.d.ts +37 -0
- package/dist/types/components/Atoms/uiRangeSlider/uiRangeSlider.vue.d.ts +34 -0
- package/dist/types/components/Atoms/uiSelect/uiSelect.vue.d.ts +33 -0
- package/dist/types/components/Atoms/uiTag/uiTag.vue.d.ts +42 -0
- package/dist/types/components/Atoms/uiTextArea/uiTextArea.vue.d.ts +40 -0
- package/dist/types/components/Atoms/uiToggle/uiToggle.vue.d.ts +32 -0
- package/dist/types/components/Common/SkeletonTable/SkeletonTable.vue.d.ts +2 -0
- package/dist/types/components/Molecules/uiAlert/uiAlert.vue.d.ts +38 -0
- package/dist/types/components/Molecules/uiBreadcrumbs/uiBreadcrumbs.vue.d.ts +26 -0
- package/dist/types/components/Molecules/uiCard/uiCard.vue.d.ts +26 -0
- package/dist/types/components/Molecules/uiDeviceStatus/uiDeviceStatus.vue.d.ts +26 -0
- package/dist/types/components/Molecules/uiFilter/uiFilter.vue.d.ts +33 -0
- package/dist/types/components/Molecules/uiModal/uiModal.vue.d.ts +49 -0
- package/dist/types/components/Molecules/uiNotification/uiNotification.vue.d.ts +32 -0
- package/dist/types/components/Molecules/uiSectionTitle/uiSectionTitle.vue.d.ts +12 -0
- package/dist/types/components/Molecules/uiTaskList/uiTaskList.vue.d.ts +26 -0
- package/dist/types/components/Organisms/uiCharts/RangeSelector.vue.d.ts +8 -0
- package/dist/types/components/Organisms/uiCharts/uiChart.vue.d.ts +61 -0
- package/dist/types/components/Organisms/uiCircleCharts/uiCircleChart.vue.d.ts +52 -0
- package/dist/types/components/Organisms/uiDateRange/uiDateRange.vue.d.ts +12 -0
- package/dist/types/components/Organisms/uiDragAndDrop/uiDragAndDrop.vue.d.ts +26 -0
- package/dist/types/components/Organisms/uiFooter/uiFooter.vue.d.ts +2 -0
- package/dist/types/components/Organisms/uiFunnelChartV2/uiFunnelChartV2.vue.d.ts +61 -0
- package/dist/types/components/Organisms/uiGallery/uiGallery.vue.d.ts +20 -0
- package/dist/types/components/Organisms/uiLoadingScreen/uiLoadingScreen.vue.d.ts +26 -0
- package/dist/types/components/Organisms/uiNoResults/uiNoResults.vue.d.ts +16 -0
- package/dist/types/components/Organisms/uiPagination/uiPagination.vue.d.ts +44 -0
- package/dist/types/components/Organisms/uiPriceCalendar/DateSelector.vue.d.ts +16 -0
- package/dist/types/components/Organisms/uiPriceCalendar/Day.vue.d.ts +14 -0
- package/dist/types/components/Organisms/uiPriceCalendar/Price.vue.d.ts +25 -0
- package/dist/types/components/Organisms/uiPriceCalendar/uiPriceCalendar.vue.d.ts +62 -0
- package/dist/types/components/Organisms/uiRightSidebar/uiRightSidebar.vue.d.ts +39 -0
- package/dist/types/components/Organisms/uiSidebar/uiSidebar.vue.d.ts +30 -0
- package/dist/types/components/Organisms/uiStats/uiStats.vue.d.ts +30 -0
- package/dist/types/components/Organisms/uiStripedCard/uiStripedCard.vue.d.ts +30 -0
- package/dist/types/components/Organisms/uiTable/tooltip.vue.d.ts +7 -0
- package/dist/types/components/Organisms/uiTable/uiTable.vue.d.ts +47 -0
- package/dist/types/components/Organisms/uiTabs/uiTabs.vue.d.ts +16 -0
- package/dist/types/components/Organisms/uiTimeline/uiTimeline.vue.d.ts +29 -0
- package/dist/types/components/Organisms/uiTopbar/uiTopbar.vue.d.ts +16 -0
- package/dist/types/components/index.d.ts +2770 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/types/index.d.ts +478 -0
- package/dist/ui.cjs +709 -0
- package/dist/ui.es.js +15939 -2266
- package/package.json +8 -4
- package/dist/ui.umd.cjs +0 -1
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
import type { FunctionalComponent } from "vue";
|
|
2
|
+
export declare const Colors: readonly ["primary", "secondary", "light", "green", "yellow", "red"];
|
|
3
|
+
export declare const UiInputTypes: readonly ["text", "email", "password", "number", "date"];
|
|
4
|
+
export declare const MonoColors: readonly ["black", "gray", "white"];
|
|
5
|
+
export declare const AllColors: readonly ["primary", "secondary", "light", "green", "yellow", "red", "black", "gray", "white"];
|
|
6
|
+
type Colors = typeof Colors[number];
|
|
7
|
+
type AllColors = typeof AllColors[number];
|
|
8
|
+
type InputTypes = typeof UiInputTypes[number];
|
|
9
|
+
export declare const Sizes: readonly ["small", "medium", "big"];
|
|
10
|
+
export declare const BiggerSizes: readonly ["bigger", "huge", "massive"];
|
|
11
|
+
export declare const AllSizes: readonly ["small", "medium", "big", "bigger", "huge", "massive"];
|
|
12
|
+
type Sizes = typeof Sizes[number];
|
|
13
|
+
type AllSizes = typeof AllSizes[number];
|
|
14
|
+
export interface UiButtonInterface {
|
|
15
|
+
block?: boolean;
|
|
16
|
+
color?: Colors;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
icon?: FunctionalComponent;
|
|
19
|
+
loading: boolean;
|
|
20
|
+
size?: Sizes;
|
|
21
|
+
}
|
|
22
|
+
export interface UiCheckboxInterface {
|
|
23
|
+
check?: boolean;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
loading: boolean;
|
|
26
|
+
value: string;
|
|
27
|
+
}
|
|
28
|
+
export type UiCheckboxType = {
|
|
29
|
+
checked: boolean;
|
|
30
|
+
value: string;
|
|
31
|
+
};
|
|
32
|
+
export interface UiDropdownInterface {
|
|
33
|
+
items: UiDropdownItemType[];
|
|
34
|
+
position?: "left" | "right";
|
|
35
|
+
disabled?: boolean;
|
|
36
|
+
label: string;
|
|
37
|
+
loading: boolean;
|
|
38
|
+
}
|
|
39
|
+
export type UiDropdownItemType = {
|
|
40
|
+
name: string;
|
|
41
|
+
value: string;
|
|
42
|
+
active?: boolean;
|
|
43
|
+
};
|
|
44
|
+
export interface UiIconInterface {
|
|
45
|
+
icon: FunctionalComponent;
|
|
46
|
+
size?: AllSizes;
|
|
47
|
+
color?: AllColors;
|
|
48
|
+
loading: boolean;
|
|
49
|
+
}
|
|
50
|
+
export interface UiInputInterface {
|
|
51
|
+
label?: string;
|
|
52
|
+
type?: InputTypes;
|
|
53
|
+
name: string;
|
|
54
|
+
placeholder?: string;
|
|
55
|
+
icon?: FunctionalComponent;
|
|
56
|
+
disabled?: boolean;
|
|
57
|
+
color?: AllColors;
|
|
58
|
+
value?: string;
|
|
59
|
+
error?: string;
|
|
60
|
+
optional?: string;
|
|
61
|
+
addOn?: string;
|
|
62
|
+
rightAddOn?: string;
|
|
63
|
+
loading: boolean;
|
|
64
|
+
}
|
|
65
|
+
export interface UiInputFileInterface {
|
|
66
|
+
name: string;
|
|
67
|
+
id: string;
|
|
68
|
+
optional?: string;
|
|
69
|
+
placeholder: string;
|
|
70
|
+
dragAndDrop: string;
|
|
71
|
+
fileTypesAndSizes: string;
|
|
72
|
+
error?: string;
|
|
73
|
+
accept: string;
|
|
74
|
+
icon?: FunctionalComponent;
|
|
75
|
+
loading: boolean;
|
|
76
|
+
label?: string;
|
|
77
|
+
}
|
|
78
|
+
export interface UiRangeSliderInterface {
|
|
79
|
+
loading: boolean;
|
|
80
|
+
disabled?: boolean;
|
|
81
|
+
min?: number;
|
|
82
|
+
max?: number;
|
|
83
|
+
sliderValue?: number | number[];
|
|
84
|
+
label: string;
|
|
85
|
+
optional?: string;
|
|
86
|
+
}
|
|
87
|
+
export type SelectItemType = {
|
|
88
|
+
id: string;
|
|
89
|
+
name: string;
|
|
90
|
+
};
|
|
91
|
+
export interface UiSelectInterface {
|
|
92
|
+
items: SelectItemType[];
|
|
93
|
+
label: string;
|
|
94
|
+
error?: string;
|
|
95
|
+
color?: AllColors;
|
|
96
|
+
select: SelectItemType;
|
|
97
|
+
loading?: boolean;
|
|
98
|
+
disabled?: boolean;
|
|
99
|
+
}
|
|
100
|
+
export interface UiTagInterface {
|
|
101
|
+
color?: AllColors;
|
|
102
|
+
loading?: boolean;
|
|
103
|
+
event?: string;
|
|
104
|
+
name?: string;
|
|
105
|
+
text?: string;
|
|
106
|
+
}
|
|
107
|
+
export interface UiTextAreaInterface {
|
|
108
|
+
name: string;
|
|
109
|
+
label: string;
|
|
110
|
+
placeholder?: string;
|
|
111
|
+
value?: string;
|
|
112
|
+
color?: string;
|
|
113
|
+
disabled?: boolean;
|
|
114
|
+
error?: string;
|
|
115
|
+
loading?: boolean;
|
|
116
|
+
}
|
|
117
|
+
export interface UiToggleInterface {
|
|
118
|
+
item: {
|
|
119
|
+
title: string;
|
|
120
|
+
subtitle: string;
|
|
121
|
+
active: boolean;
|
|
122
|
+
action: string;
|
|
123
|
+
};
|
|
124
|
+
checked?: boolean;
|
|
125
|
+
disabled?: boolean;
|
|
126
|
+
loading: boolean;
|
|
127
|
+
}
|
|
128
|
+
export interface UiAlertInterface {
|
|
129
|
+
actions: {
|
|
130
|
+
name: string;
|
|
131
|
+
event: string;
|
|
132
|
+
}[];
|
|
133
|
+
title: string;
|
|
134
|
+
type?: string;
|
|
135
|
+
loading?: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface UiBreadcrumbsInterface {
|
|
138
|
+
pages: {
|
|
139
|
+
name: string;
|
|
140
|
+
routeName: string;
|
|
141
|
+
current: boolean;
|
|
142
|
+
}[];
|
|
143
|
+
loading?: boolean;
|
|
144
|
+
}
|
|
145
|
+
export interface UiCardInterface {
|
|
146
|
+
id: string;
|
|
147
|
+
name: string;
|
|
148
|
+
type: string;
|
|
149
|
+
tags?: UiTagInterface[];
|
|
150
|
+
logo: string;
|
|
151
|
+
loading: boolean;
|
|
152
|
+
}
|
|
153
|
+
export interface UiDeviceStatusInterface {
|
|
154
|
+
id: string;
|
|
155
|
+
name: string;
|
|
156
|
+
icon: FunctionalComponent;
|
|
157
|
+
color: AllColors;
|
|
158
|
+
qty: number;
|
|
159
|
+
tags: UiTagInterface[];
|
|
160
|
+
loading: boolean;
|
|
161
|
+
}
|
|
162
|
+
export interface UiFilterInterface {
|
|
163
|
+
type?: string;
|
|
164
|
+
items: {
|
|
165
|
+
name: string;
|
|
166
|
+
value: string;
|
|
167
|
+
active: boolean;
|
|
168
|
+
}[];
|
|
169
|
+
position?: "left" | "right";
|
|
170
|
+
label: string;
|
|
171
|
+
loading?: boolean;
|
|
172
|
+
}
|
|
173
|
+
export interface UiModalInterface {
|
|
174
|
+
title: string;
|
|
175
|
+
actions: {
|
|
176
|
+
value: string;
|
|
177
|
+
name: string;
|
|
178
|
+
}[];
|
|
179
|
+
modalName: string;
|
|
180
|
+
open: boolean;
|
|
181
|
+
type?: string;
|
|
182
|
+
loading?: boolean;
|
|
183
|
+
}
|
|
184
|
+
export interface UiNotificationInterface {
|
|
185
|
+
type?: string;
|
|
186
|
+
title: string;
|
|
187
|
+
message?: string;
|
|
188
|
+
fixed: boolean;
|
|
189
|
+
show: boolean;
|
|
190
|
+
}
|
|
191
|
+
export interface UiSectionTitleInterface {
|
|
192
|
+
title: string;
|
|
193
|
+
description?: string;
|
|
194
|
+
}
|
|
195
|
+
export type TaskType = {
|
|
196
|
+
id: number;
|
|
197
|
+
name: string;
|
|
198
|
+
action: string;
|
|
199
|
+
href: string;
|
|
200
|
+
status: string;
|
|
201
|
+
statusLiteral: string;
|
|
202
|
+
description: string;
|
|
203
|
+
};
|
|
204
|
+
export interface UiTaskList {
|
|
205
|
+
tasks: TaskType[];
|
|
206
|
+
loading?: boolean;
|
|
207
|
+
}
|
|
208
|
+
export type chartOptionsType = {
|
|
209
|
+
chart: {
|
|
210
|
+
toolbar: {
|
|
211
|
+
show: boolean;
|
|
212
|
+
};
|
|
213
|
+
zoom: {
|
|
214
|
+
enabled: boolean;
|
|
215
|
+
};
|
|
216
|
+
stacked?: boolean;
|
|
217
|
+
type?: "area" | "line" | "bar" | "scatter";
|
|
218
|
+
};
|
|
219
|
+
colors: string[];
|
|
220
|
+
stroke?: {
|
|
221
|
+
show: boolean;
|
|
222
|
+
curve: string;
|
|
223
|
+
lineCap: string;
|
|
224
|
+
width: number;
|
|
225
|
+
dashArray: number;
|
|
226
|
+
};
|
|
227
|
+
dataLabels: {
|
|
228
|
+
enabled: boolean;
|
|
229
|
+
formatter?: Function;
|
|
230
|
+
};
|
|
231
|
+
markers: {
|
|
232
|
+
strokeWidth: number;
|
|
233
|
+
size: number;
|
|
234
|
+
hover: {
|
|
235
|
+
size: number;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
annotations?: {
|
|
239
|
+
yaxis: [
|
|
240
|
+
{
|
|
241
|
+
y: number;
|
|
242
|
+
borderColor: string;
|
|
243
|
+
label: {
|
|
244
|
+
borderColor: string;
|
|
245
|
+
style: {
|
|
246
|
+
color: string;
|
|
247
|
+
background: string;
|
|
248
|
+
};
|
|
249
|
+
text: string;
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
];
|
|
253
|
+
};
|
|
254
|
+
tooltip?: {
|
|
255
|
+
intersect: boolean;
|
|
256
|
+
shared: boolean;
|
|
257
|
+
};
|
|
258
|
+
plotOptions?: {
|
|
259
|
+
bar: {
|
|
260
|
+
horizontal?: boolean;
|
|
261
|
+
borderRadius?: number;
|
|
262
|
+
barHeight?: string;
|
|
263
|
+
isFunnel?: boolean;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
export interface UiChartInterface {
|
|
268
|
+
title: string;
|
|
269
|
+
id: string;
|
|
270
|
+
type?: "area" | "line" | "bar" | "scatter";
|
|
271
|
+
series: {
|
|
272
|
+
name: string;
|
|
273
|
+
type: "area" | "line" | "bar" | "scatter";
|
|
274
|
+
data: number[];
|
|
275
|
+
}[];
|
|
276
|
+
options?: {
|
|
277
|
+
xaxis: {
|
|
278
|
+
type: string;
|
|
279
|
+
categories: string[];
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
loading?: boolean;
|
|
283
|
+
empty?: boolean;
|
|
284
|
+
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
285
|
+
horizontal?: boolean;
|
|
286
|
+
stacked?: boolean;
|
|
287
|
+
height?: number;
|
|
288
|
+
annotations?: {
|
|
289
|
+
text: string;
|
|
290
|
+
high: number;
|
|
291
|
+
};
|
|
292
|
+
}
|
|
293
|
+
export interface UiDateRangeInterface {
|
|
294
|
+
id: string;
|
|
295
|
+
loading?: boolean;
|
|
296
|
+
literals: {
|
|
297
|
+
from: string;
|
|
298
|
+
to: string;
|
|
299
|
+
search: string;
|
|
300
|
+
};
|
|
301
|
+
values: {
|
|
302
|
+
from?: Date;
|
|
303
|
+
to?: Date;
|
|
304
|
+
};
|
|
305
|
+
color?: AllColors;
|
|
306
|
+
error?: string;
|
|
307
|
+
disabled?: boolean;
|
|
308
|
+
label?: string;
|
|
309
|
+
placeholder?: string;
|
|
310
|
+
}
|
|
311
|
+
export interface UiDragAndDropInterface {
|
|
312
|
+
elements: {
|
|
313
|
+
id: number;
|
|
314
|
+
name: string;
|
|
315
|
+
description: string;
|
|
316
|
+
}[];
|
|
317
|
+
loading?: boolean;
|
|
318
|
+
}
|
|
319
|
+
export interface UiGalleryInterface {
|
|
320
|
+
galleryId: string;
|
|
321
|
+
gallery: {
|
|
322
|
+
title: string;
|
|
323
|
+
size: string;
|
|
324
|
+
source: string;
|
|
325
|
+
}[];
|
|
326
|
+
loading?: boolean;
|
|
327
|
+
literals: {
|
|
328
|
+
deleteAllImages: string;
|
|
329
|
+
modalTitle: string;
|
|
330
|
+
modalText: string;
|
|
331
|
+
closeAction: string;
|
|
332
|
+
deleteAction: string;
|
|
333
|
+
};
|
|
334
|
+
}
|
|
335
|
+
export interface UiLoadScreenInterface {
|
|
336
|
+
title?: string;
|
|
337
|
+
message?: string;
|
|
338
|
+
fixed?: boolean;
|
|
339
|
+
}
|
|
340
|
+
export interface UiNoResultsInterface {
|
|
341
|
+
title: string;
|
|
342
|
+
message: string;
|
|
343
|
+
actions: {
|
|
344
|
+
action: string;
|
|
345
|
+
text: string;
|
|
346
|
+
}[];
|
|
347
|
+
}
|
|
348
|
+
export interface UiPaginationInterface {
|
|
349
|
+
current: number;
|
|
350
|
+
total: number;
|
|
351
|
+
loading?: boolean;
|
|
352
|
+
}
|
|
353
|
+
export interface UiRightSidebarInterface {
|
|
354
|
+
title?: string;
|
|
355
|
+
description?: string;
|
|
356
|
+
open: boolean;
|
|
357
|
+
}
|
|
358
|
+
export interface UiSidebarInterface {
|
|
359
|
+
navigation: {
|
|
360
|
+
name: string;
|
|
361
|
+
icon: FunctionalComponent;
|
|
362
|
+
current?: boolean;
|
|
363
|
+
id: string;
|
|
364
|
+
children?: {
|
|
365
|
+
name: string;
|
|
366
|
+
id: string;
|
|
367
|
+
current?: boolean;
|
|
368
|
+
}[];
|
|
369
|
+
}[];
|
|
370
|
+
loading?: boolean;
|
|
371
|
+
}
|
|
372
|
+
export interface UiStatsInterface {
|
|
373
|
+
item: {
|
|
374
|
+
icon: FunctionalComponent;
|
|
375
|
+
change: string;
|
|
376
|
+
changeType: string;
|
|
377
|
+
actionText: string;
|
|
378
|
+
id: string;
|
|
379
|
+
name: string;
|
|
380
|
+
stat: string;
|
|
381
|
+
explanation: string;
|
|
382
|
+
color: AllColors;
|
|
383
|
+
showFooter: boolean;
|
|
384
|
+
};
|
|
385
|
+
loading?: boolean;
|
|
386
|
+
}
|
|
387
|
+
export interface UiStripedCardInterface {
|
|
388
|
+
title: string;
|
|
389
|
+
subtitle: string;
|
|
390
|
+
items: {
|
|
391
|
+
color: AllColors;
|
|
392
|
+
title: string;
|
|
393
|
+
text: string;
|
|
394
|
+
emits: string;
|
|
395
|
+
type?: "link" | "tags" | "tag";
|
|
396
|
+
tags?: UiTagInterface[];
|
|
397
|
+
}[];
|
|
398
|
+
loading?: boolean;
|
|
399
|
+
}
|
|
400
|
+
export type TableItemType = {
|
|
401
|
+
id: string | number;
|
|
402
|
+
emitWith: any;
|
|
403
|
+
row: Array<string | {
|
|
404
|
+
content: string;
|
|
405
|
+
color: AllColors;
|
|
406
|
+
type: string;
|
|
407
|
+
emits?: string;
|
|
408
|
+
href: string;
|
|
409
|
+
}>;
|
|
410
|
+
};
|
|
411
|
+
export interface UiTableInterface {
|
|
412
|
+
orderedBy: string;
|
|
413
|
+
orderDirection?: "asc" | "desc";
|
|
414
|
+
loading?: boolean;
|
|
415
|
+
header: {
|
|
416
|
+
name: string;
|
|
417
|
+
value: string;
|
|
418
|
+
tooltip?: string;
|
|
419
|
+
}[];
|
|
420
|
+
items: TableItemType[];
|
|
421
|
+
actions: {
|
|
422
|
+
name: string;
|
|
423
|
+
id: string;
|
|
424
|
+
}[];
|
|
425
|
+
}
|
|
426
|
+
export interface UiTabInterface {
|
|
427
|
+
tabs: {
|
|
428
|
+
name: string;
|
|
429
|
+
id: string;
|
|
430
|
+
count: number;
|
|
431
|
+
current: boolean;
|
|
432
|
+
}[];
|
|
433
|
+
}
|
|
434
|
+
export interface UiTimelineInterface {
|
|
435
|
+
name: string;
|
|
436
|
+
timeline: {
|
|
437
|
+
id: string;
|
|
438
|
+
footerText: string;
|
|
439
|
+
items: {
|
|
440
|
+
id: number | string;
|
|
441
|
+
linkId: number | string;
|
|
442
|
+
content: string;
|
|
443
|
+
target: string;
|
|
444
|
+
href: string;
|
|
445
|
+
date: string;
|
|
446
|
+
datetime: string;
|
|
447
|
+
icon: FunctionalComponent;
|
|
448
|
+
iconBackground: string;
|
|
449
|
+
}[];
|
|
450
|
+
};
|
|
451
|
+
height?: number;
|
|
452
|
+
empty?: boolean;
|
|
453
|
+
loading?: boolean;
|
|
454
|
+
}
|
|
455
|
+
export interface UiTopbarInterface {
|
|
456
|
+
logo: string;
|
|
457
|
+
alerted: boolean;
|
|
458
|
+
accountLogo: string;
|
|
459
|
+
profileMenu: {
|
|
460
|
+
name: string;
|
|
461
|
+
id: string;
|
|
462
|
+
}[];
|
|
463
|
+
brand: {
|
|
464
|
+
title: string;
|
|
465
|
+
subtitle: string;
|
|
466
|
+
};
|
|
467
|
+
navigation: {
|
|
468
|
+
id: string;
|
|
469
|
+
name: string;
|
|
470
|
+
icon: string;
|
|
471
|
+
current: boolean;
|
|
472
|
+
children: {
|
|
473
|
+
name: string;
|
|
474
|
+
id: string;
|
|
475
|
+
}[];
|
|
476
|
+
}[];
|
|
477
|
+
}
|
|
478
|
+
export {};
|