@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/package.json CHANGED
@@ -1,28 +1,29 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-grid",
3
3
  "type": "module",
4
- "version": "3.21.0",
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.21.0",
12
- "@opentinyvue/vue-directive": "~3.21.0",
13
- "@opentinyvue/vue-dropdown": "~3.21.0",
14
- "@opentinyvue/vue-dropdown-item": "~3.21.0",
15
- "@opentinyvue/vue-dropdown-menu": "~3.21.0",
16
- "@opentinyvue/vue-exception": "~3.21.0",
17
- "@opentinyvue/vue-icon": "~3.21.0",
18
- "@opentinyvue/vue-loading": "~3.21.0",
19
- "@opentinyvue/vue-locale": "~3.21.0",
20
- "@opentinyvue/vue-modal": "~3.21.0",
21
- "@opentinyvue/vue-pager": "~3.21.0",
22
- "@opentinyvue/vue-renderless": "~3.21.0",
23
- "@opentinyvue/vue-tag": "~3.21.0",
24
- "@opentinyvue/vue-theme": "~3.21.0",
25
- "@opentinyvue/vue-tooltip": "~3.21.0"
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
@@ -82,7 +82,7 @@ declare const GlobalConfig: {
82
82
  menu: {};
83
83
  tooltip: {
84
84
  trigger: string;
85
- theme: string;
85
+ effect: string;
86
86
  };
87
87
  pager: {};
88
88
  toolbar: {
@@ -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: Function;
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;
@@ -29,7 +29,7 @@ declare const _default: hooks.DefineComponent<{
29
29
  tiny_theme: StringConstructor;
30
30
  tiny_chart_theme: ObjectConstructor;
31
31
  }>>, {
32
- tiny_mode_root: boolean;
33
32
  visible: boolean;
33
+ tiny_mode_root: boolean;
34
34
  }, {}>;
35
35
  export default _default;
@@ -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;
@@ -581,8 +581,8 @@ declare const _default: hooks.DefineComponent<{
581
581
  };
582
582
  }>>, {
583
583
  size: string;
584
- border: boolean;
585
584
  loading: boolean;
585
+ border: boolean;
586
586
  showHeader: boolean;
587
587
  showFooter: boolean;
588
588
  startIndex: number;
@@ -8,5 +8,6 @@ declare const _default: {
8
8
  setTreeExpansion(rows: any, expanded: any): any;
9
9
  hasTreeExpand(row: any): any;
10
10
  clearTreeExpand(): any;
11
+ getTreeExpandeds(): any;
11
12
  };
12
13
  export default _default;
@@ -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;