@opentinyvue/vue-grid 3.25.0 → 3.27.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/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-grid",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.27.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/
|
|
12
|
-
"@opentinyvue/vue-
|
|
13
|
-
"@opentinyvue/vue-
|
|
14
|
-
"@opentinyvue/vue-dropdown
|
|
15
|
-
"@opentinyvue/vue-dropdown-
|
|
16
|
-
"@opentinyvue/vue-
|
|
17
|
-
"@opentinyvue/vue-
|
|
18
|
-
"@opentinyvue/vue-
|
|
19
|
-
"@opentinyvue/vue-
|
|
20
|
-
"@opentinyvue/vue-
|
|
21
|
-
"@opentinyvue/vue-
|
|
22
|
-
"@opentinyvue/vue-
|
|
23
|
-
"@opentinyvue/vue-
|
|
24
|
-
"@opentinyvue/vue-
|
|
25
|
-
"@opentinyvue/vue-
|
|
26
|
-
"@opentinyvue/
|
|
11
|
+
"@opentinyvue/utils": "~3.27.0",
|
|
12
|
+
"@opentinyvue/vue-common": "~3.27.0",
|
|
13
|
+
"@opentinyvue/vue-directive": "~3.27.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown": "~3.27.0",
|
|
15
|
+
"@opentinyvue/vue-dropdown-item": "~3.27.0",
|
|
16
|
+
"@opentinyvue/vue-dropdown-menu": "~3.27.0",
|
|
17
|
+
"@opentinyvue/vue-exception": "~3.27.0",
|
|
18
|
+
"@opentinyvue/vue-icon": "~3.27.0",
|
|
19
|
+
"@opentinyvue/vue-loading": "~3.27.0",
|
|
20
|
+
"@opentinyvue/vue-locale": "~3.27.0",
|
|
21
|
+
"@opentinyvue/vue-modal": "~3.27.0",
|
|
22
|
+
"@opentinyvue/vue-pager": "~3.27.0",
|
|
23
|
+
"@opentinyvue/vue-renderless": "~3.27.0",
|
|
24
|
+
"@opentinyvue/vue-tag": "~3.27.0",
|
|
25
|
+
"@opentinyvue/vue-theme": "~3.27.0",
|
|
26
|
+
"@opentinyvue/vue-tooltip": "~3.27.0"
|
|
27
27
|
},
|
|
28
28
|
"types": "index.d.ts",
|
|
29
29
|
"scripts": {
|
package/src/body/src/body.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ declare const _default: hooks.DefineComponent<{
|
|
|
48
48
|
thead: hooks.Ref<any>;
|
|
49
49
|
tbody: hooks.Ref<any>;
|
|
50
50
|
ySpace: hooks.Ref<any>;
|
|
51
|
+
alignXBar: hooks.Ref<any>;
|
|
52
|
+
alignYBar: hooks.Ref<any>;
|
|
51
53
|
normalRows: hooks.ShallowRef<{}>;
|
|
52
54
|
footerRows: hooks.ShallowRef<{}>;
|
|
53
55
|
resetStickyWrapperScrollPos: () => void;
|
package/src/config.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const GlobalConfig: {
|
|
2
2
|
validConfig: {
|
|
3
3
|
message: string;
|
|
4
|
+
highlightError: boolean;
|
|
4
5
|
icon: import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
5
6
|
[key: string]: any;
|
|
6
7
|
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
@@ -9,6 +10,7 @@ declare const GlobalConfig: {
|
|
|
9
10
|
trigger: string;
|
|
10
11
|
mode: string;
|
|
11
12
|
showStatus: boolean;
|
|
13
|
+
validateOnActive: boolean;
|
|
12
14
|
};
|
|
13
15
|
sortConfig: {
|
|
14
16
|
multipleColumnSort: boolean;
|
package/src/table/src/table.d.ts
CHANGED
|
@@ -255,6 +255,8 @@ declare const _default: hooks.DefineComponent<{
|
|
|
255
255
|
bodyWrapperHeight: hooks.Ref<any>;
|
|
256
256
|
bodyWrapperMinHeight: hooks.Ref<any>;
|
|
257
257
|
bodyWrapperMaxHeight: hooks.Ref<any>;
|
|
258
|
+
containerScrollWidth: hooks.Ref<number>;
|
|
259
|
+
containerScrollHeight: hooks.Ref<number>;
|
|
258
260
|
bodyTableWidth: hooks.Ref<any>;
|
|
259
261
|
scrollLoadScrollHeight: hooks.Ref<any>;
|
|
260
262
|
columnStore: hooks.Ref<{
|
|
@@ -321,6 +323,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
321
323
|
multi: boolean;
|
|
322
324
|
options: never[];
|
|
323
325
|
visible: boolean;
|
|
326
|
+
searchValue: string;
|
|
324
327
|
};
|
|
325
328
|
headerCheckDisabled: boolean;
|
|
326
329
|
isAllSelected: boolean;
|
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* MIT License
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2019 Xu Liangzhan
|
|
5
|
-
*
|
|
6
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
-
* in the Software without restriction, including without limitation the rights
|
|
9
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
-
* furnished to do so, subject to the following conditions:
|
|
12
|
-
*
|
|
13
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
-
* copies or substantial portions of the Software.
|
|
15
|
-
*
|
|
16
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
-
* SOFTWARE.
|
|
23
|
-
*
|
|
24
|
-
*/
|
|
25
1
|
export declare function handleGlobalMousedownOnFilterWrapper({ $el, _vm, event, filterStore, filterWrapper }: {
|
|
26
2
|
$el: any;
|
|
27
3
|
_vm: any;
|
|
@@ -35,6 +35,7 @@ declare const _default: {
|
|
|
35
35
|
*/
|
|
36
36
|
validCellRules(type: any, row: any, column: any, defaultValue: any): Promise<void>;
|
|
37
37
|
_clearValidate(): any;
|
|
38
|
+
clearValidateMap(): void;
|
|
38
39
|
triggerValidate(type: any): Promise<void>;
|
|
39
40
|
showValidTooltip(params: any): void;
|
|
40
41
|
clostValidTooltip(): any;
|