@hotelinking/ui 8.41.1 → 9.41.2
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/Organisms/uiSidebar/uiSidebarV2.vue.d.ts +3 -0
- package/dist/types/types/index.d.ts +16 -5
- package/dist/ui.cjs +11 -11
- package/dist/ui.es.js +3039 -2980
- package/package.json +1 -1
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { UiSidebarInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSidebarInterface>, {
|
|
3
3
|
loading: boolean;
|
|
4
|
+
isFilterNavigation: boolean;
|
|
4
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
6
|
sideBarClick: (...args: any[]) => void;
|
|
6
7
|
productBarClick: (...args: any[]) => void;
|
|
7
8
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSidebarInterface>, {
|
|
8
9
|
loading: boolean;
|
|
10
|
+
isFilterNavigation: boolean;
|
|
9
11
|
}>>> & {
|
|
10
12
|
onSideBarClick?: ((...args: any[]) => any) | undefined;
|
|
11
13
|
onProductBarClick?: ((...args: any[]) => any) | undefined;
|
|
12
14
|
}, {
|
|
13
15
|
loading: boolean;
|
|
16
|
+
isFilterNavigation: boolean;
|
|
14
17
|
}, {}>;
|
|
15
18
|
export default _default;
|
|
16
19
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -23,6 +23,7 @@ export interface UiCheckboxInterface {
|
|
|
23
23
|
disabled?: boolean;
|
|
24
24
|
loading: boolean;
|
|
25
25
|
value: string;
|
|
26
|
+
text?: string;
|
|
26
27
|
}
|
|
27
28
|
export type UiCheckboxType = {
|
|
28
29
|
checked: boolean;
|
|
@@ -56,7 +57,7 @@ export interface UiInputInterface {
|
|
|
56
57
|
color?: AllColors;
|
|
57
58
|
value?: string;
|
|
58
59
|
error?: string;
|
|
59
|
-
|
|
60
|
+
requiredText?: string;
|
|
60
61
|
addOn?: string;
|
|
61
62
|
rightAddOn?: string;
|
|
62
63
|
loading: boolean;
|
|
@@ -64,7 +65,7 @@ export interface UiInputInterface {
|
|
|
64
65
|
export interface UiInputFileInterface {
|
|
65
66
|
name: string;
|
|
66
67
|
id: string;
|
|
67
|
-
|
|
68
|
+
requiredText?: string;
|
|
68
69
|
placeholder: string;
|
|
69
70
|
dragAndDrop: string;
|
|
70
71
|
fileTypesAndSizes: string;
|
|
@@ -81,7 +82,7 @@ export interface UiRangeSliderInterface {
|
|
|
81
82
|
max?: number;
|
|
82
83
|
sliderValue?: number | number[];
|
|
83
84
|
label: string;
|
|
84
|
-
|
|
85
|
+
requiredText?: string;
|
|
85
86
|
}
|
|
86
87
|
export type SelectItemType = {
|
|
87
88
|
id: string;
|
|
@@ -95,6 +96,7 @@ export interface UiSelectInterface {
|
|
|
95
96
|
select: SelectItemType;
|
|
96
97
|
loading?: boolean;
|
|
97
98
|
disabled?: boolean;
|
|
99
|
+
requiredText?: string;
|
|
98
100
|
}
|
|
99
101
|
export interface UiTagInterface {
|
|
100
102
|
color?: AllColors;
|
|
@@ -113,6 +115,7 @@ export interface UiTextAreaInterface {
|
|
|
113
115
|
disabled?: boolean;
|
|
114
116
|
error?: string;
|
|
115
117
|
loading?: boolean;
|
|
118
|
+
requiredText?: string;
|
|
116
119
|
}
|
|
117
120
|
export interface UiToggleInterface {
|
|
118
121
|
item: {
|
|
@@ -363,7 +366,7 @@ export interface UiRightSidebarInterface {
|
|
|
363
366
|
open: boolean;
|
|
364
367
|
}
|
|
365
368
|
export interface UiSidebarInterface {
|
|
366
|
-
navigation
|
|
369
|
+
navigation?: {
|
|
367
370
|
name: string;
|
|
368
371
|
icon?: any;
|
|
369
372
|
current?: boolean;
|
|
@@ -374,8 +377,16 @@ export interface UiSidebarInterface {
|
|
|
374
377
|
current?: boolean;
|
|
375
378
|
}[];
|
|
376
379
|
}[];
|
|
380
|
+
filterNavigation?: {
|
|
381
|
+
hasSearch?: boolean;
|
|
382
|
+
search?: UiInputInterface;
|
|
383
|
+
items?: {
|
|
384
|
+
label: string;
|
|
385
|
+
filters: UiCheckboxInterface[];
|
|
386
|
+
}[];
|
|
387
|
+
};
|
|
388
|
+
isFilterNavigation?: boolean;
|
|
377
389
|
loading?: boolean;
|
|
378
|
-
defaultOpen?: boolean;
|
|
379
390
|
logo?: string;
|
|
380
391
|
}
|
|
381
392
|
export interface UiStatsInterface {
|