@protonradio/proton-ui 0.7.0 → 0.7.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/dist/index.d.ts CHANGED
@@ -389,7 +389,7 @@ declare type Palette = {
389
389
  *
390
390
  * @interface PopoverProps
391
391
  */
392
- export declare function Popover({ children, state, arrow, offset, ...props }: PopoverProps): JSX_2.Element;
392
+ export declare function Popover({ children, state, arrow, offset, isEntering, ...props }: PopoverProps): JSX_2.Element;
393
393
 
394
394
  declare interface PopoverProps extends Omit<AriaPopoverProps, "popoverRef"> {
395
395
  /**
@@ -408,6 +408,10 @@ declare interface PopoverProps extends Omit<AriaPopoverProps, "popoverRef"> {
408
408
  * Whether to show an arrow on the popover.
409
409
  */
410
410
  arrow?: boolean;
411
+ /**
412
+ * Whether the popover is entering.
413
+ */
414
+ isEntering?: boolean;
411
415
  }
412
416
 
413
417
  export declare interface ProtonColumnProps<T> extends ColumnProps<T> {
@@ -616,6 +620,14 @@ declare interface ThemeVariables {
616
620
  "--proton-color__secondary": string;
617
621
  }
618
622
 
623
+ export declare const Tombstone: ({ width, height, borderRadius, ...props }: TombstoneProps) => JSX_2.Element;
624
+
625
+ declare interface TombstoneProps {
626
+ width?: string;
627
+ height?: string;
628
+ borderRadius?: string;
629
+ }
630
+
619
631
  export declare function Tooltip({ children, arrow, ...props }: TooltipProps): JSX_2.Element;
620
632
 
621
633
  export declare interface TooltipProps extends Omit<TooltipProps_2, "children"> {