design-system-silkhaus 2.1.0-beta.travel-list.3 → 2.1.0-beta.travel-list.5
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 +34 -34
- package/dist/index.d.ts +6 -0
- package/dist/index.js +5268 -5212
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -428,6 +428,10 @@ export declare const PencilIcon: FC<{
|
|
|
428
428
|
className?: string;
|
|
429
429
|
}>;
|
|
430
430
|
|
|
431
|
+
export declare const PlusCircleIcon: FC<{
|
|
432
|
+
className?: string;
|
|
433
|
+
}>;
|
|
434
|
+
|
|
431
435
|
export declare const PreviewIcon: FC<{
|
|
432
436
|
className?: string;
|
|
433
437
|
}>;
|
|
@@ -680,6 +684,8 @@ export declare interface TravelListItemProps {
|
|
|
680
684
|
|
|
681
685
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
682
686
|
items?: TravelListItemProps[];
|
|
687
|
+
hideShare?: boolean;
|
|
688
|
+
hideEdit?: boolean;
|
|
683
689
|
}
|
|
684
690
|
|
|
685
691
|
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|