Skip to content

Commit 3673625

Browse files
Fix services list (#93)
1 parent aa9ecc7 commit 3673625

9 files changed

+614
-642
lines changed

etc/plugin-config-ui-lib.api.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export interface ControlExclusiveToggleFieldProps {
161161
export { Controller }
162162

163163
// @public
164-
export function ControlMultiSelectField({ name, helperText, label, codeSeparators, }: ControlMultiSelectFieldProps): JSX_2.Element;
164+
export function ControlMultiSelectField({ name, helperText, label, codeSeparators, options, }: ControlMultiSelectFieldProps): JSX_2.Element;
165165

166166
// @public (undocumented)
167167
export interface ControlMultiSelectFieldProps {
@@ -173,6 +173,8 @@ export interface ControlMultiSelectFieldProps {
173173
label: string;
174174
// (undocumented)
175175
name: string;
176+
// (undocumented)
177+
options?: MultiAutocompleteProps['options'];
176178
}
177179

178180
// @public
@@ -603,6 +605,10 @@ export interface MultiAutocompleteProps {
603605
onBlur: () => void;
604606
// (undocumented)
605607
onChange: (value: any) => void;
608+
// Warning: (ae-forgotten-export) The symbol "OptionObject_2" needs to be exported by the entry point index.d.ts
609+
//
610+
// (undocumented)
611+
options?: (string | OptionObject_2)[];
606612
// (undocumented)
607613
value: any;
608614
}

0 commit comments

Comments
 (0)