ados-rcm 1.0.164 → 1.0.166
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.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { IABaseProps } from '../ABase/ABase';
|
|
2
|
-
import { IAWrapProps } from '../AWrap/AWrap';
|
|
3
2
|
export type TAButtonType = 'Primary' | 'Secondary' | 'Raw';
|
|
4
|
-
export interface IAButtonProps extends IABaseProps
|
|
3
|
+
export interface IAButtonProps extends IABaseProps {
|
|
5
4
|
/**
|
|
6
5
|
* type? : TAButtonType = 'Primary'
|
|
7
6
|
*
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TUseValues } from '../../AHooks/useValues';
|
|
3
3
|
import { IABaseProps } from '../ABase/ABase';
|
|
4
|
-
import { IAWrapProps } from '../AWrap/AWrap';
|
|
5
4
|
interface IOptionRendererProps<T> {
|
|
6
5
|
/**
|
|
7
6
|
* option : T
|
|
@@ -30,7 +29,7 @@ interface ISelectedRendererProps<T> {
|
|
|
30
29
|
*/
|
|
31
30
|
placeholder?: React.ReactNode;
|
|
32
31
|
}
|
|
33
|
-
export interface IAMultiSelectProps<T> extends IABaseProps
|
|
32
|
+
export interface IAMultiSelectProps<T> extends IABaseProps {
|
|
34
33
|
/**
|
|
35
34
|
* options : T[]
|
|
36
35
|
*
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TUseValues } from '../../AHooks/useValues';
|
|
3
3
|
import { IABaseProps } from '../ABase/ABase';
|
|
4
|
-
import { IAWrapProps } from '../AWrap/AWrap';
|
|
5
4
|
interface IOptionRendererProps<T> {
|
|
6
5
|
/**
|
|
7
6
|
* option : T
|
|
@@ -30,7 +29,7 @@ interface ISelectedRendererProps<T> {
|
|
|
30
29
|
*/
|
|
31
30
|
placeholder?: React.ReactNode;
|
|
32
31
|
}
|
|
33
|
-
export interface IASelectProps<T> extends IABaseProps
|
|
32
|
+
export interface IASelectProps<T> extends IABaseProps {
|
|
34
33
|
/**
|
|
35
34
|
* options : T[]
|
|
36
35
|
*
|