@underverse-ui/underverse 0.2.55 → 0.2.57
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.cjs +2117 -1923
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +2181 -1987
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -433,10 +433,12 @@ interface ToastProviderProps {
|
|
|
433
433
|
}
|
|
434
434
|
declare const ToastProvider: React__default.FC<ToastProviderProps>;
|
|
435
435
|
|
|
436
|
+
type Side = "top" | "right" | "bottom" | "left";
|
|
437
|
+
type TooltipPlacement = Side;
|
|
436
438
|
interface TooltipProps {
|
|
437
439
|
children: React$1.ReactElement;
|
|
438
440
|
content: React$1.ReactNode;
|
|
439
|
-
placement?:
|
|
441
|
+
placement?: TooltipPlacement;
|
|
440
442
|
delay?: number | {
|
|
441
443
|
open?: number;
|
|
442
444
|
close?: number;
|
|
@@ -826,7 +828,7 @@ interface CalendarEvent {
|
|
|
826
828
|
color?: string;
|
|
827
829
|
badge?: string;
|
|
828
830
|
}
|
|
829
|
-
interface CalendarProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
831
|
+
interface CalendarProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "value" | "onSelect"> {
|
|
830
832
|
month?: Date;
|
|
831
833
|
defaultMonth?: Date;
|
|
832
834
|
onMonthChange?: (next: Date) => void;
|
|
@@ -1311,7 +1313,7 @@ interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1311
1313
|
/** Show connecting line */
|
|
1312
1314
|
showLine?: boolean;
|
|
1313
1315
|
}
|
|
1314
|
-
interface TimelineItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
1316
|
+
interface TimelineItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1315
1317
|
title?: React$1.ReactNode;
|
|
1316
1318
|
description?: React$1.ReactNode;
|
|
1317
1319
|
time?: React$1.ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -433,10 +433,12 @@ interface ToastProviderProps {
|
|
|
433
433
|
}
|
|
434
434
|
declare const ToastProvider: React__default.FC<ToastProviderProps>;
|
|
435
435
|
|
|
436
|
+
type Side = "top" | "right" | "bottom" | "left";
|
|
437
|
+
type TooltipPlacement = Side;
|
|
436
438
|
interface TooltipProps {
|
|
437
439
|
children: React$1.ReactElement;
|
|
438
440
|
content: React$1.ReactNode;
|
|
439
|
-
placement?:
|
|
441
|
+
placement?: TooltipPlacement;
|
|
440
442
|
delay?: number | {
|
|
441
443
|
open?: number;
|
|
442
444
|
close?: number;
|
|
@@ -826,7 +828,7 @@ interface CalendarEvent {
|
|
|
826
828
|
color?: string;
|
|
827
829
|
badge?: string;
|
|
828
830
|
}
|
|
829
|
-
interface CalendarProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
831
|
+
interface CalendarProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "value" | "onSelect"> {
|
|
830
832
|
month?: Date;
|
|
831
833
|
defaultMonth?: Date;
|
|
832
834
|
onMonthChange?: (next: Date) => void;
|
|
@@ -1311,7 +1313,7 @@ interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1311
1313
|
/** Show connecting line */
|
|
1312
1314
|
showLine?: boolean;
|
|
1313
1315
|
}
|
|
1314
|
-
interface TimelineItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
1316
|
+
interface TimelineItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1315
1317
|
title?: React$1.ReactNode;
|
|
1316
1318
|
description?: React$1.ReactNode;
|
|
1317
1319
|
time?: React$1.ReactNode;
|