eglador-ui-react 1.0.0-alpha.6 → 1.0.0-alpha.7
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.mts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -246,6 +246,9 @@ type SharedCalendarProps = {
|
|
|
246
246
|
};
|
|
247
247
|
type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
|
|
248
248
|
declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
249
|
+
declare namespace Calendar {
|
|
250
|
+
var displayName: string;
|
|
251
|
+
}
|
|
249
252
|
|
|
250
253
|
type ButtonGroupOrientation = "horizontal" | "vertical";
|
|
251
254
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -263,7 +266,7 @@ interface ButtonGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
263
266
|
declare const ButtonGroupText: React.ForwardRefExoticComponent<ButtonGroupTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
264
267
|
|
|
265
268
|
type CardVariant = "solid" | "soft" | "outline" | "ghost";
|
|
266
|
-
type CardShape = "
|
|
269
|
+
type CardShape = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
267
270
|
type CardShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
268
271
|
interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
269
272
|
variant?: CardVariant;
|
|
@@ -534,6 +537,9 @@ type SharedDatePickerProps = {
|
|
|
534
537
|
};
|
|
535
538
|
type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
|
|
536
539
|
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare namespace DatePicker {
|
|
541
|
+
var displayName: string;
|
|
542
|
+
}
|
|
537
543
|
|
|
538
544
|
interface DateTimePickerProps {
|
|
539
545
|
value?: Date | undefined;
|
|
@@ -563,6 +569,9 @@ interface DateTimePickerProps {
|
|
|
563
569
|
dir?: "ltr" | "rtl";
|
|
564
570
|
}
|
|
565
571
|
declare function DateTimePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, clearable, format, className, step, showSeconds, hour12, minDate, maxDate, disabledDates, size, captionLayout, numberOfMonths, firstDayOfWeek, locale, weekdayFormat, yearRange, showWeekNumber, showOutsideDays, fixedWeeks, dir, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
572
|
+
declare namespace DateTimePicker {
|
|
573
|
+
var displayName: string;
|
|
574
|
+
}
|
|
566
575
|
|
|
567
576
|
type DrawerSide = "top" | "right" | "bottom" | "left";
|
|
568
577
|
type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -725,6 +734,9 @@ interface ImageCropperProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
725
734
|
cropShape?: "rect" | "circle";
|
|
726
735
|
}
|
|
727
736
|
declare function ImageCropper({ src, aspect, minZoom, maxZoom, defaultZoom, defaultOffset, onChange, cropShape, className, ...rest }: ImageCropperProps): react_jsx_runtime.JSX.Element;
|
|
737
|
+
declare namespace ImageCropper {
|
|
738
|
+
var displayName: string;
|
|
739
|
+
}
|
|
728
740
|
|
|
729
741
|
type InputVariant = "outline" | "soft" | "ghost";
|
|
730
742
|
type InputSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -902,6 +914,9 @@ interface MultiSelectProps {
|
|
|
902
914
|
className?: string;
|
|
903
915
|
}
|
|
904
916
|
declare function MultiSelect({ value: controlled, defaultValue, onValueChange, options, placeholder, size, variant, shape, disabled, searchable, emptyMessage, maxDisplay, className, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare namespace MultiSelect {
|
|
918
|
+
var displayName: string;
|
|
919
|
+
}
|
|
905
920
|
|
|
906
921
|
type NativeSelectVariant = "outline" | "soft" | "ghost";
|
|
907
922
|
type NativeSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
|
package/dist/index.d.ts
CHANGED
|
@@ -246,6 +246,9 @@ type SharedCalendarProps = {
|
|
|
246
246
|
};
|
|
247
247
|
type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
|
|
248
248
|
declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
249
|
+
declare namespace Calendar {
|
|
250
|
+
var displayName: string;
|
|
251
|
+
}
|
|
249
252
|
|
|
250
253
|
type ButtonGroupOrientation = "horizontal" | "vertical";
|
|
251
254
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -263,7 +266,7 @@ interface ButtonGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
263
266
|
declare const ButtonGroupText: React.ForwardRefExoticComponent<ButtonGroupTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
264
267
|
|
|
265
268
|
type CardVariant = "solid" | "soft" | "outline" | "ghost";
|
|
266
|
-
type CardShape = "
|
|
269
|
+
type CardShape = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
267
270
|
type CardShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
268
271
|
interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
269
272
|
variant?: CardVariant;
|
|
@@ -534,6 +537,9 @@ type SharedDatePickerProps = {
|
|
|
534
537
|
};
|
|
535
538
|
type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
|
|
536
539
|
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare namespace DatePicker {
|
|
541
|
+
var displayName: string;
|
|
542
|
+
}
|
|
537
543
|
|
|
538
544
|
interface DateTimePickerProps {
|
|
539
545
|
value?: Date | undefined;
|
|
@@ -563,6 +569,9 @@ interface DateTimePickerProps {
|
|
|
563
569
|
dir?: "ltr" | "rtl";
|
|
564
570
|
}
|
|
565
571
|
declare function DateTimePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, clearable, format, className, step, showSeconds, hour12, minDate, maxDate, disabledDates, size, captionLayout, numberOfMonths, firstDayOfWeek, locale, weekdayFormat, yearRange, showWeekNumber, showOutsideDays, fixedWeeks, dir, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
572
|
+
declare namespace DateTimePicker {
|
|
573
|
+
var displayName: string;
|
|
574
|
+
}
|
|
566
575
|
|
|
567
576
|
type DrawerSide = "top" | "right" | "bottom" | "left";
|
|
568
577
|
type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -725,6 +734,9 @@ interface ImageCropperProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "
|
|
|
725
734
|
cropShape?: "rect" | "circle";
|
|
726
735
|
}
|
|
727
736
|
declare function ImageCropper({ src, aspect, minZoom, maxZoom, defaultZoom, defaultOffset, onChange, cropShape, className, ...rest }: ImageCropperProps): react_jsx_runtime.JSX.Element;
|
|
737
|
+
declare namespace ImageCropper {
|
|
738
|
+
var displayName: string;
|
|
739
|
+
}
|
|
728
740
|
|
|
729
741
|
type InputVariant = "outline" | "soft" | "ghost";
|
|
730
742
|
type InputSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -902,6 +914,9 @@ interface MultiSelectProps {
|
|
|
902
914
|
className?: string;
|
|
903
915
|
}
|
|
904
916
|
declare function MultiSelect({ value: controlled, defaultValue, onValueChange, options, placeholder, size, variant, shape, disabled, searchable, emptyMessage, maxDisplay, className, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare namespace MultiSelect {
|
|
918
|
+
var displayName: string;
|
|
919
|
+
}
|
|
905
920
|
|
|
906
921
|
type NativeSelectVariant = "outline" | "soft" | "ghost";
|
|
907
922
|
type NativeSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
|