@finmars/ui 1.0.33 → 1.0.34
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/finmars-ui.es.js +503 -502
- package/dist/finmars-ui.umd.js +3 -3
- package/dist/src/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { default as FmItemPicker } from './components/fm/ItemPicker/ItemPicker.v
|
|
|
12
12
|
import { default as FmLogo } from './components/fm/Logo/Logo.vue';
|
|
13
13
|
import { default as FmMenu } from './components/fm/Menu/Menu.vue';
|
|
14
14
|
import { default as FmNavigationPortal } from './components/fm/Navigation/NavigationPortal.vue';
|
|
15
|
+
import { default as FmNavigation } from './components/fm/Navigation/Navigation.vue';
|
|
15
16
|
import { default as FmPagination } from './components/fm/Pagination/Pagination.vue';
|
|
16
17
|
import { FmPaginationProps, FmPaginationEmits } from './components/fm/Pagination/types';
|
|
17
18
|
import { default as FmProgressCircular } from './components/fm/ProgressCircular/ProgressCircular.vue';
|
|
@@ -26,7 +27,7 @@ import { default as FmSlider } from './components/fm/Slider/Slider.vue';
|
|
|
26
27
|
import { default as FmTextField } from './components/fm/TextField/TextField.vue';
|
|
27
28
|
import { default as FmTooltip } from './components/fm/Tooltip/Tooltip.vue';
|
|
28
29
|
import { default as FmHeader } from '../stories/Header.vue';
|
|
29
|
-
export { FmHeader, FmNavigationPortal, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDatePicker, FmIcon, FmIconButton, FmItemPicker, FmLogo, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSlider, FmTextField, FmTooltip, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectProps, FmSelectEmits, FmSelectSlots, };
|
|
30
|
+
export { FmHeader, FmNavigationPortal, FmNavigation, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDatePicker, FmIcon, FmIconButton, FmItemPicker, FmLogo, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSlider, FmTextField, FmTooltip, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectProps, FmSelectEmits, FmSelectSlots, };
|
|
30
31
|
/**
|
|
31
32
|
* VUE plugin that registers all components
|
|
32
33
|
*
|
|
@@ -38,6 +39,7 @@ export declare const uiComponentsPlugin: {
|
|
|
38
39
|
declare module 'vue' {
|
|
39
40
|
interface GlobalComponents {
|
|
40
41
|
FmNavigationPortal: typeof FmNavigationPortal;
|
|
42
|
+
FmNavigation: typeof FmNavigation;
|
|
41
43
|
FmHeader: typeof FmHeader;
|
|
42
44
|
FmAvatar: typeof FmAvatar;
|
|
43
45
|
FmBadge: typeof FmBadge;
|