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/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
- label?: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awing-library",
3
- "version": "2.1.2-dev.6",
3
+ "version": "2.1.2-dev.8",
4
4
  "main": "dist/esm/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/index.d.ts",