Skip to content
Snippets Groups Projects
Select Git revision
  • 779a8dd7abaae66610f816131830b00b508b82b7
  • main default protected
  • develop
  • 1.0.0
  • 0.2.3
  • 0.2.2
  • 0.2.1
  • 0.2.0
8 results

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