sccoreui 4.9.0 → 4.9.1

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,2 +1,3 @@
1
- export declare const DatePicker: (props: any) => import("react/jsx-runtime").JSX.Element;
1
+ import { DatePickerTypes } from "../types/type";
2
+ export declare const DatePicker: (props: DatePickerTypes) => import("react/jsx-runtime").JSX.Element;
2
3
  export default DatePicker;
@@ -198,3 +198,22 @@ export interface ListBoxDropdownTypes {
198
198
  isLoading?: boolean;
199
199
  className?: string;
200
200
  }
201
+ export interface DatePickerTypes {
202
+ value: any;
203
+ maxDate?: any;
204
+ showIcon?: any;
205
+ clear?: string;
206
+ iconPos?: string;
207
+ icon?: any;
208
+ numberOfMonths?: number;
209
+ dateFormat?: string;
210
+ selectionMode?: string;
211
+ placeholder: string;
212
+ onClear?: any;
213
+ onChange?: any;
214
+ className?: string;
215
+ clearButtonClassName?: string;
216
+ touchUI?: any;
217
+ todayButtonClassName?: any;
218
+ showButtonBar?: any;
219
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "4.9.0",
3
+ "version": "4.9.1",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",