@cniot/mdd-editor 0.2.0-beta.55 → 0.2.0-beta.56
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 +4 -0
- package/build/index.cjs.js +3 -3
- package/build/index.es.js +21 -3
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -2009,7 +2009,7 @@ var buildSwaggerApiJson = (api2, apiMeta) => {
|
|
|
2009
2009
|
const propFields = {
|
|
2010
2010
|
cncard: ["icon", "transparent"],
|
|
2011
2011
|
"cncard-sub": ["icon", "transparent"],
|
|
2012
|
-
batchInput: ["defaultValue", "placeholder", "name", "hasClear", "inputProps", "trim"],
|
|
2012
|
+
batchInput: ["defaultValue", "placeholder", "name", "hasClear", "inputProps", "trim", "valueType"],
|
|
2013
2013
|
input: ["defaultValue", "placeholder", "maxLength", "name", "hasClear", "trim"],
|
|
2014
2014
|
"input-textarea": ["defaultValue", "placeholder", "maxLength", "name", "hasClear", "rows"],
|
|
2015
2015
|
"input-password": ["defaultValue", "placeholder", "maxLength", "name", "hasClear"],
|
|
@@ -2069,7 +2069,7 @@ const propFields = {
|
|
|
2069
2069
|
"iso"
|
|
2070
2070
|
],
|
|
2071
2071
|
"global-phone-picker": ["name", "defaultValue", "placeholder", "hasClear", "defaultCountryCode", "hasFlag"],
|
|
2072
|
-
|
|
2072
|
+
message: ["name"],
|
|
2073
2073
|
upload: [
|
|
2074
2074
|
"name",
|
|
2075
2075
|
"defaultValue",
|
|
@@ -23069,6 +23069,24 @@ var BatchInputSchema = {
|
|
|
23069
23069
|
type: "object",
|
|
23070
23070
|
properties: {
|
|
23071
23071
|
...more,
|
|
23072
|
+
valueType: {
|
|
23073
|
+
type: "string",
|
|
23074
|
+
title: "\u8FD4\u56DE\u503C\u7C7B\u578B",
|
|
23075
|
+
"x-decorator": "CnFormItem",
|
|
23076
|
+
"x-component": "CnRadioGroup",
|
|
23077
|
+
"x-validator": [],
|
|
23078
|
+
"x-component-props": {},
|
|
23079
|
+
"x-decorator-props": {
|
|
23080
|
+
tip: 'string: \u8FD4\u56DE "a,b,c" \u683C\u5F0F; list: \u8FD4\u56DE ["a","b","c"] \u683C\u5F0F'
|
|
23081
|
+
},
|
|
23082
|
+
default: "string",
|
|
23083
|
+
enum: [
|
|
23084
|
+
{ label: "string", value: "string" },
|
|
23085
|
+
{ label: "list", value: "list" }
|
|
23086
|
+
],
|
|
23087
|
+
name: "valueType",
|
|
23088
|
+
"x-designable-id": "valueType001"
|
|
23089
|
+
},
|
|
23072
23090
|
defaultValue: {
|
|
23073
23091
|
type: "string",
|
|
23074
23092
|
title: "\u9ED8\u8BA4\u503C",
|
|
@@ -30500,7 +30518,7 @@ function getDefaultIndexStyle() {
|
|
|
30500
30518
|
`;
|
|
30501
30519
|
}
|
|
30502
30520
|
const name = "@cniot/mdd-editor";
|
|
30503
|
-
const version = "0.2.0-beta.
|
|
30521
|
+
const version = "0.2.0-beta.56";
|
|
30504
30522
|
const description = "\u6A21\u578B\u9A71\u52A8\u7F16\u8F91\u5668";
|
|
30505
30523
|
const scripts = {
|
|
30506
30524
|
build: "vite build"
|