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.
- package/dialog/dialog.d.ts +2 -2
- package/package.json +1 -1
- package/umd/tinkiet.min.d.ts +2 -2
package/dialog/dialog.d.ts
CHANGED
|
@@ -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:
|
|
3
|
+
static styles: CSSResultGroup;
|
|
4
4
|
modal: boolean;
|
|
5
5
|
open: boolean;
|
|
6
6
|
blurOverlay: boolean;
|
package/package.json
CHANGED
package/umd/tinkiet.min.d.ts
CHANGED
|
@@ -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:
|
|
214
|
+
static styles: CSSResultGroup;
|
|
215
215
|
modal: boolean;
|
|
216
216
|
open: boolean;
|
|
217
217
|
blurOverlay: boolean;
|