@visactor/vtable-plugins 1.22.11-alpha.0 → 1.22.11-alpha.10
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/cjs/auto-fill/index.js +1 -2
- package/cjs/contextmenu/index.js +2 -1
- package/cjs/fillHandleUtils/translateRowObj.js +1 -2
- package/cjs/filter/filter.js +1 -1
- package/cjs/filter/index.js +1 -1
- package/cjs/filter/styles.js +1 -1
- package/cjs/filter/types.js +1 -1
- package/cjs/filter/value-filter.js +1 -1
- package/cjs/master-detail-plugin/index.js +1 -1
- package/cjs/master-detail-plugin/subtable.js +1 -1
- package/cjs/master-detail-plugin/table-api-extensions.js +2 -1
- package/cjs/master-detail-plugin/types.js +1 -1
- package/cjs/master-detail-plugin/utils.js +1 -1
- package/es/auto-fill/index.js +1 -2
- package/es/contextmenu/index.js +2 -1
- package/es/fillHandleUtils/translateRowObj.js +1 -2
- package/es/filter/filter.js +1 -1
- package/es/filter/index.js +1 -1
- package/es/filter/styles.js +1 -1
- package/es/filter/types.js +1 -1
- package/es/filter/value-filter.js +1 -1
- package/es/master-detail-plugin/index.js +1 -1
- package/es/master-detail-plugin/subtable.js +1 -1
- package/es/master-detail-plugin/table-api-extensions.js +2 -1
- package/es/master-detail-plugin/types.js +1 -1
- package/es/master-detail-plugin/utils.js +1 -1
- package/package.json +9 -9
package/cjs/auto-fill/index.js
CHANGED
package/cjs/contextmenu/index.js
CHANGED
|
@@ -18,4 +18,5 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
20
|
}), __exportStar(require("./menu-manager"), exports), __exportStar(require("./styles"), exports),
|
|
21
|
-
__exportStar(require("./types"), exports);
|
|
21
|
+
__exportStar(require("./types"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -12,5 +12,4 @@ function translateRowArrayToObj(dataSource, columns) {
|
|
|
12
12
|
Object.defineProperty(exports, "__esModule", {
|
|
13
13
|
value: !0
|
|
14
14
|
}), exports.translateRowArrayToObj = exports.translateRowObjToArray = void 0, exports.translateRowObjToArray = translateRowObjToArray,
|
|
15
|
-
exports.translateRowArrayToObj = translateRowArrayToObj;
|
|
16
|
-
//# sourceMappingURL=translateRowObj.js.map
|
|
15
|
+
exports.translateRowArrayToObj = translateRowArrayToObj;
|
package/cjs/filter/filter.js
CHANGED
package/cjs/filter/index.js
CHANGED
package/cjs/filter/styles.js
CHANGED
package/cjs/filter/types.js
CHANGED
|
@@ -15,4 +15,4 @@ function(FilterOperatorCategory) {
|
|
|
15
15
|
FilterOperatorCategory.COLOR = "color", FilterOperatorCategory.CHECKBOX = "checkbox",
|
|
16
16
|
FilterOperatorCategory.RADIO = "radio";
|
|
17
17
|
}(FilterOperatorCategory = exports.FilterOperatorCategory || (exports.FilterOperatorCategory = {}));
|
|
18
|
-
//# sourceMappingURL=types.js.map
|
|
18
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -17,4 +17,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
17
17
|
}), exports.findRecordIndexPosition = exports.includesRecordIndex = exports.recordIndexEquals = void 0,
|
|
18
18
|
exports.recordIndexEquals = recordIndexEquals, exports.includesRecordIndex = includesRecordIndex,
|
|
19
19
|
exports.findRecordIndexPosition = findRecordIndexPosition;
|
|
20
|
-
//# sourceMappingURL=types.js.map
|
|
20
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -59,4 +59,4 @@ function setCellCheckboxStateByAttribute(col, row, checked, table) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
exports.findCheckboxColumnIndex = findCheckboxColumnIndex, exports.setCellCheckboxStateByAttribute = setCellCheckboxStateByAttribute;
|
|
62
|
-
//# sourceMappingURL=utils.js.map
|
|
62
|
+
//# sourceMappingURL=utils.js.map
|
package/es/auto-fill/index.js
CHANGED
|
@@ -23,5 +23,4 @@ export class AutoFillPlugin {
|
|
|
23
23
|
this.autoFillManager.handleEndDrag(null === (_b = this.table) || void 0 === _b ? void 0 : _b.getSelectedCellRanges()[0], direction);
|
|
24
24
|
} else args[1] === TABLE_EVENT_TYPE.DBLCLICK_FILL_HANDLE && this.autoFillManager.handleDbClick();
|
|
25
25
|
}
|
|
26
|
-
}
|
|
27
|
-
//# sourceMappingURL=index.js.map
|
|
26
|
+
}
|
package/es/contextmenu/index.js
CHANGED
|
@@ -5,5 +5,4 @@ export function translateRowObjToArray(dataSource, columns) {
|
|
|
5
5
|
export function translateRowArrayToObj(dataSource, columns) {
|
|
6
6
|
return dataSource.map((item => columns.reduce(((pre, cur, index) => (pre[cur.field] = item[index],
|
|
7
7
|
pre)), {})));
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=translateRowObj.js.map
|
|
8
|
+
}
|
package/es/filter/filter.js
CHANGED
package/es/filter/index.js
CHANGED
package/es/filter/styles.js
CHANGED
|
@@ -137,4 +137,4 @@ export function createElement(tag, attributes = {}, children = []) {
|
|
|
137
137
|
"string" == typeof child ? element.appendChild(document.createTextNode(child)) : element.appendChild(child);
|
|
138
138
|
})), element;
|
|
139
139
|
}
|
|
140
|
-
//# sourceMappingURL=styles.js.map
|
|
140
|
+
//# sourceMappingURL=styles.js.map
|
package/es/filter/types.js
CHANGED
|
@@ -14,4 +14,4 @@ export var FilterOperatorCategory;
|
|
|
14
14
|
FilterOperatorCategory.COLOR = "color", FilterOperatorCategory.CHECKBOX = "checkbox",
|
|
15
15
|
FilterOperatorCategory.RADIO = "radio";
|
|
16
16
|
}(FilterOperatorCategory || (FilterOperatorCategory = {}));
|
|
17
|
-
//# sourceMappingURL=types.js.map
|
|
17
|
+
//# sourceMappingURL=types.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vtable-plugins",
|
|
3
|
-
"version": "1.22.11-alpha.
|
|
3
|
+
"version": "1.22.11-alpha.10",
|
|
4
4
|
"description": "The search util of VTable",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "VisActor",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@types/file-saver": "2.0.7"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@visactor/vtable
|
|
46
|
-
"@visactor/vtable": "1.22.11-alpha.
|
|
45
|
+
"@visactor/vtable": "1.22.11-alpha.10",
|
|
46
|
+
"@visactor/vtable-gantt": "1.22.11-alpha.10"
|
|
47
47
|
},
|
|
48
48
|
"peerDependenciesMeta": {
|
|
49
49
|
"@visactor/vtable-gantt": {
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"cross-env": "^7.0.3",
|
|
55
55
|
"increase-memory-limit": "^1.0.7",
|
|
56
|
-
"@visactor/vtable": "1.22.11-alpha.
|
|
57
|
-
"@visactor/vtable-editors": "1.22.11-alpha.
|
|
58
|
-
"@visactor/vtable-gantt": "1.22.11-alpha.
|
|
59
|
-
"@visactor/vchart": "2.0.13-alpha.
|
|
56
|
+
"@visactor/vtable": "1.22.11-alpha.10",
|
|
57
|
+
"@visactor/vtable-editors": "1.22.11-alpha.10",
|
|
58
|
+
"@visactor/vtable-gantt": "1.22.11-alpha.10",
|
|
59
|
+
"@visactor/vchart": " 2.0.13-alpha.9",
|
|
60
60
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
61
61
|
"react": "^18.0.0",
|
|
62
62
|
"react-dom": "^18.0.0",
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
100
100
|
"@types/lodash": "4.14.182",
|
|
101
101
|
"@internal/bundler": "0.0.1",
|
|
102
|
-
"@internal/
|
|
103
|
-
"@internal/
|
|
102
|
+
"@internal/ts-config": "0.0.1",
|
|
103
|
+
"@internal/eslint-config": "0.0.1"
|
|
104
104
|
},
|
|
105
105
|
"scripts": {
|
|
106
106
|
"demo": "vite ./demo",
|