@maxtropy/v-components 0.1.17-beta.21 → 0.1.17-beta.22
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.
|
@@ -42,4 +42,5 @@ import MxFormContent from './formContent';
|
|
|
42
42
|
import MxFormTitle from './formTitle';
|
|
43
43
|
import MxSubContent from './subContent';
|
|
44
44
|
import MxAutocomplete from './autocomplete';
|
|
45
|
-
|
|
45
|
+
import MxLoading from './loading';
|
|
46
|
+
export { MxInput, MxInputNumber, MxButton, MxSwitch, MxSelect, MxOption, MxOptionGroup, MxRadio, MxRadioGroup, MxRadioButton, MxCheckbox, MxCheckboxButton, MxCheckboxGroup, SwitchStaff, HeadNavigation, SiderMenu, UserContent, SystemContent, BreadCrumb, BasicLayout, AuthorizedPermission, usePermission, useStaffTitle, useIntegratedAuthorityList, MxTooltip, MxPopover, MxDropdown, MxDropdownItem, MxDropdownMenu, MxAlert, MxDialog, MxSlider, MxDatePicker, MxTimePicker, MxPopconfirm, MxTree, MxTreeSelect, MxUpload, MxEllipsisSpan, MxEmpty, MxSteps, MxStep, MxTag, MxTable, MxTableColumn, MxPagination, MxForm, MxFormItem, MxTabs, MxTabPane, MxTimeSelect, MxCascader, MxFilter, MxWrapper, MxFormContent, MxFormTitle, MxSubContent, MxAutocomplete, MxLoading, };
|
|
@@ -8,10 +8,11 @@ export interface LoadingOptions {
|
|
|
8
8
|
export interface LoadingServiceOptions {
|
|
9
9
|
text?: string;
|
|
10
10
|
background?: string;
|
|
11
|
-
fullscreen?: boolean;
|
|
12
|
-
target?: HTMLElement | string;
|
|
13
11
|
size?: LoadingSize;
|
|
12
|
+
fullscreen?: boolean;
|
|
13
|
+
target?: string | HTMLElement;
|
|
14
14
|
}
|
|
15
15
|
export interface LoadingServiceInstance {
|
|
16
16
|
close: () => void;
|
|
17
17
|
}
|
|
18
|
+
export type LoadingService = (opts?: LoadingServiceOptions) => LoadingServiceInstance;
|