@3mo/data-grid 0.21.5 → 0.22.0

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.
@@ -14,7 +14,7 @@
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": "DataGridColumn<TData, unknown>[]",
17
+ "type": "DataGridColumn<TData, any>[]",
18
18
  "default": "\"new Array<DataGridColumn<TData>>()\""
19
19
  },
20
20
  {
@@ -188,7 +188,7 @@
188
188
  },
189
189
  {
190
190
  "name": "columnsChange",
191
- "type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
191
+ "type": "EventDispatcher<DataGridColumn<TData, any>[]>"
192
192
  },
193
193
  {
194
194
  "name": "sidePanelOpen",
@@ -248,11 +248,11 @@
248
248
  },
249
249
  {
250
250
  "name": "extractedColumns",
251
- "type": "DataGridColumn<TData, unknown>[]"
251
+ "type": "DataGridColumn<TData, any>[]"
252
252
  },
253
253
  {
254
254
  "name": "visibleColumns",
255
- "type": "DataGridColumn<TData, unknown>[]"
255
+ "type": "DataGridColumn<TData, any>[]"
256
256
  },
257
257
  {
258
258
  "name": "hasContextMenu",
@@ -377,7 +377,7 @@
377
377
  "name": "columns",
378
378
  "attribute": "columns",
379
379
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
380
- "type": "DataGridColumn<TData, unknown>[]",
380
+ "type": "DataGridColumn<TData, any>[]",
381
381
  "default": "\"new Array<DataGridColumn<TData>>()\""
382
382
  },
383
383
  {
@@ -572,7 +572,7 @@
572
572
  },
573
573
  {
574
574
  "name": "columnsChange",
575
- "type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
575
+ "type": "CustomEvent<DataGridColumn<TData, any>[]>"
576
576
  },
577
577
  {
578
578
  "name": "sidePanelOpen",
@@ -729,7 +729,7 @@
729
729
  "attributes": [
730
730
  {
731
731
  "name": "column",
732
- "type": "DataGridColumn<unknown, unknown>"
732
+ "type": "DataGridColumn<unknown, any>"
733
733
  },
734
734
  {
735
735
  "name": "menuOpen",
@@ -741,7 +741,7 @@
741
741
  {
742
742
  "name": "column",
743
743
  "attribute": "column",
744
- "type": "DataGridColumn<unknown, unknown>"
744
+ "type": "DataGridColumn<unknown, any>"
745
745
  },
746
746
  {
747
747
  "name": "menuOpen",
@@ -840,7 +840,7 @@
840
840
  },
841
841
  {
842
842
  "name": "column",
843
- "type": "DataGridColumn<unknown, unknown>"
843
+ "type": "DataGridColumn<unknown, any>"
844
844
  }
845
845
  ],
846
846
  "properties": [
@@ -852,7 +852,7 @@
852
852
  {
853
853
  "name": "column",
854
854
  "attribute": "column",
855
- "type": "DataGridColumn<unknown, unknown>"
855
+ "type": "DataGridColumn<unknown, any>"
856
856
  }
857
857
  ]
858
858
  },
@@ -1054,6 +1054,11 @@
1054
1054
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1055
1055
  "type": "DataGridColumnSticky | undefined"
1056
1056
  },
1057
+ {
1058
+ "name": "contentStyle",
1059
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1060
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1061
+ },
1057
1062
  {
1058
1063
  "name": "getContentTemplate",
1059
1064
  "description": "The content template of the column."
@@ -1166,6 +1171,12 @@
1166
1171
  "attribute": "sticky",
1167
1172
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1168
1173
  "type": "DataGridColumnSticky | undefined"
1174
+ },
1175
+ {
1176
+ "name": "contentStyle",
1177
+ "attribute": "contentStyle",
1178
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1179
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1169
1180
  }
1170
1181
  ]
1171
1182
  },
@@ -1233,6 +1244,11 @@
1233
1244
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1234
1245
  "type": "DataGridColumnSticky | undefined"
1235
1246
  },
1247
+ {
1248
+ "name": "contentStyle",
1249
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1250
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1251
+ },
1236
1252
  {
1237
1253
  "name": "getContentTemplate",
1238
1254
  "description": "The content template of the column."
@@ -1317,6 +1333,12 @@
1317
1333
  "attribute": "sticky",
1318
1334
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1319
1335
  "type": "DataGridColumnSticky | undefined"
1336
+ },
1337
+ {
1338
+ "name": "contentStyle",
1339
+ "attribute": "contentStyle",
1340
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1341
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1320
1342
  }
1321
1343
  ]
1322
1344
  },
@@ -1401,6 +1423,11 @@
1401
1423
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1402
1424
  "type": "DataGridColumnSticky | undefined"
1403
1425
  },
1426
+ {
1427
+ "name": "contentStyle",
1428
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1429
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1430
+ },
1404
1431
  {
1405
1432
  "name": "getContentTemplate",
1406
1433
  "description": "The content template of the column.",
@@ -1512,6 +1539,12 @@
1512
1539
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1513
1540
  "type": "DataGridColumnSticky | undefined"
1514
1541
  },
1542
+ {
1543
+ "name": "contentStyle",
1544
+ "attribute": "contentStyle",
1545
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1546
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1547
+ },
1515
1548
  {
1516
1549
  "name": "getContentTemplate",
1517
1550
  "attribute": "getContentTemplate",
@@ -1596,6 +1629,11 @@
1596
1629
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1597
1630
  "type": "DataGridColumnSticky | undefined"
1598
1631
  },
1632
+ {
1633
+ "name": "contentStyle",
1634
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1635
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1636
+ },
1599
1637
  {
1600
1638
  "name": "getContentTemplate",
1601
1639
  "description": "The content template of the column."
@@ -1686,6 +1724,12 @@
1686
1724
  "attribute": "sticky",
1687
1725
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1688
1726
  "type": "DataGridColumnSticky | undefined"
1727
+ },
1728
+ {
1729
+ "name": "contentStyle",
1730
+ "attribute": "contentStyle",
1731
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1732
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1689
1733
  }
1690
1734
  ]
1691
1735
  },
@@ -1753,6 +1797,11 @@
1753
1797
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1754
1798
  "type": "DataGridColumnSticky | undefined"
1755
1799
  },
1800
+ {
1801
+ "name": "contentStyle",
1802
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1803
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1804
+ },
1756
1805
  {
1757
1806
  "name": "getContentTemplate",
1758
1807
  "description": "The content template of the column."
@@ -1837,6 +1886,12 @@
1837
1886
  "attribute": "sticky",
1838
1887
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1839
1888
  "type": "DataGridColumnSticky | undefined"
1889
+ },
1890
+ {
1891
+ "name": "contentStyle",
1892
+ "attribute": "contentStyle",
1893
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1894
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1840
1895
  }
1841
1896
  ]
1842
1897
  },
@@ -1921,6 +1976,11 @@
1921
1976
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1922
1977
  "type": "DataGridColumnSticky | undefined"
1923
1978
  },
1979
+ {
1980
+ "name": "contentStyle",
1981
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
1982
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
1983
+ },
1924
1984
  {
1925
1985
  "name": "getContentTemplate",
1926
1986
  "description": "The content template of the column."
@@ -2030,6 +2090,12 @@
2030
2090
  "attribute": "sticky",
2031
2091
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2032
2092
  "type": "DataGridColumnSticky | undefined"
2093
+ },
2094
+ {
2095
+ "name": "contentStyle",
2096
+ "attribute": "contentStyle",
2097
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2098
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2033
2099
  }
2034
2100
  ]
2035
2101
  },
@@ -2114,6 +2180,11 @@
2114
2180
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2115
2181
  "type": "DataGridColumnSticky | undefined"
2116
2182
  },
2183
+ {
2184
+ "name": "contentStyle",
2185
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2186
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2187
+ },
2117
2188
  {
2118
2189
  "name": "getContentTemplate",
2119
2190
  "description": "The content template of the column."
@@ -2223,6 +2294,12 @@
2223
2294
  "attribute": "sticky",
2224
2295
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2225
2296
  "type": "DataGridColumnSticky | undefined"
2297
+ },
2298
+ {
2299
+ "name": "contentStyle",
2300
+ "attribute": "contentStyle",
2301
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2302
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2226
2303
  }
2227
2304
  ]
2228
2305
  },
@@ -2307,6 +2384,11 @@
2307
2384
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2308
2385
  "type": "DataGridColumnSticky | undefined"
2309
2386
  },
2387
+ {
2388
+ "name": "contentStyle",
2389
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2390
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2391
+ },
2310
2392
  {
2311
2393
  "name": "getContentTemplate",
2312
2394
  "description": "The content template of the column."
@@ -2416,6 +2498,12 @@
2416
2498
  "attribute": "sticky",
2417
2499
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2418
2500
  "type": "DataGridColumnSticky | undefined"
2501
+ },
2502
+ {
2503
+ "name": "contentStyle",
2504
+ "attribute": "contentStyle",
2505
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2506
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2419
2507
  }
2420
2508
  ]
2421
2509
  },
@@ -2500,6 +2588,11 @@
2500
2588
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2501
2589
  "type": "DataGridColumnSticky | undefined"
2502
2590
  },
2591
+ {
2592
+ "name": "contentStyle",
2593
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2594
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2595
+ },
2503
2596
  {
2504
2597
  "name": "getContentTemplate",
2505
2598
  "description": "The content template of the column."
@@ -2609,6 +2702,12 @@
2609
2702
  "attribute": "sticky",
2610
2703
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2611
2704
  "type": "DataGridColumnSticky | undefined"
2705
+ },
2706
+ {
2707
+ "name": "contentStyle",
2708
+ "attribute": "contentStyle",
2709
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2710
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2612
2711
  }
2613
2712
  ]
2614
2713
  },
@@ -2715,6 +2814,11 @@
2715
2814
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2716
2815
  "type": "DataGridColumnSticky | undefined"
2717
2816
  },
2817
+ {
2818
+ "name": "contentStyle",
2819
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2820
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2821
+ },
2718
2822
  {
2719
2823
  "name": "getContentTemplate",
2720
2824
  "description": "The content template of the column."
@@ -2851,6 +2955,12 @@
2851
2955
  "attribute": "sticky",
2852
2956
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2853
2957
  "type": "DataGridColumnSticky | undefined"
2958
+ },
2959
+ {
2960
+ "name": "contentStyle",
2961
+ "attribute": "contentStyle",
2962
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
2963
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
2854
2964
  }
2855
2965
  ]
2856
2966
  },
@@ -2947,6 +3057,11 @@
2947
3057
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2948
3058
  "type": "DataGridColumnSticky | undefined"
2949
3059
  },
3060
+ {
3061
+ "name": "contentStyle",
3062
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
3063
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
3064
+ },
2950
3065
  {
2951
3066
  "name": "getContentTemplate",
2952
3067
  "description": "The content template of the column."
@@ -3067,6 +3182,12 @@
3067
3182
  "attribute": "sticky",
3068
3183
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3069
3184
  "type": "DataGridColumnSticky | undefined"
3185
+ },
3186
+ {
3187
+ "name": "contentStyle",
3188
+ "attribute": "contentStyle",
3189
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
3190
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
3070
3191
  }
3071
3192
  ]
3072
3193
  },
@@ -3163,6 +3284,11 @@
3163
3284
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3164
3285
  "type": "DataGridColumnSticky | undefined"
3165
3286
  },
3287
+ {
3288
+ "name": "contentStyle",
3289
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
3290
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
3291
+ },
3166
3292
  {
3167
3293
  "name": "getContentTemplate",
3168
3294
  "description": "The content template of the column."
@@ -3283,6 +3409,12 @@
3283
3409
  "attribute": "sticky",
3284
3410
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3285
3411
  "type": "DataGridColumnSticky | undefined"
3412
+ },
3413
+ {
3414
+ "name": "contentStyle",
3415
+ "attribute": "contentStyle",
3416
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
3417
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
3286
3418
  }
3287
3419
  ]
3288
3420
  },
@@ -3323,7 +3455,7 @@
3323
3455
  {
3324
3456
  "name": "columns",
3325
3457
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
3326
- "type": "DataGridColumn<TData, unknown>[]"
3458
+ "type": "DataGridColumn<TData, any>[]"
3327
3459
  },
3328
3460
  {
3329
3461
  "name": "headerHidden",
@@ -3479,7 +3611,7 @@
3479
3611
  },
3480
3612
  {
3481
3613
  "name": "columnsChange",
3482
- "type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
3614
+ "type": "EventDispatcher<DataGridColumn<TData, any>[]>"
3483
3615
  },
3484
3616
  {
3485
3617
  "name": "sidePanelOpen",
@@ -3539,11 +3671,11 @@
3539
3671
  },
3540
3672
  {
3541
3673
  "name": "extractedColumns",
3542
- "type": "DataGridColumn<TData, unknown>[]"
3674
+ "type": "DataGridColumn<TData, any>[]"
3543
3675
  },
3544
3676
  {
3545
3677
  "name": "visibleColumns",
3546
- "type": "DataGridColumn<TData, unknown>[]"
3678
+ "type": "DataGridColumn<TData, any>[]"
3547
3679
  },
3548
3680
  {
3549
3681
  "name": "hasContextMenu",
@@ -3659,7 +3791,7 @@
3659
3791
  "name": "columns",
3660
3792
  "attribute": "columns",
3661
3793
  "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
3662
- "type": "DataGridColumn<TData, unknown>[]"
3794
+ "type": "DataGridColumn<TData, any>[]"
3663
3795
  },
3664
3796
  {
3665
3797
  "name": "headerHidden",
@@ -3837,7 +3969,7 @@
3837
3969
  },
3838
3970
  {
3839
3971
  "name": "columnsChange",
3840
- "type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
3972
+ "type": "CustomEvent<DataGridColumn<TData, any>[]>"
3841
3973
  },
3842
3974
  {
3843
3975
  "name": "sidePanelOpen",
@@ -3990,7 +4122,7 @@
3990
4122
  "properties": [
3991
4123
  {
3992
4124
  "name": "column",
3993
- "type": "DataGridColumn<unknown, unknown>"
4125
+ "type": "DataGridColumn<unknown, any>"
3994
4126
  },
3995
4127
  {
3996
4128
  "name": "menuOpen",
@@ -4069,7 +4201,7 @@
4069
4201
  },
4070
4202
  {
4071
4203
  "name": "column",
4072
- "type": "DataGridColumn<unknown, unknown>"
4204
+ "type": "DataGridColumn<unknown, any>"
4073
4205
  }
4074
4206
  ]
4075
4207
  },
@@ -4257,6 +4389,11 @@
4257
4389
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4258
4390
  "type": "DataGridColumnSticky | undefined"
4259
4391
  },
4392
+ {
4393
+ "name": "contentStyle",
4394
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4395
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4396
+ },
4260
4397
  {
4261
4398
  "name": "getContentTemplate",
4262
4399
  "description": "The content template of the column."
@@ -4358,6 +4495,12 @@
4358
4495
  "attribute": "sticky",
4359
4496
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4360
4497
  "type": "DataGridColumnSticky | undefined"
4498
+ },
4499
+ {
4500
+ "name": "contentStyle",
4501
+ "attribute": "contentStyle",
4502
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4503
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4361
4504
  }
4362
4505
  ]
4363
4506
  },
@@ -4415,6 +4558,11 @@
4415
4558
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4416
4559
  "type": "DataGridColumnSticky | undefined"
4417
4560
  },
4561
+ {
4562
+ "name": "contentStyle",
4563
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4564
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4565
+ },
4418
4566
  {
4419
4567
  "name": "getContentTemplate",
4420
4568
  "description": "The content template of the column."
@@ -4492,6 +4640,12 @@
4492
4640
  "attribute": "sticky",
4493
4641
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4494
4642
  "type": "DataGridColumnSticky | undefined"
4643
+ },
4644
+ {
4645
+ "name": "contentStyle",
4646
+ "attribute": "contentStyle",
4647
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4648
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4495
4649
  }
4496
4650
  ]
4497
4651
  },
@@ -4564,6 +4718,11 @@
4564
4718
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4565
4719
  "type": "DataGridColumnSticky | undefined"
4566
4720
  },
4721
+ {
4722
+ "name": "contentStyle",
4723
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4724
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4725
+ },
4567
4726
  {
4568
4727
  "name": "getContentTemplate",
4569
4728
  "description": "The content template of the column.",
@@ -4665,6 +4824,12 @@
4665
4824
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4666
4825
  "type": "DataGridColumnSticky | undefined"
4667
4826
  },
4827
+ {
4828
+ "name": "contentStyle",
4829
+ "attribute": "contentStyle",
4830
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4831
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4832
+ },
4668
4833
  {
4669
4834
  "name": "getContentTemplate",
4670
4835
  "attribute": "getContentTemplate",
@@ -4738,6 +4903,11 @@
4738
4903
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4739
4904
  "type": "DataGridColumnSticky | undefined"
4740
4905
  },
4906
+ {
4907
+ "name": "contentStyle",
4908
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4909
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4910
+ },
4741
4911
  {
4742
4912
  "name": "getContentTemplate",
4743
4913
  "description": "The content template of the column."
@@ -4821,6 +4991,12 @@
4821
4991
  "attribute": "sticky",
4822
4992
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4823
4993
  "type": "DataGridColumnSticky | undefined"
4994
+ },
4995
+ {
4996
+ "name": "contentStyle",
4997
+ "attribute": "contentStyle",
4998
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
4999
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4824
5000
  }
4825
5001
  ]
4826
5002
  },
@@ -4878,6 +5054,11 @@
4878
5054
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4879
5055
  "type": "DataGridColumnSticky | undefined"
4880
5056
  },
5057
+ {
5058
+ "name": "contentStyle",
5059
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5060
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5061
+ },
4881
5062
  {
4882
5063
  "name": "getContentTemplate",
4883
5064
  "description": "The content template of the column."
@@ -4955,6 +5136,12 @@
4955
5136
  "attribute": "sticky",
4956
5137
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4957
5138
  "type": "DataGridColumnSticky | undefined"
5139
+ },
5140
+ {
5141
+ "name": "contentStyle",
5142
+ "attribute": "contentStyle",
5143
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5144
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
4958
5145
  }
4959
5146
  ]
4960
5147
  },
@@ -5027,6 +5214,11 @@
5027
5214
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5028
5215
  "type": "DataGridColumnSticky | undefined"
5029
5216
  },
5217
+ {
5218
+ "name": "contentStyle",
5219
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5220
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5221
+ },
5030
5222
  {
5031
5223
  "name": "getContentTemplate",
5032
5224
  "description": "The content template of the column."
@@ -5126,6 +5318,12 @@
5126
5318
  "attribute": "sticky",
5127
5319
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5128
5320
  "type": "DataGridColumnSticky | undefined"
5321
+ },
5322
+ {
5323
+ "name": "contentStyle",
5324
+ "attribute": "contentStyle",
5325
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5326
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5129
5327
  }
5130
5328
  ]
5131
5329
  },
@@ -5198,6 +5396,11 @@
5198
5396
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5199
5397
  "type": "DataGridColumnSticky | undefined"
5200
5398
  },
5399
+ {
5400
+ "name": "contentStyle",
5401
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5402
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5403
+ },
5201
5404
  {
5202
5405
  "name": "getContentTemplate",
5203
5406
  "description": "The content template of the column."
@@ -5297,6 +5500,12 @@
5297
5500
  "attribute": "sticky",
5298
5501
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5299
5502
  "type": "DataGridColumnSticky | undefined"
5503
+ },
5504
+ {
5505
+ "name": "contentStyle",
5506
+ "attribute": "contentStyle",
5507
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5508
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5300
5509
  }
5301
5510
  ]
5302
5511
  },
@@ -5369,6 +5578,11 @@
5369
5578
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5370
5579
  "type": "DataGridColumnSticky | undefined"
5371
5580
  },
5581
+ {
5582
+ "name": "contentStyle",
5583
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5584
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5585
+ },
5372
5586
  {
5373
5587
  "name": "getContentTemplate",
5374
5588
  "description": "The content template of the column."
@@ -5468,6 +5682,12 @@
5468
5682
  "attribute": "sticky",
5469
5683
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5470
5684
  "type": "DataGridColumnSticky | undefined"
5685
+ },
5686
+ {
5687
+ "name": "contentStyle",
5688
+ "attribute": "contentStyle",
5689
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5690
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5471
5691
  }
5472
5692
  ]
5473
5693
  },
@@ -5540,6 +5760,11 @@
5540
5760
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5541
5761
  "type": "DataGridColumnSticky | undefined"
5542
5762
  },
5763
+ {
5764
+ "name": "contentStyle",
5765
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5766
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5767
+ },
5543
5768
  {
5544
5769
  "name": "getContentTemplate",
5545
5770
  "description": "The content template of the column."
@@ -5639,6 +5864,12 @@
5639
5864
  "attribute": "sticky",
5640
5865
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5641
5866
  "type": "DataGridColumnSticky | undefined"
5867
+ },
5868
+ {
5869
+ "name": "contentStyle",
5870
+ "attribute": "contentStyle",
5871
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5872
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5642
5873
  }
5643
5874
  ]
5644
5875
  },
@@ -5706,6 +5937,11 @@
5706
5937
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5707
5938
  "type": "DataGridColumnSticky | undefined"
5708
5939
  },
5940
+ {
5941
+ "name": "contentStyle",
5942
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
5943
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5944
+ },
5709
5945
  {
5710
5946
  "name": "getContentTemplate",
5711
5947
  "description": "The content template of the column."
@@ -5827,6 +6063,12 @@
5827
6063
  "attribute": "sticky",
5828
6064
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5829
6065
  "type": "DataGridColumnSticky | undefined"
6066
+ },
6067
+ {
6068
+ "name": "contentStyle",
6069
+ "attribute": "contentStyle",
6070
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
6071
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5830
6072
  }
5831
6073
  ]
5832
6074
  },
@@ -5884,6 +6126,11 @@
5884
6126
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5885
6127
  "type": "DataGridColumnSticky | undefined"
5886
6128
  },
6129
+ {
6130
+ "name": "contentStyle",
6131
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
6132
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
6133
+ },
5887
6134
  {
5888
6135
  "name": "getContentTemplate",
5889
6136
  "description": "The content template of the column."
@@ -5989,6 +6236,12 @@
5989
6236
  "attribute": "sticky",
5990
6237
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5991
6238
  "type": "DataGridColumnSticky | undefined"
6239
+ },
6240
+ {
6241
+ "name": "contentStyle",
6242
+ "attribute": "contentStyle",
6243
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
6244
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
5992
6245
  }
5993
6246
  ]
5994
6247
  },
@@ -6046,6 +6299,11 @@
6046
6299
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
6047
6300
  "type": "DataGridColumnSticky | undefined"
6048
6301
  },
6302
+ {
6303
+ "name": "contentStyle",
6304
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
6305
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
6306
+ },
6049
6307
  {
6050
6308
  "name": "getContentTemplate",
6051
6309
  "description": "The content template of the column."
@@ -6151,6 +6409,12 @@
6151
6409
  "attribute": "sticky",
6152
6410
  "description": "The sticky position of the column, either 'start', 'end', or 'both'",
6153
6411
  "type": "DataGridColumnSticky | undefined"
6412
+ },
6413
+ {
6414
+ "name": "contentStyle",
6415
+ "attribute": "contentStyle",
6416
+ "description": "The content style of the column. It can be a string, CSSResult, or a function that returns either based on the cell value and data.",
6417
+ "type": "DataGridColumnContentStyle<TData, TValue> | undefined"
6154
6418
  }
6155
6419
  ]
6156
6420
  },