@integry/sdk 4.6.8 → 4.6.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/package.json
CHANGED
|
@@ -287,7 +287,22 @@ const ObjectField = (props: ObjectFieldProps) => {
|
|
|
287
287
|
: `Enter value here...`);
|
|
288
288
|
|
|
289
289
|
const fieldElement = html`
|
|
290
|
-
<div
|
|
290
|
+
<div
|
|
291
|
+
id=${[
|
|
292
|
+
'integry-action-field-wrap',
|
|
293
|
+
field?.activity_field?.machine_name !==
|
|
294
|
+
fieldDetails?.meta?.machine_name
|
|
295
|
+
? field?.activity_field?.machine_name
|
|
296
|
+
: null,
|
|
297
|
+
fieldDetails?.meta?.machine_name,
|
|
298
|
+
isArray ? objectIndex : null,
|
|
299
|
+
]
|
|
300
|
+
.filter(Boolean)
|
|
301
|
+
.join('-')}
|
|
302
|
+
class="${styles.functionFieldWrap
|
|
303
|
+
? styles.functionFieldWrap
|
|
304
|
+
: ''} integry-action-field-wrap"
|
|
305
|
+
>
|
|
291
306
|
<${ConfigureFieldWrapper} field=${fieldDetails}>
|
|
292
307
|
${fieldType === 'TEXTFIELD' &&
|
|
293
308
|
html`
|