fit2cloud-ui-plus 0.0.1-beta.7 → 1.0.0-beta.1
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/README.md +61 -9
- package/lib/fit2cloud-ui-plus.es.js +1428 -867
- package/lib/fit2cloud-ui-plus.umd.js +1 -1
- package/package.json +11 -6
- package/src/components/filter-bar/FuFilter.vue +36 -22
- package/src/components/filter-bar/FuFilterBar.vue +31 -17
- package/src/components/filter-bar/FuFilterInput.vue +48 -0
- package/src/components/filter-bar/filter-components/FuFilterDate.vue +13 -5
- package/src/components/filter-bar/filter-components/FuFilterDateTime.vue +17 -14
- package/src/components/filter-bar/filter-components/FuFilterSelect.vue +19 -13
- package/src/components/filter-bar/index.ts +11 -12
- package/src/components/icon-button/FuIconButton.vue +54 -0
- package/src/components/icon-button/index.ts +9 -0
- package/src/components/read-write-switch/FuSelectRwSwitch.vue +23 -10
- package/src/components/search-bar/FuComplexSearch.vue +60 -64
- package/src/components/search-bar/FuQuickSearch.vue +39 -18
- package/src/components/search-bar/FuSearchBar.vue +85 -97
- package/src/components/search-bar/FuSearchBarButton.vue +16 -7
- package/src/components/search-bar/FuSearchContions.vue +24 -8
- package/src/components/search-bar/complex-components/FuComplexDate.vue +70 -0
- package/src/components/search-bar/complex-components/FuComplexDateTime.vue +74 -0
- package/src/components/search-bar/complex-components/FuComplexInput.vue +57 -0
- package/src/components/search-bar/complex-components/FuComplexSelect.vue +93 -0
- package/src/components/search-bar/index.ts +17 -10
- package/src/components/search-bar/types.ts +23 -0
- package/src/components/speed-dial/FuSpeedDial.vue +78 -69
- package/src/components/speed-dial/FuSpeedDialActionButton.vue +55 -55
- package/src/components/speed-dial/FuSpeedDialButton.vue +14 -11
- package/src/components/speed-dial/FuSpeedDialItem.vue +9 -15
- package/src/components/speed-dial/types.ts +12 -0
- package/src/components/split-pane/FuSplitPane.vue +2 -2
- package/src/components/table/FuTable.vue +18 -27
- package/src/components/table/FuTableBody.ts +17 -19
- package/src/components/table/{table-column-dropdown/FuTableColumnDropdown.vue → FuTableColumnDropdown.vue} +0 -0
- package/src/components/table/index.ts +11 -7
- package/src/components/table/table-column-select/FuTableColumnSelectDialog.vue +3 -9
- package/src/components/table/table-column-select/FuTableColumnSelectPopover.vue +4 -3
- package/src/components/table/table-operations/FuTableButton.vue +1 -4
- package/src/components/table/table-operations/FuTableMoreButton.vue +1 -1
- package/src/components/table/table-operations/FuTableOperations.vue +1 -2
- package/src/components/table/types.ts +3 -0
- package/src/components/tabs/FuTabs.vue +4 -3
- package/src/hooks/index.ts +2 -1
- package/src/hooks/use-global-config/index.ts +25 -22
- package/src/hooks/use-locale/index.ts +1 -1
- package/src/hooks/use-size/index.ts +35 -0
- package/src/index.ts +5 -2
- package/src/styles/common/function.scss +14 -4
- package/src/styles/common/mixins.scss +9 -4
- package/src/styles/common/variables.scss +56 -17
- package/src/styles/components/filter-bar.scss +16 -16
- package/src/styles/components/icon-button.scss +66 -0
- package/src/styles/components/search-bar.scss +45 -90
- package/src/styles/components/speed-dial.scss +1 -51
- package/src/styles/components/split-pane.scss +1 -1
- package/src/styles/components/steps.scss +2 -2
- package/src/styles/components/table.scss +9 -13
- package/src/styles/index.scss +2 -1
- package/src/styles/themes/default.scss +91 -0
- package/src/tools/size.ts +6 -0
- package/src/tools/theme.ts +0 -12
- package/src/tools/vnode.ts +47 -0
- package/types/examples/App.vue.d.ts +2 -0
- package/types/examples/components/CodeExample.vue.d.ts +29 -0
- package/types/examples/components/DocumentTable.vue.d.ts +14 -0
- package/types/examples/components/Markdown.vue.d.ts +12 -0
- package/types/examples/layout/components/AppHeader.vue.d.ts +2 -0
- package/types/examples/layout/components/Sidebar.vue.d.ts +2 -0
- package/types/examples/layout/index.vue.d.ts +2 -0
- package/types/examples/main.d.ts +2 -0
- package/types/examples/pages/filter-bar/attributes.d.ts +63 -0
- package/types/examples/pages/filter-bar/demo/BaseFilterBar.vue.d.ts +2 -0
- package/types/examples/pages/filter-bar/demo/SetConditionsDemo.vue.d.ts +2 -0
- package/types/examples/pages/filter-bar/demo/SlotDemo.vue.d.ts +2 -0
- package/types/examples/pages/filter-bar/index.vue.d.ts +2 -0
- package/types/examples/pages/icon-button/attributes.d.ts +45 -0
- package/types/examples/pages/icon-button/demo/BaseIconButton.vue.d.ts +2 -0
- package/types/examples/pages/icon-button/demo/SlotDemo.vue.d.ts +2 -0
- package/types/examples/pages/icon-button/index.vue.d.ts +2 -0
- package/types/examples/pages/index.d.ts +3 -0
- package/types/examples/pages/read-write-switch/attributes.d.ts +63 -0
- package/types/examples/pages/read-write-switch/demo/BaseDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/CustomContentDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/InputRwSwitchDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/ReadSwitchDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/SelectRwSwitchDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/TableInnerEditDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/demo/WriteSwitchDemo.vue.d.ts +2 -0
- package/types/examples/pages/read-write-switch/index.vue.d.ts +2 -0
- package/types/examples/pages/search/attributes.d.ts +57 -0
- package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +66 -0
- package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +60 -0
- package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +84 -0
- package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +50 -0
- package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +52 -0
- package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +18 -0
- package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +54 -0
- package/types/examples/pages/search/index.vue.d.ts +150 -0
- package/types/examples/pages/search-bar/attributes.d.ts +63 -0
- package/types/examples/pages/search-bar/demo/BaseSearchbar.vue.d.ts +31 -0
- package/types/examples/pages/search-bar/demo/ComplexSearchDemo.vue.d.ts +40 -0
- package/types/examples/pages/search-bar/demo/EchoConditionsDemo.vue.d.ts +32 -0
- package/types/examples/pages/search-bar/demo/QuickSearchDemo.vue.d.ts +7 -0
- package/types/examples/pages/search-bar/demo/SearchBarButtonDemo.vue.d.ts +32 -0
- package/types/examples/pages/search-bar/index.vue.d.ts +2 -0
- package/types/examples/pages/speed-dial/attributes.d.ts +63 -0
- package/types/examples/pages/speed-dial/demo/BaseSpeedDial.vue.d.ts +2 -0
- package/types/examples/pages/speed-dial/demo/SpeedDialCustom.vue.d.ts +2 -0
- package/types/examples/pages/speed-dial/demo/SpeedDialPosition.vue.d.ts +2 -0
- package/types/examples/pages/speed-dial/demo/SpeedDialTrigger.vue.d.ts +2 -0
- package/types/examples/pages/speed-dial/index.vue.d.ts +2 -0
- package/types/examples/pages/split-pane/attributes.d.ts +63 -0
- package/types/examples/pages/split-pane/demo/BaseSplit.vue.d.ts +2 -0
- package/types/examples/pages/split-pane/demo/CustomResizer.vue.d.ts +2 -0
- package/types/examples/pages/split-pane/demo/NestSplit.vue.d.ts +2 -0
- package/types/examples/pages/split-pane/demo/ResizerType.vue.d.ts +2 -0
- package/types/examples/pages/split-pane/index.vue.d.ts +2 -0
- package/types/examples/pages/table/attributes.d.ts +121 -0
- package/types/examples/pages/table/demo/BaseTable.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/DropdownColumn.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/DropdownColumnSlot.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/SaveSelectColumn.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/SelectColumn.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/TableOperations.vue.d.ts +2 -0
- package/types/examples/pages/table/demo/TablePagination.vue.d.ts +2 -0
- package/types/examples/pages/table/index.vue.d.ts +2 -0
- package/types/examples/pages/tabs/attributes.d.ts +63 -0
- package/types/examples/pages/tabs/demo/AddCloseTab.vue.d.ts +2 -0
- package/types/examples/pages/tabs/index.vue.d.ts +2 -0
- package/types/examples/router/doc-routes.d.ts +12 -0
- package/types/examples/router/index.d.ts +4 -0
- package/types/examples/router/styles-routes.d.ts +12 -0
- package/types/examples/style-guide/button/BaseButton.vue.d.ts +2 -0
- package/types/examples/style-guide/button/IconButton.vue.d.ts +2 -0
- package/types/examples/style-guide/button/PlainButton.vue.d.ts +2 -0
- package/types/examples/style-guide/button/TextButton.vue.d.ts +2 -0
- package/types/examples/style-guide/button/index.vue.d.ts +2 -0
- package/types/examples/style-guide/input/BaseInput.vue.d.ts +2 -0
- package/types/examples/style-guide/input/SearchInput.vue.d.ts +2 -0
- package/types/examples/style-guide/input/Textarea.vue.d.ts +2 -0
- package/types/examples/style-guide/input/index.vue.d.ts +2 -0
- package/types/examples/style-guide/select/BaseSelect.vue.d.ts +2 -0
- package/types/examples/style-guide/select/index.vue.d.ts +2 -0
- package/types/plugins/example-transform.d.ts +5 -0
- package/types/src/components/filter-bar/FuFilter.vue.d.ts +42 -0
- package/types/src/components/filter-bar/FuFilterBar.vue.d.ts +33 -0
- package/types/src/components/filter-bar/FuFilterConditions.vue.d.ts +8 -0
- package/types/src/components/filter-bar/FuFilterInput.vue.d.ts +17 -0
- package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +17 -0
- package/types/src/components/filter-bar/filter-components/FuFilterDate.vue.d.ts +36 -0
- package/types/src/components/filter-bar/filter-components/FuFilterDateTime.vue.d.ts +36 -0
- package/types/src/components/filter-bar/filter-components/FuFilterOption.vue.d.ts +24 -0
- package/types/src/components/filter-bar/filter-components/FuFilterSelect.vue.d.ts +66 -0
- package/types/src/components/filter-bar/index.d.ts +2 -0
- package/types/src/components/filter-bar/types.d.ts +22 -0
- package/types/src/components/icon-button/FuIconButton.vue.d.ts +43 -0
- package/types/src/components/icon-button/index.d.ts +2 -0
- package/types/src/components/read-write-switch/FuInputRwSwitch.vue.d.ts +21 -0
- package/types/src/components/read-write-switch/FuReadWriteSwitch.vue.d.ts +23 -0
- package/types/src/components/read-write-switch/FuSelectRwSwitch.vue.d.ts +43 -0
- package/types/src/components/read-write-switch/index.d.ts +2 -0
- package/types/src/components/read-write-switch/types.d.ts +4 -0
- package/types/src/components/search-bar/FuComplexSearch.vue.d.ts +22 -0
- package/types/src/components/search-bar/FuQuickSearch.vue.d.ts +29 -0
- package/types/src/components/search-bar/FuSearchBar.vue.d.ts +58 -0
- package/types/src/components/search-bar/FuSearchBarButton.vue.d.ts +14 -0
- package/types/src/components/search-bar/FuSearchContions.vue.d.ts +26 -0
- package/types/src/components/search-bar/complex-components/FuComplexDate.vue.d.ts +36 -0
- package/types/src/components/search-bar/complex-components/FuComplexDateTime.vue.d.ts +36 -0
- package/types/src/components/search-bar/complex-components/FuComplexInput.vue.d.ts +26 -0
- package/types/src/components/search-bar/complex-components/FuComplexSelect.vue.d.ts +50 -0
- package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
- package/types/src/components/search-bar/complex-components/mixins.d.ts +6 -0
- package/types/src/components/search-bar/index.d.ts +2 -0
- package/types/src/components/search-bar/types.d.ts +17 -0
- package/types/src/components/speed-dial/FuSpeedDial.vue.d.ts +218 -0
- package/types/src/components/speed-dial/FuSpeedDialActionButton.vue.d.ts +32 -0
- package/types/src/components/speed-dial/FuSpeedDialButton.vue.d.ts +42 -0
- package/types/src/components/speed-dial/FuSpeedDialItem.vue.d.ts +12 -0
- package/types/src/components/speed-dial/index.d.ts +2 -0
- package/types/src/components/speed-dial/types.d.ts +8 -0
- package/types/src/components/split-pane/FuSplitPane.vue.d.ts +59 -0
- package/types/src/components/split-pane/index.d.ts +2 -0
- package/types/src/components/table/FuTable.vue.d.ts +18 -0
- package/types/src/components/table/FuTableBody.d.ts +3 -0
- package/types/src/components/table/FuTableColumnDropdown.vue.d.ts +50 -0
- package/types/src/components/table/FuTablePagination.vue.d.ts +47 -0
- package/types/src/components/table/index.d.ts +2 -0
- package/types/src/components/table/table-column-select/FuTableColumnSelect.vue.d.ts +10 -0
- package/types/src/components/table/table-column-select/FuTableColumnSelectDialog.vue.d.ts +23 -0
- package/types/src/components/table/table-column-select/FuTableColumnSelectPopover.vue.d.ts +34 -0
- package/types/src/components/table/table-column-select/utils.d.ts +8 -0
- package/types/src/components/table/table-operations/FuTableButton.vue.d.ts +13 -0
- package/types/src/components/table/table-operations/FuTableMoreButton.vue.d.ts +37 -0
- package/types/src/components/table/table-operations/FuTableOperations.vue.d.ts +46 -0
- package/types/src/components/table/types.d.ts +2 -0
- package/types/src/components/tabs/FuTabs.vue.d.ts +54 -0
- package/types/src/components/tabs/index.d.ts +2 -0
- package/types/src/hooks/index.d.ts +3 -0
- package/types/src/hooks/use-global-config/index.d.ts +9 -0
- package/types/src/hooks/use-locale/index.d.ts +14 -0
- package/types/src/hooks/use-size/index.d.ts +9 -0
- package/types/src/index.d.ts +8 -0
- package/types/src/locale/index.d.ts +10 -0
- package/types/src/locale/lang/en.d.ts +59 -0
- package/types/src/locale/lang/zh-cn.d.ts +59 -0
- package/types/src/locale/lang/zh-tw.d.ts +59 -0
- package/types/src/tools/size.d.ts +4 -0
- package/types/src/tools/theme.d.ts +1 -0
- package/types/src/tools/time.d.ts +2 -0
- package/types/src/tools/types.d.ts +8 -0
- package/types/src/tools/utils.d.ts +2 -0
- package/types/src/tools/vnode.d.ts +9 -0
- package/src/components/filter-bar/FuSearchInput.vue +0 -31
- package/src/components/search-bar/store.ts +0 -25
- package/src/components/steps/FuHorizontalNavigation.vue +0 -18
- package/src/components/steps/FuHorizontalSteps.vue +0 -94
- package/src/components/steps/FuStep.vue +0 -13
- package/src/components/steps/FuSteps.vue +0 -22
- package/src/components/steps/FuStepsFooter.ts +0 -79
- package/src/components/steps/FuVerticalNavigation.vue +0 -35
- package/src/components/steps/FuVerticalSteps.vue +0 -79
- package/src/components/steps/Stepper.ts +0 -188
- package/src/components/steps/index.ts +0 -11
- package/src/components/table/table-column-dropdown/index.ts +0 -7
- package/src/components/table/table-column-select/index.ts +0 -8
- package/src/components/table/table-operations/index.ts +0 -12
- package/src/components/virtual-scroller/FuVirtualHorizontalScroll.js +0 -96
- package/src/components/virtual-scroller/FuVirtualScroll.js +0 -15
- package/src/components/virtual-scroller/FuVirtualVerticalScroll.js +0 -95
- package/src/components/virtual-scroller/index.js +0 -10
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
components: ({
|
|
5
|
+
field: string;
|
|
6
|
+
label: string;
|
|
7
|
+
component: string;
|
|
8
|
+
options?: undefined;
|
|
9
|
+
change?: undefined;
|
|
10
|
+
} | {
|
|
11
|
+
field: string;
|
|
12
|
+
label: string;
|
|
13
|
+
component: string;
|
|
14
|
+
options: {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}[];
|
|
18
|
+
change: (val: any) => void;
|
|
19
|
+
} | {
|
|
20
|
+
field: string;
|
|
21
|
+
label: string;
|
|
22
|
+
component: string;
|
|
23
|
+
options: {
|
|
24
|
+
label: string;
|
|
25
|
+
value: string;
|
|
26
|
+
}[];
|
|
27
|
+
change?: undefined;
|
|
28
|
+
})[];
|
|
29
|
+
condition: {};
|
|
30
|
+
};
|
|
31
|
+
function data(): {
|
|
32
|
+
components: ({
|
|
33
|
+
field: string;
|
|
34
|
+
label: string;
|
|
35
|
+
component: string;
|
|
36
|
+
options?: undefined;
|
|
37
|
+
change?: undefined;
|
|
38
|
+
} | {
|
|
39
|
+
field: string;
|
|
40
|
+
label: string;
|
|
41
|
+
component: string;
|
|
42
|
+
options: {
|
|
43
|
+
label: string;
|
|
44
|
+
value: string;
|
|
45
|
+
}[];
|
|
46
|
+
change: (val: any) => void;
|
|
47
|
+
} | {
|
|
48
|
+
field: string;
|
|
49
|
+
label: string;
|
|
50
|
+
component: string;
|
|
51
|
+
options: {
|
|
52
|
+
label: string;
|
|
53
|
+
value: string;
|
|
54
|
+
}[];
|
|
55
|
+
change?: undefined;
|
|
56
|
+
})[];
|
|
57
|
+
condition: {};
|
|
58
|
+
};
|
|
59
|
+
namespace methods {
|
|
60
|
+
function close(): void;
|
|
61
|
+
function close(): void;
|
|
62
|
+
function search(condition: any): void;
|
|
63
|
+
function search(condition: any): void;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export default _default;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
options: {
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
}[];
|
|
8
|
+
components: ({
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options?: undefined;
|
|
13
|
+
multiple?: undefined;
|
|
14
|
+
filterable?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
field: string;
|
|
17
|
+
label: string;
|
|
18
|
+
component: string;
|
|
19
|
+
options: {
|
|
20
|
+
label: string;
|
|
21
|
+
value: string;
|
|
22
|
+
}[];
|
|
23
|
+
multiple: boolean;
|
|
24
|
+
filterable: boolean;
|
|
25
|
+
})[];
|
|
26
|
+
condition: {};
|
|
27
|
+
};
|
|
28
|
+
function data(): {
|
|
29
|
+
options: {
|
|
30
|
+
label: string;
|
|
31
|
+
value: string;
|
|
32
|
+
}[];
|
|
33
|
+
components: ({
|
|
34
|
+
field: string;
|
|
35
|
+
label: string;
|
|
36
|
+
component: string;
|
|
37
|
+
options?: undefined;
|
|
38
|
+
multiple?: undefined;
|
|
39
|
+
filterable?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
field: string;
|
|
42
|
+
label: string;
|
|
43
|
+
component: string;
|
|
44
|
+
options: {
|
|
45
|
+
label: string;
|
|
46
|
+
value: string;
|
|
47
|
+
}[];
|
|
48
|
+
multiple: boolean;
|
|
49
|
+
filterable: boolean;
|
|
50
|
+
})[];
|
|
51
|
+
condition: {};
|
|
52
|
+
};
|
|
53
|
+
namespace methods {
|
|
54
|
+
function initOptions(options: any, loading: any): void;
|
|
55
|
+
function initOptions(options: any, loading: any): void;
|
|
56
|
+
function search(condition: any): void;
|
|
57
|
+
function search(condition: any): void;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
export default _default;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
options: {
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
}[];
|
|
8
|
+
components: ({
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options?: undefined;
|
|
13
|
+
min?: undefined;
|
|
14
|
+
max?: undefined;
|
|
15
|
+
step?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
field: string;
|
|
18
|
+
label: string;
|
|
19
|
+
component: string;
|
|
20
|
+
options: {
|
|
21
|
+
label: string;
|
|
22
|
+
value: string;
|
|
23
|
+
}[];
|
|
24
|
+
min?: undefined;
|
|
25
|
+
max?: undefined;
|
|
26
|
+
step?: undefined;
|
|
27
|
+
} | {
|
|
28
|
+
field: string;
|
|
29
|
+
label: string;
|
|
30
|
+
component: string;
|
|
31
|
+
min: number;
|
|
32
|
+
max: number;
|
|
33
|
+
step: number;
|
|
34
|
+
options?: undefined;
|
|
35
|
+
})[];
|
|
36
|
+
condition: {};
|
|
37
|
+
condition2: {};
|
|
38
|
+
};
|
|
39
|
+
function data(): {
|
|
40
|
+
options: {
|
|
41
|
+
label: string;
|
|
42
|
+
value: string;
|
|
43
|
+
}[];
|
|
44
|
+
components: ({
|
|
45
|
+
field: string;
|
|
46
|
+
label: string;
|
|
47
|
+
component: string;
|
|
48
|
+
options?: undefined;
|
|
49
|
+
min?: undefined;
|
|
50
|
+
max?: undefined;
|
|
51
|
+
step?: undefined;
|
|
52
|
+
} | {
|
|
53
|
+
field: string;
|
|
54
|
+
label: string;
|
|
55
|
+
component: string;
|
|
56
|
+
options: {
|
|
57
|
+
label: string;
|
|
58
|
+
value: string;
|
|
59
|
+
}[];
|
|
60
|
+
min?: undefined;
|
|
61
|
+
max?: undefined;
|
|
62
|
+
step?: undefined;
|
|
63
|
+
} | {
|
|
64
|
+
field: string;
|
|
65
|
+
label: string;
|
|
66
|
+
component: string;
|
|
67
|
+
min: number;
|
|
68
|
+
max: number;
|
|
69
|
+
step: number;
|
|
70
|
+
options?: undefined;
|
|
71
|
+
})[];
|
|
72
|
+
condition: {};
|
|
73
|
+
condition2: {};
|
|
74
|
+
};
|
|
75
|
+
namespace methods {
|
|
76
|
+
function change(value: any): void;
|
|
77
|
+
function change(value: any): void;
|
|
78
|
+
function search(condition: any): void;
|
|
79
|
+
function search(condition: any): void;
|
|
80
|
+
function search2(condition: any): void;
|
|
81
|
+
function search2(condition: any): void;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
export default _default;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
namespace components {
|
|
4
|
+
export { CustomSearchComponent };
|
|
5
|
+
}
|
|
6
|
+
function data(): {
|
|
7
|
+
condition: {};
|
|
8
|
+
};
|
|
9
|
+
function data(): {
|
|
10
|
+
condition: {};
|
|
11
|
+
};
|
|
12
|
+
namespace methods {
|
|
13
|
+
function initOptions(options: any, loading: any): void;
|
|
14
|
+
function initOptions(options: any, loading: any): void;
|
|
15
|
+
function search(condition: any): void;
|
|
16
|
+
function search(condition: any): void;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export default _default;
|
|
20
|
+
declare namespace CustomSearchComponent {
|
|
21
|
+
const name_1: string;
|
|
22
|
+
export { name_1 as name };
|
|
23
|
+
export namespace props {
|
|
24
|
+
const field: StringConstructor;
|
|
25
|
+
const label: StringConstructor;
|
|
26
|
+
}
|
|
27
|
+
export function data(): {
|
|
28
|
+
condition: string;
|
|
29
|
+
operator: string;
|
|
30
|
+
operatorLabel: string;
|
|
31
|
+
};
|
|
32
|
+
export function data(): {
|
|
33
|
+
condition: string;
|
|
34
|
+
operator: string;
|
|
35
|
+
operatorLabel: string;
|
|
36
|
+
};
|
|
37
|
+
export namespace computed {
|
|
38
|
+
function valueLabel(): any;
|
|
39
|
+
function valueLabel(): any;
|
|
40
|
+
}
|
|
41
|
+
export namespace methods_1 {
|
|
42
|
+
function getCondition(): any;
|
|
43
|
+
function getCondition(): any;
|
|
44
|
+
function init(): void;
|
|
45
|
+
function init(): void;
|
|
46
|
+
}
|
|
47
|
+
export { methods_1 as methods };
|
|
48
|
+
export function render(): JSX.Element;
|
|
49
|
+
export function render(): JSX.Element;
|
|
50
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
options: {
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
}[];
|
|
8
|
+
components: ({
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
field: string;
|
|
15
|
+
label: string;
|
|
16
|
+
component: string;
|
|
17
|
+
options: {
|
|
18
|
+
label: string;
|
|
19
|
+
value: string;
|
|
20
|
+
}[];
|
|
21
|
+
})[];
|
|
22
|
+
condition: {};
|
|
23
|
+
};
|
|
24
|
+
function data(): {
|
|
25
|
+
options: {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}[];
|
|
29
|
+
components: ({
|
|
30
|
+
field: string;
|
|
31
|
+
label: string;
|
|
32
|
+
component: string;
|
|
33
|
+
options?: undefined;
|
|
34
|
+
} | {
|
|
35
|
+
field: string;
|
|
36
|
+
label: string;
|
|
37
|
+
component: string;
|
|
38
|
+
options: {
|
|
39
|
+
label: string;
|
|
40
|
+
value: string;
|
|
41
|
+
}[];
|
|
42
|
+
})[];
|
|
43
|
+
condition: {};
|
|
44
|
+
};
|
|
45
|
+
namespace methods {
|
|
46
|
+
function init(): void;
|
|
47
|
+
function init(): void;
|
|
48
|
+
function search(condition: any): void;
|
|
49
|
+
function search(condition: any): void;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
quick: string;
|
|
5
|
+
condition: string;
|
|
6
|
+
};
|
|
7
|
+
function data(): {
|
|
8
|
+
quick: string;
|
|
9
|
+
condition: string;
|
|
10
|
+
};
|
|
11
|
+
namespace methods {
|
|
12
|
+
function change(value: any): void;
|
|
13
|
+
function change(value: any): void;
|
|
14
|
+
function search(condition: any): void;
|
|
15
|
+
function search(condition: any): void;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
function data(): {
|
|
4
|
+
options: {
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
}[];
|
|
8
|
+
components: ({
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
field: string;
|
|
15
|
+
label: string;
|
|
16
|
+
component: string;
|
|
17
|
+
options: {
|
|
18
|
+
label: string;
|
|
19
|
+
value: string;
|
|
20
|
+
}[];
|
|
21
|
+
})[];
|
|
22
|
+
condition: {};
|
|
23
|
+
};
|
|
24
|
+
function data(): {
|
|
25
|
+
options: {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}[];
|
|
29
|
+
components: ({
|
|
30
|
+
field: string;
|
|
31
|
+
label: string;
|
|
32
|
+
component: string;
|
|
33
|
+
options?: undefined;
|
|
34
|
+
} | {
|
|
35
|
+
field: string;
|
|
36
|
+
label: string;
|
|
37
|
+
component: string;
|
|
38
|
+
options: {
|
|
39
|
+
label: string;
|
|
40
|
+
value: string;
|
|
41
|
+
}[];
|
|
42
|
+
})[];
|
|
43
|
+
condition: {};
|
|
44
|
+
};
|
|
45
|
+
namespace methods {
|
|
46
|
+
function download(e: any): void;
|
|
47
|
+
function download(e: any): void;
|
|
48
|
+
function upload(e: any): void;
|
|
49
|
+
function upload(e: any): void;
|
|
50
|
+
function search(condition: any): void;
|
|
51
|
+
function search(condition: any): void;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
export default _default;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const name: string;
|
|
3
|
+
const mixins: any[];
|
|
4
|
+
function data(): {
|
|
5
|
+
url: string;
|
|
6
|
+
attributes: {
|
|
7
|
+
name: string;
|
|
8
|
+
children: ({
|
|
9
|
+
name: string;
|
|
10
|
+
header: {
|
|
11
|
+
prop: string;
|
|
12
|
+
desc: string;
|
|
13
|
+
type: string;
|
|
14
|
+
enum: string;
|
|
15
|
+
default: string;
|
|
16
|
+
event?: undefined;
|
|
17
|
+
value?: undefined;
|
|
18
|
+
name?: undefined;
|
|
19
|
+
};
|
|
20
|
+
table: {
|
|
21
|
+
prop: string;
|
|
22
|
+
desc: string;
|
|
23
|
+
type: string;
|
|
24
|
+
enum: string;
|
|
25
|
+
default: string;
|
|
26
|
+
}[];
|
|
27
|
+
} | {
|
|
28
|
+
name: string;
|
|
29
|
+
header: {
|
|
30
|
+
event: string;
|
|
31
|
+
desc: string;
|
|
32
|
+
value: string;
|
|
33
|
+
prop?: undefined;
|
|
34
|
+
type?: undefined;
|
|
35
|
+
enum?: undefined;
|
|
36
|
+
default?: undefined;
|
|
37
|
+
name?: undefined;
|
|
38
|
+
};
|
|
39
|
+
table: {
|
|
40
|
+
event: string;
|
|
41
|
+
desc: string;
|
|
42
|
+
value: string;
|
|
43
|
+
}[];
|
|
44
|
+
} | {
|
|
45
|
+
name: string;
|
|
46
|
+
header: {
|
|
47
|
+
name: string;
|
|
48
|
+
desc: string;
|
|
49
|
+
prop?: undefined;
|
|
50
|
+
type?: undefined;
|
|
51
|
+
enum?: undefined;
|
|
52
|
+
default?: undefined;
|
|
53
|
+
event?: undefined;
|
|
54
|
+
value?: undefined;
|
|
55
|
+
};
|
|
56
|
+
table: {
|
|
57
|
+
name: string;
|
|
58
|
+
desc: string;
|
|
59
|
+
}[];
|
|
60
|
+
})[];
|
|
61
|
+
}[];
|
|
62
|
+
comList: ({
|
|
63
|
+
title: string;
|
|
64
|
+
titleDesc: string;
|
|
65
|
+
component: string;
|
|
66
|
+
description?: undefined;
|
|
67
|
+
} | {
|
|
68
|
+
title: string;
|
|
69
|
+
titleDesc: string;
|
|
70
|
+
component: string;
|
|
71
|
+
description: string;
|
|
72
|
+
})[];
|
|
73
|
+
};
|
|
74
|
+
function data(): {
|
|
75
|
+
url: string;
|
|
76
|
+
attributes: {
|
|
77
|
+
name: string;
|
|
78
|
+
children: ({
|
|
79
|
+
name: string;
|
|
80
|
+
header: {
|
|
81
|
+
prop: string;
|
|
82
|
+
desc: string;
|
|
83
|
+
type: string;
|
|
84
|
+
enum: string;
|
|
85
|
+
default: string;
|
|
86
|
+
event?: undefined;
|
|
87
|
+
value?: undefined;
|
|
88
|
+
name?: undefined;
|
|
89
|
+
};
|
|
90
|
+
table: {
|
|
91
|
+
prop: string;
|
|
92
|
+
desc: string;
|
|
93
|
+
type: string;
|
|
94
|
+
enum: string;
|
|
95
|
+
default: string;
|
|
96
|
+
}[];
|
|
97
|
+
} | {
|
|
98
|
+
name: string;
|
|
99
|
+
header: {
|
|
100
|
+
event: string;
|
|
101
|
+
desc: string;
|
|
102
|
+
value: string;
|
|
103
|
+
prop?: undefined;
|
|
104
|
+
type?: undefined;
|
|
105
|
+
enum?: undefined;
|
|
106
|
+
default?: undefined;
|
|
107
|
+
name?: undefined;
|
|
108
|
+
};
|
|
109
|
+
table: {
|
|
110
|
+
event: string;
|
|
111
|
+
desc: string;
|
|
112
|
+
value: string;
|
|
113
|
+
}[];
|
|
114
|
+
} | {
|
|
115
|
+
name: string;
|
|
116
|
+
header: {
|
|
117
|
+
name: string;
|
|
118
|
+
desc: string;
|
|
119
|
+
prop?: undefined;
|
|
120
|
+
type?: undefined;
|
|
121
|
+
enum?: undefined;
|
|
122
|
+
default?: undefined;
|
|
123
|
+
event?: undefined;
|
|
124
|
+
value?: undefined;
|
|
125
|
+
};
|
|
126
|
+
table: {
|
|
127
|
+
name: string;
|
|
128
|
+
desc: string;
|
|
129
|
+
}[];
|
|
130
|
+
})[];
|
|
131
|
+
}[];
|
|
132
|
+
comList: ({
|
|
133
|
+
title: string;
|
|
134
|
+
titleDesc: string;
|
|
135
|
+
component: string;
|
|
136
|
+
description?: undefined;
|
|
137
|
+
} | {
|
|
138
|
+
title: string;
|
|
139
|
+
titleDesc: string;
|
|
140
|
+
component: string;
|
|
141
|
+
description: string;
|
|
142
|
+
})[];
|
|
143
|
+
};
|
|
144
|
+
const methods: {};
|
|
145
|
+
function created(): void;
|
|
146
|
+
function created(): void;
|
|
147
|
+
function mounted(): void;
|
|
148
|
+
function mounted(): void;
|
|
149
|
+
}
|
|
150
|
+
export default _default;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 说明文档
|
|
3
|
+
* @name 表格名称
|
|
4
|
+
* @header 表格头部参数,任意定义
|
|
5
|
+
* @table table内容,字段要和header定义的属性保持一直
|
|
6
|
+
* @children 多表使用
|
|
7
|
+
*/
|
|
8
|
+
export declare const attributes: {
|
|
9
|
+
name: string;
|
|
10
|
+
children: ({
|
|
11
|
+
name: string;
|
|
12
|
+
header: {
|
|
13
|
+
prop: string;
|
|
14
|
+
desc: string;
|
|
15
|
+
type: string;
|
|
16
|
+
enum: string;
|
|
17
|
+
default: string;
|
|
18
|
+
event?: undefined;
|
|
19
|
+
value?: undefined;
|
|
20
|
+
name?: undefined;
|
|
21
|
+
};
|
|
22
|
+
table: {
|
|
23
|
+
prop: string;
|
|
24
|
+
desc: string;
|
|
25
|
+
type: string;
|
|
26
|
+
enum: string;
|
|
27
|
+
default: string;
|
|
28
|
+
}[];
|
|
29
|
+
} | {
|
|
30
|
+
name: string;
|
|
31
|
+
header: {
|
|
32
|
+
event: string;
|
|
33
|
+
desc: string;
|
|
34
|
+
value: string;
|
|
35
|
+
prop?: undefined;
|
|
36
|
+
type?: undefined;
|
|
37
|
+
enum?: undefined;
|
|
38
|
+
default?: undefined;
|
|
39
|
+
name?: undefined;
|
|
40
|
+
};
|
|
41
|
+
table: {
|
|
42
|
+
event: string;
|
|
43
|
+
desc: string;
|
|
44
|
+
value: string;
|
|
45
|
+
}[];
|
|
46
|
+
} | {
|
|
47
|
+
name: string;
|
|
48
|
+
header: {
|
|
49
|
+
name: string;
|
|
50
|
+
desc: string;
|
|
51
|
+
prop?: undefined;
|
|
52
|
+
type?: undefined;
|
|
53
|
+
enum?: undefined;
|
|
54
|
+
default?: undefined;
|
|
55
|
+
event?: undefined;
|
|
56
|
+
value?: undefined;
|
|
57
|
+
};
|
|
58
|
+
table: {
|
|
59
|
+
name: string;
|
|
60
|
+
desc: string;
|
|
61
|
+
}[];
|
|
62
|
+
})[];
|
|
63
|
+
}[];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
components: ({
|
|
3
|
+
field: string;
|
|
4
|
+
label: string;
|
|
5
|
+
component: string;
|
|
6
|
+
options?: undefined;
|
|
7
|
+
change?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options: {
|
|
13
|
+
label: string;
|
|
14
|
+
value: string;
|
|
15
|
+
}[];
|
|
16
|
+
change: (val: any) => void;
|
|
17
|
+
} | {
|
|
18
|
+
field: string;
|
|
19
|
+
label: string;
|
|
20
|
+
component: string;
|
|
21
|
+
options: {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}[];
|
|
25
|
+
change?: undefined;
|
|
26
|
+
})[];
|
|
27
|
+
condition: import("vue").Ref<{}>;
|
|
28
|
+
close: () => void;
|
|
29
|
+
search: (obj: any) => void;
|
|
30
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
options: {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}[];
|
|
6
|
+
components: ({
|
|
7
|
+
field: string;
|
|
8
|
+
label: string;
|
|
9
|
+
component: string;
|
|
10
|
+
clearable: boolean;
|
|
11
|
+
options?: undefined;
|
|
12
|
+
change?: undefined;
|
|
13
|
+
filterable?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
field: string;
|
|
16
|
+
label: string;
|
|
17
|
+
component: string;
|
|
18
|
+
options: {
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}[];
|
|
22
|
+
change: (val: any) => void;
|
|
23
|
+
filterable: boolean;
|
|
24
|
+
clearable?: undefined;
|
|
25
|
+
} | {
|
|
26
|
+
field: string;
|
|
27
|
+
label: string;
|
|
28
|
+
component: string;
|
|
29
|
+
clearable?: undefined;
|
|
30
|
+
options?: undefined;
|
|
31
|
+
change?: undefined;
|
|
32
|
+
filterable?: undefined;
|
|
33
|
+
})[];
|
|
34
|
+
condition: import("vue").Ref<{}>;
|
|
35
|
+
condition2: import("vue").Ref<{}>;
|
|
36
|
+
change: (value: string) => void;
|
|
37
|
+
search: (obj: any) => void;
|
|
38
|
+
search2: (obj: any) => void;
|
|
39
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
components: ({
|
|
3
|
+
field: string;
|
|
4
|
+
label: string;
|
|
5
|
+
component: string;
|
|
6
|
+
options?: undefined;
|
|
7
|
+
change?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
field: string;
|
|
10
|
+
label: string;
|
|
11
|
+
component: string;
|
|
12
|
+
options: {
|
|
13
|
+
label: string;
|
|
14
|
+
value: string;
|
|
15
|
+
}[];
|
|
16
|
+
change: (val: any) => void;
|
|
17
|
+
} | {
|
|
18
|
+
field: string;
|
|
19
|
+
label: string;
|
|
20
|
+
component: string;
|
|
21
|
+
options: {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}[];
|
|
25
|
+
change?: undefined;
|
|
26
|
+
})[];
|
|
27
|
+
condition: import("vue").Ref<{}>;
|
|
28
|
+
searchRef: any;
|
|
29
|
+
init: () => void;
|
|
30
|
+
search: (obj: any) => void;
|
|
31
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
32
|
+
export default _default;
|