@reeverdev/ui 0.2.232 → 0.2.234

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.cts CHANGED
@@ -2311,6 +2311,10 @@ interface SnippetProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantPr
2311
2311
  symbol?: string;
2312
2312
  /** Hide the symbol */
2313
2313
  hideSymbol?: boolean;
2314
+ /** Whether to show dismiss/close button */
2315
+ dismissible?: boolean;
2316
+ /** Callback when dismiss button is clicked */
2317
+ onDismiss?: () => void;
2314
2318
  }
2315
2319
  declare const Snippet: React$1.ForwardRefExoticComponent<SnippetProps & React$1.RefAttributes<HTMLDivElement>>;
2316
2320
 
package/dist/index.d.ts CHANGED
@@ -2311,6 +2311,10 @@ interface SnippetProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantPr
2311
2311
  symbol?: string;
2312
2312
  /** Hide the symbol */
2313
2313
  hideSymbol?: boolean;
2314
+ /** Whether to show dismiss/close button */
2315
+ dismissible?: boolean;
2316
+ /** Callback when dismiss button is clicked */
2317
+ onDismiss?: () => void;
2314
2318
  }
2315
2319
  declare const Snippet: React$1.ForwardRefExoticComponent<SnippetProps & React$1.RefAttributes<HTMLDivElement>>;
2316
2320