@digital-realty/ix-dialog 1.2.10 → 1.2.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/dist/IxDialog.d.ts +1 -1
- package/package.json +9 -5
package/dist/IxDialog.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CSSResultGroup, LitElement } from 'lit';
|
|
2
2
|
import { Dialog } from './internal/dialog.js';
|
|
3
3
|
import './md-dialog.js';
|
|
4
|
-
declare const ixDialogBaseClass: (abstract new (...args: any[]) => import("@material/web/labs/behaviors/element-internals.js").WithElementInternals) & typeof LitElement & import("@digital-realty/ix-shared-fns/aria-forward-mixin.js").Constructor<import("@digital-realty/ix-shared-fns/aria-forward-mixin.js").AriaForwardMixinInterface>;
|
|
4
|
+
declare const ixDialogBaseClass: (abstract new (...args: any[]) => import("@material/web/labs/behaviors/element-internals.js").WithElementInternals) & typeof LitElement & import("@digital-realty/ix-shared-fns/aria-forward-mixin.js").Constructor<import("@material/web/labs/behaviors/element-internals.js").WithElementInternals & LitElement & import("@digital-realty/ix-shared-fns/aria-forward-mixin.js").AriaForwardMixinInterface>;
|
|
5
5
|
export declare class IxDialog extends ixDialogBaseClass {
|
|
6
6
|
/** @nocollapse */
|
|
7
7
|
static styles: CSSResultGroup;
|
package/package.json
CHANGED
|
@@ -3,12 +3,16 @@
|
|
|
3
3
|
"description": "Webcomponent ix-dialog following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Digital Realty",
|
|
6
|
-
"version": "1.2.
|
|
6
|
+
"version": "1.2.12",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
10
11
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
},
|
|
12
16
|
"./ix-dialog.js": "./dist/ix-dialog.js",
|
|
13
17
|
"./ix-dialog.min.js": "./dist/ix-dialog.min.js",
|
|
14
18
|
"./IxDialog": "./dist/react/IxDialog.js"
|
|
@@ -27,8 +31,8 @@
|
|
|
27
31
|
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
|
|
28
32
|
},
|
|
29
33
|
"dependencies": {
|
|
30
|
-
"@digital-realty/ix-select": "^1.2.
|
|
31
|
-
"@digital-realty/ix-shared-fns": "1.0.
|
|
34
|
+
"@digital-realty/ix-select": "^1.2.8",
|
|
35
|
+
"@digital-realty/ix-shared-fns": "^1.0.4",
|
|
32
36
|
"@lit/react": "^1.0.2",
|
|
33
37
|
"@material/web": "2.4.0",
|
|
34
38
|
"@open-wc/lit-helpers": "^0.7.0",
|
|
@@ -104,5 +108,5 @@
|
|
|
104
108
|
"README.md",
|
|
105
109
|
"LICENSE"
|
|
106
110
|
],
|
|
107
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "4cd8803f4c5f3b3833ae6ebb5791f73a057863f8"
|
|
108
112
|
}
|