feat(core): add AlertDialog data attributes (#738)

This commit is contained in:
rahim
2026-03-05 11:14:36 -08:00
committed by GitHub
parent 45f3fbf4cf
commit e2334a3767
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
export * from './media/proxy';
export * from './media/state';
export * from './ui/alert-dialog/alert-dialog-data-attrs';
export * from './ui/buffering-indicator/buffering-indicator-core';
export * from './ui/buffering-indicator/buffering-indicator-data-attrs';
export * from './ui/controls/controls-core';
@@ -0,0 +1,5 @@
import type { StateAttrMap } from '../types';
export const AlertDialogDataAttrs = {
open: 'data-open',
} as const satisfies StateAttrMap<{ open: boolean }>;