@bryntum/grid-thin-trial 7.3.2 → 7.3.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.
Files changed (64) hide show
  1. package/AGENTS.md +130 -0
  2. package/CLAUDE.md +130 -0
  3. package/grid.d.ts +117 -79
  4. package/lib/column/Column.js +1 -1
  5. package/lib/feature/ColumnAutoWidth.js +1 -1
  6. package/lib/feature/Filter.js +1 -1
  7. package/lib/feature/FilterBar.js +1 -1
  8. package/lib/feature/StickyCells.js +1 -1
  9. package/lib/feature/experimental/ExcelExporter.js +1 -1
  10. package/lib/feature/experimental/xlsproviders/WriteExcelFileProvider.js +1 -1
  11. package/lib/feature/experimental/xlsproviders/XlsProviderBase.js +1 -1
  12. package/lib/feature/export/PdfExport.js +4 -4
  13. package/lib/feature/export/exporter/ExporterBase.js +6 -6
  14. package/lib/localization/Ar.js +256 -225
  15. package/lib/localization/Bg.js +256 -225
  16. package/lib/localization/Ca.js +256 -225
  17. package/lib/localization/Cs.js +256 -225
  18. package/lib/localization/Da.js +256 -225
  19. package/lib/localization/De.js +256 -225
  20. package/lib/localization/El.js +256 -225
  21. package/lib/localization/En.js +256 -225
  22. package/lib/localization/EnGb.js +256 -225
  23. package/lib/localization/Es.js +256 -225
  24. package/lib/localization/Et.js +256 -225
  25. package/lib/localization/Eu.js +256 -225
  26. package/lib/localization/Fi.js +256 -225
  27. package/lib/localization/FrFr.js +256 -225
  28. package/lib/localization/Gl.js +256 -225
  29. package/lib/localization/He.js +256 -225
  30. package/lib/localization/Hi.js +256 -225
  31. package/lib/localization/Hr.js +256 -225
  32. package/lib/localization/Hu.js +256 -225
  33. package/lib/localization/Id.js +256 -225
  34. package/lib/localization/It.js +256 -225
  35. package/lib/localization/Ja.js +256 -225
  36. package/lib/localization/Kk.js +256 -225
  37. package/lib/localization/Ko.js +256 -225
  38. package/lib/localization/Lt.js +256 -225
  39. package/lib/localization/Lv.js +256 -225
  40. package/lib/localization/Ms.js +256 -225
  41. package/lib/localization/Nl.js +256 -225
  42. package/lib/localization/No.js +256 -225
  43. package/lib/localization/Pl.js +256 -225
  44. package/lib/localization/Pt.js +256 -225
  45. package/lib/localization/PtBr.js +256 -225
  46. package/lib/localization/Ro.js +256 -225
  47. package/lib/localization/Ru.js +256 -225
  48. package/lib/localization/Sk.js +256 -225
  49. package/lib/localization/Sl.js +256 -225
  50. package/lib/localization/Sr.js +256 -225
  51. package/lib/localization/SrRs.js +256 -225
  52. package/lib/localization/SvSE.js +256 -225
  53. package/lib/localization/Th.js +256 -225
  54. package/lib/localization/Tr.js +256 -225
  55. package/lib/localization/Uk.js +256 -225
  56. package/lib/localization/Vi.js +256 -225
  57. package/lib/localization/ZhCn.js +256 -225
  58. package/lib/localization/ZhTw.js +256 -225
  59. package/lib/view/Grid.js +1 -1
  60. package/lib/view/GridBase.js +1 -1
  61. package/lib/view/export/ExportDialog.js +1 -1
  62. package/lib/view/mixin/GridElementEvents.js +1 -1
  63. package/lib/widget/ChecklistFilterCombo.js +1 -1
  64. package/package.json +1 -1
@@ -1,231 +1,262 @@
1
1
  import LocaleHelper from '@bryntum/core-thin/lib/localization/LocaleHelper.js';
2
2
  import '@bryntum/core-thin/lib/localization/ZhTw.js';
3
+
3
4
  const emptyString = new String();
5
+
4
6
  const locale = {
5
- localeName: 'ZhTw',
6
- localeDesc: '繁體中文 (台灣)',
7
- localeCode: 'zh-TW',
8
- localeRtl: false,
9
- ChecklistFilterCombo: {
10
- search: '搜尋',
11
- selectAll: '全選',
12
- removeAll: '取消全選',
13
- filtersSet: n => n === 1 ? `設定了 1 個篩選條件` : `設定了 ${n} 個篩選條件`,
14
- noItems: '未找到結果',
15
- placeholder: '篩選...',
16
- apply: '應用'
17
- },
18
- ColumnPicker: {
19
- column: '欄',
20
- columnsMenu: '欄',
21
- hideColumn: '隱藏欄',
22
- hideColumnShort: '隱藏',
23
- newColumns: '新欄',
24
- showName: column => `顯示欄${column.text ? ` ${column.text}` : ''}`,
25
- hideName: column => `顯示欄${column.text ? ` ${column.text}` : ''}`
26
- },
27
- Filter: {
28
- applyFilter: '套用篩選條件',
29
- filter: '篩選條件',
30
- editFilter: '編輯篩選條件',
31
- on: '於',
32
- before: '之前',
33
- after: '之後',
34
- equals: '等於',
35
- lessThan: '小於',
36
- moreThan: '大於',
37
- removeFilter: '移除篩選條件',
38
- disableFilter: '停用篩選條件'
39
- },
40
- FilterBar: {
41
- enableFilterBar: '顯示篩選列',
42
- disableFilterBar: '隱藏篩選列'
43
- },
44
- Group: {
45
- group: '群組',
46
- groupAscending: '群組遞增',
47
- groupDescending: '群組遞減',
48
- groupAscendingShort: '遞增',
49
- groupDescendingShort: '遞減',
50
- stopGrouping: '停止分組',
51
- stopGroupingShort: '停止'
52
- },
53
- HeaderMenu: {
54
- moveBefore: text => `移至 "${text}" 之前`,
55
- moveAfter: text => `移至 "${text}" 之後`,
56
- collapseColumn: '摺疊欄',
57
- expandColumn: '展開欄'
58
- },
59
- ColumnRename: {
60
- rename: '重新命名'
61
- },
62
- MergeCells: {
63
- mergeCells: '合併儲存格',
64
- menuTooltip: '依此欄排序時,合併具有相同值的儲存格'
65
- },
66
- Search: {
67
- searchForValue: '搜尋值'
68
- },
69
- Sort: {
70
- sort: '排序',
71
- sortAscending: '遞增排序',
72
- sortDescending: '遞減排序',
73
- multiSort: '多重排序',
74
- removeSorter: '移除排序',
75
- addSortAscending: '新增遞增排序',
76
- addSortDescending: '新增遞減排序',
77
- toggleSortAscending: '變更為遞增',
78
- toggleSortDescending: '變更為遞減',
79
- sortAscendingShort: '遞增',
80
- sortDescendingShort: '遞減',
81
- removeSorterShort: '移除',
82
- addSortAscendingShort: '+ 遞增',
83
- addSortDescendingShort: '+ 遞減'
84
- },
85
- Split: {
86
- split: '分割',
87
- unsplit: '取消分割',
88
- horizontally: '水平',
89
- vertically: '垂直',
90
- both: '兩者'
91
- },
92
- LockRows: {
93
- lockRow: '锁排',
94
- unlockRow: '解锁排'
95
- },
96
- ActionColumn: {
97
- rowActions: '列操作'
98
- },
99
- Column: {
100
- columnLabel: column => `${column.text ? `${column.text} 欄。` : ''}按空格鍵存取內容功能表${column.canSort ? ',按 ENTER 鍵進行排序' : ''}`,
101
- cellLabel: emptyString
102
- },
103
- WidgetColumn: {
104
- rowWidgets: '列小工具'
105
- },
106
- Checkbox: {
107
- toggleRowSelect: '切換列選取範圍',
108
- toggleSelection: '切換整個資料集選取範圍',
109
- toggleName: column => `切換 ${column.text || '值'}`
110
- },
111
- RatingColumn: {
112
- cellLabel: column => {
113
- var _column$location;
114
- return `${column.text ? column.text : ''} ${(_column$location = column.location) !== null && _column$location !== void 0 && _column$location.record ? `評等: ${column.location.record.get(column.field) || 0}` : ''}`;
7
+
8
+ localeName : 'ZhTw',
9
+ localeDesc : '繁體中文 (台灣)',
10
+ localeCode : 'zh-TW',
11
+ localeRtl : false,
12
+
13
+ ChecklistFilterCombo : {
14
+ search : '搜尋',
15
+ selectAll : '全選',
16
+ removeAll : '取消全選',
17
+ filtersSet : n => n === 1 ? `設定了 1 個篩選條件` : `設定了 ${n} 個篩選條件`,
18
+ noItems : '未找到結果',
19
+ placeholder : '篩選...',
20
+ apply : '應用'
21
+ },
22
+
23
+ ColumnPicker : {
24
+ column : '',
25
+ columnsMenu : '',
26
+ hideColumn : '隱藏欄',
27
+ hideColumnShort : '隱藏',
28
+ newColumns : '新欄',
29
+ showName : column => `顯示欄${column.text ? ` ${column.text}` : ''}`,
30
+ hideName : column => `顯示欄${column.text ? ` ${column.text}` : ''}`
31
+ },
32
+
33
+ Filter : {
34
+ applyFilter : '套用篩選條件',
35
+ filter : '篩選條件',
36
+ editFilter : '編輯篩選條件',
37
+ on : '',
38
+ before : '之前',
39
+ after : '之後',
40
+ equals : '等於',
41
+ lessThan : '小於',
42
+ moreThan : '大於',
43
+ removeFilter : '移除篩選條件',
44
+ disableFilter : '停用篩選條件'
45
+ },
46
+
47
+ FilterBar : {
48
+ enableFilterBar : '顯示篩選列',
49
+ disableFilterBar : '隱藏篩選列'
50
+ },
51
+
52
+ Group : {
53
+ group : '群組',
54
+ groupAscending : '群組遞增',
55
+ groupDescending : '群組遞減',
56
+ groupAscendingShort : '遞增',
57
+ groupDescendingShort : '遞減',
58
+ stopGrouping : '停止分組',
59
+ stopGroupingShort : '停止'
60
+ },
61
+
62
+ HeaderMenu : {
63
+ moveBefore : text => `移至 "${text}" 之前`,
64
+ moveAfter : text => `移至 "${text}" 之後`,
65
+ collapseColumn : '摺疊欄',
66
+ expandColumn : '展開欄'
67
+ },
68
+
69
+ ColumnRename : {
70
+ rename : '重新命名'
71
+ },
72
+
73
+ MergeCells : {
74
+ mergeCells : '合併儲存格',
75
+ menuTooltip : '依此欄排序時,合併具有相同值的儲存格'
76
+ },
77
+
78
+ Search : {
79
+ searchForValue : '搜尋值'
80
+ },
81
+
82
+ Sort : {
83
+ sort : '排序',
84
+ sortAscending : '遞增排序',
85
+ sortDescending : '遞減排序',
86
+ multiSort : '多重排序',
87
+ removeSorter : '移除排序',
88
+ addSortAscending : '新增遞增排序',
89
+ addSortDescending : '新增遞減排序',
90
+ toggleSortAscending : '變更為遞增',
91
+ toggleSortDescending : '變更為遞減',
92
+ sortAscendingShort : '遞增',
93
+ sortDescendingShort : '遞減',
94
+ removeSorterShort : '移除',
95
+ addSortAscendingShort : '+ 遞增',
96
+ addSortDescendingShort : '+ 遞減'
97
+ },
98
+
99
+ Split : {
100
+ split : '分割',
101
+ unsplit : '取消分割',
102
+ horizontally : '水平',
103
+ vertically : '垂直',
104
+ both : '兩者'
105
+ },
106
+
107
+ LockRows : {
108
+ lockRow : '锁排',
109
+ unlockRow : '解锁排'
110
+ },
111
+
112
+ ActionColumn : {
113
+ rowActions : '列操作'
114
+ },
115
+
116
+ Column : {
117
+ columnLabel : column => `${column.text ? `${column.text} 欄。` : ''}按空格鍵存取內容功能表${column.canSort ? ',按 ENTER 鍵進行排序' : ''}`,
118
+ cellLabel : emptyString
119
+ },
120
+
121
+ WidgetColumn : {
122
+ rowWidgets : '列小工具'
123
+ },
124
+
125
+ Checkbox : {
126
+ toggleRowSelect : '切換列選取範圍',
127
+ toggleSelection : '切換整個資料集選取範圍',
128
+ toggleName : column => `切換 ${column.text || '值'}`
129
+ },
130
+
131
+ RatingColumn : {
132
+ cellLabel : column => `${column.text ? column.text : ''} ${column.location?.record ? `評等: ${column.location.record.get(column.field) || 0}` : ''}`
133
+ },
134
+
135
+ RowNumberColumn : {
136
+ rowNumber : '行號'
137
+ },
138
+
139
+ GridBase : {
140
+ loadFailedMessage : '資料載入失敗!',
141
+ syncFailedMessage : '資料同步失敗!',
142
+ unspecifiedFailure : '不明故障',
143
+ networkFailure : '網路錯誤',
144
+ parseFailure : '無法剖析伺服器回覆',
145
+ serverResponse : '伺服器回覆:',
146
+ noRows : '沒有可顯示的記錄',
147
+ moveColumnLeft : '移至左側區段',
148
+ moveColumnRight : '移至右側區段',
149
+ moveColumnTo : region => `移動欄至 ${region}`,
150
+ filteredRecords : n => n ? (n === 1 ? `1 行符合篩選條件` : `${n} 行符合篩選條件`) : '沒有行符合篩選條件'
151
+ },
152
+
153
+ CellMenu : {
154
+ removeRow : '刪除'
155
+ },
156
+
157
+ RowCopyPaste : {
158
+ copyRecord : '複製',
159
+ cutRecord : '剪下',
160
+ pasteRecord : '貼上',
161
+ rows : '列',
162
+ row : '列'
163
+ },
164
+
165
+ CellCopyPaste : {
166
+ copy : '複製',
167
+ cut : '剪下',
168
+ paste : '貼上'
169
+ },
170
+
171
+ Charts : {
172
+ chartDesigner : '圖表設計器',
173
+ newChart : '新圖表',
174
+ download : '下載',
175
+ settings : '設定'
176
+ },
177
+
178
+ PdfExport : {
179
+ 'Waiting for response from server' : '等待伺服器回應...',
180
+ 'Export failed' : '輸出失敗',
181
+ 'Server error' : '伺服器錯誤',
182
+ 'Generating pages' : '正在產生頁...',
183
+ 'Click to abort' : '取消'
184
+ },
185
+
186
+ ExportDialog : {
187
+ width : '40em',
188
+ labelWidth : '12em',
189
+ exportSettings : '輸出設定',
190
+ export : '輸出',
191
+ printSettings : '打印设置',
192
+ print : '打印',
193
+ exporterType : '控制編頁',
194
+ cancel : '取消',
195
+ fileFormat : '檔案格式',
196
+ rows : '列',
197
+ alignRows : '對齊列',
198
+ columns : '欄',
199
+ paperFormat : '紙張格式',
200
+ orientation : '定向',
201
+ repeatHeader : '重複 標頭'
202
+ },
203
+
204
+ ExportRowsCombo : {
205
+ all : '所有列',
206
+ visible : '可見列'
207
+ },
208
+
209
+ ExportOrientationCombo : {
210
+ portrait : '直向',
211
+ landscape : '橫向'
212
+ },
213
+
214
+ SinglePageExporter : {
215
+ singlepage : '單頁'
216
+ },
217
+
218
+ SinglePageUnscaledExporter : {
219
+ singlepageunscaled : '單頁(未縮放)'
220
+ },
221
+
222
+ MultiPageExporter : {
223
+ multipage : '多頁',
224
+ exportingPage : ({ currentPage, totalPages }) => `輸出頁 ${currentPage}/${totalPages}`
225
+ },
226
+
227
+ MultiPageVerticalExporter : {
228
+ multipagevertical : '多頁 (直向)',
229
+ exportingPage : ({ currentPage, totalPages }) => `輸出頁 ${currentPage}/${totalPages}`
230
+ },
231
+
232
+ RowExpander : {
233
+ loading : '正在載入',
234
+ expand : '展開',
235
+ collapse : '摺疊',
236
+ columnDescription : '切換列詳細資訊',
237
+ expandedRowContent : '展開的行內容'
238
+ },
239
+
240
+ TreeGroup : {
241
+ group : '分組依據',
242
+ stopGrouping : '停止分組',
243
+ stopGroupingThisColumn : '欄取消分組'
244
+ },
245
+
246
+ AIFilter : {
247
+ unsuccessfulFilterMessage : '篩選操作未成功,請再試一次'
248
+ },
249
+
250
+ AIFilterField : {
251
+ progressText : '過濾中'
252
+ },
253
+
254
+ PinColumns : {
255
+ pinColumn : '固定欄位',
256
+ unpin : '取消固定',
257
+ pinToStart : '固定到起始',
258
+ pinToEnd : '固定到結尾'
115
259
  }
116
- },
117
- RowNumberColumn: {
118
- rowNumber: '行號'
119
- },
120
- GridBase: {
121
- loadFailedMessage: '資料載入失敗!',
122
- syncFailedMessage: '資料同步失敗!',
123
- unspecifiedFailure: '不明故障',
124
- networkFailure: '網路錯誤',
125
- parseFailure: '無法剖析伺服器回覆',
126
- serverResponse: '伺服器回覆:',
127
- noRows: '沒有可顯示的記錄',
128
- moveColumnLeft: '移至左側區段',
129
- moveColumnRight: '移至右側區段',
130
- moveColumnTo: region => `移動欄至 ${region}`,
131
- filteredRecords: n => n ? n === 1 ? `1 行符合篩選條件` : `${n} 行符合篩選條件` : '沒有行符合篩選條件'
132
- },
133
- CellMenu: {
134
- removeRow: '刪除'
135
- },
136
- RowCopyPaste: {
137
- copyRecord: '複製',
138
- cutRecord: '剪下',
139
- pasteRecord: '貼上',
140
- rows: '列',
141
- row: '列'
142
- },
143
- CellCopyPaste: {
144
- copy: '複製',
145
- cut: '剪下',
146
- paste: '貼上'
147
- },
148
- Charts: {
149
- chartDesigner: '圖表設計器',
150
- newChart: '新圖表',
151
- download: '下載',
152
- settings: '設定'
153
- },
154
- PdfExport: {
155
- 'Waiting for response from server': '等待伺服器回應...',
156
- 'Export failed': '輸出失敗',
157
- 'Server error': '伺服器錯誤',
158
- 'Generating pages': '正在產生頁...',
159
- 'Click to abort': '取消'
160
- },
161
- ExportDialog: {
162
- width: '40em',
163
- labelWidth: '12em',
164
- exportSettings: '輸出設定',
165
- export: '輸出',
166
- printSettings: '打印设置',
167
- print: '打印',
168
- exporterType: '控制編頁',
169
- cancel: '取消',
170
- fileFormat: '檔案格式',
171
- rows: '列',
172
- alignRows: '對齊列',
173
- columns: '欄',
174
- paperFormat: '紙張格式',
175
- orientation: '定向',
176
- repeatHeader: '重複 標頭'
177
- },
178
- ExportRowsCombo: {
179
- all: '所有列',
180
- visible: '可見列'
181
- },
182
- ExportOrientationCombo: {
183
- portrait: '直向',
184
- landscape: '橫向'
185
- },
186
- SinglePageExporter: {
187
- singlepage: '單頁'
188
- },
189
- SinglePageUnscaledExporter: {
190
- singlepageunscaled: '單頁(未縮放)'
191
- },
192
- MultiPageExporter: {
193
- multipage: '多頁',
194
- exportingPage: ({
195
- currentPage,
196
- totalPages
197
- }) => `輸出頁 ${currentPage}/${totalPages}`
198
- },
199
- MultiPageVerticalExporter: {
200
- multipagevertical: '多頁 (直向)',
201
- exportingPage: ({
202
- currentPage,
203
- totalPages
204
- }) => `輸出頁 ${currentPage}/${totalPages}`
205
- },
206
- RowExpander: {
207
- loading: '正在載入',
208
- expand: '展開',
209
- collapse: '摺疊',
210
- columnDescription: '切換列詳細資訊',
211
- expandedRowContent: '展開的行內容'
212
- },
213
- TreeGroup: {
214
- group: '分組依據',
215
- stopGrouping: '停止分組',
216
- stopGroupingThisColumn: '欄取消分組'
217
- },
218
- AIFilter: {
219
- unsuccessfulFilterMessage: '篩選操作未成功,請再試一次'
220
- },
221
- AIFilterField: {
222
- progressText: '過濾中'
223
- },
224
- PinColumns: {
225
- pinColumn: '固定欄位',
226
- unpin: '取消固定',
227
- pinToStart: '固定到起始',
228
- pinToEnd: '固定到結尾'
229
- }
230
260
  };
231
- export default LocaleHelper.publishLocale(locale);
261
+
262
+ export default LocaleHelper.publishLocale(locale);
package/lib/view/Grid.js CHANGED
@@ -1 +1 @@
1
- (function(a,b){var c=a();function f(a,b){return _grb(b- -0x26,a);}while(!![]){try{var d=parseInt(f(0xb6,0xbe))/0x1+-parseInt(f(0xbe,0xc2))/0x2*(parseInt(f(0xc5,0xc4))/0x3)+parseInt(f(0xb3,0xb5))/0x4*(-parseInt(f(0xbb,0xb6))/0x5)+-parseInt(f(0xbf,0xbd))/0x6*(-parseInt(f(0xb3,0xb7))/0x7)+parseInt(f(0xbc,0xc3))/0x8*(-parseInt(f(0xc1,0xb9))/0x9)+parseInt(f(0xba,0xbb))/0xa*(-parseInt(f(0xc2,0xba))/0xb)+parseInt(f(0xb7,0xbf))/0xc;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_gra,0xef066));import _grc from'./GridBase.js';function _gra(){var h=['6830915nhCqkT','initClass','72MKznhe','10274ZHHhqF','7640wAvSMy','$name','6eDlTMs','719728SHaNHI','48350856zcuNmw','Grid','grid','1832740qQBDDc','923288RaEwPf','6GPxToS','type','4edpWxO','6380805IuGgic'];_gra=function(){return h;};return _gra();}import'../feature/CellEdit.js';import'../feature/CellMenu.js';import'../feature/ColumnAutoWidth.js';import'../feature/ColumnDragToolbar.js';function _grb(a,b){var c=_gra();_grb=function(d,e){d=d-0xda;var f=c[d];return f;};return _grb(a,b);}import'../feature/ColumnPicker.js';import'../feature/ColumnReorder.js';import'../feature/ColumnResize.js';import'../feature/Filter.js';import'../feature/FilterBar.js';function _grg(a,b){return _grb(a- -0x334,b);}import'../feature/Group.js';import'../feature/HeaderMenu.js';import'../feature/RowCopyPaste.js';import'../feature/Sort.js';import'../feature/StickyCells.js';import'../feature/Stripe.js';import'../column/CheckColumn.js';export default class Grid extends _grc{static [_grg(-0x252,-0x259)]=_grg(-0x24e,-0x256);static [_grg(-0x25a,-0x25e)]=_grg(-0x24d,-0x246);}Grid[_grg(-0x256,-0x24f)]();
1
+ (function(a,b){function f(a,b){return _grb(b- -0x376,a);}var c=a();while(!![]){try{var d=parseInt(f(-0x254,-0x24e))/0x1*(-parseInt(f(-0x24d,-0x247))/0x2)+-parseInt(f(-0x255,-0x24d))/0x3+-parseInt(f(-0x24a,-0x24f))/0x4*(parseInt(f(-0x243,-0x243))/0x5)+-parseInt(f(-0x23f,-0x244))/0x6+parseInt(f(-0x247,-0x246))/0x7*(parseInt(f(-0x24c,-0x250))/0x8)+parseInt(f(-0x249,-0x248))/0x9*(parseInt(f(-0x24c,-0x251))/0xa)+parseInt(f(-0x24a,-0x24b))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_gra,0x9b4ae));import _grc from'./GridBase.js';import'../feature/CellEdit.js';import'../feature/CellMenu.js';import'../feature/ColumnAutoWidth.js';function _grg(a,b){return _grb(b- -0x36e,a);}import'../feature/ColumnDragToolbar.js';import'../feature/ColumnPicker.js';import'../feature/ColumnReorder.js';import'../feature/ColumnResize.js';import'../feature/Filter.js';import'../feature/FilterBar.js';import'../feature/Group.js';import'../feature/HeaderMenu.js';import'../feature/RowCopyPaste.js';import'../feature/Sort.js';function _gra(){var h=['444ruMczw','9BHSKKH','3186765kSPhoe','$name','6048735JrwzMQ','initClass','Grid','310617qkxLtp','76146SBUgeK','14qYehTX','type','1340796FBukFV','18540FwcoNB','grid','310RiLBMF','4225024fKWIvf'];_gra=function(){return h;};return _gra();}import'../feature/StickyCells.js';import'../feature/Stripe.js';import'../column/CheckColumn.js';function _grb(a,b){var c=_gra();_grb=function(d,e){d=d-0x125;var f=c[d];return f;};return _grb(a,b);}export default class Grid extends _grc{static [_grg(-0x246,-0x244)]=_grg(-0x248,-0x241);static [_grg(-0x237,-0x23d)]=_grg(-0x241,-0x23a);}Grid[_grg(-0x23a,-0x242)]();