Skip to content
Snippets Groups Projects
Unverified Commit edeeaab3 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire:
Browse files

Move adapter-lit-element to provider package (dbp/apps/authenticdocument#2)

parent a1859b2e
No related branches found
No related tags found
No related merge requests found
Pipeline #15360 passed
import {createI18nInstance} from './i18n.js'; import {createI18nInstance} from './i18n.js';
import {html, css, LitElement} from 'lit-element'; import {html, css} from 'lit-element';
import {ScopedElementsMixin} from '@open-wc/scoped-elements'; import {ScopedElementsMixin} from '@open-wc/scoped-elements';
import {LanguageSelect} from '@dbp-toolkit/language-select'; import {LanguageSelect} from '@dbp-toolkit/language-select';
import {Icon, EventBus} from '@dbp-toolkit/common'; import {Icon, EventBus} from '@dbp-toolkit/common';
...@@ -16,7 +16,7 @@ import {TUGrazLogo} from './tugraz-logo.js'; ...@@ -16,7 +16,7 @@ import {TUGrazLogo} from './tugraz-logo.js';
import {send as notify} from '@dbp-toolkit/common/notification'; import {send as notify} from '@dbp-toolkit/common/notification';
import {appWelcomeMeta} from './dbp-app-shell-welcome.js'; import {appWelcomeMeta} from './dbp-app-shell-welcome.js';
import {MatomoElement} from "@dbp-toolkit/matomo/src/matomo"; import {MatomoElement} from "@dbp-toolkit/matomo/src/matomo";
import {AdapterLitElement} from "@dbp-toolkit/common/src/adapter-lit-element"; import {AdapterLitElement} from "@dbp-toolkit/provider/src/adapter-lit-element";
const i18n = createI18nInstance(); const i18n = createI18nInstance();
......
...@@ -45,7 +45,7 @@ export class AdapterLitElement extends LitElement { ...@@ -45,7 +45,7 @@ export class AdapterLitElement extends LitElement {
detail: { detail: {
name: global, name: global,
callback: (value) => { callback: (value) => {
console.log('AdapterLitElement(' + that.id() + ') sub/Callback ' + global + ' -> ' + local + ' = ' + value); console.log('AdapterLitElement() sub/Callback ' + global + ' -> ' + local + ' = ' + value);
this.attributeChangedCallback(local, that[local], value); this.attributeChangedCallback(local, that[local], value);
}, },
sender: this, sender: this,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment