@vacano/ui 1.15.1 → 1.15.2
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/README.md +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +194 -193
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1410,9 +1410,9 @@ export declare type TimelineClassNames = {
|
|
|
1410
1410
|
};
|
|
1411
1411
|
|
|
1412
1412
|
export declare type TimelineItem = {
|
|
1413
|
-
title:
|
|
1413
|
+
title: ReactNode;
|
|
1414
1414
|
description?: ReactNode;
|
|
1415
|
-
|
|
1415
|
+
content?: ReactNode;
|
|
1416
1416
|
};
|
|
1417
1417
|
|
|
1418
1418
|
export declare type TimelineProps = VacanoComponentProps<HTMLDivElement, TimelineClassNames> & Omit<HTMLAttributes<HTMLDivElement>, 'className'> & {
|