@apexcura/ui-components 0.0.14-Beta272 → 0.0.14-Beta273
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/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -173,7 +173,6 @@ var TextareaElement = (props) => {
|
|
|
173
173
|
{
|
|
174
174
|
placeholder: props.placeholder,
|
|
175
175
|
allowClear: true,
|
|
176
|
-
defaultValue: props.defaultValue,
|
|
177
176
|
disabled: props.disabled,
|
|
178
177
|
id: props.name,
|
|
179
178
|
autoSize: { minRows: props.minRows ? props.minRows : defaultMinRows, maxRows: props.maxRows ? props.maxRows : defaultMaxRows },
|
|
@@ -216,7 +215,8 @@ var SelectElement = (props) => {
|
|
|
216
215
|
filterOption: filterOptions,
|
|
217
216
|
showSearch: true,
|
|
218
217
|
className: props.className,
|
|
219
|
-
onChange: handleChange
|
|
218
|
+
onChange: handleChange,
|
|
219
|
+
mode: props.mode
|
|
220
220
|
}
|
|
221
221
|
));
|
|
222
222
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -106,7 +106,6 @@ var TextareaElement = (props) => {
|
|
|
106
106
|
{
|
|
107
107
|
placeholder: props.placeholder,
|
|
108
108
|
allowClear: true,
|
|
109
|
-
defaultValue: props.defaultValue,
|
|
110
109
|
disabled: props.disabled,
|
|
111
110
|
id: props.name,
|
|
112
111
|
autoSize: { minRows: props.minRows ? props.minRows : defaultMinRows, maxRows: props.maxRows ? props.maxRows : defaultMaxRows },
|
|
@@ -149,7 +148,8 @@ var SelectElement = (props) => {
|
|
|
149
148
|
filterOption: filterOptions,
|
|
150
149
|
showSearch: true,
|
|
151
150
|
className: props.className,
|
|
152
|
-
onChange: handleChange
|
|
151
|
+
onChange: handleChange,
|
|
152
|
+
mode: props.mode
|
|
153
153
|
}
|
|
154
154
|
));
|
|
155
155
|
};
|