@3mo/data-grid 0.7.0 → 0.7.1

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.
Files changed (60) hide show
  1. package/dist/DataGrid.d.ts +5 -10
  2. package/dist/DataGrid.d.ts.map +1 -1
  3. package/dist/DataGrid.js +15 -32
  4. package/dist/DataGridCell.d.ts +2 -2
  5. package/dist/DataGridCell.d.ts.map +1 -1
  6. package/dist/DataGridColumn.d.ts +29 -0
  7. package/dist/DataGridColumn.d.ts.map +1 -0
  8. package/dist/DataGridColumn.js +40 -0
  9. package/dist/DataGridHeader.d.ts +1 -0
  10. package/dist/DataGridHeader.d.ts.map +1 -1
  11. package/dist/DataGridHeader.js +12 -4
  12. package/dist/DataGridHeaderSeparator.d.ts +2 -2
  13. package/dist/DataGridHeaderSeparator.d.ts.map +1 -1
  14. package/dist/DataGridPrimaryContextMenuItem.js +5 -5
  15. package/dist/columns/DataGridColumnBoolean.d.ts +2 -2
  16. package/dist/columns/DataGridColumnBoolean.d.ts.map +1 -1
  17. package/dist/columns/DataGridColumnBoolean.js +2 -2
  18. package/dist/columns/{DataGridColumn.d.ts → DataGridColumnComponent.d.ts} +6 -6
  19. package/dist/columns/DataGridColumnComponent.d.ts.map +1 -0
  20. package/dist/columns/{DataGridColumn.js → DataGridColumnComponent.js} +21 -20
  21. package/dist/columns/DataGridColumnComponent.test.d.ts +2 -0
  22. package/dist/columns/DataGridColumnComponent.test.d.ts.map +1 -0
  23. package/dist/columns/{DataGridColumn.test.js → DataGridColumnComponent.test.js} +3 -3
  24. package/dist/columns/DataGridColumnDeletion.d.ts +2 -2
  25. package/dist/columns/DataGridColumnDeletion.d.ts.map +1 -1
  26. package/dist/columns/DataGridColumnDeletion.js +2 -2
  27. package/dist/columns/DataGridColumnImage.d.ts +2 -2
  28. package/dist/columns/DataGridColumnImage.d.ts.map +1 -1
  29. package/dist/columns/DataGridColumnImage.js +2 -2
  30. package/dist/columns/DataGridColumnText.d.ts +3 -3
  31. package/dist/columns/DataGridColumnText.d.ts.map +1 -1
  32. package/dist/columns/DataGridColumnText.js +4 -4
  33. package/dist/columns/date-time/DataGridColumnDateTimeBase.d.ts +2 -2
  34. package/dist/columns/date-time/DataGridColumnDateTimeBase.d.ts.map +1 -1
  35. package/dist/columns/date-time/DataGridColumnDateTimeBase.js +2 -2
  36. package/dist/columns/index.d.ts +1 -1
  37. package/dist/columns/index.d.ts.map +1 -1
  38. package/dist/columns/index.js +1 -1
  39. package/dist/columns/number/DataGridColumnNumberBase.d.ts +4 -18
  40. package/dist/columns/number/DataGridColumnNumberBase.d.ts.map +1 -1
  41. package/dist/columns/number/DataGridColumnNumberBase.js +7 -6
  42. package/dist/columns/number/DataGridFooterSum.js +20 -20
  43. package/dist/custom-elements.json +217 -217
  44. package/dist/excel.svg.js +47 -47
  45. package/dist/index.d.ts +1 -1
  46. package/dist/index.d.ts.map +1 -1
  47. package/dist/index.js +1 -1
  48. package/dist/rows/DataGridDefaultRow.d.ts.map +1 -1
  49. package/dist/rows/DataGridDefaultRow.js +1 -0
  50. package/dist/rows/DataGridRow.d.ts +4 -3
  51. package/dist/rows/DataGridRow.d.ts.map +1 -1
  52. package/dist/rows/DataGridRow.js +3 -0
  53. package/dist/tsconfig.tsbuildinfo +1 -1
  54. package/package.json +1 -1
  55. package/dist/ColumnDefinition.d.ts +0 -18
  56. package/dist/ColumnDefinition.d.ts.map +0 -1
  57. package/dist/ColumnDefinition.js +0 -1
  58. package/dist/columns/DataGridColumn.d.ts.map +0 -1
  59. package/dist/columns/DataGridColumn.test.d.ts +0 -2
  60. package/dist/columns/DataGridColumn.test.d.ts.map +0 -1
@@ -14,8 +14,8 @@
14
14
  {
15
15
  "name": "columns",
16
16
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
17
- "type": "ColumnDefinition<TData>[]",
18
- "default": "\"new Array<ColumnDefinition<TData>>()\""
17
+ "type": "DataGridColumn<TData, unknown>[]",
18
+ "default": "\"new Array<DataGridColumn<TData>>()\""
19
19
  },
20
20
  {
21
21
  "name": "headerHidden",
@@ -196,7 +196,7 @@
196
196
  },
197
197
  {
198
198
  "name": "columnsChange",
199
- "type": "EventDispatcher<ColumnDefinition<TData>[]>"
199
+ "type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
200
200
  },
201
201
  {
202
202
  "name": "sidePanelOpen",
@@ -359,7 +359,7 @@
359
359
  },
360
360
  {
361
361
  "name": "visibleColumns",
362
- "type": "ColumnDefinition<TData>[]"
362
+ "type": "DataGridColumn<TData, unknown>[]"
363
363
  },
364
364
  {
365
365
  "name": "data",
@@ -372,8 +372,8 @@
372
372
  "name": "columns",
373
373
  "attribute": "columns",
374
374
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
375
- "type": "ColumnDefinition<TData>[]",
376
- "default": "\"new Array<ColumnDefinition<TData>>()\""
375
+ "type": "DataGridColumn<TData, unknown>[]",
376
+ "default": "\"new Array<DataGridColumn<TData>>()\""
377
377
  },
378
378
  {
379
379
  "name": "headerHidden",
@@ -576,7 +576,7 @@
576
576
  },
577
577
  {
578
578
  "name": "columnsChange",
579
- "type": "CustomEvent<ColumnDefinition<TData>[]>"
579
+ "type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
580
580
  },
581
581
  {
582
582
  "name": "sidePanelOpen",
@@ -678,7 +678,7 @@
678
678
  },
679
679
  {
680
680
  "name": "column",
681
- "type": "ColumnDefinition<TData, TValue>"
681
+ "type": "DataGridColumn<TData, TValue>"
682
682
  },
683
683
  {
684
684
  "name": "row",
@@ -710,7 +710,7 @@
710
710
  {
711
711
  "name": "column",
712
712
  "attribute": "column",
713
- "type": "ColumnDefinition<TData, TValue>"
713
+ "type": "DataGridColumn<TData, TValue>"
714
714
  },
715
715
  {
716
716
  "name": "row",
@@ -804,7 +804,7 @@
804
804
  },
805
805
  {
806
806
  "name": "column",
807
- "type": "ColumnDefinition<unknown>"
807
+ "type": "DataGridColumn<unknown, unknown>"
808
808
  }
809
809
  ],
810
810
  "properties": [
@@ -816,7 +816,7 @@
816
816
  {
817
817
  "name": "column",
818
818
  "attribute": "column",
819
- "type": "ColumnDefinition<unknown>"
819
+ "type": "DataGridColumn<unknown, unknown>"
820
820
  }
821
821
  ]
822
822
  },
@@ -1289,9 +1289,9 @@
1289
1289
  "default": "\"start\""
1290
1290
  },
1291
1291
  {
1292
- "name": "title",
1293
- "description": "The title of the column",
1294
- "type": "string"
1292
+ "name": "description",
1293
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1294
+ "type": "string | undefined"
1295
1295
  },
1296
1296
  {
1297
1297
  "name": "dataSelector",
@@ -1356,8 +1356,8 @@
1356
1356
  "type": "DataGrid<TData, any> | undefined"
1357
1357
  },
1358
1358
  {
1359
- "name": "definition",
1360
- "type": "ColumnDefinition<TData, TValue>"
1359
+ "name": "column",
1360
+ "type": "DataGridColumn<TData, TValue>"
1361
1361
  },
1362
1362
  {
1363
1363
  "name": "width",
@@ -1388,10 +1388,10 @@
1388
1388
  "default": "\"start\""
1389
1389
  },
1390
1390
  {
1391
- "name": "title",
1392
- "attribute": "title",
1393
- "description": "The title of the column",
1394
- "type": "string"
1391
+ "name": "description",
1392
+ "attribute": "description",
1393
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1394
+ "type": "string | undefined"
1395
1395
  },
1396
1396
  {
1397
1397
  "name": "dataSelector",
@@ -1465,9 +1465,9 @@
1465
1465
  "default": "\"start\""
1466
1466
  },
1467
1467
  {
1468
- "name": "title",
1469
- "description": "The title of the column",
1470
- "type": "string"
1468
+ "name": "description",
1469
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1470
+ "type": "string | undefined"
1471
1471
  },
1472
1472
  {
1473
1473
  "name": "dataSelector",
@@ -1531,8 +1531,8 @@
1531
1531
  "type": "DataGrid<TData, any> | undefined"
1532
1532
  },
1533
1533
  {
1534
- "name": "definition",
1535
- "type": "ColumnDefinition<TData, TValue>"
1534
+ "name": "column",
1535
+ "type": "DataGridColumn<TData, TValue>"
1536
1536
  },
1537
1537
  {
1538
1538
  "name": "width",
@@ -1563,10 +1563,10 @@
1563
1563
  "default": "\"start\""
1564
1564
  },
1565
1565
  {
1566
- "name": "title",
1567
- "attribute": "title",
1568
- "description": "The title of the column",
1569
- "type": "string"
1566
+ "name": "description",
1567
+ "attribute": "description",
1568
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1569
+ "type": "string | undefined"
1570
1570
  },
1571
1571
  {
1572
1572
  "name": "dataSelector",
@@ -1640,9 +1640,9 @@
1640
1640
  "default": "\"start\""
1641
1641
  },
1642
1642
  {
1643
- "name": "title",
1644
- "description": "The title of the column",
1645
- "type": "string"
1643
+ "name": "description",
1644
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1645
+ "type": "string | undefined"
1646
1646
  },
1647
1647
  {
1648
1648
  "name": "dataSelector",
@@ -1690,8 +1690,8 @@
1690
1690
  "type": "DataGrid<TData, any> | undefined"
1691
1691
  },
1692
1692
  {
1693
- "name": "definition",
1694
- "type": "ColumnDefinition<TData, TValue>"
1693
+ "name": "column",
1694
+ "type": "DataGridColumn<TData, TValue>"
1695
1695
  },
1696
1696
  {
1697
1697
  "name": "width",
@@ -1722,10 +1722,10 @@
1722
1722
  "default": "\"start\""
1723
1723
  },
1724
1724
  {
1725
- "name": "title",
1726
- "attribute": "title",
1727
- "description": "The title of the column",
1728
- "type": "string"
1725
+ "name": "description",
1726
+ "attribute": "description",
1727
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1728
+ "type": "string | undefined"
1729
1729
  },
1730
1730
  {
1731
1731
  "name": "dataSelector",
@@ -1788,9 +1788,9 @@
1788
1788
  "default": "\"start\""
1789
1789
  },
1790
1790
  {
1791
- "name": "title",
1792
- "description": "The title of the column",
1793
- "type": "string"
1791
+ "name": "description",
1792
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1793
+ "type": "string | undefined"
1794
1794
  },
1795
1795
  {
1796
1796
  "name": "dataSelector",
@@ -1827,8 +1827,8 @@
1827
1827
  "type": "DataGrid<TData, any> | undefined"
1828
1828
  },
1829
1829
  {
1830
- "name": "definition",
1831
- "type": "ColumnDefinition<TData, TValue>"
1830
+ "name": "column",
1831
+ "type": "DataGridColumn<TData, TValue>"
1832
1832
  },
1833
1833
  {
1834
1834
  "name": "width",
@@ -1859,10 +1859,10 @@
1859
1859
  "default": "\"start\""
1860
1860
  },
1861
1861
  {
1862
- "name": "title",
1863
- "attribute": "title",
1864
- "description": "The title of the column",
1865
- "type": "string"
1862
+ "name": "description",
1863
+ "attribute": "description",
1864
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1865
+ "type": "string | undefined"
1866
1866
  },
1867
1867
  {
1868
1868
  "name": "dataSelector",
@@ -1936,9 +1936,9 @@
1936
1936
  "default": "\"start\""
1937
1937
  },
1938
1938
  {
1939
- "name": "title",
1940
- "description": "The title of the column",
1941
- "type": "string"
1939
+ "name": "description",
1940
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1941
+ "type": "string | undefined"
1942
1942
  },
1943
1943
  {
1944
1944
  "name": "dataSelector",
@@ -1997,8 +1997,8 @@
1997
1997
  "type": "DataGrid<TData, any> | undefined"
1998
1998
  },
1999
1999
  {
2000
- "name": "definition",
2001
- "type": "ColumnDefinition<TData, TValue>"
2000
+ "name": "column",
2001
+ "type": "DataGridColumn<TData, TValue>"
2002
2002
  },
2003
2003
  {
2004
2004
  "name": "width",
@@ -2029,10 +2029,10 @@
2029
2029
  "default": "\"start\""
2030
2030
  },
2031
2031
  {
2032
- "name": "title",
2033
- "attribute": "title",
2034
- "description": "The title of the column",
2035
- "type": "string"
2032
+ "name": "description",
2033
+ "attribute": "description",
2034
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2035
+ "type": "string | undefined"
2036
2036
  },
2037
2037
  {
2038
2038
  "name": "dataSelector",
@@ -2106,9 +2106,9 @@
2106
2106
  "default": "\"start\""
2107
2107
  },
2108
2108
  {
2109
- "name": "title",
2110
- "description": "The title of the column",
2111
- "type": "string"
2109
+ "name": "description",
2110
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2111
+ "type": "string | undefined"
2112
2112
  },
2113
2113
  {
2114
2114
  "name": "dataSelector",
@@ -2167,8 +2167,8 @@
2167
2167
  "type": "DataGrid<TData, any> | undefined"
2168
2168
  },
2169
2169
  {
2170
- "name": "definition",
2171
- "type": "ColumnDefinition<TData, TValue>"
2170
+ "name": "column",
2171
+ "type": "DataGridColumn<TData, TValue>"
2172
2172
  },
2173
2173
  {
2174
2174
  "name": "width",
@@ -2199,10 +2199,10 @@
2199
2199
  "default": "\"start\""
2200
2200
  },
2201
2201
  {
2202
- "name": "title",
2203
- "attribute": "title",
2204
- "description": "The title of the column",
2205
- "type": "string"
2202
+ "name": "description",
2203
+ "attribute": "description",
2204
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2205
+ "type": "string | undefined"
2206
2206
  },
2207
2207
  {
2208
2208
  "name": "dataSelector",
@@ -2276,9 +2276,9 @@
2276
2276
  "default": "\"start\""
2277
2277
  },
2278
2278
  {
2279
- "name": "title",
2280
- "description": "The title of the column",
2281
- "type": "string"
2279
+ "name": "description",
2280
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2281
+ "type": "string | undefined"
2282
2282
  },
2283
2283
  {
2284
2284
  "name": "dataSelector",
@@ -2337,8 +2337,8 @@
2337
2337
  "type": "DataGrid<TData, any> | undefined"
2338
2338
  },
2339
2339
  {
2340
- "name": "definition",
2341
- "type": "ColumnDefinition<TData, TValue>"
2340
+ "name": "column",
2341
+ "type": "DataGridColumn<TData, TValue>"
2342
2342
  },
2343
2343
  {
2344
2344
  "name": "width",
@@ -2369,10 +2369,10 @@
2369
2369
  "default": "\"start\""
2370
2370
  },
2371
2371
  {
2372
- "name": "title",
2373
- "attribute": "title",
2374
- "description": "The title of the column",
2375
- "type": "string"
2372
+ "name": "description",
2373
+ "attribute": "description",
2374
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2375
+ "type": "string | undefined"
2376
2376
  },
2377
2377
  {
2378
2378
  "name": "dataSelector",
@@ -2446,9 +2446,9 @@
2446
2446
  "default": "\"start\""
2447
2447
  },
2448
2448
  {
2449
- "name": "title",
2450
- "description": "The title of the column",
2451
- "type": "string"
2449
+ "name": "description",
2450
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2451
+ "type": "string | undefined"
2452
2452
  },
2453
2453
  {
2454
2454
  "name": "dataSelector",
@@ -2507,8 +2507,8 @@
2507
2507
  "type": "DataGrid<TData, any> | undefined"
2508
2508
  },
2509
2509
  {
2510
- "name": "definition",
2511
- "type": "ColumnDefinition<TData, TValue>"
2510
+ "name": "column",
2511
+ "type": "DataGridColumn<TData, TValue>"
2512
2512
  },
2513
2513
  {
2514
2514
  "name": "width",
@@ -2539,10 +2539,10 @@
2539
2539
  "default": "\"start\""
2540
2540
  },
2541
2541
  {
2542
- "name": "title",
2543
- "attribute": "title",
2544
- "description": "The title of the column",
2545
- "type": "string"
2542
+ "name": "description",
2543
+ "attribute": "description",
2544
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2545
+ "type": "string | undefined"
2546
2546
  },
2547
2547
  {
2548
2548
  "name": "dataSelector",
@@ -2620,9 +2620,9 @@
2620
2620
  "default": "\"end\""
2621
2621
  },
2622
2622
  {
2623
- "name": "title",
2624
- "description": "The title of the column",
2625
- "type": "string"
2623
+ "name": "description",
2624
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2625
+ "type": "string | undefined"
2626
2626
  },
2627
2627
  {
2628
2628
  "name": "dataSelector",
@@ -2681,8 +2681,8 @@
2681
2681
  "type": "DataGrid<TData, any> | undefined"
2682
2682
  },
2683
2683
  {
2684
- "name": "definition",
2685
- "type": "{ sumHeading: string | undefined; getSumTemplate: any; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | SubKeyPathOf<...> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never; ... 7 more ...; getEditContentTemplate?(..."
2684
+ "name": "column",
2685
+ "type": "DataGridColumn<TData, unknown>"
2686
2686
  },
2687
2687
  {
2688
2688
  "name": "width",
@@ -2713,10 +2713,10 @@
2713
2713
  "default": "\"end\""
2714
2714
  },
2715
2715
  {
2716
- "name": "title",
2717
- "attribute": "title",
2718
- "description": "The title of the column",
2719
- "type": "string"
2716
+ "name": "description",
2717
+ "attribute": "description",
2718
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2719
+ "type": "string | undefined"
2720
2720
  },
2721
2721
  {
2722
2722
  "name": "dataSelector",
@@ -2784,9 +2784,9 @@
2784
2784
  "default": "\"end\""
2785
2785
  },
2786
2786
  {
2787
- "name": "title",
2788
- "description": "The title of the column",
2789
- "type": "string"
2787
+ "name": "description",
2788
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2789
+ "type": "string | undefined"
2790
2790
  },
2791
2791
  {
2792
2792
  "name": "dataSelector",
@@ -2829,8 +2829,8 @@
2829
2829
  "type": "DataGrid<TData, any> | undefined"
2830
2830
  },
2831
2831
  {
2832
- "name": "definition",
2833
- "type": "{ sumHeading: string | undefined; getSumTemplate: any; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | SubKeyPathOf<...> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never; ... 7 more ...; getEditContentTemplate?(..."
2832
+ "name": "column",
2833
+ "type": "DataGridColumn<TData, unknown>"
2834
2834
  },
2835
2835
  {
2836
2836
  "name": "width",
@@ -2861,10 +2861,10 @@
2861
2861
  "default": "\"end\""
2862
2862
  },
2863
2863
  {
2864
- "name": "title",
2865
- "attribute": "title",
2866
- "description": "The title of the column",
2867
- "type": "string"
2864
+ "name": "description",
2865
+ "attribute": "description",
2866
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2867
+ "type": "string | undefined"
2868
2868
  },
2869
2869
  {
2870
2870
  "name": "dataSelector",
@@ -2932,9 +2932,9 @@
2932
2932
  "default": "\"end\""
2933
2933
  },
2934
2934
  {
2935
- "name": "title",
2936
- "description": "The title of the column",
2937
- "type": "string"
2935
+ "name": "description",
2936
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2937
+ "type": "string | undefined"
2938
2938
  },
2939
2939
  {
2940
2940
  "name": "dataSelector",
@@ -2977,8 +2977,8 @@
2977
2977
  "type": "DataGrid<TData, any> | undefined"
2978
2978
  },
2979
2979
  {
2980
- "name": "definition",
2981
- "type": "{ sumHeading: string | undefined; getSumTemplate: any; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | SubKeyPathOf<...> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never; ... 7 more ...; getEditContentTemplate?(..."
2980
+ "name": "column",
2981
+ "type": "DataGridColumn<TData, unknown>"
2982
2982
  },
2983
2983
  {
2984
2984
  "name": "width",
@@ -3009,10 +3009,10 @@
3009
3009
  "default": "\"end\""
3010
3010
  },
3011
3011
  {
3012
- "name": "title",
3013
- "attribute": "title",
3014
- "description": "The title of the column",
3015
- "type": "string"
3012
+ "name": "description",
3013
+ "attribute": "description",
3014
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
3015
+ "type": "string | undefined"
3016
3016
  },
3017
3017
  {
3018
3018
  "name": "dataSelector",
@@ -3079,7 +3079,7 @@
3079
3079
  {
3080
3080
  "name": "columns",
3081
3081
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
3082
- "type": "ColumnDefinition<TData>[]"
3082
+ "type": "DataGridColumn<TData, unknown>[]"
3083
3083
  },
3084
3084
  {
3085
3085
  "name": "headerHidden",
@@ -3240,7 +3240,7 @@
3240
3240
  },
3241
3241
  {
3242
3242
  "name": "columnsChange",
3243
- "type": "EventDispatcher<ColumnDefinition<TData>[]>"
3243
+ "type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
3244
3244
  },
3245
3245
  {
3246
3246
  "name": "sidePanelOpen",
@@ -3400,7 +3400,7 @@
3400
3400
  },
3401
3401
  {
3402
3402
  "name": "visibleColumns",
3403
- "type": "ColumnDefinition<TData>[]"
3403
+ "type": "DataGridColumn<TData, unknown>[]"
3404
3404
  },
3405
3405
  {
3406
3406
  "name": "data",
@@ -3412,7 +3412,7 @@
3412
3412
  "name": "columns",
3413
3413
  "attribute": "columns",
3414
3414
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
3415
- "type": "ColumnDefinition<TData>[]"
3415
+ "type": "DataGridColumn<TData, unknown>[]"
3416
3416
  },
3417
3417
  {
3418
3418
  "name": "headerHidden",
@@ -3596,7 +3596,7 @@
3596
3596
  },
3597
3597
  {
3598
3598
  "name": "columnsChange",
3599
- "type": "CustomEvent<ColumnDefinition<TData>[]>"
3599
+ "type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
3600
3600
  },
3601
3601
  {
3602
3602
  "name": "sidePanelOpen",
@@ -3694,7 +3694,7 @@
3694
3694
  },
3695
3695
  {
3696
3696
  "name": "column",
3697
- "type": "ColumnDefinition<TData, TValue>"
3697
+ "type": "DataGridColumn<TData, TValue>"
3698
3698
  },
3699
3699
  {
3700
3700
  "name": "row",
@@ -3726,7 +3726,7 @@
3726
3726
  {
3727
3727
  "name": "column",
3728
3728
  "attribute": "column",
3729
- "type": "ColumnDefinition<TData, TValue>"
3729
+ "type": "DataGridColumn<TData, TValue>"
3730
3730
  },
3731
3731
  {
3732
3732
  "name": "row",
@@ -3797,7 +3797,7 @@
3797
3797
  },
3798
3798
  {
3799
3799
  "name": "column",
3800
- "type": "ColumnDefinition<unknown>"
3800
+ "type": "DataGridColumn<unknown, unknown>"
3801
3801
  }
3802
3802
  ]
3803
3803
  },
@@ -4253,9 +4253,9 @@
4253
4253
  "type": "DataGridColumnAlignment"
4254
4254
  },
4255
4255
  {
4256
- "name": "title",
4257
- "description": "The title of the column",
4258
- "type": "string"
4256
+ "name": "description",
4257
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4258
+ "type": "string | undefined"
4259
4259
  },
4260
4260
  {
4261
4261
  "name": "dataSelector",
@@ -4312,8 +4312,8 @@
4312
4312
  "type": "DataGrid<TData, any> | undefined"
4313
4313
  },
4314
4314
  {
4315
- "name": "definition",
4316
- "type": "ColumnDefinition<TData, TValue>"
4315
+ "name": "column",
4316
+ "type": "DataGridColumn<TData, TValue>"
4317
4317
  },
4318
4318
  {
4319
4319
  "name": "width",
@@ -4340,10 +4340,10 @@
4340
4340
  "type": "DataGridColumnAlignment"
4341
4341
  },
4342
4342
  {
4343
- "name": "title",
4344
- "attribute": "title",
4345
- "description": "The title of the column",
4346
- "type": "string"
4343
+ "name": "description",
4344
+ "attribute": "description",
4345
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4346
+ "type": "string | undefined"
4347
4347
  },
4348
4348
  {
4349
4349
  "name": "dataSelector",
@@ -4401,9 +4401,9 @@
4401
4401
  "type": "DataGridColumnAlignment"
4402
4402
  },
4403
4403
  {
4404
- "name": "title",
4405
- "description": "The title of the column",
4406
- "type": "string"
4404
+ "name": "description",
4405
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4406
+ "type": "string | undefined"
4407
4407
  },
4408
4408
  {
4409
4409
  "name": "dataSelector",
@@ -4458,8 +4458,8 @@
4458
4458
  "type": "DataGrid<TData, any> | undefined"
4459
4459
  },
4460
4460
  {
4461
- "name": "definition",
4462
- "type": "ColumnDefinition<TData, TValue>"
4461
+ "name": "column",
4462
+ "type": "DataGridColumn<TData, TValue>"
4463
4463
  },
4464
4464
  {
4465
4465
  "name": "width",
@@ -4486,10 +4486,10 @@
4486
4486
  "type": "DataGridColumnAlignment"
4487
4487
  },
4488
4488
  {
4489
- "name": "title",
4490
- "attribute": "title",
4491
- "description": "The title of the column",
4492
- "type": "string"
4489
+ "name": "description",
4490
+ "attribute": "description",
4491
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4492
+ "type": "string | undefined"
4493
4493
  },
4494
4494
  {
4495
4495
  "name": "dataSelector",
@@ -4553,9 +4553,9 @@
4553
4553
  "type": "DataGridColumnAlignment"
4554
4554
  },
4555
4555
  {
4556
- "name": "title",
4557
- "description": "The title of the column",
4558
- "type": "string"
4556
+ "name": "description",
4557
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4558
+ "type": "string | undefined"
4559
4559
  },
4560
4560
  {
4561
4561
  "name": "dataSelector",
@@ -4598,8 +4598,8 @@
4598
4598
  "type": "DataGrid<TData, any> | undefined"
4599
4599
  },
4600
4600
  {
4601
- "name": "definition",
4602
- "type": "ColumnDefinition<TData, TValue>"
4601
+ "name": "column",
4602
+ "type": "DataGridColumn<TData, TValue>"
4603
4603
  },
4604
4604
  {
4605
4605
  "name": "width",
@@ -4626,10 +4626,10 @@
4626
4626
  "type": "DataGridColumnAlignment"
4627
4627
  },
4628
4628
  {
4629
- "name": "title",
4630
- "attribute": "title",
4631
- "description": "The title of the column",
4632
- "type": "string"
4629
+ "name": "description",
4630
+ "attribute": "description",
4631
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4632
+ "type": "string | undefined"
4633
4633
  },
4634
4634
  {
4635
4635
  "name": "dataSelector",
@@ -4682,9 +4682,9 @@
4682
4682
  "type": "DataGridColumnAlignment"
4683
4683
  },
4684
4684
  {
4685
- "name": "title",
4686
- "description": "The title of the column",
4687
- "type": "string"
4685
+ "name": "description",
4686
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4687
+ "type": "string | undefined"
4688
4688
  },
4689
4689
  {
4690
4690
  "name": "dataSelector",
@@ -4717,8 +4717,8 @@
4717
4717
  "type": "DataGrid<TData, any> | undefined"
4718
4718
  },
4719
4719
  {
4720
- "name": "definition",
4721
- "type": "ColumnDefinition<TData, TValue>"
4720
+ "name": "column",
4721
+ "type": "DataGridColumn<TData, TValue>"
4722
4722
  },
4723
4723
  {
4724
4724
  "name": "width",
@@ -4745,10 +4745,10 @@
4745
4745
  "type": "DataGridColumnAlignment"
4746
4746
  },
4747
4747
  {
4748
- "name": "title",
4749
- "attribute": "title",
4750
- "description": "The title of the column",
4751
- "type": "string"
4748
+ "name": "description",
4749
+ "attribute": "description",
4750
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4751
+ "type": "string | undefined"
4752
4752
  },
4753
4753
  {
4754
4754
  "name": "dataSelector",
@@ -4811,9 +4811,9 @@
4811
4811
  "type": "DataGridColumnAlignment"
4812
4812
  },
4813
4813
  {
4814
- "name": "title",
4815
- "description": "The title of the column",
4816
- "type": "string"
4814
+ "name": "description",
4815
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4816
+ "type": "string | undefined"
4817
4817
  },
4818
4818
  {
4819
4819
  "name": "dataSelector",
@@ -4866,8 +4866,8 @@
4866
4866
  "type": "DataGrid<TData, any> | undefined"
4867
4867
  },
4868
4868
  {
4869
- "name": "definition",
4870
- "type": "ColumnDefinition<TData, TValue>"
4869
+ "name": "column",
4870
+ "type": "DataGridColumn<TData, TValue>"
4871
4871
  },
4872
4872
  {
4873
4873
  "name": "width",
@@ -4894,10 +4894,10 @@
4894
4894
  "type": "DataGridColumnAlignment"
4895
4895
  },
4896
4896
  {
4897
- "name": "title",
4898
- "attribute": "title",
4899
- "description": "The title of the column",
4900
- "type": "string"
4897
+ "name": "description",
4898
+ "attribute": "description",
4899
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4900
+ "type": "string | undefined"
4901
4901
  },
4902
4902
  {
4903
4903
  "name": "dataSelector",
@@ -4960,9 +4960,9 @@
4960
4960
  "type": "DataGridColumnAlignment"
4961
4961
  },
4962
4962
  {
4963
- "name": "title",
4964
- "description": "The title of the column",
4965
- "type": "string"
4963
+ "name": "description",
4964
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4965
+ "type": "string | undefined"
4966
4966
  },
4967
4967
  {
4968
4968
  "name": "dataSelector",
@@ -5015,8 +5015,8 @@
5015
5015
  "type": "DataGrid<TData, any> | undefined"
5016
5016
  },
5017
5017
  {
5018
- "name": "definition",
5019
- "type": "ColumnDefinition<TData, TValue>"
5018
+ "name": "column",
5019
+ "type": "DataGridColumn<TData, TValue>"
5020
5020
  },
5021
5021
  {
5022
5022
  "name": "width",
@@ -5043,10 +5043,10 @@
5043
5043
  "type": "DataGridColumnAlignment"
5044
5044
  },
5045
5045
  {
5046
- "name": "title",
5047
- "attribute": "title",
5048
- "description": "The title of the column",
5049
- "type": "string"
5046
+ "name": "description",
5047
+ "attribute": "description",
5048
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5049
+ "type": "string | undefined"
5050
5050
  },
5051
5051
  {
5052
5052
  "name": "dataSelector",
@@ -5109,9 +5109,9 @@
5109
5109
  "type": "DataGridColumnAlignment"
5110
5110
  },
5111
5111
  {
5112
- "name": "title",
5113
- "description": "The title of the column",
5114
- "type": "string"
5112
+ "name": "description",
5113
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5114
+ "type": "string | undefined"
5115
5115
  },
5116
5116
  {
5117
5117
  "name": "dataSelector",
@@ -5164,8 +5164,8 @@
5164
5164
  "type": "DataGrid<TData, any> | undefined"
5165
5165
  },
5166
5166
  {
5167
- "name": "definition",
5168
- "type": "ColumnDefinition<TData, TValue>"
5167
+ "name": "column",
5168
+ "type": "DataGridColumn<TData, TValue>"
5169
5169
  },
5170
5170
  {
5171
5171
  "name": "width",
@@ -5192,10 +5192,10 @@
5192
5192
  "type": "DataGridColumnAlignment"
5193
5193
  },
5194
5194
  {
5195
- "name": "title",
5196
- "attribute": "title",
5197
- "description": "The title of the column",
5198
- "type": "string"
5195
+ "name": "description",
5196
+ "attribute": "description",
5197
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5198
+ "type": "string | undefined"
5199
5199
  },
5200
5200
  {
5201
5201
  "name": "dataSelector",
@@ -5258,9 +5258,9 @@
5258
5258
  "type": "DataGridColumnAlignment"
5259
5259
  },
5260
5260
  {
5261
- "name": "title",
5262
- "description": "The title of the column",
5263
- "type": "string"
5261
+ "name": "description",
5262
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5263
+ "type": "string | undefined"
5264
5264
  },
5265
5265
  {
5266
5266
  "name": "dataSelector",
@@ -5313,8 +5313,8 @@
5313
5313
  "type": "DataGrid<TData, any> | undefined"
5314
5314
  },
5315
5315
  {
5316
- "name": "definition",
5317
- "type": "ColumnDefinition<TData, TValue>"
5316
+ "name": "column",
5317
+ "type": "DataGridColumn<TData, TValue>"
5318
5318
  },
5319
5319
  {
5320
5320
  "name": "width",
@@ -5341,10 +5341,10 @@
5341
5341
  "type": "DataGridColumnAlignment"
5342
5342
  },
5343
5343
  {
5344
- "name": "title",
5345
- "attribute": "title",
5346
- "description": "The title of the column",
5347
- "type": "string"
5344
+ "name": "description",
5345
+ "attribute": "description",
5346
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5347
+ "type": "string | undefined"
5348
5348
  },
5349
5349
  {
5350
5350
  "name": "dataSelector",
@@ -5407,9 +5407,9 @@
5407
5407
  "type": "DataGridColumnAlignment"
5408
5408
  },
5409
5409
  {
5410
- "name": "title",
5411
- "description": "The title of the column",
5412
- "type": "string"
5410
+ "name": "description",
5411
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5412
+ "type": "string | undefined"
5413
5413
  },
5414
5414
  {
5415
5415
  "name": "dataSelector",
@@ -5462,8 +5462,8 @@
5462
5462
  "type": "DataGrid<TData, any> | undefined"
5463
5463
  },
5464
5464
  {
5465
- "name": "definition",
5466
- "type": "{ sumHeading: string | undefined; getSumTemplate: (sum: number) => HTMLTemplateResult; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | (Extract<...> extends infer T ? T extends Extract<...> ? T extends keyof TData ? `${T}.${obje..."
5465
+ "name": "column",
5466
+ "type": "DataGridColumn<TData, unknown>"
5467
5467
  },
5468
5468
  {
5469
5469
  "name": "width",
@@ -5490,10 +5490,10 @@
5490
5490
  "type": "DataGridColumnAlignment"
5491
5491
  },
5492
5492
  {
5493
- "name": "title",
5494
- "attribute": "title",
5495
- "description": "The title of the column",
5496
- "type": "string"
5493
+ "name": "description",
5494
+ "attribute": "description",
5495
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5496
+ "type": "string | undefined"
5497
5497
  },
5498
5498
  {
5499
5499
  "name": "dataSelector",
@@ -5546,9 +5546,9 @@
5546
5546
  "type": "DataGridColumnAlignment"
5547
5547
  },
5548
5548
  {
5549
- "name": "title",
5550
- "description": "The title of the column",
5551
- "type": "string"
5549
+ "name": "description",
5550
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5551
+ "type": "string | undefined"
5552
5552
  },
5553
5553
  {
5554
5554
  "name": "dataSelector",
@@ -5585,8 +5585,8 @@
5585
5585
  "type": "DataGrid<TData, any> | undefined"
5586
5586
  },
5587
5587
  {
5588
- "name": "definition",
5589
- "type": "{ sumHeading: string | undefined; getSumTemplate: (sum: number) => HTMLTemplateResult; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | (Extract<...> extends infer T ? T extends Extract<...> ? T extends keyof TData ? `${T}.${obje..."
5588
+ "name": "column",
5589
+ "type": "DataGridColumn<TData, unknown>"
5590
5590
  },
5591
5591
  {
5592
5592
  "name": "width",
@@ -5613,10 +5613,10 @@
5613
5613
  "type": "DataGridColumnAlignment"
5614
5614
  },
5615
5615
  {
5616
- "name": "title",
5617
- "attribute": "title",
5618
- "description": "The title of the column",
5619
- "type": "string"
5616
+ "name": "description",
5617
+ "attribute": "description",
5618
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5619
+ "type": "string | undefined"
5620
5620
  },
5621
5621
  {
5622
5622
  "name": "dataSelector",
@@ -5669,9 +5669,9 @@
5669
5669
  "type": "DataGridColumnAlignment"
5670
5670
  },
5671
5671
  {
5672
- "name": "title",
5673
- "description": "The title of the column",
5674
- "type": "string"
5672
+ "name": "description",
5673
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5674
+ "type": "string | undefined"
5675
5675
  },
5676
5676
  {
5677
5677
  "name": "dataSelector",
@@ -5708,8 +5708,8 @@
5708
5708
  "type": "DataGrid<TData, any> | undefined"
5709
5709
  },
5710
5710
  {
5711
- "name": "definition",
5712
- "type": "{ sumHeading: string | undefined; getSumTemplate: (sum: number) => HTMLTemplateResult; heading: string; title?: string | undefined; dataSelector: object extends TData ? string : TData extends readonly any[] ? Extract<...> | (Extract<...> extends infer T ? T extends Extract<...> ? T extends keyof TData ? `${T}.${obje..."
5711
+ "name": "column",
5712
+ "type": "DataGridColumn<TData, unknown>"
5713
5713
  },
5714
5714
  {
5715
5715
  "name": "width",
@@ -5736,10 +5736,10 @@
5736
5736
  "type": "DataGridColumnAlignment"
5737
5737
  },
5738
5738
  {
5739
- "name": "title",
5740
- "attribute": "title",
5741
- "description": "The title of the column",
5742
- "type": "string"
5739
+ "name": "description",
5740
+ "attribute": "description",
5741
+ "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5742
+ "type": "string | undefined"
5743
5743
  },
5744
5744
  {
5745
5745
  "name": "dataSelector",