@newview/ui 1.1.21 → 1.1.23

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/ui",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "author": "newview",
5
5
  "type": "module",
6
6
  "main": "./dist/newview-ui.umd.cjs",
@@ -31,7 +31,7 @@
31
31
  "build-watch": "vite build --watch",
32
32
  "type-check": "vue-tsc --noEmit",
33
33
  "p": "npm publish --access public",
34
- "build-p": "run-p type-check build-only p"
34
+ "build-p":"run-p type-check build-only p"
35
35
  },
36
36
  "dependencies": {
37
37
  "@newview/base-vue": "^1.1.0",
@@ -72,4 +72,4 @@
72
72
  "vite": "4.0.0",
73
73
  "vue-tsc": "1.0.11"
74
74
  }
75
- }
75
+ }
package/types/Grid.d.ts CHANGED
@@ -484,7 +484,7 @@ export interface GridColumn extends VxeColumnProps {
484
484
  /**
485
485
  * 列类型
486
486
  */
487
- colType?: "ch" | "ed" | "password" | "auto" | "num" | "select" | "date" | "time" | "ro" | "seq" | "radio" | "checkbox" | "expand" | "treeSelect";
487
+ colType?: "ch" | "ed" | "password" | "auto" | "num" | "select" | "date" | "time" | "ro" | "seq" | "radio" | "checkbox" | "expand" | "treeSelect" | "switch" | "color";
488
488
 
489
489
  /**
490
490
  * 行按钮
@@ -0,0 +1,10 @@
1
+ /*
2
+ * @Description:
3
+ * @Autor: pangting
4
+ * @Date: 2024-02-27 17:53:13
5
+ * @LastEditors: pangting
6
+ * @LastEditTime: 2024-02-27 17:53:48
7
+ */
8
+ import { BaseInstance } from "@newview/base-vue";
9
+ export declare class LoadingInstance extends BaseInstance {
10
+ }