remove contextConsumerMixin where it is no longer used
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
import { html, LitElement } from 'lit';
|
import { html, LitElement } from 'lit';
|
||||||
import { customElement, property } from 'lit/decorators.js';
|
import { customElement, property } from 'lit/decorators.js';
|
||||||
|
|
||||||
import { UmbContextConsumerMixin } from '../../../core/context';
|
|
||||||
|
|
||||||
@customElement('umb-packages-details')
|
@customElement('umb-packages-details')
|
||||||
export class UmbPackagesDetails extends UmbContextConsumerMixin(LitElement) {
|
export class UmbPackagesDetails extends LitElement {
|
||||||
@property()
|
@property()
|
||||||
id!: string;
|
id!: string;
|
||||||
|
|
||||||
|
|||||||
@@ -3,10 +3,8 @@ import '../../editors/shared/editor-entity/editor-entity.element';
|
|||||||
import { html, LitElement } from 'lit';
|
import { html, LitElement } from 'lit';
|
||||||
import { customElement } from 'lit/decorators.js';
|
import { customElement } from 'lit/decorators.js';
|
||||||
|
|
||||||
import { UmbContextConsumerMixin } from '../../../core/context';
|
|
||||||
|
|
||||||
@customElement('umb-packages-editor')
|
@customElement('umb-packages-editor')
|
||||||
export class UmbPackagesEditor extends UmbContextConsumerMixin(LitElement) {
|
export class UmbPackagesEditor extends LitElement {
|
||||||
render() {
|
render() {
|
||||||
return html`
|
return html`
|
||||||
<uui-icon-registry-essential>
|
<uui-icon-registry-essential>
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
import { html, LitElement } from 'lit';
|
import { html, LitElement } from 'lit';
|
||||||
import { customElement } from 'lit/decorators.js';
|
import { customElement } from 'lit/decorators.js';
|
||||||
|
|
||||||
import { UmbContextConsumerMixin } from '../../../core/context';
|
|
||||||
|
|
||||||
@customElement('umb-packages-overview')
|
@customElement('umb-packages-overview')
|
||||||
export class UmbPackagesOverview extends UmbContextConsumerMixin(LitElement) {
|
export class UmbPackagesOverview extends LitElement {
|
||||||
render() {
|
render() {
|
||||||
return html`
|
return html`
|
||||||
<uui-box headline="Popular"></uui-box>
|
<uui-box headline="Popular"></uui-box>
|
||||||
|
|||||||
Reference in New Issue
Block a user