@opentiny/vue-renderless 3.1.0-alpha.0
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/action-sheet/index.js +28 -0
- package/action-sheet/vue.js +29 -0
- package/alert/index.js +23 -0
- package/alert/vue.js +37 -0
- package/autocomplete/index.js +175 -0
- package/autocomplete/vue.js +171 -0
- package/avatar/index.js +29 -0
- package/avatar/vue.js +24 -0
- package/badge/index.js +16 -0
- package/badge/vue.js +30 -0
- package/breadcrumb/vue.js +4 -0
- package/breadcrumb-item/vue.js +24 -0
- package/bulletin-board/index.js +21 -0
- package/bulletin-board/vue.js +36 -0
- package/button/index.js +19 -0
- package/button/vue.js +43 -0
- package/button-group/index.js +25 -0
- package/button-group/vue.js +51 -0
- package/calendar/index.js +279 -0
- package/calendar/vue.js +124 -0
- package/card-template/index.js +39 -0
- package/card-template/vue.js +34 -0
- package/carousel/index.js +206 -0
- package/carousel/vue.js +222 -0
- package/carousel-item/index.js +93 -0
- package/carousel-item/vue.js +57 -0
- package/cascader/index.js +511 -0
- package/cascader/vue.js +342 -0
- package/cascader-menu/index.js +41 -0
- package/cascader-menu/vue.js +36 -0
- package/cascader-node/index.js +63 -0
- package/cascader-node/vue.js +62 -0
- package/cascader-panel/index.js +359 -0
- package/cascader-panel/node.js +199 -0
- package/cascader-panel/store.js +80 -0
- package/cascader-panel/vue.js +217 -0
- package/checkbox/index.js +145 -0
- package/checkbox/vue.js +139 -0
- package/checkbox-button/index.js +102 -0
- package/checkbox-button/vue.js +150 -0
- package/checkbox-group/index.js +12 -0
- package/checkbox-group/vue.js +33 -0
- package/col/index.js +132 -0
- package/col/vue.js +34 -0
- package/collapse/index.js +45 -0
- package/collapse/vue.js +35 -0
- package/collapse-item/index.js +38 -0
- package/collapse-item/vue.js +48 -0
- package/common/array.js +120 -0
- package/common/bigInt.js +352 -0
- package/common/browser.js +69 -0
- package/common/dataset/index.js +135 -0
- package/common/date.js +352 -0
- package/common/decimal.js +203 -0
- package/common/deps/ResizeObserver.js +474 -0
- package/common/deps/after-leave.js +25 -0
- package/common/deps/clickoutside.js +61 -0
- package/common/deps/date-util.js +262 -0
- package/common/deps/date.js +308 -0
- package/common/deps/debounce.js +4 -0
- package/common/deps/dom.js +190 -0
- package/common/deps/fullscreen/apis.js +157 -0
- package/common/deps/fullscreen/screenfull.js +106 -0
- package/common/deps/letter-only.js +15 -0
- package/common/deps/memorize.js +149 -0
- package/common/deps/number-only.js +16 -0
- package/common/deps/popper.js +713 -0
- package/common/deps/popup-manager.js +179 -0
- package/common/deps/repeat-click.js +24 -0
- package/common/deps/requestAnimationFrame.js +25 -0
- package/common/deps/resize-event.js +29 -0
- package/common/deps/scroll-into-view.js +29 -0
- package/common/deps/scrollbar-width.js +25 -0
- package/common/deps/throttle.js +34 -0
- package/common/deps/touch.js +33 -0
- package/common/deps/tree-model/node.js +586 -0
- package/common/deps/tree-model/tree-store.js +377 -0
- package/common/deps/tree-model/util.js +14 -0
- package/common/deps/upload-ajax.js +71 -0
- package/common/deps/vue-emitter.js +30 -0
- package/common/deps/vue-popper.js +291 -0
- package/common/deps/vue-popup.js +211 -0
- package/common/event.js +17 -0
- package/common/index.js +288 -0
- package/common/object.js +228 -0
- package/common/runtime.js +52 -0
- package/common/string.js +446 -0
- package/common/type.js +65 -0
- package/common/validate/index.js +6 -0
- package/common/validate/messages.js +68 -0
- package/common/validate/rules/enum.js +8 -0
- package/common/validate/rules/index.js +14 -0
- package/common/validate/rules/pattern.js +16 -0
- package/common/validate/rules/range.js +62 -0
- package/common/validate/rules/required.js +13 -0
- package/common/validate/rules/type.js +110 -0
- package/common/validate/rules/whitespace.js +6 -0
- package/common/validate/schema.js +323 -0
- package/common/validate/util.js +198 -0
- package/common/validate/validations/array.js +25 -0
- package/common/validate/validations/date.js +35 -0
- package/common/validate/validations/enum.js +24 -0
- package/common/validate/validations/float.js +24 -0
- package/common/validate/validations/index.js +42 -0
- package/common/validate/validations/integer.js +24 -0
- package/common/validate/validations/method.js +23 -0
- package/common/validate/validations/number.js +27 -0
- package/common/validate/validations/pattern.js +23 -0
- package/common/validate/validations/required.js +15 -0
- package/common/validate/validations/string.js +29 -0
- package/common/validate/validations/type.js +25 -0
- package/common/xss.js +325 -0
- package/container/index.js +110 -0
- package/container/vue.js +63 -0
- package/credit-card/index.js +107 -0
- package/credit-card/vue.js +117 -0
- package/credit-card-form/index.js +143 -0
- package/credit-card-form/vue.js +150 -0
- package/crop/index.js +297 -0
- package/crop/vue.js +191 -0
- package/date-panel/index.js +584 -0
- package/date-panel/vue.js +319 -0
- package/date-picker/index.js +301 -0
- package/date-picker/vue.js +169 -0
- package/date-range/index.js +463 -0
- package/date-range/vue.js +297 -0
- package/date-table/index.js +457 -0
- package/date-table/vue.js +151 -0
- package/detail-page/index.js +135 -0
- package/detail-page/vue.js +145 -0
- package/dialog-box/index.js +268 -0
- package/dialog-box/vue.js +226 -0
- package/drop-times/index.js +23 -0
- package/drop-times/vue.js +28 -0
- package/dropdown/index.js +259 -0
- package/dropdown/vue.js +107 -0
- package/dropdown-item/index.js +155 -0
- package/dropdown-item/vue.js +124 -0
- package/dropdown-menu/index.js +148 -0
- package/dropdown-menu/vue.js +44 -0
- package/exception/index.js +13 -0
- package/exception/vue.js +25 -0
- package/fall-menu/index.js +121 -0
- package/fall-menu/vue.js +90 -0
- package/file-upload/index.js +1940 -0
- package/file-upload/vue.js +458 -0
- package/floatbar/index.js +10 -0
- package/floatbar/vue.js +17 -0
- package/form/index.js +186 -0
- package/form/vue.js +69 -0
- package/form-item/index.js +364 -0
- package/form-item/vue.js +210 -0
- package/fullscreen/index.js +138 -0
- package/fullscreen/vue.js +77 -0
- package/grid/core/index.js +3 -0
- package/grid/core/interceptor.js +38 -0
- package/grid/core/storeMap.js +19 -0
- package/grid/plugins/export.js +169 -0
- package/grid/plugins/exportExcel.js +749 -0
- package/grid/plugins/header.js +58 -0
- package/grid/plugins/resize.js +82 -0
- package/grid/static/array/arrayEach.js +12 -0
- package/grid/static/array/arrayIndexOf.js +11 -0
- package/grid/static/array/eachTree.js +32 -0
- package/grid/static/array/every.js +2 -0
- package/grid/static/array/filterTree.js +16 -0
- package/grid/static/array/find.js +3 -0
- package/grid/static/array/findTree.js +46 -0
- package/grid/static/array/helperCreateIterateHandle.js +59 -0
- package/grid/static/array/helperCreateTreeFunc.js +18 -0
- package/grid/static/array/includes.js +5 -0
- package/grid/static/array/lastArrayEach.js +6 -0
- package/grid/static/array/map.js +23 -0
- package/grid/static/array/mapTree.js +33 -0
- package/grid/static/array/slice.js +10 -0
- package/grid/static/array/sortBy.js +69 -0
- package/grid/static/array/sum.js +28 -0
- package/grid/static/array/toArray.js +7 -0
- package/grid/static/array/toTreeArray.js +24 -0
- package/grid/static/base/clear.js +44 -0
- package/grid/static/base/clone.js +18 -0
- package/grid/static/base/destructuring.js +18 -0
- package/grid/static/base/each.js +9 -0
- package/grid/static/base/eqNull.js +6 -0
- package/grid/static/base/findIndexOf.js +10 -0
- package/grid/static/base/get.js +42 -0
- package/grid/static/base/has.js +60 -0
- package/grid/static/base/hasOwnProp.js +4 -0
- package/grid/static/base/helperCreateGetObjects.js +26 -0
- package/grid/static/base/helperCreateInInObjectString.js +7 -0
- package/grid/static/base/helperCreateInTypeof.js +6 -0
- package/grid/static/base/helperCreateIndexOf.js +21 -0
- package/grid/static/base/helperCreateiterateIndexOf.js +21 -0
- package/grid/static/base/helperDefaultCompare.js +4 -0
- package/grid/static/base/helperDeleteProperty.js +8 -0
- package/grid/static/base/helperEqualCompare.js +60 -0
- package/grid/static/base/helperGetHGSKeys.js +4 -0
- package/grid/static/base/indexOf.js +3 -0
- package/grid/static/base/isArray.js +3 -0
- package/grid/static/base/isBoolean.js +4 -0
- package/grid/static/base/isDate.js +3 -0
- package/grid/static/base/isEmpty.js +8 -0
- package/grid/static/base/isEqual.js +11 -0
- package/grid/static/base/isFunction.js +4 -0
- package/grid/static/base/isNaN.js +5 -0
- package/grid/static/base/isNull.js +4 -0
- package/grid/static/base/isNumber.js +4 -0
- package/grid/static/base/isObject.js +5 -0
- package/grid/static/base/isPlainObject.js +2 -0
- package/grid/static/base/isRegExp.js +3 -0
- package/grid/static/base/isSet.js +5 -0
- package/grid/static/base/isString.js +4 -0
- package/grid/static/base/isUndefined.js +4 -0
- package/grid/static/base/keys.js +3 -0
- package/grid/static/base/lastEach.js +9 -0
- package/grid/static/base/remove.js +44 -0
- package/grid/static/base/set.js +43 -0
- package/grid/static/base/toJSONString.js +4 -0
- package/grid/static/base/toStringJSON.js +13 -0
- package/grid/static/base/uniqueId.js +5 -0
- package/grid/static/browse/browse.js +54 -0
- package/grid/static/function/property.js +7 -0
- package/grid/static/function/throttle.js +43 -0
- package/grid/static/index.js +55 -0
- package/grid/static/number/helperCreateToNumber.js +12 -0
- package/grid/static/number/toNumber.js +3 -0
- package/grid/static/object/assign.js +41 -0
- package/grid/static/object/extend.js +3 -0
- package/grid/static/object/lastObjectEach.js +8 -0
- package/grid/static/object/objectEach.js +11 -0
- package/grid/static/object/objectMap.js +20 -0
- package/grid/static/object/values.js +9 -0
- package/grid/static/static/staticDocument.js +4 -0
- package/grid/static/static/staticHGKeyRE.js +2 -0
- package/grid/static/static/staticParseInt.js +2 -0
- package/grid/static/static/staticStrUndefined.js +2 -0
- package/grid/static/static/staticWindow.js +4 -0
- package/grid/static/string/template.js +12 -0
- package/grid/static/string/toString.js +12 -0
- package/grid/utils/column.js +72 -0
- package/grid/utils/common.js +155 -0
- package/grid/utils/dom.js +213 -0
- package/grid/utils/event.js +40 -0
- package/grid/utils/index.js +5 -0
- package/image/index.js +187 -0
- package/image/vue.js +142 -0
- package/image-viewer/index.js +469 -0
- package/image-viewer/vue.js +243 -0
- package/input/index.js +319 -0
- package/input/vue.js +319 -0
- package/ip-address/index.js +370 -0
- package/ip-address/vue.js +185 -0
- package/layout/vue.js +4 -0
- package/link/index.js +10 -0
- package/link/vue.js +26 -0
- package/link-menu/index.js +146 -0
- package/link-menu/vue.js +138 -0
- package/list/index.js +13 -0
- package/list/vue.js +17 -0
- package/loading/index.js +29 -0
- package/loading/vue.js +28 -0
- package/milestone/index.js +92 -0
- package/milestone/vue.js +31 -0
- package/mini-picker/index.js +227 -0
- package/mini-picker/vue.js +142 -0
- package/modal/index.js +866 -0
- package/modal/vue.js +130 -0
- package/month-range/index.js +169 -0
- package/month-range/vue.js +104 -0
- package/month-table/index.js +232 -0
- package/month-table/vue.js +72 -0
- package/nav-menu/index.js +457 -0
- package/nav-menu/vue.js +187 -0
- package/notify/index.js +91 -0
- package/notify/vue.js +67 -0
- package/numeric/index.js +419 -0
- package/numeric/vue.js +218 -0
- package/option/index.js +79 -0
- package/option/vue.js +219 -0
- package/option-group/index.js +18 -0
- package/option-group/vue.js +37 -0
- package/package.json +179 -0
- package/pager-item/index.js +122 -0
- package/pager-item/vue.js +52 -0
- package/panel/index.js +30 -0
- package/panel/vue.js +26 -0
- package/picker/index.js +1039 -0
- package/picker/timezone.js +974 -0
- package/picker/vue.js +415 -0
- package/picker-column/index.js +261 -0
- package/picker-column/vue.js +163 -0
- package/pop-upload/index.js +324 -0
- package/pop-upload/vue.js +292 -0
- package/popeditor/index.js +884 -0
- package/popeditor/vue.js +368 -0
- package/popover/index.js +203 -0
- package/popover/vue.js +174 -0
- package/popup/index.js +139 -0
- package/popup/vue.js +129 -0
- package/progress/index.js +174 -0
- package/progress/vue.js +118 -0
- package/pull-refresh/index.js +104 -0
- package/pull-refresh/vue.js +64 -0
- package/radio/index.js +83 -0
- package/radio/vue.js +99 -0
- package/radio-button/index.js +58 -0
- package/radio-button/vue.js +70 -0
- package/radio-group/index.js +51 -0
- package/radio-group/vue.js +34 -0
- package/rate/index.js +254 -0
- package/rate/vue.js +158 -0
- package/row/index.js +19 -0
- package/row/vue.js +24 -0
- package/scroll-text/index.js +24 -0
- package/scroll-text/vue.js +31 -0
- package/scrollbar/index.js +127 -0
- package/scrollbar/vue-bar.js +49 -0
- package/scrollbar/vue.js +43 -0
- package/search/index.js +110 -0
- package/search/vue.js +110 -0
- package/select/index.js +1766 -0
- package/select/vue.js +693 -0
- package/select-dropdown/index.js +23 -0
- package/select-dropdown/vue.js +122 -0
- package/slide-bar/index.js +94 -0
- package/slide-bar/vue.js +58 -0
- package/slider/index.js +434 -0
- package/slider/vue.js +172 -0
- package/split/index.js +122 -0
- package/split/vue.js +131 -0
- package/steps/vue.js +4 -0
- package/switch/index.js +45 -0
- package/switch/vue.js +62 -0
- package/tab-bar/index.js +51 -0
- package/tab-bar/vue.js +16 -0
- package/tab-dropdown/index.js +11 -0
- package/tab-dropdown/vue.js +17 -0
- package/tab-item/index.js +37 -0
- package/tab-item/vue.js +49 -0
- package/tab-nav/index.js +247 -0
- package/tab-nav/vue.js +106 -0
- package/tabbar/index.js +32 -0
- package/tabbar/vue.js +54 -0
- package/tabbar-item/index.js +55 -0
- package/tabbar-item/vue.js +53 -0
- package/table/index.js +111 -0
- package/table/vue.js +66 -0
- package/tabs/index.js +174 -0
- package/tabs/vue.js +141 -0
- package/tag/index.js +14 -0
- package/tag/vue.js +13 -0
- package/tall-storage/index.js +161 -0
- package/tall-storage/vue-storage-box.js +25 -0
- package/tall-storage/vue.js +38 -0
- package/text-popup/index.js +75 -0
- package/text-popup/vue.js +64 -0
- package/time/index.js +121 -0
- package/time/vue.js +124 -0
- package/time-line/index.js +60 -0
- package/time-line/vue.js +49 -0
- package/time-panel/index.js +189 -0
- package/time-panel/scrollIntoView.js +23 -0
- package/time-panel/vue.js +110 -0
- package/time-range/index.js +199 -0
- package/time-range/vue.js +129 -0
- package/time-spinner/index.js +175 -0
- package/time-spinner/vue.js +122 -0
- package/toggle-menu/index.js +104 -0
- package/toggle-menu/vue.js +74 -0
- package/tooltip/index.js +171 -0
- package/tooltip/vue.js +133 -0
- package/top-box/index.js +81 -0
- package/top-box/vue.js +77 -0
- package/transfer/index.js +296 -0
- package/transfer/vue.js +138 -0
- package/transfer-panel/index.js +364 -0
- package/transfer-panel/vue.js +258 -0
- package/tree/index.js +642 -0
- package/tree/vue.js +268 -0
- package/tree-menu/index.js +124 -0
- package/tree-menu/vue.js +60 -0
- package/tree-node/index.js +271 -0
- package/tree-node/vue.js +211 -0
- package/upload/index.js +324 -0
- package/upload/vue.js +93 -0
- package/upload-dragger/index.js +50 -0
- package/upload-dragger/vue.js +27 -0
- package/upload-list/index.js +55 -0
- package/upload-list/vue.js +48 -0
- package/user-contact/index.js +13 -0
- package/user-contact/vue.js +20 -0
- package/user-head/index.js +71 -0
- package/user-head/vue.js +47 -0
- package/wizard/index.js +123 -0
- package/wizard/vue.js +45 -0
- package/year-table/index.js +40 -0
- package/year-table/vue.js +23 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
2
|
+
import { copyArray } from '@opentiny/vue-renderless/common/object';
|
|
3
|
+
import { getFlatData } from '@opentiny/vue-renderless/transfer';
|
|
4
|
+
export var showFilterData = function showFilterData(data, sign) {
|
|
5
|
+
var getChild = function getChild(data, sign) {
|
|
6
|
+
return data.filter(function (node) {
|
|
7
|
+
if (node.children && node.children.length > 0) {
|
|
8
|
+
node.children = getChild(node.children, sign);
|
|
9
|
+
}
|
|
10
|
+
return node[sign];
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
return getChild(data, sign);
|
|
14
|
+
};
|
|
15
|
+
export var getFilterData = function getFilterData(_ref) {
|
|
16
|
+
var api = _ref.api,
|
|
17
|
+
props = _ref.props,
|
|
18
|
+
state = _ref.state,
|
|
19
|
+
Table = _ref.Table,
|
|
20
|
+
Tree = _ref.Tree;
|
|
21
|
+
return function () {
|
|
22
|
+
if (state.renderType === Table) {
|
|
23
|
+
var tableData = [];
|
|
24
|
+
if (props.filterMethod) {
|
|
25
|
+
tableData = props.data.filter(function (item) {
|
|
26
|
+
return props.filterMethod(state.query, item);
|
|
27
|
+
});
|
|
28
|
+
} else {
|
|
29
|
+
tableData = props.data;
|
|
30
|
+
}
|
|
31
|
+
state.pagerTotal = tableData;
|
|
32
|
+
if (props.showPager) {
|
|
33
|
+
var pageSize = state.sizes || 10;
|
|
34
|
+
var totalPageCount = Math.ceil(tableData.length / pageSize);
|
|
35
|
+
if (state.internalPage > totalPageCount) {
|
|
36
|
+
api.handlePageChange(totalPageCount);
|
|
37
|
+
}
|
|
38
|
+
if (totalPageCount > 0 && state.internalPage === 0) {
|
|
39
|
+
state.internalPage = 1;
|
|
40
|
+
}
|
|
41
|
+
if (totalPageCount > 0 && state.currentPage === 0) {
|
|
42
|
+
state.currentPage = 1;
|
|
43
|
+
}
|
|
44
|
+
return tableData.slice((state.internalPage - 1) * pageSize, pageSize * state.internalPage);
|
|
45
|
+
} else {
|
|
46
|
+
return tableData;
|
|
47
|
+
}
|
|
48
|
+
} else if (state.renderType === Tree) {
|
|
49
|
+
return showFilterData(api.getFilterTreeData(copyArray(props.data)), 'visible');
|
|
50
|
+
} else {
|
|
51
|
+
return props.data.filter(function (item) {
|
|
52
|
+
if (typeof props.filterMethod === 'function') {
|
|
53
|
+
return props.filterMethod(state.query, item);
|
|
54
|
+
} else {
|
|
55
|
+
var label = item[state.labelProp] || item[state.keyProp].toString();
|
|
56
|
+
return label.toLowerCase().indexOf(state.query.toLowerCase()) > -1;
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
export var getCheckableData = function getCheckableData(_ref2) {
|
|
63
|
+
var api = _ref2.api,
|
|
64
|
+
state = _ref2.state,
|
|
65
|
+
Tree = _ref2.Tree;
|
|
66
|
+
return function () {
|
|
67
|
+
if (state.renderType === Tree) {
|
|
68
|
+
return api.getTreeCheckableData(state.filteredData);
|
|
69
|
+
} else {
|
|
70
|
+
return state.filteredData.filter(function (item) {
|
|
71
|
+
return !item[state.disabledProp];
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
export var getCheckedSummary = function getCheckedSummary(_ref3) {
|
|
77
|
+
var props = _ref3.props,
|
|
78
|
+
state = _ref3.state,
|
|
79
|
+
Tree = _ref3.Tree;
|
|
80
|
+
return function () {
|
|
81
|
+
var checkedLength = state.checked.length;
|
|
82
|
+
var dataLength = 0;
|
|
83
|
+
if (state.renderType === Tree) {
|
|
84
|
+
dataLength = getFlatData(copyArray(props.data)).length;
|
|
85
|
+
} else {
|
|
86
|
+
dataLength = props.data.length;
|
|
87
|
+
}
|
|
88
|
+
var _props$format = props.format,
|
|
89
|
+
noChecked = _props$format.noChecked,
|
|
90
|
+
hasChecked = _props$format.hasChecked;
|
|
91
|
+
if (noChecked && hasChecked) {
|
|
92
|
+
return checkedLength > 0 ? hasChecked.replace(/\${checked}/g, checkedLength).replace(/\${total}/g, dataLength) : noChecked.replace(/\${checked}/g, checkedLength).replace(/\${total}/g, dataLength);
|
|
93
|
+
} else {
|
|
94
|
+
return "".concat(checkedLength, " / ").concat(dataLength);
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
export var getDeteminate = function getDeteminate(state) {
|
|
99
|
+
return function () {
|
|
100
|
+
return state.checked.length > 0 && state.checked.length < state.checkableData.length;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
export var watchChecked = function watchChecked(_ref4) {
|
|
104
|
+
var api = _ref4.api,
|
|
105
|
+
emit = _ref4.emit,
|
|
106
|
+
state = _ref4.state;
|
|
107
|
+
return function (_ref5) {
|
|
108
|
+
var value = _ref5.value,
|
|
109
|
+
oldvalue = _ref5.oldvalue;
|
|
110
|
+
api.updateAllChecked();
|
|
111
|
+
if (state.checkChangeByUser) {
|
|
112
|
+
var movedKeys = value.concat(oldvalue).filter(function (v) {
|
|
113
|
+
return value.indexOf(v) === -1 || oldvalue.indexOf(v) === -1;
|
|
114
|
+
});
|
|
115
|
+
emit('checked-change', value, movedKeys);
|
|
116
|
+
} else {
|
|
117
|
+
emit('checked-change', value);
|
|
118
|
+
state.checkChangeByUser = true;
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
export var watchData = function watchData(_ref6) {
|
|
123
|
+
var api = _ref6.api,
|
|
124
|
+
props = _ref6.props,
|
|
125
|
+
state = _ref6.state,
|
|
126
|
+
Tree = _ref6.Tree;
|
|
127
|
+
return function (value) {
|
|
128
|
+
state.pagerTotal = value;
|
|
129
|
+
var checked = [];
|
|
130
|
+
if (state.renderType === Tree && !props.treeOp.checkStrictly) {
|
|
131
|
+
state.checked = api.getStrictData(state.filteredData).keys;
|
|
132
|
+
} else {
|
|
133
|
+
var filteredDataKeys = state.filteredData.map(function (item) {
|
|
134
|
+
return item[state.keyProp];
|
|
135
|
+
});
|
|
136
|
+
state.checked.forEach(function (item) {
|
|
137
|
+
if (filteredDataKeys.indexOf(item) > -1) {
|
|
138
|
+
checked.push(item);
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
state.checkChangeByUser = false;
|
|
142
|
+
state.checked = checked;
|
|
143
|
+
}
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
export var watchDefaultCheckded = function watchDefaultCheckded(_ref7) {
|
|
147
|
+
var api = _ref7.api,
|
|
148
|
+
props = _ref7.props,
|
|
149
|
+
state = _ref7.state,
|
|
150
|
+
Tree = _ref7.Tree;
|
|
151
|
+
return function (_ref8) {
|
|
152
|
+
var value = _ref8.value,
|
|
153
|
+
oldvalue = _ref8.oldvalue;
|
|
154
|
+
if (oldvalue && value.length === oldvalue.length && value.every(function (item) {
|
|
155
|
+
return oldvalue.indexOf(item) > -1;
|
|
156
|
+
})) {
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
if (state.renderType === Tree && !props.treeOp.checkStrictly) {
|
|
160
|
+
if (!state.render) {
|
|
161
|
+
return;
|
|
162
|
+
}
|
|
163
|
+
state.render.defaultCheckedKeys = state.checked = api.getStrictData(state.filteredData).keys;
|
|
164
|
+
} else {
|
|
165
|
+
var checked = [];
|
|
166
|
+
var checkableDataKeys = state.checkableData.map(function (item) {
|
|
167
|
+
return item[state.keyProp];
|
|
168
|
+
});
|
|
169
|
+
value.forEach(function (item) {
|
|
170
|
+
if (checkableDataKeys.indexOf(item) > -1) {
|
|
171
|
+
checked.push(item);
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
state.checkChangeByUser = false;
|
|
175
|
+
state.checked = checked;
|
|
176
|
+
}
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
export var updateAllChecked = function updateAllChecked(_ref9) {
|
|
180
|
+
var state = _ref9.state,
|
|
181
|
+
Table = _ref9.Table,
|
|
182
|
+
Tree = _ref9.Tree;
|
|
183
|
+
return function () {
|
|
184
|
+
var checkableDataKeys = state.checkableData.map(function (item) {
|
|
185
|
+
return item[state.keyProp];
|
|
186
|
+
});
|
|
187
|
+
state.allChecked = checkableDataKeys && checkableDataKeys.length > 0 && checkableDataKeys.every(function (item) {
|
|
188
|
+
return state.checked.indexOf(item) > -1;
|
|
189
|
+
});
|
|
190
|
+
if (state.renderType === Table || state.renderType === Tree) {
|
|
191
|
+
state.render.data = state.filteredData;
|
|
192
|
+
if (state.renderType === Tree) {
|
|
193
|
+
state.render.defaultCheckedKeys = state.checked;
|
|
194
|
+
} else {
|
|
195
|
+
var pageCheckedKeys = [];
|
|
196
|
+
state.filteredData.forEach(function (data) {
|
|
197
|
+
state.checked.indexOf(data[state.keyProp]) > -1 && pageCheckedKeys.push(data[state.keyProp]);
|
|
198
|
+
});
|
|
199
|
+
state.render.defaultChecked = pageCheckedKeys;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
export var handleAllCheckedChange = function handleAllCheckedChange(_ref10) {
|
|
205
|
+
var state = _ref10.state,
|
|
206
|
+
Table = _ref10.Table,
|
|
207
|
+
Tree = _ref10.Tree,
|
|
208
|
+
vm = _ref10.vm;
|
|
209
|
+
return function (value) {
|
|
210
|
+
state.checked = value ? state.checkableData.map(function (item) {
|
|
211
|
+
return item[state.keyProp];
|
|
212
|
+
}) : [];
|
|
213
|
+
if (state.renderType === Table) {
|
|
214
|
+
state.render.defaultChecked = state.checked;
|
|
215
|
+
} else if (state.renderType === Tree) {
|
|
216
|
+
state.checked.length !== 0 ? state.render.defaultCheckedKeys = state.checked : vm.$refs.plugin.setCheckedKeys(state.checked);
|
|
217
|
+
}
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
export var clearQuery = function clearQuery(state) {
|
|
221
|
+
return function () {
|
|
222
|
+
if (state.inputIcon === 'circle-close') {
|
|
223
|
+
state.query = '';
|
|
224
|
+
}
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
export var checkedEvent = function checkedEvent(state) {
|
|
228
|
+
return function (value, disabled) {
|
|
229
|
+
if (disabled) {
|
|
230
|
+
return;
|
|
231
|
+
}
|
|
232
|
+
var index = state.checked.indexOf(value);
|
|
233
|
+
var tmpArray = _toConsumableArray(state.checked);
|
|
234
|
+
if (~index) {
|
|
235
|
+
tmpArray.splice(index, 1);
|
|
236
|
+
state.checked = tmpArray;
|
|
237
|
+
} else {
|
|
238
|
+
tmpArray.push(value);
|
|
239
|
+
state.checked = tmpArray;
|
|
240
|
+
}
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
export var setPosition = function setPosition(_ref11) {
|
|
244
|
+
var parent = _ref11.parent,
|
|
245
|
+
state = _ref11.state;
|
|
246
|
+
return function (trend, event) {
|
|
247
|
+
event.stopPropagation();
|
|
248
|
+
event.preventDefault();
|
|
249
|
+
var checkedKey = [];
|
|
250
|
+
var uncheckedKey = [];
|
|
251
|
+
state.filteredData.forEach(function (item) {
|
|
252
|
+
if (~state.checked.indexOf(item[state.keyProp])) {
|
|
253
|
+
checkedKey.push(item[state.keyProp]);
|
|
254
|
+
} else {
|
|
255
|
+
uncheckedKey.push(item[state.keyProp]);
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
var result = trend === 'up' ? [].concat(checkedKey, uncheckedKey) : [].concat(uncheckedKey, checkedKey);
|
|
259
|
+
parent.$parent.$emit('update:modelValue', result);
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
export var selectChange = function selectChange(state) {
|
|
263
|
+
return function (keys) {
|
|
264
|
+
return state.checked = keys;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
export var handlePageChange = function handlePageChange(state) {
|
|
268
|
+
return function (currentPage) {
|
|
269
|
+
state.pageChangeData = true;
|
|
270
|
+
state.internalPage = currentPage;
|
|
271
|
+
state.currentPage = currentPage;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
export var getFilterTreeData = function getFilterTreeData(_ref12) {
|
|
275
|
+
var props = _ref12.props,
|
|
276
|
+
state = _ref12.state;
|
|
277
|
+
return function (data) {
|
|
278
|
+
var getChild = function getChild(data, query) {
|
|
279
|
+
data.forEach(function (node) {
|
|
280
|
+
var label = node[state.labelProp];
|
|
281
|
+
if (typeof props.treeOp.filterNodeMethod === 'function') {
|
|
282
|
+
var result = props.treeOp.filterNodeMethod(state.query, node);
|
|
283
|
+
if (typeof result !== 'boolean') {
|
|
284
|
+
node.visible = true;
|
|
285
|
+
} else {
|
|
286
|
+
node.visible = result;
|
|
287
|
+
}
|
|
288
|
+
} else {
|
|
289
|
+
node.visible = label.toLowerCase().indexOf(query.toLowerCase()) > -1;
|
|
290
|
+
}
|
|
291
|
+
if (node.children && node.children.length > 0) {
|
|
292
|
+
getChild(node.children, query);
|
|
293
|
+
}
|
|
294
|
+
if (!node.visible && node.children && node.children.length) {
|
|
295
|
+
var allHidden = true;
|
|
296
|
+
allHidden = !node.children.some(function (child) {
|
|
297
|
+
return child.visible;
|
|
298
|
+
});
|
|
299
|
+
node.visible = allHidden === false;
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
};
|
|
303
|
+
getChild(data, state.query);
|
|
304
|
+
return data;
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
export var getTreeCheckableData = function getTreeCheckableData(state) {
|
|
308
|
+
return function (data) {
|
|
309
|
+
var nodes = [];
|
|
310
|
+
var getChild = function getChild(data) {
|
|
311
|
+
data.forEach(function (node) {
|
|
312
|
+
!node[state.disabledProp] && nodes.push(node);
|
|
313
|
+
if (node.children && node.children.length > 0) {
|
|
314
|
+
getChild(node.children);
|
|
315
|
+
}
|
|
316
|
+
});
|
|
317
|
+
};
|
|
318
|
+
getChild(data);
|
|
319
|
+
return nodes;
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
export var getStrictData = function getStrictData(_ref13) {
|
|
323
|
+
var props = _ref13.props,
|
|
324
|
+
state = _ref13.state;
|
|
325
|
+
return function (data) {
|
|
326
|
+
var keys = [];
|
|
327
|
+
var strictData = function strictData(data, isStrict) {
|
|
328
|
+
data.forEach(function (node) {
|
|
329
|
+
if (props.defaultChecked.indexOf(node[state.keyProp]) > -1) {
|
|
330
|
+
node.isCheckable = true;
|
|
331
|
+
keys.push(node[state.keyProp]);
|
|
332
|
+
} else {
|
|
333
|
+
node.isCheckable = isStrict;
|
|
334
|
+
isStrict && keys.push(node[state.keyProp]);
|
|
335
|
+
}
|
|
336
|
+
if (node.children && node.children.length > 0) {
|
|
337
|
+
strictData(node.children, node.isCheckable);
|
|
338
|
+
}
|
|
339
|
+
});
|
|
340
|
+
};
|
|
341
|
+
strictData(data, false);
|
|
342
|
+
return {
|
|
343
|
+
data: data,
|
|
344
|
+
keys: keys
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
export var sizesChange = function sizesChange(state) {
|
|
349
|
+
return function (sizes) {
|
|
350
|
+
return state.sizes = sizes;
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
export var setExpandCache = function setExpandCache(state) {
|
|
354
|
+
return function (node, expand) {
|
|
355
|
+
var expanded = state.expanded,
|
|
356
|
+
keyProp = state.keyProp;
|
|
357
|
+
var index = state.expanded.indexOf(node[keyProp]);
|
|
358
|
+
if (expand) {
|
|
359
|
+
index === -1 && expanded.push(node[keyProp]);
|
|
360
|
+
} else {
|
|
361
|
+
index !== -1 && expanded.splice(index, 1);
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
};
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
import { getStrictData, sizesChange, getTreeCheckableData, getFilterTreeData, getFilterData, getCheckableData, checkedEvent, watchData, getCheckedSummary, getDeteminate, watchChecked, watchDefaultCheckded, updateAllChecked, handleAllCheckedChange, clearQuery, setPosition, selectChange, handlePageChange, setExpandCache } from './index';
|
|
5
|
+
export var api = ['markRaw', 'toRaw', 'state', 'check', 'sizesChange', 'clearQuery', 'handleAllCheckedChange', 'checkedEvent', 'setPosition', 'selectChange', 'handlePageChange'];
|
|
6
|
+
var initState = function initState(_ref) {
|
|
7
|
+
var reactive = _ref.reactive,
|
|
8
|
+
props = _ref.props,
|
|
9
|
+
parent = _ref.parent,
|
|
10
|
+
computed = _ref.computed,
|
|
11
|
+
api = _ref.api,
|
|
12
|
+
slots = _ref.slots;
|
|
13
|
+
var state = reactive({
|
|
14
|
+
query: '',
|
|
15
|
+
checked: [],
|
|
16
|
+
allChecked: false,
|
|
17
|
+
inputHover: false,
|
|
18
|
+
internalPage: props.pagerOp.pageVO.currentPage || 1,
|
|
19
|
+
pagerTotal: 0,
|
|
20
|
+
pageChangeData: parent.state.isToLeft,
|
|
21
|
+
currentPage: props.pagerOp.pageVO.currentPage || 1,
|
|
22
|
+
sizes: props.pagerOp && props.pagerOp.pageVO.pageSize,
|
|
23
|
+
render: {},
|
|
24
|
+
checkChangeByUser: true,
|
|
25
|
+
filteredData: computed(function () {
|
|
26
|
+
return api.getFilterData();
|
|
27
|
+
}),
|
|
28
|
+
checkableData: computed(function () {
|
|
29
|
+
return api.getCheckableData();
|
|
30
|
+
}),
|
|
31
|
+
checkedSummary: computed(function () {
|
|
32
|
+
return api.getCheckedSummary();
|
|
33
|
+
}),
|
|
34
|
+
isIndeterminate: computed(function () {
|
|
35
|
+
return api.getDeteminate();
|
|
36
|
+
}),
|
|
37
|
+
hasNoMatch: computed(function () {
|
|
38
|
+
return state.query.length > 0 && state.filteredData.length === 0;
|
|
39
|
+
}),
|
|
40
|
+
inputIcon: computed(function () {
|
|
41
|
+
return state.query.length > 0 && state.inputHover ? 'circle-close' : 'search';
|
|
42
|
+
}),
|
|
43
|
+
labelProp: computed(function () {
|
|
44
|
+
return props.props.label || 'label';
|
|
45
|
+
}),
|
|
46
|
+
keyProp: computed(function () {
|
|
47
|
+
return props.props.key || 'key';
|
|
48
|
+
}),
|
|
49
|
+
disabledProp: computed(function () {
|
|
50
|
+
return props.props.disabled || 'disabled';
|
|
51
|
+
}),
|
|
52
|
+
childrenProp: computed(function () {
|
|
53
|
+
return props.treeOp && props.treeOp.props && props.treeOp.props.childern || 'children';
|
|
54
|
+
}),
|
|
55
|
+
hasFooter: computed(function () {
|
|
56
|
+
return (!!parent.slots['left-footer'] || !!parent.slots['right-footer']) && !!slots["default"];
|
|
57
|
+
}),
|
|
58
|
+
renderType: computed(function () {
|
|
59
|
+
return props.render && props.render.plugin.name;
|
|
60
|
+
}),
|
|
61
|
+
expanded: []
|
|
62
|
+
});
|
|
63
|
+
return state;
|
|
64
|
+
};
|
|
65
|
+
var initStateRender = function initStateRender(_ref2) {
|
|
66
|
+
var reactive = _ref2.reactive,
|
|
67
|
+
state = _ref2.state,
|
|
68
|
+
props = _ref2.props,
|
|
69
|
+
api = _ref2.api;
|
|
70
|
+
return reactive(_objectSpread(_objectSpread({
|
|
71
|
+
keys: state.keyProp,
|
|
72
|
+
data: [],
|
|
73
|
+
defaultChecked: state.checked,
|
|
74
|
+
defaultExpandedKeys: state.expanded,
|
|
75
|
+
columns: props.columns
|
|
76
|
+
}, props.treeOp), {}, {
|
|
77
|
+
on: {
|
|
78
|
+
'checked-change': function checkedChange(selected, isAll) {
|
|
79
|
+
api.selectChange(selected, isAll);
|
|
80
|
+
},
|
|
81
|
+
check: function check(data, _ref3) {
|
|
82
|
+
var checkedKeys = _ref3.checkedKeys;
|
|
83
|
+
state.checked = checkedKeys;
|
|
84
|
+
},
|
|
85
|
+
'node-expand': function nodeExpand(node) {
|
|
86
|
+
return api.setExpandCache(node, true);
|
|
87
|
+
},
|
|
88
|
+
'node-collapse': function nodeCollapse(node) {
|
|
89
|
+
return api.setExpandCache(node, false);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}));
|
|
93
|
+
};
|
|
94
|
+
var initWatcher = function initWatcher(_ref4) {
|
|
95
|
+
var watch = _ref4.watch,
|
|
96
|
+
state = _ref4.state,
|
|
97
|
+
api = _ref4.api,
|
|
98
|
+
props = _ref4.props,
|
|
99
|
+
Table = _ref4.Table;
|
|
100
|
+
watch(function () {
|
|
101
|
+
return state.checked;
|
|
102
|
+
}, function (value, oldvalue) {
|
|
103
|
+
return api.watchChecked({
|
|
104
|
+
value: value,
|
|
105
|
+
oldvalue: oldvalue
|
|
106
|
+
});
|
|
107
|
+
});
|
|
108
|
+
watch(function () {
|
|
109
|
+
return props.pagerOp.pageVO.currentPage;
|
|
110
|
+
}, function (value) {
|
|
111
|
+
state.currentPage = value;
|
|
112
|
+
}, {
|
|
113
|
+
deep: true,
|
|
114
|
+
immediate: true
|
|
115
|
+
});
|
|
116
|
+
watch(function () {
|
|
117
|
+
return props.data;
|
|
118
|
+
}, api.watchData, {
|
|
119
|
+
immediate: true
|
|
120
|
+
});
|
|
121
|
+
watch(function () {
|
|
122
|
+
return state.checkableData;
|
|
123
|
+
}, api.updateAllChecked);
|
|
124
|
+
watch(function () {
|
|
125
|
+
return props.defaultChecked;
|
|
126
|
+
}, function (value, oldvalue) {
|
|
127
|
+
return api.watchDefaultCheckded({
|
|
128
|
+
value: value,
|
|
129
|
+
oldvalue: oldvalue
|
|
130
|
+
});
|
|
131
|
+
}, {
|
|
132
|
+
immediate: true
|
|
133
|
+
});
|
|
134
|
+
watch(function () {
|
|
135
|
+
return props.isToLeft;
|
|
136
|
+
}, function () {
|
|
137
|
+
if (state.renderType === Table) {
|
|
138
|
+
state.internalPage = 1;
|
|
139
|
+
state.currentPage = 1;
|
|
140
|
+
state.render.data = state.filteredData;
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
};
|
|
144
|
+
export var renderless = function renderless(props, _ref5, _ref6) {
|
|
145
|
+
var computed = _ref5.computed,
|
|
146
|
+
reactive = _ref5.reactive,
|
|
147
|
+
watch = _ref5.watch,
|
|
148
|
+
toRaw = _ref5.toRaw,
|
|
149
|
+
markRaw = _ref5.markRaw;
|
|
150
|
+
var $prefix = _ref6.$prefix,
|
|
151
|
+
t = _ref6.t,
|
|
152
|
+
emit = _ref6.emit,
|
|
153
|
+
parent = _ref6.parent,
|
|
154
|
+
nextTick = _ref6.nextTick,
|
|
155
|
+
refs = _ref6.refs,
|
|
156
|
+
vm = _ref6.vm,
|
|
157
|
+
slots = _ref6.slots;
|
|
158
|
+
var api = {};
|
|
159
|
+
var Table = $prefix + 'Table';
|
|
160
|
+
var Tree = $prefix + 'Tree';
|
|
161
|
+
var state = initState({
|
|
162
|
+
reactive: reactive,
|
|
163
|
+
props: props,
|
|
164
|
+
parent: parent,
|
|
165
|
+
computed: computed,
|
|
166
|
+
api: api,
|
|
167
|
+
slots: slots
|
|
168
|
+
});
|
|
169
|
+
Object.assign(api, {
|
|
170
|
+
t: t,
|
|
171
|
+
state: state,
|
|
172
|
+
toRaw: toRaw,
|
|
173
|
+
markRaw: markRaw,
|
|
174
|
+
sizesChange: sizesChange(state),
|
|
175
|
+
setPosition: setPosition({
|
|
176
|
+
parent: parent,
|
|
177
|
+
state: state
|
|
178
|
+
}),
|
|
179
|
+
selectChange: selectChange(state),
|
|
180
|
+
handlePageChange: handlePageChange(state),
|
|
181
|
+
clearQuery: clearQuery(state),
|
|
182
|
+
checkedEvent: checkedEvent(state),
|
|
183
|
+
getDeteminate: getDeteminate(state),
|
|
184
|
+
updateAllChecked: updateAllChecked({
|
|
185
|
+
state: state,
|
|
186
|
+
Table: Table,
|
|
187
|
+
Tree: Tree
|
|
188
|
+
}),
|
|
189
|
+
handleAllCheckedChange: handleAllCheckedChange({
|
|
190
|
+
nextTick: nextTick,
|
|
191
|
+
props: props,
|
|
192
|
+
state: state,
|
|
193
|
+
Table: Table,
|
|
194
|
+
Tree: Tree,
|
|
195
|
+
vm: vm
|
|
196
|
+
}),
|
|
197
|
+
getCheckedSummary: getCheckedSummary({
|
|
198
|
+
props: props,
|
|
199
|
+
state: state,
|
|
200
|
+
Tree: Tree
|
|
201
|
+
}),
|
|
202
|
+
getFilterTreeData: getFilterTreeData({
|
|
203
|
+
props: props,
|
|
204
|
+
state: state
|
|
205
|
+
}),
|
|
206
|
+
getTreeCheckableData: getTreeCheckableData(state),
|
|
207
|
+
getStrictData: getStrictData({
|
|
208
|
+
props: props,
|
|
209
|
+
state: state
|
|
210
|
+
}),
|
|
211
|
+
setExpandCache: setExpandCache(state),
|
|
212
|
+
getCheckableData: getCheckableData({
|
|
213
|
+
api: api,
|
|
214
|
+
state: state,
|
|
215
|
+
Tree: Tree
|
|
216
|
+
}),
|
|
217
|
+
getFilterData: getFilterData({
|
|
218
|
+
api: api,
|
|
219
|
+
parent: parent,
|
|
220
|
+
props: props,
|
|
221
|
+
refs: refs,
|
|
222
|
+
state: state,
|
|
223
|
+
Table: Table,
|
|
224
|
+
Tree: Tree
|
|
225
|
+
}),
|
|
226
|
+
watchData: watchData({
|
|
227
|
+
api: api,
|
|
228
|
+
props: props,
|
|
229
|
+
state: state,
|
|
230
|
+
Tree: Tree
|
|
231
|
+
}),
|
|
232
|
+
watchDefaultCheckded: watchDefaultCheckded({
|
|
233
|
+
api: api,
|
|
234
|
+
props: props,
|
|
235
|
+
state: state,
|
|
236
|
+
Tree: Tree
|
|
237
|
+
}),
|
|
238
|
+
watchChecked: watchChecked({
|
|
239
|
+
api: api,
|
|
240
|
+
emit: emit,
|
|
241
|
+
state: state
|
|
242
|
+
})
|
|
243
|
+
});
|
|
244
|
+
state.render = initStateRender({
|
|
245
|
+
reactive: reactive,
|
|
246
|
+
state: state,
|
|
247
|
+
props: props,
|
|
248
|
+
api: api
|
|
249
|
+
});
|
|
250
|
+
initWatcher({
|
|
251
|
+
watch: watch,
|
|
252
|
+
state: state,
|
|
253
|
+
api: api,
|
|
254
|
+
props: props,
|
|
255
|
+
Table: Table
|
|
256
|
+
});
|
|
257
|
+
return api;
|
|
258
|
+
};
|