@bryntum/grid-trial 7.2.3 → 7.2.4
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/fluent2-dark.css +1 -1
- package/fluent2-light.css +1 -1
- package/grid.css +2 -2
- package/grid.d.ts +95 -88
- package/grid.lwc.module.d.ts +1 -1
- package/grid.lwc.module.js +2 -2
- package/grid.module.d.ts +1 -1
- package/grid.module.js +39 -39
- package/grid.thin.d.ts +50 -88
- package/grid.umd.d.ts +1 -1
- package/grid.umd.js +48 -48
- package/grid.wc.module.d.ts +1 -1
- package/grid.wc.module.js +41 -41
- package/high-contrast-dark.css +2 -2
- package/high-contrast-light.css +2 -2
- package/locales/grid.locale.Ar.js +1 -1
- package/locales/grid.locale.Bg.js +1 -1
- package/locales/grid.locale.Ca.js +1 -1
- package/locales/grid.locale.Cs.js +1 -1
- package/locales/grid.locale.Da.js +1 -1
- package/locales/grid.locale.De.js +1 -1
- package/locales/grid.locale.El.js +1 -1
- package/locales/grid.locale.En.js +1 -1
- package/locales/grid.locale.EnGb.js +1 -1
- package/locales/grid.locale.Es.js +1 -1
- package/locales/grid.locale.Et.js +1 -1
- package/locales/grid.locale.Eu.js +1 -1
- package/locales/grid.locale.Fi.js +1 -1
- package/locales/grid.locale.FrFr.js +1 -1
- package/locales/grid.locale.Gl.js +1 -1
- package/locales/grid.locale.He.js +1 -1
- package/locales/grid.locale.Hi.js +1 -1
- package/locales/grid.locale.Hr.js +1 -1
- package/locales/grid.locale.Hu.js +1 -1
- package/locales/grid.locale.Id.js +1 -1
- package/locales/grid.locale.It.js +1 -1
- package/locales/grid.locale.Ja.js +1 -1
- package/locales/grid.locale.Kk.js +1 -1
- package/locales/grid.locale.Ko.js +1 -1
- package/locales/grid.locale.Lt.js +1 -1
- package/locales/grid.locale.Lv.js +1 -1
- package/locales/grid.locale.Ms.js +1 -1
- package/locales/grid.locale.Nl.js +1 -1
- package/locales/grid.locale.No.js +1 -1
- package/locales/grid.locale.Pl.js +1 -1
- package/locales/grid.locale.Pt.js +1 -1
- package/locales/grid.locale.PtBr.js +1 -1
- package/locales/grid.locale.Ro.js +1 -1
- package/locales/grid.locale.Ru.js +1 -1
- package/locales/grid.locale.Sk.js +1 -1
- package/locales/grid.locale.Sl.js +1 -1
- package/locales/grid.locale.Sr.js +1 -1
- package/locales/grid.locale.SrRs.js +1 -1
- package/locales/grid.locale.SvSE.js +1 -1
- package/locales/grid.locale.Th.js +1 -1
- package/locales/grid.locale.Tr.js +1 -1
- package/locales/grid.locale.Uk.js +1 -1
- package/locales/grid.locale.Vi.js +1 -1
- package/locales/grid.locale.ZhCn.js +1 -1
- package/locales/grid.locale.ZhTw.js +1 -1
- package/material3-dark.css +1 -1
- package/material3-light.css +1 -1
- package/package.json +1 -1
- package/stockholm-dark.css +1 -1
- package/stockholm-light.css +1 -1
- package/svalbard-dark.css +1 -1
- package/svalbard-light.css +1 -1
- package/visby-dark.css +1 -1
- package/visby-light.css +1 -1
package/grid.thin.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Bryntum Grid 7.2.
|
|
3
|
+
* Bryntum Grid 7.2.4 (TRIAL VERSION)
|
|
4
4
|
*
|
|
5
5
|
* Copyright(c) 2026 Bryntum AB
|
|
6
6
|
* https://bryntum.com/contact
|
|
@@ -1059,12 +1059,9 @@ type ActionColumnConfig = {
|
|
|
1059
1059
|
*/
|
|
1060
1060
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
1061
1061
|
/**
|
|
1062
|
-
* Child
|
|
1063
|
-
* tasks.
|
|
1064
|
-
* ...
|
|
1065
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ActionColumn#config-children)
|
|
1062
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
1066
1063
|
*/
|
|
1067
|
-
children?:
|
|
1064
|
+
children?: GridColumnConfig[]|Column[]
|
|
1068
1065
|
/**
|
|
1069
1066
|
* CSS class added to the header of this column
|
|
1070
1067
|
*/
|
|
@@ -1738,12 +1735,9 @@ type AggregateColumnConfig = {
|
|
|
1738
1735
|
*/
|
|
1739
1736
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
1740
1737
|
/**
|
|
1741
|
-
* Child
|
|
1742
|
-
* tasks.
|
|
1743
|
-
* ...
|
|
1744
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/AggregateColumn#config-children)
|
|
1738
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
1745
1739
|
*/
|
|
1746
|
-
children?:
|
|
1740
|
+
children?: GridColumnConfig[]|Column[]
|
|
1747
1741
|
/**
|
|
1748
1742
|
* CSS class added to the header of this column
|
|
1749
1743
|
*/
|
|
@@ -2529,12 +2523,9 @@ type ChartColumnConfig = {
|
|
|
2529
2523
|
*/
|
|
2530
2524
|
chartCls?: string
|
|
2531
2525
|
/**
|
|
2532
|
-
* Child
|
|
2533
|
-
* tasks.
|
|
2534
|
-
* ...
|
|
2535
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ChartColumn#config-children)
|
|
2526
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
2536
2527
|
*/
|
|
2537
|
-
children?:
|
|
2528
|
+
children?: GridColumnConfig[]|Column[]
|
|
2538
2529
|
/**
|
|
2539
2530
|
* CSS class added to the header of this column
|
|
2540
2531
|
*/
|
|
@@ -3305,12 +3296,9 @@ type CheckColumnConfig = {
|
|
|
3305
3296
|
*/
|
|
3306
3297
|
checkCls?: string
|
|
3307
3298
|
/**
|
|
3308
|
-
* Child
|
|
3309
|
-
* tasks.
|
|
3310
|
-
* ...
|
|
3311
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/CheckColumn#config-children)
|
|
3299
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
3312
3300
|
*/
|
|
3313
|
-
children?:
|
|
3301
|
+
children?: GridColumnConfig[]|Column[]
|
|
3314
3302
|
/**
|
|
3315
3303
|
* CSS class added to the header of this column
|
|
3316
3304
|
*/
|
|
@@ -4093,12 +4081,9 @@ type ColorColumnConfig = {
|
|
|
4093
4081
|
*/
|
|
4094
4082
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
4095
4083
|
/**
|
|
4096
|
-
* Child
|
|
4097
|
-
* tasks.
|
|
4098
|
-
* ...
|
|
4099
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ColorColumn#config-children)
|
|
4084
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
4100
4085
|
*/
|
|
4101
|
-
children?:
|
|
4086
|
+
children?: GridColumnConfig[]|Column[]
|
|
4102
4087
|
/**
|
|
4103
4088
|
* CSS class added to the header of this column
|
|
4104
4089
|
*/
|
|
@@ -4832,12 +4817,9 @@ type ColumnConfig = {
|
|
|
4832
4817
|
*/
|
|
4833
4818
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
4834
4819
|
/**
|
|
4835
|
-
* Child
|
|
4836
|
-
* tasks.
|
|
4837
|
-
* ...
|
|
4838
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-children)
|
|
4820
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
4839
4821
|
*/
|
|
4840
|
-
children?:
|
|
4822
|
+
children?: GridColumnConfig[]|Column[]
|
|
4841
4823
|
/**
|
|
4842
4824
|
* CSS class added to the header of this column
|
|
4843
4825
|
*/
|
|
@@ -5399,6 +5381,12 @@ export class Column extends Model {
|
|
|
5399
5381
|
* Set to `true` to call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
5400
5382
|
*/
|
|
5401
5383
|
callOnFunctions: boolean
|
|
5384
|
+
/**
|
|
5385
|
+
* Returns `true` if this column can currently be sorted by the user.
|
|
5386
|
+
* Checks both the column's own [sortable](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-sortable) config and whether the
|
|
5387
|
+
* [Sort](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort) feature is enabled on the grid.
|
|
5388
|
+
*/
|
|
5389
|
+
readonly canSort: boolean
|
|
5402
5390
|
/**
|
|
5403
5391
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
5404
5392
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
@@ -6119,12 +6107,9 @@ type CurrencyColumnConfig = {
|
|
|
6119
6107
|
*/
|
|
6120
6108
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
6121
6109
|
/**
|
|
6122
|
-
* Child
|
|
6123
|
-
* tasks.
|
|
6124
|
-
* ...
|
|
6125
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/CurrencyColumn#config-children)
|
|
6110
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
6126
6111
|
*/
|
|
6127
|
-
children?:
|
|
6112
|
+
children?: GridColumnConfig[]|Column[]
|
|
6128
6113
|
/**
|
|
6129
6114
|
* CSS class added to the header of this column
|
|
6130
6115
|
*/
|
|
@@ -6877,12 +6862,9 @@ type DateColumnConfig = {
|
|
|
6877
6862
|
*/
|
|
6878
6863
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
6879
6864
|
/**
|
|
6880
|
-
* Child
|
|
6881
|
-
* tasks.
|
|
6882
|
-
* ...
|
|
6883
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/DateColumn#config-children)
|
|
6865
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
6884
6866
|
*/
|
|
6885
|
-
children?:
|
|
6867
|
+
children?: GridColumnConfig[]|Column[]
|
|
6886
6868
|
/**
|
|
6887
6869
|
* CSS class added to the header of this column
|
|
6888
6870
|
*/
|
|
@@ -7641,12 +7623,9 @@ type NumberColumnConfig = {
|
|
|
7641
7623
|
*/
|
|
7642
7624
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
7643
7625
|
/**
|
|
7644
|
-
* Child
|
|
7645
|
-
* tasks.
|
|
7646
|
-
* ...
|
|
7647
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/NumberColumn#config-children)
|
|
7626
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
7648
7627
|
*/
|
|
7649
|
-
children?:
|
|
7628
|
+
children?: GridColumnConfig[]|Column[]
|
|
7650
7629
|
/**
|
|
7651
7630
|
* CSS class added to the header of this column
|
|
7652
7631
|
*/
|
|
@@ -8421,12 +8400,9 @@ type PercentColumnConfig = {
|
|
|
8421
8400
|
*/
|
|
8422
8401
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
8423
8402
|
/**
|
|
8424
|
-
* Child
|
|
8425
|
-
* tasks.
|
|
8426
|
-
* ...
|
|
8427
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/PercentColumn#config-children)
|
|
8403
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
8428
8404
|
*/
|
|
8429
|
-
children?:
|
|
8405
|
+
children?: GridColumnConfig[]|Column[]
|
|
8430
8406
|
/**
|
|
8431
8407
|
* CSS class added to the header of this column
|
|
8432
8408
|
*/
|
|
@@ -9188,12 +9164,9 @@ type RatingColumnConfig = {
|
|
|
9188
9164
|
*/
|
|
9189
9165
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
9190
9166
|
/**
|
|
9191
|
-
* Child
|
|
9192
|
-
* tasks.
|
|
9193
|
-
* ...
|
|
9194
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/RatingColumn#config-children)
|
|
9167
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
9195
9168
|
*/
|
|
9196
|
-
children?:
|
|
9169
|
+
children?: GridColumnConfig[]|Column[]
|
|
9197
9170
|
/**
|
|
9198
9171
|
* CSS class added to the header of this column
|
|
9199
9172
|
*/
|
|
@@ -9946,12 +9919,9 @@ type RowNumberColumnConfig = {
|
|
|
9946
9919
|
*/
|
|
9947
9920
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
9948
9921
|
/**
|
|
9949
|
-
* Child
|
|
9950
|
-
* tasks.
|
|
9951
|
-
* ...
|
|
9952
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/RowNumberColumn#config-children)
|
|
9922
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
9953
9923
|
*/
|
|
9954
|
-
children?:
|
|
9924
|
+
children?: GridColumnConfig[]|Column[]
|
|
9955
9925
|
/**
|
|
9956
9926
|
* CSS class added to the header of this column
|
|
9957
9927
|
*/
|
|
@@ -10556,12 +10526,9 @@ type SparklineColumnConfig = {
|
|
|
10556
10526
|
*/
|
|
10557
10527
|
chartType?: 'line'|'bar'|'pie'
|
|
10558
10528
|
/**
|
|
10559
|
-
* Child
|
|
10560
|
-
* tasks.
|
|
10561
|
-
* ...
|
|
10562
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/SparklineColumn#config-children)
|
|
10529
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
10563
10530
|
*/
|
|
10564
|
-
children?:
|
|
10531
|
+
children?: GridColumnConfig[]|Column[]
|
|
10565
10532
|
/**
|
|
10566
10533
|
* CSS class added to the header of this column
|
|
10567
10534
|
*/
|
|
@@ -11281,12 +11248,9 @@ type TemplateColumnConfig = {
|
|
|
11281
11248
|
*/
|
|
11282
11249
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
11283
11250
|
/**
|
|
11284
|
-
* Child
|
|
11285
|
-
* tasks.
|
|
11286
|
-
* ...
|
|
11287
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TemplateColumn#config-children)
|
|
11251
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
11288
11252
|
*/
|
|
11289
|
-
children?:
|
|
11253
|
+
children?: GridColumnConfig[]|Column[]
|
|
11290
11254
|
/**
|
|
11291
11255
|
* CSS class added to the header of this column
|
|
11292
11256
|
*/
|
|
@@ -12006,12 +11970,9 @@ type TimeColumnConfig = {
|
|
|
12006
11970
|
*/
|
|
12007
11971
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
12008
11972
|
/**
|
|
12009
|
-
* Child
|
|
12010
|
-
* tasks.
|
|
12011
|
-
* ...
|
|
12012
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TimeColumn#config-children)
|
|
11973
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
12013
11974
|
*/
|
|
12014
|
-
children?:
|
|
11975
|
+
children?: GridColumnConfig[]|Column[]
|
|
12015
11976
|
/**
|
|
12016
11977
|
* CSS class added to the header of this column
|
|
12017
11978
|
*/
|
|
@@ -12728,12 +12689,9 @@ type TreeColumnConfig = {
|
|
|
12728
12689
|
*/
|
|
12729
12690
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
12730
12691
|
/**
|
|
12731
|
-
* Child
|
|
12732
|
-
* tasks.
|
|
12733
|
-
* ...
|
|
12734
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TreeColumn#config-children)
|
|
12692
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
12735
12693
|
*/
|
|
12736
|
-
children?:
|
|
12694
|
+
children?: GridColumnConfig[]|Column[]
|
|
12737
12695
|
/**
|
|
12738
12696
|
* CSS class added to the header of this column
|
|
12739
12697
|
*/
|
|
@@ -13504,12 +13462,9 @@ type WidgetColumnConfig = {
|
|
|
13504
13462
|
*/
|
|
13505
13463
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
13506
13464
|
/**
|
|
13507
|
-
* Child
|
|
13508
|
-
* tasks.
|
|
13509
|
-
* ...
|
|
13510
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/WidgetColumn#config-children)
|
|
13465
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
13511
13466
|
*/
|
|
13512
|
-
children?:
|
|
13467
|
+
children?: GridColumnConfig[]|Column[]
|
|
13513
13468
|
/**
|
|
13514
13469
|
* CSS class added to the header of this column
|
|
13515
13470
|
*/
|
|
@@ -14747,6 +14702,13 @@ type ColumnStoreConfig = {
|
|
|
14747
14702
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore#config-catchEventHandlerExceptions)
|
|
14748
14703
|
*/
|
|
14749
14704
|
catchEventHandlerExceptions?: boolean
|
|
14705
|
+
/**
|
|
14706
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
14707
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
14708
|
+
* ...
|
|
14709
|
+
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore#config-chainExpandCollapse)
|
|
14710
|
+
*/
|
|
14711
|
+
chainExpandCollapse?: boolean
|
|
14750
14712
|
/**
|
|
14751
14713
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
14752
14714
|
* will be ignored.
|
|
@@ -21561,7 +21523,7 @@ export class LockRows extends Split {
|
|
|
21561
21523
|
*/
|
|
21562
21524
|
readonly isLockRows: boolean
|
|
21563
21525
|
/**
|
|
21564
|
-
* Locking rows
|
|
21526
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
21565
21527
|
* for the rest. This property holds the original store, if you need to access it.
|
|
21566
21528
|
*/
|
|
21567
21529
|
originalStore: Store
|
|
@@ -38315,7 +38277,7 @@ export class GridBase extends Panel {
|
|
|
38315
38277
|
*/
|
|
38316
38278
|
longPressTime: number
|
|
38317
38279
|
/**
|
|
38318
|
-
* Locking rows
|
|
38280
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
38319
38281
|
* for the rest. This property holds the original store, if you need to access it.
|
|
38320
38282
|
*/
|
|
38321
38283
|
originalStore: Store
|