@hotelinking/ui 9.41.24 → 9.41.27
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/uiInput/uiInput.vue.d.ts +1 -1
- package/dist/types/components/Atoms/uiToggle/uiToggle.vue.d.ts +23 -1
- package/dist/types/components/Molecules/uiAlert/uiAlert.vue.d.ts +1 -1
- package/dist/types/components/Molecules/uiBreadcrumbs/uiBreadcrumbs.vue.d.ts +6 -2
- package/dist/types/components/Molecules/uiCard/uiCard.vue.d.ts +16 -2
- package/dist/types/components/Molecules/uiDeviceStatus/uiDeviceStatus.vue.d.ts +8 -2
- package/dist/types/components/Molecules/uiFilter/uiFilter.vue.d.ts +1 -1
- package/dist/types/components/Molecules/uiModal/uiModal.vue.d.ts +10 -8
- package/dist/types/components/Molecules/uiNotification/uiNotification.vue.d.ts +6 -2
- package/dist/types/components/Molecules/uiSectionTitle/uiSectionTitle.vue.d.ts +1 -1
- package/dist/types/components/Molecules/uiTaskList/uiTaskList.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiCharts/uiChart.vue.d.ts +4 -4
- package/dist/types/components/Organisms/uiCircleCharts/uiCircleChart.vue.d.ts +15 -9
- package/dist/types/components/Organisms/uiDateRange/uiDateRange.vue.d.ts +12 -2
- package/dist/types/components/Organisms/uiDragAndDrop/uiDragAndDrop.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiFunnelChartV2/uiFunnelChartV2.vue.d.ts +5 -5
- package/dist/types/components/Organisms/uiGallery/uiGallery.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiLoadingScreen/uiLoadingScreen.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiNoResults/uiNoResults.vue.d.ts +3 -3
- package/dist/types/components/Organisms/uiPagination/uiPagination.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiPriceCalendar/uiPriceCalendar.vue.d.ts +16 -147
- package/dist/types/components/Organisms/uiRightSidebar/uiRightSidebar.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiSidebar/uiSidebar.vue.d.ts +4 -4
- package/dist/types/components/Organisms/uiSidebar/uiSidebarV2.vue.d.ts +5 -5
- package/dist/types/components/Organisms/uiStats/uiStats.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiStripedCard/uiStripedCard.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiTable/uiTable.vue.d.ts +4 -1
- package/dist/types/components/Organisms/uiTabs/uiTabs.vue.d.ts +1 -1
- package/dist/types/components/Organisms/uiTimeline/uiTimeline.vue.d.ts +8 -2
- package/dist/types/components/Organisms/uiTopbar/uiTopbar.vue.d.ts +1 -1
- package/dist/types/types/index.d.ts +447 -38
- package/dist/ui.cjs +21 -21
- package/dist/ui.es.js +3602 -3647
- package/package.json +18 -13
|
@@ -8,9 +8,9 @@ declare const _default: import("vue").DefineComponent<UiInputInterface, {}, {},
|
|
|
8
8
|
onRightAddOnClicked?: (() => any) | undefined;
|
|
9
9
|
onAddOnClicked?: (() => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
|
+
type: "number" | "text" | "email" | "password" | "date";
|
|
11
12
|
color: "primary" | "secondary" | "light" | "green" | "yellow" | "red" | "black" | "gray" | "white";
|
|
12
13
|
loading: boolean;
|
|
13
|
-
type: "number" | "text" | "email" | "password" | "date";
|
|
14
14
|
placeholder: string;
|
|
15
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
import { UiToggleInterface } from "@/types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiToggleInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiToggleInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
toggleChanged: (T: {
|
|
4
|
+
item: UiToggleInterface["item"];
|
|
5
|
+
active: boolean;
|
|
6
|
+
}) => any;
|
|
7
|
+
actionClicked: (item: {
|
|
8
|
+
title: string;
|
|
9
|
+
subtitle?: string;
|
|
10
|
+
active?: boolean;
|
|
11
|
+
action: string;
|
|
12
|
+
}) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<UiToggleInterface> & Readonly<{
|
|
14
|
+
onToggleChanged?: ((T: {
|
|
15
|
+
item: UiToggleInterface["item"];
|
|
16
|
+
active: boolean;
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
onActionClicked?: ((item: {
|
|
19
|
+
title: string;
|
|
20
|
+
subtitle?: string;
|
|
21
|
+
active?: boolean;
|
|
22
|
+
action: string;
|
|
23
|
+
}) => any) | undefined;
|
|
24
|
+
}>, {
|
|
3
25
|
loading: boolean;
|
|
4
26
|
disabled: boolean;
|
|
5
27
|
checked: boolean;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_component: import("vue").DefineComponent<UiAlertInterface, {
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<UiAlertInterface> & Readonly<{
|
|
14
14
|
onAlertEvent?: ((T: string) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
loading: boolean;
|
|
17
16
|
type: string;
|
|
17
|
+
loading: boolean;
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
20
|
export default _default;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import { UiBreadcrumbsInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiBreadcrumbsInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiBreadcrumbsInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiBreadcrumbsInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
breadCrumbClicked: (T: string) => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<UiBreadcrumbsInterface> & Readonly<{
|
|
5
|
+
onBreadCrumbClicked?: ((T: string) => any) | undefined;
|
|
6
|
+
}>, {
|
|
3
7
|
loading: boolean;
|
|
4
8
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
9
|
export default _default;
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
import { UiCardInterface } from '
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiCardInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiCardInterface } from '@/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiCardInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
cardSelected: (T: {
|
|
4
|
+
id: UiCardInterface["id"];
|
|
5
|
+
name: UiCardInterface["name"];
|
|
6
|
+
type: UiCardInterface["type"];
|
|
7
|
+
tags: UiCardInterface["tags"];
|
|
8
|
+
}) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<UiCardInterface> & Readonly<{
|
|
10
|
+
onCardSelected?: ((T: {
|
|
11
|
+
id: UiCardInterface["id"];
|
|
12
|
+
name: UiCardInterface["name"];
|
|
13
|
+
type: UiCardInterface["type"];
|
|
14
|
+
tags: UiCardInterface["tags"];
|
|
15
|
+
}) => any) | undefined;
|
|
16
|
+
}>, {
|
|
3
17
|
loading: boolean;
|
|
4
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
19
|
export default _default;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { UiDeviceStatusInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiDeviceStatusInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiDeviceStatusInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiDeviceStatusInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
deviceStatusTagClicked: (T: string | undefined) => any;
|
|
4
|
+
deviceStatusQtyClicked: (T: string) => any;
|
|
5
|
+
}, string, import("vue").PublicProps, Readonly<UiDeviceStatusInterface> & Readonly<{
|
|
6
|
+
onDeviceStatusTagClicked?: ((T: string | undefined) => any) | undefined;
|
|
7
|
+
onDeviceStatusQtyClicked?: ((T: string) => any) | undefined;
|
|
8
|
+
}>, {
|
|
3
9
|
loading: boolean;
|
|
4
10
|
qty: number;
|
|
5
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiFilterInterface } from "
|
|
1
|
+
import { UiFilterInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiFilterInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
filterSelected: (T: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiFilterInterface> & Readonly<{
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import { UiModalInterface } from "
|
|
2
|
-
type modalType = {
|
|
3
|
-
modal: string;
|
|
4
|
-
action: string;
|
|
5
|
-
};
|
|
1
|
+
import { UiModalInterface } from "@/types";
|
|
6
2
|
declare function __VLS_template(): {
|
|
7
3
|
attrs: Partial<{}>;
|
|
8
4
|
slots: {
|
|
@@ -13,12 +9,18 @@ declare function __VLS_template(): {
|
|
|
13
9
|
};
|
|
14
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
11
|
declare const __VLS_component: import("vue").DefineComponent<UiModalInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
|
-
modalAction: (T:
|
|
12
|
+
modalAction: (T: {
|
|
13
|
+
modal: UiModalInterface["modalName"];
|
|
14
|
+
action: string;
|
|
15
|
+
}) => any;
|
|
17
16
|
}, string, import("vue").PublicProps, Readonly<UiModalInterface> & Readonly<{
|
|
18
|
-
onModalAction?: ((T:
|
|
17
|
+
onModalAction?: ((T: {
|
|
18
|
+
modal: UiModalInterface["modalName"];
|
|
19
|
+
action: string;
|
|
20
|
+
}) => any) | undefined;
|
|
19
21
|
}>, {
|
|
20
|
-
loading: boolean;
|
|
21
22
|
type: string;
|
|
23
|
+
loading: boolean;
|
|
22
24
|
open: boolean;
|
|
23
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import { UiNotificationInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiNotificationInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiNotificationInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiNotificationInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
closeNotification: () => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<UiNotificationInterface> & Readonly<{
|
|
5
|
+
onCloseNotification?: (() => any) | undefined;
|
|
6
|
+
}>, {
|
|
3
7
|
type: string;
|
|
4
8
|
fixed: boolean;
|
|
5
9
|
show: boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { UiSectionTitleInterface } from '
|
|
1
|
+
import { UiSectionTitleInterface } from '@/types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiSectionTitleInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<UiSectionTitleInterface> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
3
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiTaskList } from '
|
|
1
|
+
import { UiTaskList } from '@/types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiTaskList, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<UiTaskList> & Readonly<{}>, {
|
|
3
3
|
loading: boolean;
|
|
4
4
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -2,22 +2,22 @@ import { UiChartInterface } from "@/types";
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiChartInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
selectedRange: (T: {
|
|
4
4
|
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
5
|
-
chartId:
|
|
5
|
+
chartId: UiChartInterface["id"];
|
|
6
6
|
}) => any;
|
|
7
7
|
chartUpdated: () => any;
|
|
8
8
|
dataPointSelection: (T: any) => any;
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<UiChartInterface> & Readonly<{
|
|
10
10
|
onSelectedRange?: ((T: {
|
|
11
11
|
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
12
|
-
chartId:
|
|
12
|
+
chartId: UiChartInterface["id"];
|
|
13
13
|
}) => any) | undefined;
|
|
14
14
|
onChartUpdated?: (() => any) | undefined;
|
|
15
15
|
onDataPointSelection?: ((T: any) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
|
|
17
|
+
id: string;
|
|
18
18
|
type: "area" | "line" | "bar" | "scatter";
|
|
19
|
+
loading: boolean;
|
|
19
20
|
range: "24h" | "7d" | "1m" | "3m" | "all";
|
|
20
|
-
id: string;
|
|
21
21
|
empty: boolean;
|
|
22
22
|
horizontal: boolean;
|
|
23
23
|
stacked: boolean;
|
|
@@ -1,16 +1,22 @@
|
|
|
1
|
-
import { UiChartInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiChartInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
selectedRange: (
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { UiChartInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiChartInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
selectedRange: (T: {
|
|
4
|
+
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
5
|
+
chartId: UiChartInterface["id"];
|
|
6
|
+
}) => any;
|
|
7
|
+
chartUpdated: () => any;
|
|
8
|
+
dataPointSelection: (T: any) => any;
|
|
6
9
|
}, string, import("vue").PublicProps, Readonly<UiChartInterface> & Readonly<{
|
|
7
|
-
onSelectedRange?: ((
|
|
8
|
-
|
|
9
|
-
|
|
10
|
+
onSelectedRange?: ((T: {
|
|
11
|
+
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
12
|
+
chartId: UiChartInterface["id"];
|
|
13
|
+
}) => any) | undefined;
|
|
14
|
+
onChartUpdated?: (() => any) | undefined;
|
|
15
|
+
onDataPointSelection?: ((T: any) => any) | undefined;
|
|
10
16
|
}>, {
|
|
17
|
+
id: string;
|
|
11
18
|
loading: boolean;
|
|
12
19
|
range: "24h" | "7d" | "1m" | "3m" | "all";
|
|
13
|
-
id: string;
|
|
14
20
|
empty: boolean;
|
|
15
21
|
horizontal: boolean;
|
|
16
22
|
stacked: boolean;
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
-
import { UiDateRangeInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiDateRangeInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiDateRangeInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiDateRangeInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
uiDateRangeButtonClicked: (t: {
|
|
4
|
+
from?: string;
|
|
5
|
+
to?: string;
|
|
6
|
+
} | undefined) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<UiDateRangeInterface> & Readonly<{
|
|
8
|
+
onUiDateRangeButtonClicked?: ((t: {
|
|
9
|
+
from?: string;
|
|
10
|
+
to?: string;
|
|
11
|
+
} | undefined) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
13
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiDragAndDropInterface } from "
|
|
1
|
+
import { UiDragAndDropInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiDragAndDropInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
dragAndDropUpdated: (T: any) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiDragAndDropInterface> & Readonly<{
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { UiChartInterface } from "
|
|
1
|
+
import { UiChartInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiChartInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
selectedRange: (T: {
|
|
4
4
|
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
5
|
-
chartId:
|
|
5
|
+
chartId: UiChartInterface["id"];
|
|
6
6
|
}) => any;
|
|
7
7
|
chartUpdated: () => any;
|
|
8
8
|
dataPointSelection: (T: any) => any;
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<UiChartInterface> & Readonly<{
|
|
10
10
|
onSelectedRange?: ((T: {
|
|
11
11
|
range?: "24h" | "7d" | "1m" | "3m" | "all";
|
|
12
|
-
chartId:
|
|
12
|
+
chartId: UiChartInterface["id"];
|
|
13
13
|
}) => any) | undefined;
|
|
14
14
|
onChartUpdated?: (() => any) | undefined;
|
|
15
15
|
onDataPointSelection?: ((T: any) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
|
|
17
|
+
id: string;
|
|
18
18
|
type: "area" | "line" | "bar" | "scatter";
|
|
19
|
+
loading: boolean;
|
|
19
20
|
range: "24h" | "7d" | "1m" | "3m" | "all";
|
|
20
|
-
id: string;
|
|
21
21
|
empty: boolean;
|
|
22
22
|
horizontal: boolean;
|
|
23
23
|
stacked: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiGalleryInterface } from "
|
|
1
|
+
import { UiGalleryInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiGalleryInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
modalAction: (T: any) => any;
|
|
4
4
|
deleteImage: (T: any) => any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiLoadScreenInterface } from '
|
|
1
|
+
import { UiLoadScreenInterface } from '@/types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiLoadScreenInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<UiLoadScreenInterface> & Readonly<{}>, {
|
|
3
3
|
fixed: boolean;
|
|
4
4
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UiNoResultsInterface } from "
|
|
1
|
+
import { UiNoResultsInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiNoResultsInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
action: (T: string) => any;
|
|
4
|
-
noResultsOptionSelected: (T:
|
|
4
|
+
noResultsOptionSelected: (T: import("@/types").UiDropdownItemType) => any;
|
|
5
5
|
}, string, import("vue").PublicProps, Readonly<UiNoResultsInterface> & Readonly<{
|
|
6
6
|
onAction?: ((T: string) => any) | undefined;
|
|
7
|
-
onNoResultsOptionSelected?: ((T:
|
|
7
|
+
onNoResultsOptionSelected?: ((T: import("@/types").UiDropdownItemType) => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
9
|
export default _default;
|
|
@@ -1,148 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
literals: {
|
|
18
|
-
type: ObjectConstructor;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {
|
|
22
|
-
today: Date;
|
|
23
|
-
date: Date;
|
|
24
|
-
selectedRooms: never[];
|
|
25
|
-
showBasePricesModal: boolean;
|
|
26
|
-
showDays: number;
|
|
27
|
-
}, {
|
|
28
|
-
days(): dayjs.Dayjs[];
|
|
29
|
-
indeterminate(): boolean;
|
|
30
|
-
}, {
|
|
31
|
-
changeDate(date: any): void;
|
|
32
|
-
getSelectionBasePrice(room: any): any;
|
|
33
|
-
changeCategoryBulkPrices(): void;
|
|
34
|
-
changeCategorySelectionPrice(price: any): void;
|
|
35
|
-
changeCategoryUpgradePrice(price: any): void;
|
|
36
|
-
tableAction(action: any): void;
|
|
37
|
-
changeRoomPrice(price: any): void;
|
|
38
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
category: {
|
|
41
|
-
type: ObjectConstructor;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
rooms: {
|
|
45
|
-
type: ArrayConstructor;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
currency: ObjectConstructor;
|
|
49
|
-
actions: ArrayConstructor;
|
|
50
|
-
loading: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
literals: {
|
|
55
|
-
type: ObjectConstructor;
|
|
56
|
-
required: true;
|
|
57
|
-
};
|
|
58
|
-
}>> & Readonly<{}>, {
|
|
59
|
-
loading: boolean;
|
|
60
|
-
}, {}, {
|
|
61
|
-
DateSelector: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
62
|
-
selectedDate: {
|
|
63
|
-
type: ObjectConstructor;
|
|
64
|
-
required: true;
|
|
65
|
-
};
|
|
66
|
-
}>, {}, {}, {
|
|
67
|
-
currentDate(): string;
|
|
68
|
-
}, {
|
|
69
|
-
selectDate(name: any, page: any): void;
|
|
70
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
-
selectedDate: {
|
|
72
|
-
type: ObjectConstructor;
|
|
73
|
-
required: true;
|
|
74
|
-
};
|
|
75
|
-
}>> & Readonly<{}>, {}, {}, {
|
|
76
|
-
ChevronLeftIcon: import("vue").FunctionalComponent<import("vue").HTMLAttributes & import("vue").VNodeProps, {}, any, {}>;
|
|
77
|
-
ChevronRightIcon: import("vue").FunctionalComponent<import("vue").HTMLAttributes & import("vue").VNodeProps, {}, any, {}>;
|
|
78
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
-
Day: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
80
|
-
day: ObjectConstructor;
|
|
81
|
-
}>, {}, {}, {
|
|
82
|
-
currentDay(): {
|
|
83
|
-
dayName: string;
|
|
84
|
-
day: string;
|
|
85
|
-
month: string;
|
|
86
|
-
isWeekend: boolean;
|
|
87
|
-
isToday: boolean;
|
|
88
|
-
};
|
|
89
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
day: ObjectConstructor;
|
|
91
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
92
|
-
Price: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
93
|
-
currency: StringConstructor;
|
|
94
|
-
price: ObjectConstructor;
|
|
95
|
-
basePrice: NumberConstructor;
|
|
96
|
-
isBasePrice: {
|
|
97
|
-
type: BooleanConstructor;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
|
-
}>, {}, {}, {
|
|
101
|
-
currentDay(): {
|
|
102
|
-
isWeekend: boolean;
|
|
103
|
-
price: any;
|
|
104
|
-
};
|
|
105
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
|
-
currency: StringConstructor;
|
|
107
|
-
price: ObjectConstructor;
|
|
108
|
-
basePrice: NumberConstructor;
|
|
109
|
-
isBasePrice: {
|
|
110
|
-
type: BooleanConstructor;
|
|
111
|
-
default: boolean;
|
|
112
|
-
};
|
|
113
|
-
}>> & Readonly<{}>, {
|
|
114
|
-
isBasePrice: boolean;
|
|
115
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
116
|
-
uiButton: {
|
|
117
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../../../types/index.js").UiButtonInterface> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
118
|
-
size: "small" | "medium" | "big";
|
|
119
|
-
color: "primary" | "secondary" | "light" | "green" | "yellow" | "red";
|
|
120
|
-
loading: boolean;
|
|
121
|
-
}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
122
|
-
P: {};
|
|
123
|
-
B: {};
|
|
124
|
-
D: {};
|
|
125
|
-
C: {};
|
|
126
|
-
M: {};
|
|
127
|
-
Defaults: {};
|
|
128
|
-
}, Readonly<import("../../../types/index.js").UiButtonInterface> & Readonly<{}>, {}, {}, {}, {}, {
|
|
129
|
-
size: "small" | "medium" | "big";
|
|
130
|
-
color: "primary" | "secondary" | "light" | "green" | "yellow" | "red";
|
|
131
|
-
loading: boolean;
|
|
132
|
-
}>;
|
|
133
|
-
__isFragment?: never;
|
|
134
|
-
__isTeleport?: never;
|
|
135
|
-
__isSuspense?: never;
|
|
136
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("../../../types/index.js").UiButtonInterface> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
137
|
-
size: "small" | "medium" | "big";
|
|
138
|
-
color: "primary" | "secondary" | "light" | "green" | "yellow" | "red";
|
|
139
|
-
loading: boolean;
|
|
140
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
141
|
-
$slots: {
|
|
142
|
-
default?(_: {}): any;
|
|
143
|
-
};
|
|
144
|
-
});
|
|
145
|
-
SkeletonTable: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
146
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
import { UiPriceCalendarInterface, UiRoomTypeSelectionPriceType } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiPriceCalendarInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
tableAction: (t: any) => any;
|
|
4
|
+
dateChanged: (t: Date) => any;
|
|
5
|
+
changeCategoryBulkPrices: () => any;
|
|
6
|
+
changeCategorySelectionPrice: (t: UiRoomTypeSelectionPriceType) => any;
|
|
7
|
+
changeCategoryUpgradePrice: (t: UiRoomTypeSelectionPriceType) => any;
|
|
8
|
+
changeRoomPrice: (t: UiRoomTypeSelectionPriceType) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<UiPriceCalendarInterface> & Readonly<{
|
|
10
|
+
onTableAction?: ((t: any) => any) | undefined;
|
|
11
|
+
onDateChanged?: ((t: Date) => any) | undefined;
|
|
12
|
+
onChangeCategoryBulkPrices?: (() => any) | undefined;
|
|
13
|
+
onChangeCategorySelectionPrice?: ((t: UiRoomTypeSelectionPriceType) => any) | undefined;
|
|
14
|
+
onChangeCategoryUpgradePrice?: ((t: UiRoomTypeSelectionPriceType) => any) | undefined;
|
|
15
|
+
onChangeRoomPrice?: ((t: UiRoomTypeSelectionPriceType) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
147
17
|
export default _default;
|
|
148
|
-
import dayjs from "dayjs";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UiSidebarInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiSidebarInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
sideBarClick: (
|
|
1
|
+
import { UiSidebarInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiSidebarInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
sideBarClick: (t: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiSidebarInterface> & Readonly<{
|
|
5
|
-
onSideBarClick?: ((
|
|
5
|
+
onSideBarClick?: ((t: string) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
loading: boolean;
|
|
8
8
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { UiSidebarV2Interface } from "@/types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiSidebarV2Interface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
sideBarClick: (
|
|
4
|
-
productBarClick: (
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiSidebarV2Interface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
sideBarClick: (t: string) => any;
|
|
4
|
+
productBarClick: (t: string) => any;
|
|
5
5
|
}, string, import("vue").PublicProps, Readonly<UiSidebarV2Interface> & Readonly<{
|
|
6
|
-
onSideBarClick?: ((
|
|
7
|
-
onProductBarClick?: ((
|
|
6
|
+
onSideBarClick?: ((t: string) => any) | undefined;
|
|
7
|
+
onProductBarClick?: ((t: string) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
loading: boolean;
|
|
10
10
|
isFilterNavigation: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiStatsInterface } from "
|
|
1
|
+
import { UiStatsInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiStatsInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
statClick: (T: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiStatsInterface> & Readonly<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiStripedCardInterface } from "
|
|
1
|
+
import { UiStripedCardInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiStripedCardInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
itemClicked: (T: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiStripedCardInterface> & Readonly<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiTableInterface } from "
|
|
1
|
+
import { UiTableInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiTableInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
tableAction: (T: {
|
|
4
4
|
action: string;
|
|
@@ -15,6 +15,7 @@ declare const _default: import("vue").DefineComponent<UiTableInterface, {}, {},
|
|
|
15
15
|
emits: any;
|
|
16
16
|
};
|
|
17
17
|
}) => any;
|
|
18
|
+
selectedItemsDeleted: () => any;
|
|
18
19
|
}, string, import("vue").PublicProps, Readonly<UiTableInterface> & Readonly<{
|
|
19
20
|
onTableAction?: ((T: {
|
|
20
21
|
action: string;
|
|
@@ -31,8 +32,10 @@ declare const _default: import("vue").DefineComponent<UiTableInterface, {}, {},
|
|
|
31
32
|
emits: any;
|
|
32
33
|
};
|
|
33
34
|
}) => any) | undefined;
|
|
35
|
+
onSelectedItemsDeleted?: (() => any) | undefined;
|
|
34
36
|
}>, {
|
|
35
37
|
loading: boolean;
|
|
38
|
+
resetSelected: boolean;
|
|
36
39
|
orderDirection: "asc" | "desc";
|
|
37
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
38
41
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiTabInterface } from '
|
|
1
|
+
import { UiTabInterface } from '@/types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiTabInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
tabClicked: (T: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiTabInterface> & Readonly<{
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { UiTimelineInterface } from "
|
|
2
|
-
declare const _default: import("vue").DefineComponent<UiTimelineInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
1
|
+
import { UiTimelineInterface } from "@/types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<UiTimelineInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
+
timelineEventClicked: (t: string | number) => any;
|
|
4
|
+
timelineFooterClicked: (t: string) => any;
|
|
5
|
+
}, string, import("vue").PublicProps, Readonly<UiTimelineInterface> & Readonly<{
|
|
6
|
+
onTimelineEventClicked?: ((t: string | number) => any) | undefined;
|
|
7
|
+
onTimelineFooterClicked?: ((t: string) => any) | undefined;
|
|
8
|
+
}>, {
|
|
3
9
|
loading: boolean;
|
|
4
10
|
empty: boolean;
|
|
5
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UiTopbarInterface } from "
|
|
1
|
+
import { UiTopbarInterface } from "@/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<UiTopbarInterface, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
topBarClick: (T: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<UiTopbarInterface> & Readonly<{
|