@gonsin/gview 2.0.25 → 2.0.27
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/README.md +11 -1
- package/dist/{index-ddbb6adc.mjs → index-30c3bcf5.mjs} +1 -1
- package/dist/{index-cdf9e5a6.mjs → index-a0c00121.mjs} +2387 -2271
- package/dist/index.mjs +37 -36
- package/dist/style.css +1 -1
- package/dist/types/types/view.d.ts +1 -1
- package/dist/types/utils/url.d.ts +1 -0
- package/package.json +2 -2
|
@@ -152,7 +152,7 @@ export declare type TableColumn = {
|
|
|
152
152
|
/**
|
|
153
153
|
* @description: 列显示的格式
|
|
154
154
|
*/
|
|
155
|
-
columnType?: "TEXT" | "ENUMS" | "BUTTONS" | "FORM_ITEM";
|
|
155
|
+
columnType?: "TEXT" | "ENUMS" | "BUTTONS" | "FORM_ITEM" | "DATE" | "QR_CODE" | "IMAGE";
|
|
156
156
|
/**
|
|
157
157
|
* @description: 枚举范围
|
|
158
158
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare function getUrlQuery(url: string): any;
|
|
2
2
|
export declare function resolveUrl(url: string, queryParams: any, checkOuter?: boolean): string;
|
|
3
3
|
export declare function isOuterUrl(str: string): boolean;
|
|
4
|
+
export declare function isResourceUrl(str: string): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gonsin/gview",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.27",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"typings": "dist/types/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"pinia": "^2.0.32",
|
|
36
36
|
"qs": "^6.11.1",
|
|
37
37
|
"tdesign-icons-vue-next": "^0.1.11",
|
|
38
|
-
"tdesign-vue-next": "^1.3.
|
|
38
|
+
"tdesign-vue-next": "^1.3.5",
|
|
39
39
|
"vue": "^3.2.47",
|
|
40
40
|
"vue-qr": "^4.0.9",
|
|
41
41
|
"vue-router": "^4.1.6"
|