react-magma-dom 4.6.0-next.8 → 4.6.0-next.9

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.
@@ -5,6 +5,7 @@ declare const info: {
5
5
  };
6
6
  export default info;
7
7
  export declare const Default: () => JSX.Element;
8
+ export declare const BackgroundCickDisabled: () => JSX.Element;
8
9
  export declare const LongContentWithScrolling: () => JSX.Element;
9
10
  export declare const RadioInModal: () => JSX.Element;
10
11
  export declare const ModalContentUpdate: () => JSX.Element;
@@ -88,6 +88,15 @@ export declare const FlatTree: {
88
88
  export declare const ParentsAndChildrenNotAutoChecked: {
89
89
  (args: any): JSX.Element;
90
90
  args: {
91
+ checkParents: boolean;
92
+ checkChildren: boolean;
93
+ ariaLabel: string;
91
94
  selectable: TreeViewSelectable;
95
+ testId: string;
96
+ };
97
+ parameters: {
98
+ controls: {
99
+ exclude: string[];
100
+ };
92
101
  };
93
102
  };