react-magma-dom 4.12.0-next.3 → 4.12.0-next.4

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.
@@ -89,5 +89,9 @@ export interface FormFieldContainerBaseProps {
89
89
  * @internal
90
90
  */
91
91
  testId?: string;
92
+ /**
93
+ * @internal
94
+ */
95
+ additionalContent?: React.ReactNode;
92
96
  }
93
97
  export declare const FormFieldContainer: React.ForwardRefExoticComponent<FormFieldContainerProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ export declare function ClearAnnouncer({ clearAnnouncement }: {
3
+ clearAnnouncement: any;
4
+ }): React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare function SelectAnnouncer({ isOpen, labelText }: {
2
+ export declare function ItemListAnnouncer({ isOpen, labelText }: {
3
3
  isOpen: any;
4
4
  labelText: any;
5
5
  }): React.JSX.Element;
@@ -17,6 +17,7 @@ interface ItemsListProps<T> {
17
17
  menuStyle?: React.CSSProperties;
18
18
  setFloating?: (node: ReferenceType) => void;
19
19
  setHighlightedIndex?: (index: number) => void;
20
+ selectedItem?: string;
20
21
  }
21
22
  export declare function ItemsList<T>(props: ItemsListProps<T>): React.JSX.Element;
22
23
  export {};