dialog: fix DialogState export

This commit is contained in:
Elijah Duffy
2026-03-15 13:03:39 -07:00
parent bb27d0c9d7
commit ebdca97527
2 changed files with 3 additions and 2 deletions

View File

@@ -76,9 +76,9 @@
/** /**
* Stores internal state of the dialog, everything necessary to render * Stores internal state of the dialog, everything necessary to render
* internal snippets. * internal and override capable snippets.
*/ */
type DialogState = { export type DialogState = {
frozen: boolean; frozen: boolean;
loading: boolean; loading: boolean;
disabled: boolean; disabled: boolean;

View File

@@ -10,6 +10,7 @@ export {
default as Dialog, default as Dialog,
type DialogAPI, type DialogAPI,
type DialogControls, type DialogControls,
type DialogState,
dialogCancelButton, dialogCancelButton,
dialogCloseButton, dialogCloseButton,
dialogOkButton dialogOkButton