awing-library 2.1.2-dev.6 → 2.1.2-dev.8
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/esm/AWING/DatePicker/types.d.ts +4 -2
- package/dist/esm/index.js +4285 -4678
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import { IMonacoEditorProps as IMonacoEditorProps$1 } from 'AWING/MonacoEditor';
|
|
|
22
22
|
import { IMultipleHierarchicalChoiceInput as IMultipleHierarchicalChoiceInput$1, IMultipleHierarchicalChoiceProps as IMultipleHierarchicalChoiceProps$1 } from 'AWING/MultipleHierarchicalChoice';
|
|
23
23
|
import { DataGridSortType as DataGridSortType$1 } from 'Commons/Enums';
|
|
24
24
|
import { DatePickerProps as DatePickerProps$1 } from '@mui/x-date-pickers/DatePicker';
|
|
25
|
+
import { Dayjs } from 'dayjs';
|
|
25
26
|
import { ObjectInputType, PagingQueryInput, EnumTypeConvert, DateTime, ObjectTypeCode, PagingType } from 'Features/types';
|
|
26
27
|
export { ObjectTypeCode, PagingQueryInput } from 'Features/types';
|
|
27
28
|
import { SchemaServices as SchemaServices$1 } from 'Features/SYSTEM/Schema';
|
|
@@ -848,8 +849,9 @@ interface DateRangePickerOldProps {
|
|
|
848
849
|
|
|
849
850
|
declare function Container$3(props: DateRangePickerOldProps): react_jsx_runtime.JSX.Element;
|
|
850
851
|
|
|
851
|
-
interface DatePickerProps extends DatePickerProps$1 {
|
|
852
|
-
|
|
852
|
+
interface DatePickerProps extends Omit<DatePickerProps$1, 'value' | 'onChange'> {
|
|
853
|
+
value?: Dayjs | null;
|
|
854
|
+
onChange?: (value: Dayjs | null) => void;
|
|
853
855
|
}
|
|
854
856
|
|
|
855
857
|
declare const Container$2: (props: DatePickerProps) => react_jsx_runtime.JSX.Element;
|