@kengic/vue 0.6.1-beta.7 → 0.6.1-beta.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/dist/kengic-vue.js
CHANGED
@@ -697,6 +697,7 @@ class VarSubmitField {
|
|
697
697
|
d(this, "id");
|
698
698
|
d(this, "key_flg");
|
699
699
|
d(this, "placeholder");
|
700
|
+
d(this, "section");
|
700
701
|
d(this, "srtseq");
|
701
702
|
d(this, "upt_dft_val");
|
702
703
|
d(this, "upt_ena_flg");
|
@@ -730,6 +731,7 @@ class VarSubmitField {
|
|
730
731
|
case "id":
|
731
732
|
case "key_flg":
|
732
733
|
case "placeholder":
|
734
|
+
case "section":
|
733
735
|
case "srtseq":
|
734
736
|
case "upt_dft_val":
|
735
737
|
case "upt_ena_flg":
|
@@ -523,7 +523,7 @@ export declare class VarSubmitConfig {
|
|
523
523
|
upt_min_width?: number | null;
|
524
524
|
constructor(obj?: VarSubmitConfig);
|
525
525
|
}
|
526
|
-
/**
|
526
|
+
/** 表单字段. */
|
527
527
|
export declare class VarSubmitField {
|
528
528
|
/** 复制时的默认值. */
|
529
529
|
cpy_dft_val?: string | null;
|
@@ -571,6 +571,8 @@ export declare class VarSubmitField {
|
|
571
571
|
key_flg?: number | null;
|
572
572
|
/** 提示文字(Placeholder). */
|
573
573
|
placeholder?: string | null;
|
574
|
+
/** 所属分组. */
|
575
|
+
section?: string | null;
|
574
576
|
/** 显示顺序. */
|
575
577
|
srtseq?: number | null;
|
576
578
|
/** 更新时的默认值. */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.6.1-beta.
|
3
|
+
"version": "0.6.1-beta.8",
|
4
4
|
"scripts": {
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"vue-router": "4.1.6"
|
47
47
|
},
|
48
48
|
"devDependencies": {
|
49
|
-
"@kengic/pont": "1.2.10-beta.
|
49
|
+
"@kengic/pont": "1.2.10-beta.44",
|
50
50
|
"@types/lodash-es": "~4.17.7",
|
51
51
|
"@types/node": "~18.14.6",
|
52
52
|
"@types/semver": "~7.3.13",
|