@evoke-platform/ui-components 1.0.0-dev.103 → 1.0.0-dev.104
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.
@@ -132,7 +132,7 @@ const dynamicContentInputEditor = (props) => {
|
|
132
132
|
const DynamicContentInput = (_a = props.context) === null || _a === void 0 ? void 0 : _a.dynamicContentInput.component;
|
133
133
|
let valueEditor;
|
134
134
|
if (DynamicContentInput) {
|
135
|
-
valueEditor = (React.createElement(DynamicContentInput, { values: ['null', 'notNull'].includes(operator) ? '' : value, setValues: handleOnChange, disabled: ['null', 'notNull'].includes(operator),
|
135
|
+
valueEditor = (React.createElement(DynamicContentInput, { values: ['null', 'notNull'].includes(operator) ? '' : value, setValues: handleOnChange, disabled: ['null', 'notNull'].includes(operator), size: 'small', previousSteps: (_c = (_b = props.context) === null || _b === void 0 ? void 0 : _b.previousSteps) !== null && _c !== void 0 ? _c : [] }));
|
136
136
|
}
|
137
137
|
return determineValueEditor(valueEditor, props);
|
138
138
|
};
|
@@ -169,11 +169,13 @@ const determineValueEditor = (baseValueEditor, props) => {
|
|
169
169
|
}, renderInput: (params) => React.createElement(TextField, Object.assign({ label: params.label }, params, { size: "small" })), style: { width: '33%' } }));
|
170
170
|
}
|
171
171
|
else if (type === 'select' && values) {
|
172
|
-
valueEditor = (React.createElement(Autocomplete, { options: values, multiple: ['in', 'notIn'].includes(operator), value: disabled ? '' : value, onChange: (event, newValue) => {
|
172
|
+
valueEditor = (React.createElement(Autocomplete, { freeSolo: true, options: values, multiple: ['in', 'notIn'].includes(operator), value: disabled ? '' : value, onChange: (event, newValue) => {
|
173
173
|
handleOnChange(newValue === null || newValue === void 0 ? void 0 : newValue.label);
|
174
174
|
}, disabled: disabled, isOptionEqualToValue: (option, value) => {
|
175
175
|
return option === value;
|
176
|
-
}, renderInput: (params) => React.createElement(TextField, Object.assign({}, params, { size: "small"
|
176
|
+
}, renderInput: (params) => (React.createElement(TextField, Object.assign({}, params, { size: "small", placeholder: 'Value', readOnly: value === '{{user.id}}', onChange: (event) => {
|
177
|
+
handleOnChange(event.target.value);
|
178
|
+
} }))), style: { width: '33%' }, disableClearable: true }));
|
177
179
|
}
|
178
180
|
break;
|
179
181
|
}
|