@hotelinking/ui 9.41.13 → 9.41.15
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 -3
- package/dist/types/types/index.d.ts +30 -1
- package/dist/ui.cjs +11 -11
- package/dist/ui.es.js +2661 -2683
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<
|
|
1
|
+
import { UiSidebarV2Interface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSidebarV2Interface>, {
|
|
3
3
|
loading: boolean;
|
|
4
4
|
isFilterNavigation: boolean;
|
|
5
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
6
|
sideBarClick: (...args: any[]) => void;
|
|
7
7
|
productBarClick: (...args: any[]) => void;
|
|
8
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSidebarV2Interface>, {
|
|
9
9
|
loading: boolean;
|
|
10
10
|
isFilterNavigation: boolean;
|
|
11
11
|
}>>> & {
|
|
@@ -391,6 +391,35 @@ export interface UiSidebarInterface {
|
|
|
391
391
|
loading?: boolean;
|
|
392
392
|
logo?: string;
|
|
393
393
|
}
|
|
394
|
+
export interface UiSidebarV2Interface {
|
|
395
|
+
navigation?: {
|
|
396
|
+
name: string;
|
|
397
|
+
icon?: any;
|
|
398
|
+
current?: boolean;
|
|
399
|
+
id?: string;
|
|
400
|
+
children?: {
|
|
401
|
+
name: string;
|
|
402
|
+
id: string;
|
|
403
|
+
current?: boolean;
|
|
404
|
+
}[];
|
|
405
|
+
}[];
|
|
406
|
+
filterNavigation?: {
|
|
407
|
+
hasSearch?: boolean;
|
|
408
|
+
search?: UiInputInterface;
|
|
409
|
+
items?: {
|
|
410
|
+
label: string;
|
|
411
|
+
filters: UiCheckboxInterface[];
|
|
412
|
+
}[];
|
|
413
|
+
};
|
|
414
|
+
isFilterNavigation?: boolean;
|
|
415
|
+
loading?: boolean;
|
|
416
|
+
logo?: string;
|
|
417
|
+
productsSidebar: {
|
|
418
|
+
name: string;
|
|
419
|
+
icon: any;
|
|
420
|
+
active?: boolean;
|
|
421
|
+
}[];
|
|
422
|
+
}
|
|
394
423
|
export interface UiStatsInterface {
|
|
395
424
|
item: {
|
|
396
425
|
icon: any;
|
|
@@ -510,7 +539,7 @@ export interface UiWrapperInterface {
|
|
|
510
539
|
selectItems: SelectItemType[];
|
|
511
540
|
selectedItem: SelectItemType;
|
|
512
541
|
};
|
|
513
|
-
sidebar:
|
|
542
|
+
sidebar: UiSidebarV2Interface;
|
|
514
543
|
}
|
|
515
544
|
export interface UiDynamicStatsInterface {
|
|
516
545
|
dynamicStats: {
|