cnhis-design-vue 3.1.36-beta.8 → 3.1.36-beta.9
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/es/components/form-config/index.d.ts +1 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +1 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +1 -0
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -0
- package/es/components/form-render/src/types/fieldItem.d.ts +4 -0
- package/es/components/shortcut-setter/index.d.ts +1 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1047,6 +1047,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1047
1047
|
valueOf: () => boolean;
|
|
1048
1048
|
} | undefined;
|
|
1049
1049
|
display?: "flex" | "grid" | undefined;
|
|
1050
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
|
1050
1051
|
wrapperStyle?: Record<string, string> | {
|
|
1051
1052
|
[x: `--${string}`]: string | number | undefined;
|
|
1052
1053
|
accentColor?: string | undefined;
|
|
@@ -1048,6 +1048,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1048
1048
|
valueOf: () => boolean;
|
|
1049
1049
|
} | undefined;
|
|
1050
1050
|
display?: "flex" | "grid" | undefined;
|
|
1051
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
|
1051
1052
|
wrapperStyle?: Record<string, string> | {
|
|
1052
1053
|
[x: `--${string}`]: string | number | undefined;
|
|
1053
1054
|
accentColor?: string | undefined;
|
|
@@ -131,6 +131,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
131
|
valueOf: () => boolean;
|
|
132
132
|
} | undefined;
|
|
133
133
|
display?: "flex" | "grid" | undefined;
|
|
134
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
|
134
135
|
wrapperStyle?: Record<string, string> | {
|
|
135
136
|
[x: `--${string}`]: string | number | undefined;
|
|
136
137
|
accentColor?: string | undefined;
|
|
@@ -37,6 +37,7 @@ function useFieldListAdaptor(collector) {
|
|
|
37
37
|
(_b = (_a2 = item.componentProps) == null ? void 0 : _a2.onBlur) == null ? void 0 : _b.call(_a2, ...args);
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
+
"x-content": item.slots,
|
|
40
41
|
"x-display": item.is_show === "0" ? "hidden" : "visible",
|
|
41
42
|
"x-pattern": item.is_edit === "0" ? "disabled" : "editable"
|
|
42
43
|
};
|
|
@@ -150,6 +150,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
150
150
|
valueOf: () => boolean;
|
|
151
151
|
} | undefined;
|
|
152
152
|
display?: "flex" | "grid" | undefined;
|
|
153
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
|
153
154
|
wrapperStyle?: Record<string, string> | {
|
|
154
155
|
[x: `--${string}`]: string | number | undefined;
|
|
155
156
|
accentColor?: string | undefined;
|
|
@@ -152,6 +152,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
152
152
|
valueOf: () => boolean;
|
|
153
153
|
} | undefined;
|
|
154
154
|
display?: "flex" | "grid" | undefined;
|
|
155
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
|
155
156
|
wrapperStyle?: Record<string, string> | {
|
|
156
157
|
[x: `--${string}`]: string | number | undefined;
|
|
157
158
|
accentColor?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.36-beta.
|
|
3
|
+
"version": "3.1.36-beta.9",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"iOS 7",
|
|
62
62
|
"last 3 iOS versions"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "dd5ee131ad939cbb8ff2bc74bcc33e3dcb1cb09b"
|
|
65
65
|
}
|