@hotelinking/ui 6.39.0 → 6.39.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.
Files changed (38) hide show
  1. package/dist/types/components/Atoms/uiButton/uiButton.vue.d.ts +1 -1
  2. package/dist/types/components/Atoms/uiIcon/uiIcon.vue.d.ts +1 -1
  3. package/dist/types/components/Atoms/uiInput/uiInput.vue.d.ts +1 -1
  4. package/dist/types/components/Atoms/uiInputFile/uiInputFile.vue.d.ts +1 -1
  5. package/dist/types/components/Atoms/uiRangeSlider/uiRangeSlider.vue.d.ts +1 -1
  6. package/dist/types/components/Atoms/uiSelect/uiSelect.vue.d.ts +1 -1
  7. package/dist/types/components/Atoms/uiTag/uiTag.vue.d.ts +1 -1
  8. package/dist/types/components/Atoms/uiTextArea/uiTextArea.vue.d.ts +1 -1
  9. package/dist/types/components/Atoms/uiToggle/uiToggle.vue.d.ts +1 -1
  10. package/dist/types/components/Molecules/uiAlert/uiAlert.vue.d.ts +1 -1
  11. package/dist/types/components/Molecules/uiBreadcrumbs/uiBreadcrumbs.vue.d.ts +1 -1
  12. package/dist/types/components/Molecules/uiCard/uiCard.vue.d.ts +1 -1
  13. package/dist/types/components/Molecules/uiDeviceStatus/uiDeviceStatus.vue.d.ts +1 -1
  14. package/dist/types/components/Molecules/uiFilter/uiFilter.vue.d.ts +1 -1
  15. package/dist/types/components/Molecules/uiModal/uiModal.vue.d.ts +1 -1
  16. package/dist/types/components/Molecules/uiNotification/uiNotification.vue.d.ts +1 -1
  17. package/dist/types/components/Molecules/uiSectionTitle/uiSectionTitle.vue.d.ts +1 -1
  18. package/dist/types/components/Molecules/uiTaskList/uiTaskList.vue.d.ts +1 -1
  19. package/dist/types/components/Organisms/uiCharts/uiChart.vue.d.ts +1 -1
  20. package/dist/types/components/Organisms/uiCircleCharts/uiCircleChart.vue.d.ts +1 -1
  21. package/dist/types/components/Organisms/uiDateRange/uiDateRange.vue.d.ts +1 -1
  22. package/dist/types/components/Organisms/uiDragAndDrop/uiDragAndDrop.vue.d.ts +1 -1
  23. package/dist/types/components/Organisms/uiFunnelChartV2/uiFunnelChartV2.vue.d.ts +1 -1
  24. package/dist/types/components/Organisms/uiGallery/uiGallery.vue.d.ts +1 -1
  25. package/dist/types/components/Organisms/uiLoadingScreen/uiLoadingScreen.vue.d.ts +1 -1
  26. package/dist/types/components/Organisms/uiNoResults/uiNoResults.vue.d.ts +1 -1
  27. package/dist/types/components/Organisms/uiPagination/uiPagination.vue.d.ts +1 -1
  28. package/dist/types/components/Organisms/uiRightSidebar/uiRightSidebar.vue.d.ts +1 -1
  29. package/dist/types/components/Organisms/uiSidebar/uiSidebar.vue.d.ts +1 -1
  30. package/dist/types/components/Organisms/uiStats/uiStats.vue.d.ts +1 -1
  31. package/dist/types/components/Organisms/uiStripedCard/uiStripedCard.vue.d.ts +1 -1
  32. package/dist/types/components/Organisms/uiTable/uiTable.vue.d.ts +1 -1
  33. package/dist/types/components/Organisms/uiTabs/uiTabs.vue.d.ts +1 -1
  34. package/dist/types/components/Organisms/uiTimeline/uiTimeline.vue.d.ts +1 -1
  35. package/dist/types/components/Organisms/uiTopbar/uiTopbar.vue.d.ts +1 -1
  36. package/dist/ui.cjs +18 -24
  37. package/dist/ui.es.js +5224 -6927
  38. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import type { UiButtonInterface } from "@/types";
1
+ import type { UiButtonInterface } from "../../../types";
2
2
  declare function __VLS_template(): {
3
3
  default?(_: {}): any;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { UiIconInterface } from '@/types';
1
+ import { UiIconInterface } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiIconInterface>, {
3
3
  size: string;
4
4
  color: string;
@@ -1,4 +1,4 @@
1
- import { UiInputInterface } from "@/types";
1
+ import { UiInputInterface } from "../../../types";
2
2
  type InputType = {
3
3
  name: string;
4
4
  value: string;
@@ -1,4 +1,4 @@
1
- import { UiInputFileInterface } from "@/types";
1
+ import { UiInputFileInterface } from "../../../types";
2
2
  type FileInputType = {
3
3
  id: string;
4
4
  files: any;
@@ -1,4 +1,4 @@
1
- import { UiRangeSliderInterface } from '@/types';
1
+ import { UiRangeSliderInterface } from '../../../types';
2
2
  type SliderEventType = {};
3
3
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiRangeSliderInterface>, {
4
4
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { SelectItemType, UiSelectInterface } from "@/types";
1
+ import { SelectItemType, UiSelectInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSelectInterface>, {
3
3
  loading: boolean;
4
4
  color: string;
@@ -1,4 +1,4 @@
1
- import { UiTagInterface } from "@/types";
1
+ import { UiTagInterface } from "../../../types";
2
2
  declare function __VLS_template(): {
3
3
  default?(_: {}): any;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { UiTextAreaInterface } from "@/types";
1
+ import { UiTextAreaInterface } from "../../../types";
2
2
  type InputType = {
3
3
  name: string;
4
4
  value?: string;
@@ -1,4 +1,4 @@
1
- import { UiToggleInterface } from "@/types";
1
+ import { UiToggleInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiToggleInterface>, {
3
3
  checked: boolean;
4
4
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { UiAlertInterface } from "@/types";
1
+ import { UiAlertInterface } from "../../../types";
2
2
  declare function __VLS_template(): {
3
3
  default?(_: {}): any;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { UiBreadcrumbsInterface } from "@/types";
1
+ import { UiBreadcrumbsInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiBreadcrumbsInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiBreadcrumbsInterface>, {
@@ -1,4 +1,4 @@
1
- import { UiCardInterface } from '@/types';
1
+ import { UiCardInterface } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiCardInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiCardInterface>, {
@@ -1,4 +1,4 @@
1
- import { UiDeviceStatusInterface } from "@/types";
1
+ import { UiDeviceStatusInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiDeviceStatusInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiDeviceStatusInterface>, {
@@ -1,4 +1,4 @@
1
- import { UiFilterInterface } from "@/types";
1
+ import { UiFilterInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiFilterInterface>, {
3
3
  position: string;
4
4
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { UiModalInterface } from "@/types";
1
+ import { UiModalInterface } from "../../../types";
2
2
  type modalType = {
3
3
  modal: string;
4
4
  action: string;
@@ -1,4 +1,4 @@
1
- import { UiNotificationInterface } from "@/types";
1
+ import { UiNotificationInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiNotificationInterface>, {
3
3
  type: string;
4
4
  fixed: boolean;
@@ -1,4 +1,4 @@
1
- import { UiSectionTitleInterface } from '@/types';
1
+ import { UiSectionTitleInterface } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiSectionTitleInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiSectionTitleInterface>>>, {}, {}>;
3
3
  export default _default;
4
4
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,4 +1,4 @@
1
- import { UiTaskList } from '@/types';
1
+ import { UiTaskList } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTaskList>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTaskList>, {
@@ -1,4 +1,4 @@
1
- import { UiChartInterface } from "@/types";
1
+ import { UiChartInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiChartInterface>, {
3
3
  id: string;
4
4
  type: string;
@@ -1,4 +1,4 @@
1
- import { UiChartInterface } from "@/types";
1
+ import { UiChartInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiChartInterface>, {
3
3
  id: string;
4
4
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { UiDateRangeInterface } from "@/types";
1
+ import { UiDateRangeInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiDateRangeInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiDateRangeInterface>>>, {}, {}>;
3
3
  export default _default;
4
4
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,4 +1,4 @@
1
- import { UiDragAndDropInterface } from "@/types";
1
+ import { UiDragAndDropInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiDragAndDropInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiDragAndDropInterface>, {
@@ -1,4 +1,4 @@
1
- import { UiChartInterface } from "@/types";
1
+ import { UiChartInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiChartInterface>, {
3
3
  id: string;
4
4
  type: string;
@@ -1,4 +1,4 @@
1
- import { UiGalleryInterface } from "@/types";
1
+ import { UiGalleryInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiGalleryInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  modalAction: (T: any) => void;
4
4
  deleteImage: (T: any) => void;
@@ -1,4 +1,4 @@
1
- import { UiLoadScreenInterface } from '@/types';
1
+ import { UiLoadScreenInterface } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiLoadScreenInterface>, {
3
3
  fixed: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiLoadScreenInterface>, {
@@ -1,4 +1,4 @@
1
- import { UiNoResultsInterface } from "@/types";
1
+ import { UiNoResultsInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiNoResultsInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  action: (T: string) => void;
4
4
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiNoResultsInterface>>> & {
@@ -1,4 +1,4 @@
1
- import { UiPaginationInterface } from "@/types";
1
+ import { UiPaginationInterface } from "../../../types";
2
2
  declare function __VLS_template(): {
3
3
  previous?(_: {}): any;
4
4
  previous?(_: {}): any;
@@ -1,4 +1,4 @@
1
- import { UiRightSidebarInterface } from '@/types';
1
+ import { UiRightSidebarInterface } from '../../../types';
2
2
  declare function __VLS_template(): {
3
3
  default?(_: {}): any;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { UiSidebarInterface } from "@/types";
1
+ import { UiSidebarInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiSidebarInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1,4 +1,4 @@
1
- import { UiStatsInterface } from "@/types";
1
+ import { UiStatsInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiStatsInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1,4 +1,4 @@
1
- import { UiStripedCardInterface } from "@/types";
1
+ import { UiStripedCardInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiStripedCardInterface>, {
3
3
  loading: boolean;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1,4 +1,4 @@
1
- import { UiTableInterface } from "@/types";
1
+ import { UiTableInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTableInterface>, {
3
3
  orderDirection: string;
4
4
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { UiTabInterface } from '@/types';
1
+ import { UiTabInterface } from '../../../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiTabInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  tabClicked: (T: string) => void;
4
4
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiTabInterface>>> & {
@@ -1,4 +1,4 @@
1
- import { UiTimelineInterface } from "@/types";
1
+ import { UiTimelineInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTimelineInterface>, {
3
3
  loading: boolean;
4
4
  empty: boolean;
@@ -1,4 +1,4 @@
1
- import { UiTopbarInterface } from "@/types";
1
+ import { UiTopbarInterface } from "../../../types";
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<UiTopbarInterface>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  topBarClick: (T: string) => void;
4
4
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<UiTopbarInterface>>> & {