@data-c/ui 0.2.19 → 0.2.21

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
@@ -768,6 +768,8 @@ declare const List$1: {
768
768
 
769
769
  interface PopoverRoot {
770
770
  children: ReactNode;
771
+ open?: boolean;
772
+ onOpenChange?: (open: boolean) => void;
771
773
  }
772
774
  declare function PopoverRoot(props: PopoverRoot): react_jsx_runtime.JSX.Element;
773
775
 
@@ -986,6 +988,8 @@ interface VersaoProps {
986
988
  versao: string;
987
989
  sectionId: string;
988
990
  authorization?: string;
991
+ notificarNovaVersao?: boolean;
992
+ localStoragePath?: string;
989
993
  }
990
994
  declare function NotaVersao(props: VersaoProps): react_jsx_runtime.JSX.Element;
991
995