@opentinyvue/vue-grid 3.21.0 → 3.22.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/lib/index.js +618 -581
- package/package.json +17 -16
- package/src/column/src/column.d.ts +1 -1
- package/src/config.d.ts +1 -1
- package/src/filter/src/panel.d.ts +1 -1
- package/src/loading/src/loading.d.ts +1 -1
- package/src/mobile-first/empty.vue.d.ts +18 -0
- package/src/table/src/table.d.ts +1 -1
- package/src/tree/src/methods.d.ts +1 -0
- package/src/dragger/src/rowDrop.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-grid",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.22.1",
|
|
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/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-directive": "~3.
|
|
13
|
-
"@opentinyvue/vue-dropdown": "~3.
|
|
14
|
-
"@opentinyvue/vue-dropdown-item": "~3.
|
|
15
|
-
"@opentinyvue/vue-dropdown-menu": "~3.
|
|
16
|
-
"@opentinyvue/vue-exception": "~3.
|
|
17
|
-
"@opentinyvue/vue-icon": "~3.
|
|
18
|
-
"@opentinyvue/vue-loading": "~3.
|
|
19
|
-
"@opentinyvue/vue-locale": "~3.
|
|
20
|
-
"@opentinyvue/vue-modal": "~3.
|
|
21
|
-
"@opentinyvue/vue-pager": "~3.
|
|
22
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
23
|
-
"@opentinyvue/vue-tag": "~3.
|
|
24
|
-
"@opentinyvue/vue-theme": "~3.
|
|
25
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
11
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-directive": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-dropdown": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown-item": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-dropdown-menu": "~3.22.0",
|
|
16
|
+
"@opentinyvue/vue-exception": "~3.22.0",
|
|
17
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
18
|
+
"@opentinyvue/vue-loading": "~3.22.0",
|
|
19
|
+
"@opentinyvue/vue-locale": "~3.22.0",
|
|
20
|
+
"@opentinyvue/vue-modal": "~3.22.0",
|
|
21
|
+
"@opentinyvue/vue-pager": "~3.22.0",
|
|
22
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
23
|
+
"@opentinyvue/vue-tag": "~3.22.0",
|
|
24
|
+
"@opentinyvue/vue-theme": "~3.22.0",
|
|
25
|
+
"@opentinyvue/vue-tooltip": "~3.22.0",
|
|
26
|
+
"@opentinyvue/utils": "~3.22.0"
|
|
26
27
|
},
|
|
27
28
|
"types": "index.d.ts",
|
|
28
29
|
"scripts": {
|
|
@@ -212,9 +212,9 @@ declare const _default: hooks.DefineComponent<{
|
|
|
212
212
|
tiny_theme: StringConstructor;
|
|
213
213
|
tiny_chart_theme: ObjectConstructor;
|
|
214
214
|
}>>, {
|
|
215
|
+
required: boolean;
|
|
215
216
|
tiny_mode_root: boolean;
|
|
216
217
|
showIcon: boolean;
|
|
217
|
-
required: boolean;
|
|
218
218
|
group: boolean;
|
|
219
219
|
showTip: boolean;
|
|
220
220
|
formatConfig: Record<string, any>;
|
package/src/config.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
37
37
|
id(): any;
|
|
38
38
|
i18n(): (this: any, path: any, options?: any) => any;
|
|
39
39
|
}, {
|
|
40
|
-
updatePanel:
|
|
40
|
+
updatePanel: import("@opentinyvue/utils/src/debounce").DebounceFunction;
|
|
41
41
|
renderBase(): import("vue/jsx-runtime").JSX.Element;
|
|
42
42
|
renderDefault(): import("vue/jsx-runtime").JSX.Element | null;
|
|
43
43
|
renderExtends(): import("vue/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
tiny_mode: StringConstructor;
|
|
3
|
+
tiny_mode_root: BooleanConstructor;
|
|
4
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
5
|
+
tiny_renderless: FunctionConstructor;
|
|
6
|
+
tiny_theme: StringConstructor;
|
|
7
|
+
tiny_chart_theme: ObjectConstructor;
|
|
8
|
+
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
|
+
tiny_mode: StringConstructor;
|
|
10
|
+
tiny_mode_root: BooleanConstructor;
|
|
11
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
|
+
tiny_renderless: FunctionConstructor;
|
|
13
|
+
tiny_theme: StringConstructor;
|
|
14
|
+
tiny_chart_theme: ObjectConstructor;
|
|
15
|
+
}>>, {
|
|
16
|
+
tiny_mode_root: boolean;
|
|
17
|
+
}, {}>;
|
|
18
|
+
export default _default;
|
package/src/table/src/table.d.ts
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare const createHandlerOnEnd: ({ _vm, refresh }: {
|
|
2
|
-
_vm: any;
|
|
3
|
-
refresh: any;
|
|
4
|
-
}) => (event: any) => any;
|
|
5
|
-
export declare const getSortColumns: (columns: any) => never[];
|
|
6
|
-
export declare const onEndEvent: ({ event, _this }: {
|
|
7
|
-
event: any;
|
|
8
|
-
_this: any;
|
|
9
|
-
}) => any;
|