@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.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.es.js +1823 -1790
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/utils-D9D3Fg9O.mjs +145 -0
- package/dist/utils-D9D3Fg9O.mjs.map +1 -0
- package/dist/utils-DbIphMSk.js +2 -0
- package/dist/utils-DbIphMSk.js.map +1 -0
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +1 -1
- package/package.json +1 -1
- package/dist/utils-BNyA6Kte.js +0 -2
- package/dist/utils-BNyA6Kte.js.map +0 -1
- package/dist/utils-CZQIdhYj.mjs +0 -125
- package/dist/utils-CZQIdhYj.mjs.map +0 -1
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"> {
|