@fluid-topics/ft-wc-utils 1.0.63 → 1.1.0

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.
@@ -1,4 +1,4 @@
1
- import { LitElement } from "lit-element/lit-element.js";
1
+ import { LitElement } from "lit";
2
2
  declare global {
3
3
  interface ShadowRootInit {
4
4
  customElements?: CustomElementRegistry;
@@ -1,4 +1,4 @@
1
- import { LitElement } from "lit-element/lit-element.js";
1
+ import { LitElement } from "lit";
2
2
  import { adoptStyles } from "@lit/reactive-element/css-tag.js";
3
3
  /**
4
4
  * Typescript would not let us use the mixin directly when upgrading Lit from 2.2.8 to 2.7.2
@@ -1,4 +1,3 @@
1
1
  import { PropertyDeclaration } from "@lit/reactive-element";
2
- import { ClassElement } from "@lit/reactive-element/decorators/base";
3
2
  export declare const customElement: (tagName: string) => (clazz: CustomElementConstructor) => void;
4
- export declare function jsonProperty(defaultValue: any, options?: PropertyDeclaration): (attribute: Object | ClassElement, name?: PropertyKey | undefined) => any;
3
+ export declare function jsonProperty(defaultValue: any, options?: PropertyDeclaration): PropertyDecorator;