@clasing/ui 0.1.81 → 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 +8 -0
- package/dist/index.es.js +906 -888
- package/dist/index.umd.js +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
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;
|
|
@@ -285,6 +288,11 @@ declare interface IDateRangePickerProps extends React.InputHTMLAttributes<HTMLIn
|
|
|
285
288
|
placeholder?: string;
|
|
286
289
|
minDate?: Date;
|
|
287
290
|
maxDate?: Date;
|
|
291
|
+
disabled?: boolean;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
declare interface IDividerProps extends HTMLAttributes<HTMLSpanElement> {
|
|
295
|
+
orientation?: 'horizontal' | 'vertical';
|
|
288
296
|
}
|
|
289
297
|
|
|
290
298
|
declare interface IIconComponentProps {
|