Skip to content
Snippets Groups Projects
Select Git revision
  • 7d640662538373132e859716eef7f38b7a4d2322
  • main default protected
  • renovate/lock-file-maintenance
  • demo protected
  • person-select-custom
  • dbp-translation-component
  • icon-set-mapping
  • port-i18next-parser
  • remove-sentry
  • favorites-and-recent-files
  • revert-6c632dc6
  • lit2
  • advertisement
  • wc-part
  • automagic
  • publish
  • wip-cleanup
  • demo-file-handling
18 results

components.js

Blame
  • components.js 621 B
    import * as commonUtils from './utils';
    import {
        Button,
        Icon,
        InlineNotification,
        LoadingButton,
        MiniSpinner,
        Spinner,
        Translated,
    } from './index';
    
    commonUtils.defineCustomElement('dbp-mini-spinner', MiniSpinner);
    commonUtils.defineCustomElement('dbp-spinner', Spinner);
    commonUtils.defineCustomElement('dbp-icon', Icon);
    commonUtils.defineCustomElement('dbp-button', Button);
    commonUtils.defineCustomElement('dbp-loading-button', LoadingButton);
    commonUtils.defineCustomElement('dbp-inline-notification', InlineNotification);
    commonUtils.defineCustomElement('dbp-translated', Translated);