@infuro/cms-core 1.0.15 → 1.0.16

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/admin.d.cts CHANGED
@@ -268,6 +268,10 @@ declare function CollectionEditPage({ collectionId }: {
268
268
  interface DetailPageHeaderMenuItem {
269
269
  label: string;
270
270
  onClick: () => void;
271
+ icon: React.ComponentType<{
272
+ className?: string;
273
+ }>;
274
+ variant?: "default" | "outline" | "secondary" | "destructive";
271
275
  }
272
276
  interface DetailPageHeaderProps {
273
277
  title: React.ReactNode;
package/dist/admin.d.ts CHANGED
@@ -268,6 +268,10 @@ declare function CollectionEditPage({ collectionId }: {
268
268
  interface DetailPageHeaderMenuItem {
269
269
  label: string;
270
270
  onClick: () => void;
271
+ icon: React.ComponentType<{
272
+ className?: string;
273
+ }>;
274
+ variant?: "default" | "outline" | "secondary" | "destructive";
271
275
  }
272
276
  interface DetailPageHeaderProps {
273
277
  title: React.ReactNode;