bge-ui 1.3.4 → 1.3.6

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 (135) hide show
  1. package/dist/datePicker/components/ActionRow.vue.d.ts +1051 -0
  2. package/dist/datePicker/components/Common/ArrowBtn.vue.d.ts +29 -0
  3. package/dist/datePicker/components/Common/InstanceWrap.vue.d.ts +29 -0
  4. package/dist/datePicker/components/Common/SelectionOverlay.vue.d.ts +55 -0
  5. package/dist/datePicker/components/DatePicker/DatePicker.vue.d.ts +1114 -0
  6. package/dist/datePicker/components/DatePicker/DpCalendar.vue.d.ts +1085 -0
  7. package/dist/datePicker/components/DatePicker/DpHeader.vue.d.ts +1103 -0
  8. package/dist/datePicker/components/DatePicker/date-picker.d.ts +35 -0
  9. package/dist/datePicker/components/DatepickerInput.vue.d.ts +1008 -0
  10. package/dist/datePicker/components/DatepickerMenu.vue.d.ts +1061 -0
  11. package/dist/datePicker/components/Icons/CalendarIcon.d.ts +9 -0
  12. package/dist/datePicker/components/Icons/CancelIcon.d.ts +9 -0
  13. package/dist/datePicker/components/Icons/ChevronDownIcon.d.ts +9 -0
  14. package/dist/datePicker/components/Icons/ChevronLeftIcon.d.ts +9 -0
  15. package/dist/datePicker/components/Icons/ChevronRightIcon.d.ts +9 -0
  16. package/dist/datePicker/components/Icons/ChevronUpIcon.d.ts +9 -0
  17. package/dist/datePicker/components/Icons/ClockIcon.d.ts +9 -0
  18. package/dist/datePicker/components/Icons/index.d.ts +7 -0
  19. package/dist/datePicker/components/MonthPicker/MonthPicker.vue.d.ts +1071 -0
  20. package/dist/datePicker/components/MonthPicker/month-picker.d.ts +34 -0
  21. package/dist/datePicker/components/QuarterPicker/QuarterPicker.vue.d.ts +1043 -0
  22. package/dist/datePicker/components/QuarterPicker/quarter-picker.d.ts +25 -0
  23. package/dist/datePicker/components/TimePicker/TimeInput.vue.d.ts +1116 -0
  24. package/dist/datePicker/components/TimePicker/TimePicker.vue.d.ts +1087 -0
  25. package/dist/datePicker/components/TimePicker/TimePickerSolo.vue.d.ts +1036 -0
  26. package/dist/datePicker/components/TimePicker/time-picker-utils.d.ts +15 -0
  27. package/dist/datePicker/components/TimePicker/time-picker.d.ts +13 -0
  28. package/dist/datePicker/components/YearPicker/YearPicker.vue.d.ts +1040 -0
  29. package/dist/datePicker/components/YearPicker/year-picker.d.ts +9 -0
  30. package/dist/datePicker/components/shared/YearModePicker.vue.d.ts +1075 -0
  31. package/dist/datePicker/components/shared/month-quarter-picker.d.ts +29 -0
  32. package/dist/datePicker/composables/arrow-navigate.d.ts +26 -0
  33. package/dist/datePicker/composables/calendar-class.d.ts +8 -0
  34. package/dist/datePicker/composables/common.d.ts +6 -0
  35. package/dist/datePicker/composables/defaults.d.ts +37 -0
  36. package/dist/datePicker/composables/external-internal-mapper.d.ts +14 -0
  37. package/dist/datePicker/composables/flow.d.ts +10 -0
  38. package/dist/datePicker/composables/index.d.ts +14 -0
  39. package/dist/datePicker/composables/model.d.ts +17 -0
  40. package/dist/datePicker/composables/month-year.d.ts +10 -0
  41. package/dist/datePicker/composables/position.d.ts +25 -0
  42. package/dist/datePicker/composables/shared.d.ts +12 -0
  43. package/dist/datePicker/composables/slots.d.ts +10 -0
  44. package/dist/datePicker/composables/state.d.ts +8 -0
  45. package/dist/datePicker/composables/transition.d.ts +7 -0
  46. package/dist/datePicker/composables/validation.d.ts +12 -0
  47. package/dist/datePicker/constants/index.d.ts +43 -0
  48. package/dist/datePicker/datePicker.vue.d.ts +1006 -0
  49. package/dist/datePicker/directives/clickOutside.d.ts +2 -0
  50. package/dist/datePicker/index.vue.d.ts +1012 -0
  51. package/dist/datePicker/interfaces.d.ts +323 -0
  52. package/dist/datePicker/props.d.ts +865 -0
  53. package/dist/datePicker/utils/date-utils.d.ts +45 -0
  54. package/dist/datePicker/utils/defaults.d.ts +42 -0
  55. package/dist/datePicker/utils/timezone.d.ts +8 -0
  56. package/dist/datePicker/utils/type-guard.d.ts +1 -0
  57. package/dist/datePicker/utils/util.d.ts +57 -0
  58. package/dist/dialog/index.vue.d.ts +6 -3
  59. package/dist/index.d.ts +2 -1
  60. package/dist/index.js +13008 -1250
  61. package/dist/style.css +1188 -1
  62. package/dist/tooltip/index.vue.d.ts +2 -2
  63. package/dist/tooltip/usePopper.d.ts +5 -5
  64. package/package.json +3 -2
  65. package/src/datePicker/components/ActionRow.vue +216 -0
  66. package/src/datePicker/components/Common/ArrowBtn.vue +42 -0
  67. package/src/datePicker/components/Common/InstanceWrap.vue +28 -0
  68. package/src/datePicker/components/Common/SelectionOverlay.vue +320 -0
  69. package/src/datePicker/components/DatePicker/DatePicker.vue +302 -0
  70. package/src/datePicker/components/DatePicker/DpCalendar.vue +405 -0
  71. package/src/datePicker/components/DatePicker/DpHeader.vue +332 -0
  72. package/src/datePicker/components/DatePicker/date-picker.ts +674 -0
  73. package/src/datePicker/components/DatepickerInput.vue +334 -0
  74. package/src/datePicker/components/DatepickerMenu.vue +424 -0
  75. package/src/datePicker/components/Icons/CalendarIcon.ts +40 -0
  76. package/src/datePicker/components/Icons/CancelIcon.ts +32 -0
  77. package/src/datePicker/components/Icons/ChevronDownIcon.ts +29 -0
  78. package/src/datePicker/components/Icons/ChevronLeftIcon.ts +29 -0
  79. package/src/datePicker/components/Icons/ChevronRightIcon.ts +29 -0
  80. package/src/datePicker/components/Icons/ChevronUpIcon.ts +29 -0
  81. package/src/datePicker/components/Icons/ClockIcon.ts +32 -0
  82. package/src/datePicker/components/Icons/index.ts +8 -0
  83. package/src/datePicker/components/MonthPicker/MonthPicker.vue +130 -0
  84. package/src/datePicker/components/MonthPicker/month-picker.ts +232 -0
  85. package/src/datePicker/components/QuarterPicker/QuarterPicker.vue +111 -0
  86. package/src/datePicker/components/QuarterPicker/quarter-picker.ts +153 -0
  87. package/src/datePicker/components/TimePicker/TimeInput.vue +477 -0
  88. package/src/datePicker/components/TimePicker/TimePicker.vue +265 -0
  89. package/src/datePicker/components/TimePicker/TimePickerSolo.vue +79 -0
  90. package/src/datePicker/components/TimePicker/time-picker-utils.ts +179 -0
  91. package/src/datePicker/components/TimePicker/time-picker.ts +112 -0
  92. package/src/datePicker/components/YearPicker/YearPicker.vue +70 -0
  93. package/src/datePicker/components/YearPicker/year-picker.ts +109 -0
  94. package/src/datePicker/components/shared/YearModePicker.vue +105 -0
  95. package/src/datePicker/components/shared/month-quarter-picker.ts +199 -0
  96. package/src/datePicker/composables/arrow-navigate.ts +191 -0
  97. package/src/datePicker/composables/calendar-class.ts +383 -0
  98. package/src/datePicker/composables/common.ts +25 -0
  99. package/src/datePicker/composables/defaults.ts +123 -0
  100. package/src/datePicker/composables/external-internal-mapper.ts +442 -0
  101. package/src/datePicker/composables/flow.ts +70 -0
  102. package/src/datePicker/composables/index.ts +14 -0
  103. package/src/datePicker/composables/model.ts +89 -0
  104. package/src/datePicker/composables/month-year.ts +72 -0
  105. package/src/datePicker/composables/position.ts +297 -0
  106. package/src/datePicker/composables/shared.ts +98 -0
  107. package/src/datePicker/composables/slots.ts +84 -0
  108. package/src/datePicker/composables/state.ts +25 -0
  109. package/src/datePicker/composables/transition.ts +18 -0
  110. package/src/datePicker/composables/validation.ts +312 -0
  111. package/src/datePicker/constants/index.ts +49 -0
  112. package/src/datePicker/datePicker.vue +554 -0
  113. package/src/datePicker/directives/clickOutside.ts +79 -0
  114. package/src/datePicker/index.vue +158 -0
  115. package/src/datePicker/interfaces.ts +404 -0
  116. package/src/datePicker/props.ts +173 -0
  117. package/src/datePicker/style/components/_ActionRow.scss +73 -0
  118. package/src/datePicker/style/components/_Calendar.scss +284 -0
  119. package/src/datePicker/style/components/_DatepickerInput.scss +109 -0
  120. package/src/datePicker/style/components/_DatepickerMenu.scss +213 -0
  121. package/src/datePicker/style/components/_MonthYearInput.scss +97 -0
  122. package/src/datePicker/style/components/_QuarterPicker.scss +53 -0
  123. package/src/datePicker/style/components/_SelectionOverlay.scss +142 -0
  124. package/src/datePicker/style/components/_TimeInput.scss +181 -0
  125. package/src/datePicker/style/components/_shared.scss +15 -0
  126. package/src/datePicker/style/main.scss +259 -0
  127. package/src/datePicker/utils/date-utils.ts +440 -0
  128. package/src/datePicker/utils/defaults.ts +327 -0
  129. package/src/datePicker/utils/timezone.ts +38 -0
  130. package/src/datePicker/utils/type-guard.ts +3 -0
  131. package/src/datePicker/utils/util.ts +322 -0
  132. package/src/dialog/index.vue +9 -0
  133. package/src/form/index.vue +2 -1
  134. package/src/index.ts +6 -2
  135. package/src/slider/index.vue +1 -1
@@ -0,0 +1,45 @@
1
+ import type { DateTimeSetter, DateValue, TimeModel, TimeType, TimeObj, PossibleDate, IFormat, Highlight, HighlightFn, MaybeDate } from '../interfaces';
2
+ import type { Duration, Locale } from 'date-fns';
3
+ export declare const parseFreeInput: (value: string, pattern: string | string[] | ((value: string) => Date | null), time: TimeModel | TimeModel[], inputVal?: string, onPaste?: boolean, locale?: Locale) => Date | null;
4
+ export declare const getDate: (value?: PossibleDate) => Date;
5
+ export declare const dateToUtc: (date: Date, preserve: boolean, enableSeconds: boolean) => string;
6
+ export declare const resetDateTime: (value: Date | string, beginning?: boolean) => Date;
7
+ export declare const setDateTime: (date: Date | null, hours?: DateTimeSetter, minutes?: DateTimeSetter, seconds?: DateTimeSetter) => Date;
8
+ export declare const isDateBefore: (date: DateValue, dateToCompare: DateValue) => boolean;
9
+ export declare const isDateEqual: (date: DateValue, dateToCompare: DateValue) => boolean;
10
+ export declare const isDateAfter: (date: DateValue, dateToCompare: DateValue) => boolean;
11
+ export declare const isDateBetween: (range: Date[], hoverDate: Date | null, dateToCheck: Date) => boolean;
12
+ export declare const resetDate: (date: Date | string) => Date;
13
+ export declare const sanitizeTime: (time: TimeModel, type?: TimeType, value?: number) => Duration;
14
+ export declare const getTimeObj: (date: Date) => TimeObj;
15
+ export declare const getMinMonth: (year: number, minDate?: PossibleDate) => number | undefined;
16
+ export declare const getMaxMonth: (year: number, maxDate?: PossibleDate) => number | undefined;
17
+ export declare const getMinMaxYear: (minMaxDate: PossibleDate) => number | undefined;
18
+ export declare const getDaysInBetween: (dateOne: Date, dateTwo: Date) => Date[];
19
+ export declare const getNextMonthYear: (date: Date) => {
20
+ month: number;
21
+ year: number;
22
+ };
23
+ export declare const getWeekFromDate: (date: Date, weekStart: string | number) => [Date, Date];
24
+ export declare const assignDefaultTime: (obj: TimeModel | Record<string, string | number>, enableSeconds: boolean) => TimeModel;
25
+ export declare const getDateForCompare: (date: MaybeDate, month: number, year: number) => [Date, Date];
26
+ export declare const setDateMonthOrYear: (date: DateValue, month?: number | null, year?: number | null) => Date;
27
+ export declare const validateMonthYear: (date: Date, maxDate: DateValue, minDate: DateValue, preventMinMaxNavigation: boolean, next: boolean) => boolean;
28
+ export declare const validateMinDate: (month: number, year: number, minDate: Date) => boolean;
29
+ export declare const validateMaxDate: (month: number, year: number, maxDate: Date) => boolean;
30
+ export declare const formatDate: (value: Date | Date[], formatProp: IFormat | null, formatLocale: Locale | null, rangeSeparator: string, modelAuto: boolean, pattern: string, parser?: boolean) => string;
31
+ export declare const checkPartialRangeValue: (isPartial: boolean) => Date;
32
+ export declare const checkRangeEnabled: <T>(fn: () => T, range: boolean) => T;
33
+ export declare const isValidDate: (value: Date | Date[] | null | (Date | null)[]) => boolean;
34
+ export declare const setDateTimeFromObj: (time: TimeModel, date?: Date | null) => Date;
35
+ /**
36
+ * Depending on the time or full date validation, validate if the selected time is valid
37
+ * Extracted logic from isValidTime fn
38
+ */
39
+ export declare const validateTime: (date: Date | null, dateToCompare: Date, compare: 'max' | 'min', full: boolean) => boolean;
40
+ export declare const checkTimeMinMax: (minOrMax: TimeModel | null, dateCompare: Date | string | null, map: 'min' | 'max', selectedDateTime: Date | Date[], isValid: boolean) => boolean;
41
+ export declare const setTimeValue: (date: Date) => Date;
42
+ export declare const getDisabledMonths: (disabledDates: Map<string, Date | null> | ((date: Date) => boolean) | null, year: number) => number[];
43
+ export declare const checkHighlightMonth: (defaultedHighlight: Highlight | HighlightFn, month: number, year: number) => boolean;
44
+ export declare const checkHighlightYear: (defaultedHighlight: Highlight | HighlightFn, year: number) => boolean;
45
+ export declare const getCellId: (date: Date) => string;
@@ -0,0 +1,42 @@
1
+ import type { AriaLabels, IFormat, Transition, TextInputOptions, DateFilter, ActionRowData, MultiCalendarsProp, MultiCalendarsOptions, TextInputProp, InlineProp, InlineOptions, Config, HighlightProp, Highlight, HighlightFn, WeekNumbersProp, WeekNumbersOpts, RangeProp, RangeConfig, TimeZoneProp, PropDates, MultiDatesProp, MultiDatesDefault, MapPropDatesOpts, UIOpts, UIParsed } from '../interfaces';
2
+ export declare const mergeDefaultTransitions: (conf: Partial<Transition>) => Transition;
3
+ export declare const defaultAriaLabels: (labels: Partial<AriaLabels>) => AriaLabels;
4
+ export declare const defaultMultiCalendars: (multiCalendars?: MultiCalendarsProp) => MultiCalendarsOptions;
5
+ export declare const defaultPreviewFormat: (previewFormat: IFormat, format: IFormat, defaultPattern: string | ((val: Date) => string)) => IFormat;
6
+ export declare const defaultTransitions: (transitions: boolean | Partial<Transition>) => Transition;
7
+ /**
8
+ * Default options to merge with user provided ones
9
+ */
10
+ export declare const getDefaultTextInputOptions: (textInput: TextInputProp) => TextInputOptions & {
11
+ enabled: boolean;
12
+ };
13
+ /**
14
+ * Default filters to merge with user provided values
15
+ */
16
+ export declare const getDefaultFilters: (filters: Partial<DateFilter>) => DateFilter;
17
+ export declare const getDefaultActionRowData: (actionRow: Partial<ActionRowData>) => ActionRowData;
18
+ export declare const getDefaultInlineOptions: (inline: InlineProp) => InlineOptions;
19
+ export declare const getDefaultConfig: (config?: Partial<Config>) => Config;
20
+ export declare const getDefaultHighlight: (highlight: HighlightProp) => Highlight | HighlightFn;
21
+ export declare const getDefaultWeekNumbers: (weekNumbers: WeekNumbersProp) => WeekNumbersOpts;
22
+ export declare const getDefaultRangeOptions: (config: RangeProp) => RangeConfig;
23
+ export declare const getDefaultTimeZone: (timeZone: TimeZoneProp) => {
24
+ timezone: undefined;
25
+ exactMatch: boolean;
26
+ emitTimezone: undefined;
27
+ dateInTz?: undefined;
28
+ convertModel?: undefined;
29
+ } | {
30
+ timezone: string | undefined;
31
+ exactMatch: boolean;
32
+ dateInTz: string | undefined;
33
+ emitTimezone: string | undefined;
34
+ convertModel: boolean;
35
+ };
36
+ /**
37
+ * Sync all props that rely on the date value to be in the same timezone
38
+ * All validation that is done from these props will now be in sync with provided timezone config
39
+ */
40
+ export declare const mapPropDates: (opts: MapPropDatesOpts) => PropDates;
41
+ export declare const getDefaultMultiDates: (multiDates: MultiDatesProp) => MultiDatesDefault;
42
+ export declare const getDefaultUI: (ui: Partial<UIOpts>) => UIParsed;
@@ -0,0 +1,8 @@
1
+ import type { MaybeDate, TimeZoneConfig } from '../interfaces';
2
+ /**
3
+ * Converts date from the local timezone into the specific timezone
4
+ */
5
+ export declare const localToTz: (date: Date, timeZone?: string) => Date;
6
+ export declare const dateToTimezoneSafe: (date: Date | string | number, tz?: TimeZoneConfig, reset?: boolean) => Date;
7
+ export declare const sanitizeDateToLocal: (date: MaybeDate, tz?: TimeZoneConfig, reset?: boolean) => Date | null;
8
+ export declare const getTimezoneOffset: (timezone?: string) => number;
@@ -0,0 +1 @@
1
+ export declare const isNumberArray: (value: number | number[]) => value is number[];
@@ -0,0 +1,57 @@
1
+ import type { Config, DPElements, IDefaultSelect, IMarker, MaybeElementRef, ModelValue, OverlayGridItem } from '../interfaces';
2
+ import { type Locale } from 'date-fns';
3
+ export declare const getArrayInArray: <T>(list: T[], increment?: number) => T[][];
4
+ /**
5
+ * Generate week day names based on formatLocale or locale and in order specified in week start
6
+ */
7
+ export declare const getDayNames: (formatLocale: Locale | null, locale: string, weekStart: number) => string[];
8
+ /**
9
+ * Generate array of years for selection display
10
+ */
11
+ export declare const getYears: (yearRange: number[] | string[], locale: string, reverse?: boolean) => IDefaultSelect[];
12
+ /**
13
+ * Generate month names based on formatLocale or locale for selection display
14
+ */
15
+ export declare const getMonths: (formatLocale: Locale | null, locale: string, monthFormat: 'long' | 'short') => IDefaultSelect[];
16
+ /**
17
+ * Since internally watched values are in 24h mode, this will get am-pm value from set hour
18
+ */
19
+ export declare const hoursToAmPmHours: (index: number) => number;
20
+ export declare const unrefElement: (elRef: MaybeElementRef) => HTMLElement | null;
21
+ export declare const getDefaultMarker: (marker: IMarker) => IMarker;
22
+ export declare const isModelAuto: (modelValue: ModelValue) => boolean;
23
+ export declare const errors: {
24
+ prop: (name: string) => string;
25
+ dateArr: (name: string) => string;
26
+ };
27
+ export declare const convertType: <T>(val: any) => T;
28
+ export declare const getNumVal: (num?: string | number | null) => number | null;
29
+ export declare const isNumNullish: (num?: number | null) => num is null;
30
+ export declare const findFocusableEl: (container: HTMLElement | null) => HTMLElement | undefined;
31
+ /**
32
+ * Create array for the SelectionOverlay grouped by 3
33
+ */
34
+ export declare const getGroupedList: (items: IDefaultSelect[]) => IDefaultSelect[][];
35
+ /**
36
+ * Check if number is between min and max values
37
+ */
38
+ export declare const checkMinMaxValue: (value: number | string, min?: number, max?: number) => boolean;
39
+ /**
40
+ * Maps data for the SelectionOverlay
41
+ */
42
+ export declare const groupListAndMap: (list: IDefaultSelect[], cb: (item: IDefaultSelect) => {
43
+ active: boolean;
44
+ disabled: boolean;
45
+ highlighted?: boolean;
46
+ isBetween?: boolean;
47
+ }) => OverlayGridItem[][];
48
+ export declare const checkStopPropagation: (ev: Event | undefined, config: Config, immediate?: boolean) => void;
49
+ export declare function findNextFocusableElement(startingElement: HTMLElement, reverse: boolean): HTMLElement | undefined;
50
+ export declare const getElWithin: (wrapper: HTMLElement | null, attribute: DPElements) => HTMLElement | undefined | null;
51
+ export declare const formatNumber: (num: number, locale: string) => string;
52
+ export declare const getMapKey: (date: Date | string | number) => string;
53
+ export declare const shouldMap: (arr: any) => arr is boolean | string[] | Date[];
54
+ export declare const getMapDate: <T>(date: Date, map: Map<string, T>) => T | undefined;
55
+ export declare const matchDate: (date: Date, mapOrFn: Map<string, any> | ((date: Date) => boolean) | null) => boolean;
56
+ export declare const checkKeyDown: (ev: KeyboardEvent, fn: () => any, prevent?: boolean, cb?: ((ev: KeyboardEvent) => void) | undefined) => any;
57
+ export declare const isIOS: () => boolean;
@@ -1,3 +1,4 @@
1
+ declare function updateHeight(): void;
1
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
3
  customClass: {
3
4
  type: StringConstructor;
@@ -23,9 +24,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
23
24
  type: StringConstructor;
24
25
  default: string;
25
26
  };
26
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
- "update:visible": (...args: any[]) => void;
27
+ }, {
28
+ updateHeight: typeof updateHeight;
29
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
30
  close: (...args: any[]) => void;
31
+ "update:visible": (...args: any[]) => void;
29
32
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
30
33
  customClass: {
31
34
  type: StringConstructor;
@@ -52,8 +55,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
52
55
  default: string;
53
56
  };
54
57
  }>> & {
55
- "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
56
58
  onClose?: ((...args: any[]) => any) | undefined;
59
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
57
60
  }, {
58
61
  title: string;
59
62
  customClass: string;
package/dist/index.d.ts CHANGED
@@ -14,8 +14,9 @@ import UiRadio from "./radio/index.vue";
14
14
  import UiSlider from "./slider/index.vue";
15
15
  import UiSelect from "./select/index.vue";
16
16
  import UiOption from "./select/option.vue";
17
+ import UiDatePicker from "./datePicker/index.vue";
17
18
  export * from './icons/index.ts';
18
- export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption };
19
+ export { UiButton, UiLink, UiForm, UiFormItem, UiInput, UiTabs, UiTabPane, UiTooltip, UiDialog, UiMessage, UiCheckbox, UiRadio, UiSlider, UiSelect, UiOption, UiDatePicker };
19
20
  declare const _default: {
20
21
  install(app: App): void;
21
22
  };