@delightui/components 0.1.10 → 0.1.11

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.
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import type { ThemeContextType, ThemeProviderProps } from './ThemeProvider.types';
3
3
  import '../../resources/scss/fonts.scss';
4
4
  import '../../resources/themes/base.css';
5
+ import '../../resources/themes/light.css';
6
+ import '../../resources/themes/dark.css';
5
7
  export declare const ThemeContext: React.Context<ThemeContextType>;
6
8
  export declare const ThemeProvider: React.FC<ThemeProviderProps>;
package/dist/index.d.ts CHANGED
@@ -730,6 +730,11 @@ type DatePickerProps = {
730
730
  * this function will be used to parse initial date string and date string from input field.
731
731
  */
732
732
  parseDate?: (date: string) => Date;
733
+ /**
734
+ * Allow user to type date/time in input.
735
+ * @default false
736
+ */
737
+ allowInput?: boolean;
733
738
  };
734
739
 
735
740
  declare const DatePicker: (props: DatePickerProps) => React$1.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delightui/components",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "vite",