zzz-pc-view 0.0.7 → 0.0.8
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
|
@@ -21,12 +21,12 @@ export declare const editTypeMap: {
|
|
|
21
21
|
* 创建操作的配置。
|
|
22
22
|
* @type {Object}
|
|
23
23
|
* @property {EditTypeEnum.CREATE} id - 操作的ID,对应EditTypeEnum.CREATE。
|
|
24
|
-
* @property {
|
|
24
|
+
* @property {string} label - 操作的标签,为'新增'。
|
|
25
25
|
* @property {string} method - 操作的HTTP方法,为'POST'。
|
|
26
26
|
*/
|
|
27
27
|
readonly 1: {
|
|
28
28
|
readonly id: EditTypeEnum.CREATE;
|
|
29
|
-
readonly
|
|
29
|
+
readonly label: "新增";
|
|
30
30
|
readonly method: "POST";
|
|
31
31
|
};
|
|
32
32
|
/**
|
package/src/index.es.js
CHANGED
|
@@ -2802,7 +2802,7 @@ const editTypeMap = {
|
|
|
2802
2802
|
* 创建操作的配置。
|
|
2803
2803
|
* @type {Object}
|
|
2804
2804
|
* @property {EditTypeEnum.CREATE} id - 操作的ID,对应EditTypeEnum.CREATE。
|
|
2805
|
-
* @property {
|
|
2805
|
+
* @property {string} label - 操作的标签,为'新增'。
|
|
2806
2806
|
* @property {string} method - 操作的HTTP方法,为'POST'。
|
|
2807
2807
|
*/
|
|
2808
2808
|
[
|
|
@@ -2810,7 +2810,7 @@ const editTypeMap = {
|
|
|
2810
2810
|
/* CREATE */
|
|
2811
2811
|
]: {
|
|
2812
2812
|
id: 1,
|
|
2813
|
-
|
|
2813
|
+
label: "新增",
|
|
2814
2814
|
method: "POST"
|
|
2815
2815
|
},
|
|
2816
2816
|
/**
|