@byteluck-fe/model-driven-controls 2.10.0-alpha.1 → 2.10.0-alpha.20
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/esm/columnControls/VarcharColumn/property.js +7 -0
- package/dist/esm/formControls/Checkbox/designer.js +4 -0
- package/dist/esm/formControls/Radio/designer.js +4 -0
- package/dist/esm/formControls/Select/designer.js +4 -0
- package/dist/esm/formControls/SelectMultiple/designer.js +4 -0
- package/dist/esm/formControls/Tree/designer.js +4 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/columnControls/VarcharColumn/property.d.ts +7 -0
- package/package.json +5 -5
|
@@ -133,6 +133,9 @@ var VarcharColumnControlPropertyRules = /*#__PURE__*/ function(ColumnOptionAndDa
|
|
|
133
133
|
/**
|
|
134
134
|
* 最大行数
|
|
135
135
|
* */ _define_property(_assert_this_initialized(_this), "lineEllipsis", void 0);
|
|
136
|
+
/**
|
|
137
|
+
* tag配置
|
|
138
|
+
* */ _define_property(_assert_this_initialized(_this), "dictionaryTagConfig", void 0);
|
|
136
139
|
var _props_caption;
|
|
137
140
|
_this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : DesignerVarcharColumnControl.controlName;
|
|
138
141
|
var _props_optionConfig;
|
|
@@ -147,6 +150,10 @@ var VarcharColumnControlPropertyRules = /*#__PURE__*/ function(ColumnOptionAndDa
|
|
|
147
150
|
_this.linkOperationOption = new LinkOperationOption(props === null || props === void 0 ? void 0 : props.linkOperationOption);
|
|
148
151
|
var _props_lineEllipsis;
|
|
149
152
|
_this.lineEllipsis = (_props_lineEllipsis = props === null || props === void 0 ? void 0 : props.lineEllipsis) !== null && _props_lineEllipsis !== void 0 ? _props_lineEllipsis : 1;
|
|
153
|
+
var _props_dictionaryTagConfig;
|
|
154
|
+
_this.dictionaryTagConfig = (_props_dictionaryTagConfig = props === null || props === void 0 ? void 0 : props.dictionaryTagConfig) !== null && _props_dictionaryTagConfig !== void 0 ? _props_dictionaryTagConfig : {
|
|
155
|
+
isTag: false
|
|
156
|
+
};
|
|
150
157
|
return _this;
|
|
151
158
|
}
|
|
152
159
|
return VarcharColumnControlProperty;
|