Skip to content
Snippets Groups Projects
Select Git revision
  • 05ca37c64de61cab57af1c7fa5abe34c5fa7a395
  • main default protected
  • develop
  • 1.2.2
  • 1.2.0
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.1
  • 1.0.0
  • 0.0.3
  • 0.0.2
13 results

main.py

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);