@integry/sdk 4.7.17 → 4.7.18
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
|
@@ -40,6 +40,8 @@ export type DynamicFieldsProps = {
|
|
|
40
40
|
dependsOn?: string[];
|
|
41
41
|
isArray?: boolean;
|
|
42
42
|
allowWorkspaceConnectedAccounts?: boolean;
|
|
43
|
+
tagsTree?: any;
|
|
44
|
+
showMenuOnLeft?: boolean;
|
|
43
45
|
} & StoreType;
|
|
44
46
|
|
|
45
47
|
interface DynamicDataItem {
|
|
@@ -72,6 +74,8 @@ const DynamicTypedFields = (props: DynamicFieldsProps) => {
|
|
|
72
74
|
dependsOn = [],
|
|
73
75
|
isArray = false,
|
|
74
76
|
allowWorkspaceConnectedAccounts = false,
|
|
77
|
+
tagsTree = null,
|
|
78
|
+
showMenuOnLeft = false,
|
|
75
79
|
} = props;
|
|
76
80
|
|
|
77
81
|
const [dynamicItems, setDynamicItems] = useState<DynamicDataItem[]>([]);
|
|
@@ -374,6 +378,8 @@ const DynamicTypedFields = (props: DynamicFieldsProps) => {
|
|
|
374
378
|
).length > 0}
|
|
375
379
|
allowTagsInText=${true}
|
|
376
380
|
isDisabled=${isDisabled}
|
|
381
|
+
tagsTree=${tagsTree}
|
|
382
|
+
showMenuOnLeft=${showMenuOnLeft}
|
|
377
383
|
><//>
|
|
378
384
|
</div>
|
|
379
385
|
`,
|
|
@@ -421,6 +427,8 @@ const DynamicTypedFields = (props: DynamicFieldsProps) => {
|
|
|
421
427
|
.length > 0}
|
|
422
428
|
allowTagsInText=${true}
|
|
423
429
|
isDisabled=${isDisabled}
|
|
430
|
+
tagsTree=${tagsTree}
|
|
431
|
+
showMenuOnLeft=${showMenuOnLeft}
|
|
424
432
|
><//>
|
|
425
433
|
</div>
|
|
426
434
|
`,
|