@integry/sdk 4.6.49 → 4.6.51
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/index.csm.js +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/MultipurposeField/Dropdown/index.tsx +2 -0
- package/src/components/MultipurposeField/TagMenu/index.ts +0 -5
- package/src/components/MultipurposeField/TagMenu/styles.module.scss +2 -2
- package/src/components/form/FunctionField/index.ts +1 -1
package/package.json
CHANGED
|
@@ -775,6 +775,8 @@ const ListBox = (props: ListBoxProps) => {
|
|
|
775
775
|
const params = new URLSearchParams();
|
|
776
776
|
params.append(props.serverSideSearchParamName || '', searchTerm);
|
|
777
777
|
params.append('include', 'meta');
|
|
778
|
+
params.append('include_private', 'true');
|
|
779
|
+
params.append('page_size', '20');
|
|
778
780
|
|
|
779
781
|
const response = await props.apiHandler.callDynamicDataEndpoint<
|
|
780
782
|
{
|
|
@@ -292,11 +292,6 @@ const FieldDropdown = (props: FieldMenuProps) => {
|
|
|
292
292
|
onOptionClick(option);
|
|
293
293
|
}}
|
|
294
294
|
ref=${menuItemRefs.current[i]}
|
|
295
|
-
data-hint=${`${
|
|
296
|
-
isContentOverflowing(menuItemRefs.current[i])
|
|
297
|
-
? option.value
|
|
298
|
-
: ''
|
|
299
|
-
}`}
|
|
300
295
|
>
|
|
301
296
|
${option.icon &&
|
|
302
297
|
html`<img
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
cursor: pointer;
|
|
76
76
|
&:hover {
|
|
77
77
|
background: rgba(66, 80, 240, 0.1);
|
|
78
|
-
border-radius: 5px;
|
|
78
|
+
border-radius: 5px !important;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
.valueWithIcon {
|
|
82
82
|
display: flex;
|
|
83
83
|
align-items: center;
|
|
84
84
|
gap: 8px; /* Adjust spacing between image and text */
|
|
85
|
-
height: 40px;
|
|
85
|
+
height: 40px !important;
|
|
86
86
|
}
|
|
87
87
|
.icon {
|
|
88
88
|
width: 20px;
|
|
@@ -630,7 +630,7 @@ const FunctionField = (props: FunctionFieldProps) => {
|
|
|
630
630
|
onChange=${handleFunctionSelect}
|
|
631
631
|
isDynamic=${true}
|
|
632
632
|
endpointUrl=${FUNCTIONS_LIST_URL}
|
|
633
|
-
endpointData=${`{"include": "meta"}`}
|
|
633
|
+
endpointData=${`{"include": "meta", "include_private": true, "page_size": 20}`}
|
|
634
634
|
apiHandler=${props.apiHandler}
|
|
635
635
|
optionKeyPath=${`name`}
|
|
636
636
|
valueKeyPath=${`meta.ui.title`}
|