@turnix-co/konva-editor 3.0.8 → 3.0.10

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.ts CHANGED
@@ -659,6 +659,7 @@ interface PublishButtonProps {
659
659
  onPublish?: (slides: Slide[], metadata: PresentationMetadata, onProgress?: (progress: PublishProgress) => void) => Promise<PublishResponse>;
660
660
  label?: string;
661
661
  className?: string;
662
+ includeInactiveSlides?: boolean;
662
663
  }
663
664
  declare const PublishButton: React$1.FC<PublishButtonProps>;
664
665
 
@@ -680,6 +681,7 @@ type TopNavBarProps = {
680
681
  className?: string;
681
682
  rightContent?: React$1.ReactNode;
682
683
  leftContent?: React$1.ReactNode;
684
+ includeInactiveSlides?: boolean;
683
685
  };
684
686
  declare const TopNavBar: React$1.FC<TopNavBarProps>;
685
687