All Projects → GoogleChrome → Dialog Polyfill

GoogleChrome / Dialog Polyfill

Licence: other
Polyfill for the HTML dialog element

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to Dialog Polyfill

A11y Dialog
A very lightweight and flexible accessible modal dialog script.
Stars: ✭ 1,768 (-17.84%)
Mutual labels:  a11y, dialog
Focus Layers
Tiny React hooks for isolating focus within subsections of the DOM.
Stars: ✭ 238 (-88.94%)
Mutual labels:  a11y, dialog
Accessible modal window
Accessible modal dialogs
Stars: ✭ 196 (-90.89%)
Mutual labels:  a11y, dialog
svelte-accessible-dialog
An accessible dialog component for Svelte apps
Stars: ✭ 24 (-98.88%)
Mutual labels:  a11y, dialog
Core Components
Accessible and lightweight Javascript components
Stars: ✭ 85 (-96.05%)
Mutual labels:  a11y, dialog
Vue A11y Dialog
Vue.js component for a11y-dialog
Stars: ✭ 65 (-96.98%)
Mutual labels:  a11y, dialog
vue-modal
A customizable, stackable, and lightweight modal component for Vue.
Stars: ✭ 96 (-95.54%)
Mutual labels:  a11y, dialog
Launchy
Launchy: An Accessible Modal Window
Stars: ✭ 89 (-95.86%)
Mutual labels:  a11y, dialog
Vue Final Modal
🍕Vue Final Modal is a tiny, renderless, mobile-friendly, feature-rich modal component for Vue.js.
Stars: ✭ 128 (-94.05%)
Mutual labels:  a11y, dialog
Scriptui Dialog Builder Joonas
A web app for designing and building Adobe ScriptUI javascript dialogs (Illustrator, Indesign, Photoshop, After Effects, Bridge). Design your dialog using a graphical interface and export as .jsx
Stars: ✭ 161 (-92.52%)
Mutual labels:  dialog
Chatbot Watson Android
An Android ChatBot powered by Watson Services - Assistant, Speech-to-Text and Text-to-Speech on IBM Cloud.
Stars: ✭ 169 (-92.15%)
Mutual labels:  dialog
Polyfill Php73
This component provides functions unavailable in releases prior to PHP 7.3.
Stars: ✭ 2,121 (-1.44%)
Mutual labels:  polyfill
Androidmaterialdialog
Provides builders, which allow to create various "Material Design"-styled dialogs
Stars: ✭ 161 (-92.52%)
Mutual labels:  dialog
Webp Hero
browser polyfill for the webp image format
Stars: ✭ 171 (-92.05%)
Mutual labels:  polyfill
Dialog
👻 A simple to use, highly customizable, and powerful modal for Angular Applications
Stars: ✭ 158 (-92.66%)
Mutual labels:  dialog
Flash
⚡️A highly customizable, powerful and easy-to-use alerting library for Flutter.
Stars: ✭ 174 (-91.91%)
Mutual labels:  dialog
Vue Ui For Pc
基于Vue2.x的一套PC端UI组件,包括了Carousel 跑马灯、Cascader 级联、Checkbox 多选框、Collapse 折叠面板、DatePicker 日期选择、Dialog 对话框、Form 表单、Input 输入框、InputNumber 数字输入框、Layer 弹窗层、Loading 加载、Menu 菜单、Page 分页、Progress 进度条、Radio 单选框、SelectDropDown 仿select、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 文字提示、BackTop 返回顶部、steps 步骤条、Transfer 穿梭框、Tree 树形、Upload 文件上传、Lazy 图片懒加载、Loading 加载、Pagination 分页等等
Stars: ✭ 156 (-92.75%)
Mutual labels:  dialog
Alerttoast
Create Apple-like alerts & toasts using SwiftUI
Stars: ✭ 151 (-92.98%)
Mutual labels:  dialog
React Modal Hook
Syntactic sugar for handling modals using React Hooks
Stars: ✭ 174 (-91.91%)
Mutual labels:  dialog
Empathy Prompts
💡 Ideas to help consider Inclusive Design principles when making things for others to use.
Stars: ✭ 173 (-91.96%)
Mutual labels:  a11y

dialog-polyfill.js is a polyfill for <dialog> and <form method="dialog">. Check out some demos!

<dialog> is an element for a popup box in a web page, including a modal option which will make the rest of the page inert during use. This could be useful to block a user's interaction until they give you a response, or to confirm an action. See the HTML spec.

Usage

Installation

You may optionally install via NPM -

$ npm install dialog-polyfill

There are several ways that to include the dialog polyfill:

  • include dist/dialog-polyfill.js script directly in your HTML, which exposes a global dialogPolyfill function.
  • import (es modules)
  • require (commonjs/node)
// direct import (script module, deno)
import dialogPolyfill from './node_modules/dialog-polyfill/dist/dialog-polyfill.esm.js';

// *OR*

// modern es modules with rollup/webpack bundlers, and node via esm module
import dialogPolyfill from 'dialog-polyfill'

// *OR*

// traditional commonjs/node and browserify bundler
const dialogPolyfill = require('dialog-polyfill')

Supports

This polyfill works on modern versions of all major browsers. It also supports IE9 and above. It can work when used inside Shadow DOM, but it's not recommended.

Steps

  1. Include the CSS in the <head> of your document, and the JS anywhere before referencing dialogPolyfill.
  2. Create your dialog elements within the document. See limitations for more details.
  3. Register the elements using dialogPolyfill.registerDialog(), passing it one node at a time. This polyfill won't replace native support.
  4. Use your <dialog> elements!

Script Global Example

<head>
  <link rel="stylesheet" type="text/css" href="dist/dialog-polyfill.css" />
</head>
<body>
  <dialog>
    I'm a dialog!
    <form method="dialog">
      <input type="submit" value="Close" />
    </form>
  </dialog>
  <script src="dist/dialog-polyfill.js"></script>
  <script>
    var dialog = document.querySelector('dialog');
    dialogPolyfill.registerDialog(dialog);
    // Now dialog always acts like a native <dialog>.
    dialog.showModal();
  </script>
</body>

::backdrop

In native <dialog>, the backdrop is a pseudo-element. When using the polyfill, the backdrop will be an adjacent element:

dialog::backdrop { /* native */
  background-color: green;
}
dialog + .backdrop { /* polyfill */
  background-color: green;
}

Limitations

In the polyfill, modal dialogs have limitations-

  • They should not be contained by parents that create a stacking context, see below
  • The browser's chrome may not always be accessible via the tab key
  • Changes to the CSS top/bottom values while open aren't retained

Stacking Context

The major limitation of the polyfill is that dialogs should not have parents that create a stacking context. The easiest way to solve this is to move your <dialog> element to be a child of <body>.

If this isn't possible you may still be able to use the dialog. However, you may want to resolve it for two major reasons-

  1. The polyfill can't guarantee that the dialog will be the top-most element of your page
  2. The dialog may be positioned incorrectly as they are positioned as part of the page layout where they are opened (defined by spec), and not at a fixed position in the user's browser.

To position a dialog in the center (regardless of user scroll position or stacking context), you can specify the following CSS-

dialog {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
}

This is also provided as a helper CSS class in the polyfill CSS, .fixed. You can apply by using HTML like <dialog class="fixed">.

Extensions

Focus

The WAI-ARIA doc suggests returning focus to the previously focused element after a modal dialog is closed. However, this is not part of the dialog spec itself. See this snippet to add this, even to the native dialog.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].