@delightui/components 0.1.93 → 0.1.95

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
@@ -1273,7 +1273,8 @@ type ContextMenuProps<T extends ListItemType> = ListProps<T>;
1273
1273
  declare const ContextMenu: <T extends ListItemType>(props: ContextMenuProps<T>) => react_jsx_runtime.JSX.Element;
1274
1274
 
1275
1275
  type DatePickerPosition = 'auto' | 'above' | 'below' | 'auto left' | 'auto center' | 'auto right' | 'above left' | 'above center' | 'above right' | 'below left' | 'below center' | 'below right';
1276
- type DatePickerProps = ControlledFormComponentProps<string | Date | (string | Date)[]> & {
1276
+ type DatePickerValue = string | Date | (string | Date)[];
1277
+ type DatePickerProps = ControlledFormComponentProps<DatePickerValue> & {
1277
1278
  /**
1278
1279
  * Additional class for styling.
1279
1280
  */
@@ -1801,7 +1802,7 @@ type SelectStateEnum = 'Default' | 'Error';
1801
1802
  /**
1802
1803
  * Props for the SelectView component, defining its visual appearance and behavior.
1803
1804
  */
1804
- type SelectViewProps = Omit<HTMLAttributes<HTMLElement>, 'style' | 'children'> & {
1805
+ type SelectViewProps = Omit<HTMLAttributes<HTMLElement>, 'style' | 'children' | 'onClick'> & {
1805
1806
  /**
1806
1807
  * Options to be rendered within the Select component.
1807
1808
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delightui/components",
3
- "version": "0.1.93",
3
+ "version": "0.1.95",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "vite",