ados-rcm 1.0.30 → 1.0.31

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.
@@ -68,5 +68,5 @@ export interface IAStepperProps<T> {
68
68
  * ContentRenderer={ContentRenderer}/>
69
69
  *
70
70
  */
71
- export declare const AStepper: <T>(props: IAStepperProps<T>) => import("react/jsx-runtime").JSX.Element | null;
71
+ export declare const AStepper: <T>(props: IAStepperProps<T>) => import("react/jsx-runtime").JSX.Element;
72
72
  export {};
@@ -72,4 +72,4 @@ export interface IATabProps<T> {
72
72
  * <ATab options={options}
73
73
  * type="Secondary"/>
74
74
  */
75
- export declare const ATab: <T>(props: IATabProps<T>) => import("react/jsx-runtime").JSX.Element | null;
75
+ export declare const ATab: <T>(props: IATabProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -1,8 +1,8 @@
1
+ import { TUseValues } from '../../AHooks/useValues';
1
2
  import { IItem } from '../../AUtils/objF';
3
+ import { Resources } from '../AResource/AResource';
2
4
  import { TATableFilteration } from './ATable';
3
5
  import { IATableFilterF } from './ATableHeader';
4
- import { TUseValues } from '../../AHooks/useValues';
5
- import { Resources } from '../AResource/AResource';
6
6
  interface IATableFilterProps<T extends IItem> {
7
7
  useFilteration: TUseValues<TATableFilteration<T>>;
8
8
  filterF: IATableFilterF;