@illinois-grad/grad-vue 2.5.2 → 2.5.3

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.
@@ -19,6 +19,7 @@ import type GFileInput from './components/GFileInput.vue';
19
19
  import type GForm from './components/GForm.vue';
20
20
  import type GHamburgerMenu from './components/GHamburgerMenu.vue';
21
21
  import type GModal from './components/GModal.vue';
22
+ import type GMultiSelect from './components/GMultiSelect.vue';
22
23
  import type GOverlay from './components/GOverlay.vue';
23
24
  import type GPopover from './components/GPopover.vue';
24
25
  import type GTooltip from './components/GTooltip.vue';
@@ -63,6 +64,7 @@ export interface GHistoryScrollerElement extends HTMLElement {
63
64
  }[];
64
65
  }
65
66
  export type GModalElement = HTMLElement & CEProps<typeof GModal>;
67
+ export type GMultiSelectElement = HTMLElement & CEProps<typeof GMultiSelect>;
66
68
  export type GOverlayElement = HTMLElement & CEProps<typeof GOverlay>;
67
69
  export type GPopoverElement = HTMLElement & CEProps<typeof GPopover>;
68
70
  export type GTooltipElement = HTMLElement & CEProps<typeof GTooltip>;
@@ -163,6 +165,7 @@ declare global {
163
165
  'g-hamburger-menu': GHamburgerMenuElement;
164
166
  'g-history-scroller': GHistoryScrollerElement;
165
167
  'g-modal': GModalElement;
168
+ 'g-multi-select': GMultiSelectElement;
166
169
  'g-overlay': GOverlayElement;
167
170
  'g-popover': GPopoverElement;
168
171
  'g-tooltip': GTooltipElement;