ados-rcm 1.1.792 → 1.1.793
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.
- package/dist/AModule/AComponents/ADatePicker/ADatePickerUtil.d.ts +1 -1
- package/dist/AModule/AComponents/AInput/AInput.d.ts +0 -6
- package/dist/AModule/AComponents/ASelect/AMultiSelect.d.ts +6 -0
- package/dist/AModule/AComponents/ASelect/ASelect.d.ts +6 -0
- package/dist/index.cjs.js +125 -125
- package/dist/index.es.js +7999 -8005
- package/package.json +1 -1
|
@@ -148,8 +148,8 @@ interface ICalendarHeaderProps {
|
|
|
148
148
|
export declare const CalendarHeader: ({ page, setPage, handleYearChange, handleMonthChange, minDate, maxDate, yearSize, resources, S, }: ICalendarHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
149
149
|
export interface IPortalRefs {
|
|
150
150
|
anchorRef: React.RefObject<HTMLElement | null>;
|
|
151
|
+
inputRef?: React.RefObject<HTMLElement | null>;
|
|
151
152
|
portalRef: React.RefObject<HTMLElement | null>;
|
|
152
|
-
restoreRef?: React.RefObject<HTMLElement | null>;
|
|
153
153
|
}
|
|
154
154
|
export declare function usePortalManager(refs: IPortalRefs, position: EDir12, isDisabled?: boolean | string, isLoading?: boolean, resetPage?: () => void, autoClose?: boolean): {
|
|
155
155
|
isOpen: boolean;
|
|
@@ -35,12 +35,6 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
|
|
|
35
35
|
* Description : dataList of AInput
|
|
36
36
|
*/
|
|
37
37
|
dataList?: string[] | readonly string[];
|
|
38
|
-
/**
|
|
39
|
-
* gap? : number
|
|
40
|
-
*
|
|
41
|
-
* Description : gap of AInput
|
|
42
|
-
*/
|
|
43
|
-
gap?: number;
|
|
44
38
|
/**
|
|
45
39
|
* inputProps? : React.InputHTMLAttributes<HTMLInputElement>
|
|
46
40
|
*
|
|
@@ -54,6 +54,12 @@ export interface IAMultiSelectProps<T> extends IABaseProps {
|
|
|
54
54
|
* Description : When true, automatically adjusts the width based on the longest option element
|
|
55
55
|
*/
|
|
56
56
|
isAutoWidth?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* isReadonly? : boolean
|
|
59
|
+
*
|
|
60
|
+
* Description : isReadonly of AMultiSelect
|
|
61
|
+
*/
|
|
62
|
+
isReadonly?: boolean;
|
|
57
63
|
/**
|
|
58
64
|
* maxShowRows? : number = 6
|
|
59
65
|
*
|
|
@@ -56,6 +56,12 @@ export interface IASelectProps<T> extends IABaseProps {
|
|
|
56
56
|
* Description : When true, automatically adjusts the width based on the longest option element
|
|
57
57
|
*/
|
|
58
58
|
isAutoWidth?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* isReadonly? : boolean
|
|
61
|
+
*
|
|
62
|
+
* Description : isReadonly of ASelect
|
|
63
|
+
*/
|
|
64
|
+
isReadonly?: boolean;
|
|
59
65
|
/**
|
|
60
66
|
* maxShowRows? : number = 6
|
|
61
67
|
*
|