tinkiet 0.9.10 → 0.9.12

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,6 +1,6 @@
1
- import { LitElement, PropertyValueMap } from "lit";
1
+ import { CSSResultGroup, LitElement, PropertyValueMap } from "lit";
2
2
  declare class TkDialog extends LitElement {
3
- static styles: import("lit").CSSResult;
3
+ static styles: CSSResultGroup;
4
4
  modal: boolean;
5
5
  open: boolean;
6
6
  blurOverlay: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinkiet",
3
- "version": "0.9.10",
3
+ "version": "0.9.12",
4
4
  "description": "Pragmatic UI Web Components",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,4 +1,4 @@
1
- import { LitElement, PropertyValueMap, TemplateResult } from "lit";
1
+ import { LitElement, CSSResultGroup, PropertyValueMap, TemplateResult } from "lit";
2
2
  declare const colors: readonly [
3
3
  "primary-lighter",
4
4
  "primary-light",
@@ -211,7 +211,7 @@ declare global {
211
211
  }
212
212
  }
213
213
  declare class TkDialog extends LitElement {
214
- static styles: import("lit").CSSResult;
214
+ static styles: CSSResultGroup;
215
215
  modal: boolean;
216
216
  open: boolean;
217
217
  blurOverlay: boolean;