@@ -77,10 +77,12 @@ export interface CodeSnippetProps {
77
77
}
78
78
79
79
// @public
80
- export function ConfigUIForm({ prepareSubmitValues }: ConfigUIFormProps ): JSX_2 .Element ;
80
+ export function ConfigUIForm({ prepareSubmitValues , container }: ConfigUIFormProps ): JSX_2 .Element ;
81
81
82
82
// @public (undocumented)
83
83
export interface ConfigUIFormProps {
84
+ // (undocumented)
85
+ container? : HTMLElement | ShadowRoot ;
84
86
// (undocumented)
85
87
prepareSubmitValues: (config : PluginConfig , values : Record <string , any >, tablesList ? : PluginTable []) => PluginUiMessagePayload [' validation_passed' ][' values' ];
86
88
}
@@ -157,10 +159,12 @@ export interface ControlExclusiveToggleFieldProps {
157
159
export { Controller }
158
160
159
161
// @public
160
- export function ControlMultiSelectField({ name , helperText , label , }: ControlMultiSelectFieldProps ): JSX_2 .Element ;
162
+ export function ControlMultiSelectField({ name , helperText , label , codeSeparators , }: ControlMultiSelectFieldProps ): JSX_2 .Element ;
161
163
162
164
// @public (undocumented)
163
165
export interface ControlMultiSelectFieldProps {
166
+ // (undocumented)
167
+ codeSeparators? : string [];
164
168
// (undocumented)
165
169
helperText? : ReactNode ;
166
170
// (undocumented)
@@ -243,10 +247,10 @@ export interface ControlServicesSelectorFieldProps {
243
247
topServices? : string [];
244
248
}
245
249
246
- // Warning: (ae-forgotten-export) The symbol "_PluginTableSelector " needs to be exported by the entry point index.d.ts
250
+ // Warning: (ae-forgotten-export) The symbol "InternalPluginTableSelector " needs to be exported by the entry point index.d.ts
247
251
//
248
252
// @public
249
- export const ControlTableSelectorField: React_2 .MemoExoticComponent <typeof _PluginTableSelector >;
253
+ export const ControlTableSelectorField: React_2 .MemoExoticComponent <typeof InternalPluginTableSelector >;
250
254
251
255
// @public
252
256
export function ControlTextField({ name , label , helperText , textFieldProps , }: ControlTextFieldProps ): JSX_2 .Element ;
@@ -442,6 +446,15 @@ export function generatePluginTableList(tables?: PluginTable[]): PluginTableList
442
446
// @public
443
447
export const generateTablesFromJson: (tablesJson : CloudQueryTable []) => PluginTable [];
444
448
449
+ // @public
450
+ export function getAppRootElements({ rootSelector , shadowRootWindowKey , }?: {
451
+ rootSelector? : string ;
452
+ shadowRootWindowKey? : string ;
453
+ }): {
454
+ rootElement: HTMLElement ;
455
+ shadowRootContainer: HTMLElement | undefined ;
456
+ };
457
+
445
458
// @public
446
459
export function getAuthenticateConnector({ connectorId , teamName , callApi , authPluginType , }: {
447
460
connectorId: string ;
@@ -526,7 +539,7 @@ export interface GuideConfig {
526
539
// (undocumented)
527
540
sections: GuideSection [];
528
541
// (undocumented)
529
- title: string ;
542
+ title: string | (( values : any ) => string ) ;
530
543
}
531
544
532
545
// @public (undocumented)
@@ -587,6 +600,8 @@ export const MultiAutocomplete: React_2.ForwardRefExoticComponent<MultiAutocompl
587
600
588
601
// @public (undocumented)
589
602
export interface MultiAutocompleteProps {
603
+ // (undocumented)
604
+ codeSeparators? : string [];
590
605
// (undocumented)
591
606
disabled? : boolean | undefined ;
592
607
// (undocumented)
0 commit comments