@clasing/ui 0.1.82 → 0.1.83

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
@@ -2,6 +2,7 @@ import { ClassProp } from 'class-variance-authority/types';
2
2
  import { default as default_2 } from 'react';
3
3
  import { Dispatch } from 'react';
4
4
  import { ForwardRefExoticComponent } from 'react';
5
+ import { HTMLAttributes } from 'react';
5
6
  import { JSX as JSX_2 } from 'react/jsx-runtime';
6
7
  import { Matcher } from 'react-day-picker';
7
8
  import { Placement } from '@floating-ui/react';
@@ -137,6 +138,8 @@ declare interface DayTimePickerProps {
137
138
  disabledDays?: WeekDay[];
138
139
  }
139
140
 
141
+ export declare const Divider: ForwardRefExoticComponent<IDividerProps & RefAttributes<HTMLSpanElement>>;
142
+
140
143
  declare type DropdownOption<T extends string | number | readonly string[] | undefined> = {
141
144
  label: string;
142
145
  value: T;
@@ -288,6 +291,10 @@ declare interface IDateRangePickerProps extends React.InputHTMLAttributes<HTMLIn
288
291
  disabled?: boolean;
289
292
  }
290
293
 
294
+ declare interface IDividerProps extends HTMLAttributes<HTMLSpanElement> {
295
+ orientation?: 'horizontal' | 'vertical';
296
+ }
297
+
291
298
  declare interface IIconComponentProps {
292
299
  iconName?: TablerIconName;
293
300
  iconText?: string;