@3mo/data-grid 0.20.0 → 0.20.2
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/DataGrid.d.ts.map +1 -1
- package/dist/DataGrid.js +243 -245
- package/dist/DataGridColumn.js +1 -1
- package/dist/DataGridColumnHeader.d.ts +1 -1
- package/dist/DataGridColumnHeader.d.ts.map +1 -1
- package/dist/DataGridColumnHeader.js +185 -191
- package/dist/DataGridContextMenuController.js +1 -1
- package/dist/DataGridFooter.js +2 -2
- package/dist/DataGridHeader.d.ts.map +1 -1
- package/dist/DataGridHeader.js +104 -98
- package/dist/DataGridSidePanel.js +1 -1
- package/dist/custom-elements.json +3 -3
- package/dist/rows/DataGridDefaultRow.js +25 -25
- package/dist/rows/DataGridRow.d.ts.map +1 -1
- package/dist/rows/DataGridRow.js +196 -197
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +59 -59
package/package.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@3mo/data-grid",
|
|
3
|
-
"version": "0.20.
|
|
4
|
-
"description": "A data grid web component",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/3mo-esolutions/web-components"
|
|
8
|
-
},
|
|
9
|
-
"keywords": [
|
|
10
|
-
"lit",
|
|
11
|
-
"web-component",
|
|
12
|
-
"material",
|
|
13
|
-
"data-grid"
|
|
14
|
-
],
|
|
15
|
-
"author": "3MO GmbH",
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"homepage": "https://www.3mo.de",
|
|
18
|
-
"type": "module",
|
|
19
|
-
"main": "dist/index.js",
|
|
20
|
-
"types": "dist/index.d.ts",
|
|
21
|
-
"customElements": "dist/custom-elements.json",
|
|
22
|
-
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
],
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"tslib": "x",
|
|
27
|
-
"@a11d/lit": "x",
|
|
28
|
-
"@a11d/lit-application": "x",
|
|
29
|
-
"@a11d/equals": "x",
|
|
30
|
-
"@3mo/flex": "x",
|
|
31
|
-
"@3mo/grid": "x",
|
|
32
|
-
"@a11d/key-path": "2.x",
|
|
33
|
-
"@3mo/icon": "x",
|
|
34
|
-
"@3mo/icon-button": "x",
|
|
35
|
-
"@3mo/checkbox": "x",
|
|
36
|
-
"@3mo/slot-controller": "x",
|
|
37
|
-
"@3mo/instanceof-attribute-controller": "x",
|
|
38
|
-
"@3mo/media-query-observer": "x",
|
|
39
|
-
"@3mo/resize-observer": "x",
|
|
40
|
-
"@3mo/localization": "x",
|
|
41
|
-
"@3mo/popover": ">=0.8.x",
|
|
42
|
-
"@3mo/menu": ">=0.11.0",
|
|
43
|
-
"@3mo/context-menu": "x",
|
|
44
|
-
"@3mo/tooltip": "x",
|
|
45
|
-
"@3mo/number-fields": "x",
|
|
46
|
-
"@3mo/tab": "x",
|
|
47
|
-
"@3mo/text-fields": "x",
|
|
48
|
-
"@3mo/select-field": "x",
|
|
49
|
-
"@3mo/section": "x",
|
|
50
|
-
"@3mo/date-time-fields": "x",
|
|
51
|
-
"@3mo/empty-state": "x",
|
|
52
|
-
"@3mo/splitter": "x",
|
|
53
|
-
"@3mo/theme": "x",
|
|
54
|
-
"@3mo/downloader": "x",
|
|
55
|
-
"@3mo/line": "x",
|
|
56
|
-
"@3mo/keyboard-controller": "x",
|
|
57
|
-
"requestidlecallback-polyfill": "x"
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@3mo/data-grid",
|
|
3
|
+
"version": "0.20.2",
|
|
4
|
+
"description": "A data grid web component",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/3mo-esolutions/web-components"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"lit",
|
|
11
|
+
"web-component",
|
|
12
|
+
"material",
|
|
13
|
+
"data-grid"
|
|
14
|
+
],
|
|
15
|
+
"author": "3MO GmbH",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"homepage": "https://www.3mo.de",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
|
+
"customElements": "dist/custom-elements.json",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"tslib": "x",
|
|
27
|
+
"@a11d/lit": "x",
|
|
28
|
+
"@a11d/lit-application": "x",
|
|
29
|
+
"@a11d/equals": "x",
|
|
30
|
+
"@3mo/flex": "x",
|
|
31
|
+
"@3mo/grid": "x",
|
|
32
|
+
"@a11d/key-path": "2.x",
|
|
33
|
+
"@3mo/icon": "x",
|
|
34
|
+
"@3mo/icon-button": "x",
|
|
35
|
+
"@3mo/checkbox": "x",
|
|
36
|
+
"@3mo/slot-controller": "x",
|
|
37
|
+
"@3mo/instanceof-attribute-controller": "x",
|
|
38
|
+
"@3mo/media-query-observer": "x",
|
|
39
|
+
"@3mo/resize-observer": "x",
|
|
40
|
+
"@3mo/localization": "x",
|
|
41
|
+
"@3mo/popover": ">=0.8.x",
|
|
42
|
+
"@3mo/menu": ">=0.11.0",
|
|
43
|
+
"@3mo/context-menu": "x",
|
|
44
|
+
"@3mo/tooltip": "x",
|
|
45
|
+
"@3mo/number-fields": "x",
|
|
46
|
+
"@3mo/tab": "x",
|
|
47
|
+
"@3mo/text-fields": "x",
|
|
48
|
+
"@3mo/select-field": "x",
|
|
49
|
+
"@3mo/section": "x",
|
|
50
|
+
"@3mo/date-time-fields": "x",
|
|
51
|
+
"@3mo/empty-state": "x",
|
|
52
|
+
"@3mo/splitter": "x",
|
|
53
|
+
"@3mo/theme": "x",
|
|
54
|
+
"@3mo/downloader": "x",
|
|
55
|
+
"@3mo/line": "x",
|
|
56
|
+
"@3mo/keyboard-controller": "x",
|
|
57
|
+
"requestidlecallback-polyfill": "x"
|
|
58
|
+
}
|
|
59
|
+
}
|