fit2cloud-ui-plus 0.0.1-beta.1 → 0.0.1-beta.12
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 +553 -866
- package/lib/fit2cloud-ui-plus.umd.js +1 -1
- package/package.json +9 -12
- package/src/components/filter-bar/FuFilter.vue +19 -14
- package/src/components/filter-bar/FuFilterBar.vue +16 -11
- package/src/components/filter-bar/FuSearchInput.vue +8 -2
- package/src/components/filter-bar/filter-components/FuFilterDate.vue +17 -13
- package/src/components/filter-bar/filter-components/FuFilterDateTime.vue +16 -13
- package/src/components/filter-bar/filter-components/FuFilterSelect.vue +17 -12
- package/src/components/filter-bar/index.d.ts +2 -0
- package/src/components/filter-bar/index.ts +11 -12
- package/src/components/filter-bar/types.d.ts +22 -0
- package/src/components/read-write-switch/FuInputRwSwitch.vue +9 -5
- package/src/components/read-write-switch/FuReadWriteSwitch.vue +38 -36
- package/src/components/read-write-switch/FuSelectRwSwitch.vue +11 -7
- package/src/components/read-write-switch/index.d.ts +2 -0
- package/src/components/read-write-switch/types.d.ts +4 -0
- package/src/components/read-write-switch/types.ts +4 -0
- package/src/components/speed-dial/FuSpeedDial.vue +78 -69
- package/src/components/speed-dial/FuSpeedDial.vue.d.ts +218 -0
- package/src/components/speed-dial/FuSpeedDialActionButton.vue +55 -55
- package/src/components/speed-dial/FuSpeedDialActionButton.vue.d.ts +32 -0
- package/src/components/speed-dial/FuSpeedDialButton.vue +14 -11
- package/src/components/speed-dial/FuSpeedDialButton.vue.d.ts +42 -0
- package/src/components/speed-dial/FuSpeedDialItem.vue +9 -15
- package/src/components/speed-dial/FuSpeedDialItem.vue.d.ts +12 -0
- package/src/components/speed-dial/index.d.ts +2 -0
- package/src/components/speed-dial/types.d.ts +8 -0
- package/src/components/speed-dial/types.ts +12 -0
- package/src/components/split-pane/FuSplitPane.vue +3 -3
- package/src/components/split-pane/FuSplitPane.vue.d.ts +59 -0
- package/src/components/split-pane/index.d.ts +2 -0
- package/src/components/table/FuTable.vue +16 -25
- package/src/components/table/FuTableBody.ts +38 -34
- package/src/components/table/{table-column-dropdown/FuTableColumnDropdown.vue → FuTableColumnDropdown.vue} +5 -2
- package/src/components/table/index.d.ts +2 -0
- package/src/components/table/index.ts +11 -7
- package/src/components/table/table-column-select/FuTableColumnSelectDialog.vue +15 -20
- package/src/components/table/table-column-select/FuTableColumnSelectPopover.vue +12 -11
- package/src/components/table/table-column-select/utils.d.ts +8 -0
- package/src/components/table/table-column-select/utils.ts +10 -7
- package/src/components/table/table-operations/FuTableButton.vue +1 -4
- package/src/components/table/table-operations/FuTableMoreButton.vue +5 -3
- package/src/components/table/table-operations/FuTableOperations.vue +6 -7
- package/src/components/table/types.d.ts +2 -0
- package/src/components/table/types.ts +3 -0
- package/src/components/tabs/FuTabs.vue +4 -2
- package/src/components/tabs/FuTabs.vue.d.ts +54 -0
- package/src/components/tabs/index.d.ts +2 -0
- package/src/hooks/index.d.ts +3 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/use-global-config/index.d.ts +1 -0
- package/src/hooks/use-global-config/index.ts +0 -15
- package/src/hooks/use-locale/index.d.ts +14 -0
- package/src/hooks/use-size/index.d.ts +5 -0
- package/src/hooks/use-size/index.ts +29 -0
- package/src/index.d.ts +7 -0
- package/src/locale/index.d.ts +10 -0
- package/src/locale/lang/en.d.ts +59 -0
- package/src/locale/lang/zh-cn.d.ts +59 -0
- package/src/locale/lang/zh-tw.d.ts +59 -0
- package/src/styles/common/variables.scss +2 -6
- package/src/styles/components/filter-bar.scss +3 -3
- 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 +3 -5
- package/src/styles/components/tabs.scss +1 -1
- package/src/styles/index.scss +0 -1
- package/src/tools/size.d.ts +4 -0
- package/src/tools/size.ts +6 -0
- package/src/tools/theme.d.ts +1 -0
- package/src/tools/theme.ts +0 -12
- package/src/tools/time.d.ts +2 -0
- package/src/tools/types.d.ts +8 -0
- package/src/tools/types.ts +9 -0
- package/src/tools/utils.d.ts +2 -0
- package/src/tools/utils.ts +36 -36
- package/src/tools/vnode.d.ts +9 -0
- 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/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/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/plugins/example-transform.d.ts +5 -0
- package/types/src/components/filter-bar/FuFilter.vue.d.ts +39 -0
- package/types/src/components/filter-bar/FuFilterBar.vue.d.ts +22 -0
- package/types/src/components/filter-bar/FuFilterConditions.vue.d.ts +8 -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/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 +33 -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/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 +1 -0
- package/types/src/hooks/use-locale/index.d.ts +14 -0
- package/types/src/hooks/use-size/index.d.ts +5 -0
- package/types/src/index.d.ts +7 -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/search-bar/FuComplexSearch.vue +0 -108
- package/src/components/search-bar/FuQuickSearch.vue +0 -43
- package/src/components/search-bar/FuSearchBar.vue +0 -165
- package/src/components/search-bar/FuSearchBarButton.vue +0 -14
- package/src/components/search-bar/FuSearchContions.vue +0 -24
- package/src/components/search-bar/index.ts +0 -13
- 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
- package/src/styles/components/search-bar.scss +0 -285
|
@@ -8,17 +8,15 @@
|
|
|
8
8
|
padding-right: 14px;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
|
|
12
11
|
&.el-table--small {
|
|
13
12
|
font-size: 13px;
|
|
14
13
|
}
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
@include b(table-header) {
|
|
18
|
-
// ****** 颜色变量未定
|
|
19
17
|
th {
|
|
20
|
-
background-color:
|
|
21
|
-
border-top: 1px solid
|
|
18
|
+
background-color: $table-header-bgColor !important;
|
|
19
|
+
border-top: 1px solid var(--el-table-border-color);
|
|
22
20
|
font-weight: 500 !important;;
|
|
23
21
|
}
|
|
24
22
|
}
|
|
@@ -102,4 +100,4 @@
|
|
|
102
100
|
@include b(show-icon) {
|
|
103
101
|
display: inline;
|
|
104
102
|
}
|
|
105
|
-
}
|
|
103
|
+
}
|
package/src/styles/index.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const validateType: (value: string) => boolean;
|
package/src/tools/theme.ts
CHANGED
|
@@ -9,15 +9,3 @@ export const validateType = (value: string) => {
|
|
|
9
9
|
console.error("types is not contains " + value);
|
|
10
10
|
return false;
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
const COMPONENTS_SIZE = ["default", "large", "small"];
|
|
14
|
-
|
|
15
|
-
export const validateSize = (value: string) => {
|
|
16
|
-
if (!value) return true;
|
|
17
|
-
|
|
18
|
-
if (COMPONENTS_SIZE.includes(value)) {
|
|
19
|
-
return true;
|
|
20
|
-
}
|
|
21
|
-
console.error("size is not contains " + value);
|
|
22
|
-
return false;
|
|
23
|
-
}
|
package/src/tools/utils.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
export const download = function ({url, name, content}) {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
// export const download = function ({url, name, content}) {
|
|
2
|
+
// if (url) {
|
|
3
|
+
// downloadByURL(url)
|
|
4
|
+
// } else {
|
|
5
|
+
// downloadByContent(name, content)
|
|
6
|
+
// }
|
|
7
|
+
// }
|
|
8
8
|
|
|
9
|
-
export const downloadByContent = function (name, content) {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
9
|
+
// export const downloadByContent = function (name, content) {
|
|
10
|
+
// const blob = new Blob([content])
|
|
11
|
+
// const a = document.createElement('a')
|
|
12
|
+
// a.setAttribute('href', window.URL.createObjectURL(blob))
|
|
13
|
+
// a.setAttribute('download', name)
|
|
14
|
+
// document.body.appendChild(a)
|
|
15
|
+
// a.click()
|
|
16
|
+
// document.body.removeChild(a)
|
|
17
|
+
// }
|
|
18
18
|
|
|
19
|
-
export const downloadByURL = function (url) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
19
|
+
// export const downloadByURL = function (url) {
|
|
20
|
+
// const a = document.createElement('a')
|
|
21
|
+
// a.setAttribute('href', url)
|
|
22
|
+
// a.setAttribute('download', url)
|
|
23
|
+
// document.body.appendChild(a)
|
|
24
|
+
// a.click()
|
|
25
|
+
// document.body.removeChild(a)
|
|
26
|
+
// }
|
|
27
27
|
|
|
28
28
|
export const uuid = function () {
|
|
29
29
|
let d = new Date().getTime();
|
|
@@ -45,16 +45,16 @@ export const randomId = function () {
|
|
|
45
45
|
return Math.floor(Math.random() * 10000);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
export const hasOwn = function (obj, key) {
|
|
49
|
-
|
|
50
|
-
}
|
|
48
|
+
// export const hasOwn = function (obj, key) {
|
|
49
|
+
// return Object.prototype.hasOwnProperty.call(obj, key);
|
|
50
|
+
// }
|
|
51
51
|
|
|
52
|
-
export const convertToUnit = function (value, unit = "px") {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
52
|
+
// export const convertToUnit = function (value, unit = "px") {
|
|
53
|
+
// if (value == null || value === '') {
|
|
54
|
+
// return undefined
|
|
55
|
+
// } else if (isNaN(+value)) {
|
|
56
|
+
// return String(value)
|
|
57
|
+
// } else {
|
|
58
|
+
// return `${Number(value)}${unit}`
|
|
59
|
+
// }
|
|
60
|
+
// }
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { VNode, VNodeNormalizedChildren } from 'vue';
|
|
2
|
+
export declare function isFragment(node: VNode): boolean;
|
|
3
|
+
export declare function isFragment(node: unknown): node is VNode;
|
|
4
|
+
export declare function isComment(node: VNode): boolean;
|
|
5
|
+
export declare function isComment(node: unknown): node is VNode;
|
|
6
|
+
export declare function isValidElementNode(node: VNode): boolean;
|
|
7
|
+
export declare function isValidElementNode(node: unknown): node is VNode;
|
|
8
|
+
export declare function isValidChildren(children: VNodeNormalizedChildren): children is VNodeNormalizedChildren;
|
|
9
|
+
export declare function getChildren(nodes: VNodeNormalizedChildren | VNode[], depth?: number): VNodeNormalizedChildren | VNode[];
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Comment,
|
|
3
|
+
Fragment,
|
|
4
|
+
isVNode,
|
|
5
|
+
} from 'vue'
|
|
6
|
+
import type {
|
|
7
|
+
VNode,
|
|
8
|
+
VNodeNormalizedChildren,
|
|
9
|
+
} from 'vue'
|
|
10
|
+
import {isArray} from "@vue/shared";
|
|
11
|
+
|
|
12
|
+
export function isFragment(node: VNode): boolean
|
|
13
|
+
export function isFragment(node: unknown): node is VNode
|
|
14
|
+
export function isFragment(node: unknown): node is VNode {
|
|
15
|
+
return isVNode(node) && node.type === Fragment
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function isComment(node: VNode): boolean
|
|
19
|
+
export function isComment(node: unknown): node is VNode
|
|
20
|
+
export function isComment(node: unknown): node is VNode {
|
|
21
|
+
return isVNode(node) && node.type === Comment
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function isValidElementNode(node: VNode): boolean
|
|
25
|
+
export function isValidElementNode(node: unknown): node is VNode
|
|
26
|
+
export function isValidElementNode(node: unknown): node is VNode {
|
|
27
|
+
return isVNode(node) && !isFragment(node) && !isComment(node)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export function isValidChildren(children: VNodeNormalizedChildren): children is VNodeNormalizedChildren {
|
|
31
|
+
return Array.isArray(children) ? isValidElementNode(children[0]) : false
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function getChildren(
|
|
35
|
+
nodes: VNodeNormalizedChildren | VNode[],
|
|
36
|
+
depth = 5
|
|
37
|
+
): VNodeNormalizedChildren | VNode[] {
|
|
38
|
+
let node = isArray(nodes) ? nodes[0] : nodes
|
|
39
|
+
if (isFragment(node)) {
|
|
40
|
+
if (isValidChildren(node.children)) return node.children
|
|
41
|
+
if (depth > 0) {
|
|
42
|
+
return getChildren(node.children[0], depth - 1)
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
if (isValidChildren(nodes)) return nodes
|
|
46
|
+
return []
|
|
47
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import 'prismjs';
|
|
2
|
+
import './code.scss';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
component: {
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
default: () => {};
|
|
7
|
+
};
|
|
8
|
+
description: StringConstructor;
|
|
9
|
+
label: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
lang: StringConstructor;
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
component: {
|
|
16
|
+
type: ObjectConstructor;
|
|
17
|
+
default: () => {};
|
|
18
|
+
};
|
|
19
|
+
description: StringConstructor;
|
|
20
|
+
label: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
lang: StringConstructor;
|
|
25
|
+
}>>, {
|
|
26
|
+
label: string;
|
|
27
|
+
component: Record<string, any>;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type: any;
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
data: {
|
|
8
|
+
type: any;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
data: any;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
content: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
content: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
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,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
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,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
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,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|