@umbraco-cms/backoffice 1.0.0-next.d01c4274 → 1.0.0-next.d3d67db5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -40,7 +40,7 @@ Create an umbraco-package.json file in the root of your package.
40
40
  Then create a dashboard.js file the same folder.
41
41
 
42
42
  ```javascript
43
- import { UmbElementMixin } from '@umbraco-cms/backoffice/element';
43
+ import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
44
44
  import { UMB_NOTIFICATION_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/notification';
45
45
 
46
46
  const template = document.createElement('template');
@@ -106,12 +106,11 @@ Then go to the element located in `src/my-element.ts` and replace it with the fo
106
106
  // src/my-element.ts
107
107
  import { LitElement, html } from 'lit';
108
108
  import { customElement } from 'lit/decorators.js';
109
- import { UmbElementMixin } from '@umbraco-cms/backoffice/element';
109
+ import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
110
110
  import { UmbNotificationContext, UMB_NOTIFICATION_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/notification';
111
111
 
112
112
  @customElement('my-element')
113
113
  export default class MyElement extends UmbElementMixin(LitElement) {
114
-
115
114
  private _notificationContext?: UmbNotificationContext;
116
115
 
117
116
  constructor() {