@overmap-ai/blocks 0.0.9-alpha.5 → 0.0.9-alpha.6
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/Dialogs/Dialog/typings.d.ts +8 -0
- package/dist/blocks.js +394 -376
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +2 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,14 @@ export interface DialogProps extends Omit<RadixDialogContentProps, "content"> {
|
|
|
18
18
|
* @default false
|
|
19
19
|
*/
|
|
20
20
|
defaultOpen?: boolean;
|
|
21
|
+
/** Manually control the open state
|
|
22
|
+
* @deprecated Use `defaultOpen` and `Trigger` instead
|
|
23
|
+
*/
|
|
24
|
+
open?: boolean;
|
|
25
|
+
/** Manually control the open state changes.
|
|
26
|
+
* @deprecated Use `onOpen` and `onCloseInterrupt` instead
|
|
27
|
+
*/
|
|
28
|
+
onOpenChange?: (open: boolean) => void;
|
|
21
29
|
/** The title of the Dialog should only be a few words */
|
|
22
30
|
title: string;
|
|
23
31
|
/** The description of the Dialog should explain what is happening and possible ramifications. */
|