index.js 476 B

1234567891011121314151617
  1. //
  2. // Import mapping:
  3. //
  4. // controls, presentation, primitives ->
  5. // CancelDialog
  6. // ConfirmDialog
  7. //
  8. // Dialog -> OpenFileDialog
  9. // FilePickerForm -> OpenFileDialog
  10. //
  11. export {default as CancelDialog} from './CancelDialog.js'
  12. export {default as ConfirmDialog} from './ConfirmDialog.js'
  13. export {default as Dialog} from './Dialog.js'
  14. export {default as FilePickerForm} from './FilePickerForm.js'
  15. export {default as OpenFileDialog} from './OpenFileDialog.js'