@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/Id.js';
3
+
3
4
  const emptyString = new String();
5
+
4
6
  const locale = {
5
- localeName: 'Id',
6
- localeDesc: 'Bahasa Indonesia',
7
- localeCode: 'id',
8
- localeRtl: false,
9
- ChecklistFilterCombo: {
10
- search: 'Cari',
11
- selectAll: 'Pilih Semua',
12
- removeAll: 'Hapus Semua',
13
- filtersSet: n => n === 1 ? `1 filter diatur` : `${n} filter diatur`,
14
- noItems: 'Tidak ada hasil ditemukan',
15
- placeholder: 'Saring...',
16
- apply: 'Terapkan'
17
- },
18
- ColumnPicker: {
19
- column: 'Kolom',
20
- columnsMenu: 'Kolom',
21
- hideColumn: 'Sembunyikan kolom',
22
- hideColumnShort: 'Sembunyikan',
23
- newColumns: 'Kolom baru',
24
- showName: column => `Tampilkan kolom${column.text ? ` ${column.text}` : ''}`,
25
- hideName: column => `Sembunyikan kolom${column.text ? ` ${column.text}` : ''}`
26
- },
27
- Filter: {
28
- applyFilter: 'Terapkan filter',
29
- filter: 'Filter',
30
- editFilter: 'Edit filter',
31
- on: 'Dengan',
32
- before: 'Sebelum',
33
- after: 'Sesudah',
34
- equals: 'Sama dengan',
35
- lessThan: 'Kurang dari',
36
- moreThan: 'Lebih dari',
37
- removeFilter: 'Hapus filter',
38
- disableFilter: 'Nonaktifkan filter'
39
- },
40
- FilterBar: {
41
- enableFilterBar: 'Tampilkan kolom filter',
42
- disableFilterBar: 'Sembunyikan kolom filter'
43
- },
44
- Group: {
45
- group: 'Kelompokkan',
46
- groupAscending: 'Kelompokkan naik',
47
- groupDescending: 'Kelompokkan turun',
48
- groupAscendingShort: 'Naik',
49
- groupDescendingShort: 'Turun',
50
- stopGrouping: 'Hentikan pengelompokan',
51
- stopGroupingShort: 'Hentikan'
52
- },
53
- HeaderMenu: {
54
- moveBefore: text => `Pindahkan sebelum "${text}"`,
55
- moveAfter: text => `Pindahkan setelah "${text}"`,
56
- collapseColumn: 'Ciutkan kolom',
57
- expandColumn: 'Perluas kolom'
58
- },
59
- ColumnRename: {
60
- rename: 'Ganti nama'
61
- },
62
- MergeCells: {
63
- mergeCells: 'Gabungkan sel',
64
- menuTooltip: 'Gabungkan sel dengan nilai yang sama ketika disortir dengan kolom ini'
65
- },
66
- Search: {
67
- searchForValue: 'Cari nilai'
68
- },
69
- Sort: {
70
- sort: 'Sortir',
71
- sortAscending: 'Sortir naik',
72
- sortDescending: 'Sortir turun',
73
- multiSort: 'Multi-sortir',
74
- removeSorter: 'Hapus penyortir',
75
- addSortAscending: 'Tambahkan penyortir naik',
76
- addSortDescending: 'Tambahkan penyortir turun',
77
- toggleSortAscending: 'Ubah ke naik',
78
- toggleSortDescending: 'Ubah ke turun',
79
- sortAscendingShort: 'Naik',
80
- sortDescendingShort: 'Turun',
81
- removeSorterShort: 'Hapus',
82
- addSortAscendingShort: '+ Naik',
83
- addSortDescendingShort: '+ Turun'
84
- },
85
- Split: {
86
- split: 'Pisahkan',
87
- unsplit: 'Gabungkan',
88
- horizontally: 'Secara Horizontal',
89
- vertically: 'Secara Vertikal',
90
- both: 'Kedua-duanya'
91
- },
92
- LockRows: {
93
- lockRow: 'Kunci baris',
94
- unlockRow: 'Buka kunci baris'
95
- },
96
- ActionColumn: {
97
- rowActions: 'Tindakan baris'
98
- },
99
- Column: {
100
- columnLabel: column => `kolom ${column.text ? `${column.text}. ` : ''}SPASI untuk menu konteks${column.canSort ? ', ENTER untuk menyortir' : ''}`,
101
- cellLabel: emptyString
102
- },
103
- WidgetColumn: {
104
- rowWidgets: 'Widget baris'
105
- },
106
- Checkbox: {
107
- toggleRowSelect: 'Aktifkan/nonaktifkan pilihan baris',
108
- toggleSelection: 'Aktifkan/nonaktifkan pilihan et data keseluruhan',
109
- toggleName: column => `Alihkan ${column.text || 'nilai'}`
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 ? ` penilaian : ${column.location.record.get(column.field) || 0}` : ''}`;
7
+
8
+ localeName : 'Id',
9
+ localeDesc : 'Bahasa Indonesia',
10
+ localeCode : 'id',
11
+ localeRtl : false,
12
+
13
+ ChecklistFilterCombo : {
14
+ search : 'Cari',
15
+ selectAll : 'Pilih Semua',
16
+ removeAll : 'Hapus Semua',
17
+ filtersSet : n => n === 1 ? `1 filter diatur` : `${n} filter diatur`,
18
+ noItems : 'Tidak ada hasil ditemukan',
19
+ placeholder : 'Saring...',
20
+ apply : 'Terapkan'
21
+ },
22
+
23
+ ColumnPicker : {
24
+ column : 'Kolom',
25
+ columnsMenu : 'Kolom',
26
+ hideColumn : 'Sembunyikan kolom',
27
+ hideColumnShort : 'Sembunyikan',
28
+ newColumns : 'Kolom baru',
29
+ showName : column => `Tampilkan kolom${column.text ? ` ${column.text}` : ''}`,
30
+ hideName : column => `Sembunyikan kolom${column.text ? ` ${column.text}` : ''}`
31
+ },
32
+
33
+ Filter : {
34
+ applyFilter : 'Terapkan filter',
35
+ filter : 'Filter',
36
+ editFilter : 'Edit filter',
37
+ on : 'Dengan',
38
+ before : 'Sebelum',
39
+ after : 'Sesudah',
40
+ equals : 'Sama dengan',
41
+ lessThan : 'Kurang dari',
42
+ moreThan : 'Lebih dari',
43
+ removeFilter : 'Hapus filter',
44
+ disableFilter : 'Nonaktifkan filter'
45
+ },
46
+
47
+ FilterBar : {
48
+ enableFilterBar : 'Tampilkan kolom filter',
49
+ disableFilterBar : 'Sembunyikan kolom filter'
50
+ },
51
+
52
+ Group : {
53
+ group : 'Kelompokkan',
54
+ groupAscending : 'Kelompokkan naik',
55
+ groupDescending : 'Kelompokkan turun',
56
+ groupAscendingShort : 'Naik',
57
+ groupDescendingShort : 'Turun',
58
+ stopGrouping : 'Hentikan pengelompokan',
59
+ stopGroupingShort : 'Hentikan'
60
+ },
61
+
62
+ HeaderMenu : {
63
+ moveBefore : text => `Pindahkan sebelum "${text}"`,
64
+ moveAfter : text => `Pindahkan setelah "${text}"`,
65
+ collapseColumn : 'Ciutkan kolom',
66
+ expandColumn : 'Perluas kolom'
67
+ },
68
+
69
+ ColumnRename : {
70
+ rename : 'Ganti nama'
71
+ },
72
+
73
+ MergeCells : {
74
+ mergeCells : 'Gabungkan sel',
75
+ menuTooltip : 'Gabungkan sel dengan nilai yang sama ketika disortir dengan kolom ini'
76
+ },
77
+
78
+ Search : {
79
+ searchForValue : 'Cari nilai'
80
+ },
81
+
82
+ Sort : {
83
+ sort : 'Sortir',
84
+ sortAscending : 'Sortir naik',
85
+ sortDescending : 'Sortir turun',
86
+ multiSort : 'Multi-sortir',
87
+ removeSorter : 'Hapus penyortir',
88
+ addSortAscending : 'Tambahkan penyortir naik',
89
+ addSortDescending : 'Tambahkan penyortir turun',
90
+ toggleSortAscending : 'Ubah ke naik',
91
+ toggleSortDescending : 'Ubah ke turun',
92
+ sortAscendingShort : 'Naik',
93
+ sortDescendingShort : 'Turun',
94
+ removeSorterShort : 'Hapus',
95
+ addSortAscendingShort : '+ Naik',
96
+ addSortDescendingShort : '+ Turun'
97
+ },
98
+
99
+ Split : {
100
+ split : 'Pisahkan',
101
+ unsplit : 'Gabungkan',
102
+ horizontally : 'Secara Horizontal',
103
+ vertically : 'Secara Vertikal',
104
+ both : 'Kedua-duanya'
105
+ },
106
+
107
+ LockRows : {
108
+ lockRow : 'Kunci baris',
109
+ unlockRow : 'Buka kunci baris'
110
+ },
111
+
112
+ ActionColumn : {
113
+ rowActions : 'Tindakan baris'
114
+ },
115
+
116
+ Column : {
117
+ columnLabel : column => `kolom ${column.text ? `${column.text}. ` : ''}SPASI untuk menu konteks${column.canSort ? ', ENTER untuk menyortir' : ''}`,
118
+ cellLabel : emptyString
119
+ },
120
+
121
+ WidgetColumn : {
122
+ rowWidgets : 'Widget baris'
123
+ },
124
+
125
+ Checkbox : {
126
+ toggleRowSelect : 'Aktifkan/nonaktifkan pilihan baris',
127
+ toggleSelection : 'Aktifkan/nonaktifkan pilihan et data keseluruhan',
128
+ toggleName : column => `Alihkan ${column.text || 'nilai'}`
129
+ },
130
+
131
+ RatingColumn : {
132
+ cellLabel : column => `${column.text ? column.text : ''} ${column.location?.record ? ` penilaian : ${column.location.record.get(column.field) || 0}` : ''}`
133
+ },
134
+
135
+ RowNumberColumn : {
136
+ rowNumber : 'Nomor baris'
137
+ },
138
+
139
+ GridBase : {
140
+ loadFailedMessage : 'Pemuatan data gagal!',
141
+ syncFailedMessage : 'Sinkronisasi data gagal!',
142
+ unspecifiedFailure : 'Kegagalan tidak ditentukan',
143
+ networkFailure : 'Kesalahan jaringan',
144
+ parseFailure : 'Gagal mengurai respons server',
145
+ serverResponse : 'Respons server:',
146
+ noRows : 'Tidak ada data untuk ditampilkan',
147
+ moveColumnLeft : 'Pindahkan ke bagian kiri',
148
+ moveColumnRight : 'Pindahkan ke bagian kanan',
149
+ moveColumnTo : region => `Pindahkan kolom ke ${region}`,
150
+ filteredRecords : n => n ? (n === 1 ? `1 baris cocok dengan filter` : `${n} baris cocok dengan filter`) : 'Tidak ada baris yang cocok dengan filter'
151
+ },
152
+
153
+ CellMenu : {
154
+ removeRow : 'Hapus'
155
+ },
156
+
157
+ RowCopyPaste : {
158
+ copyRecord : 'Salin',
159
+ cutRecord : 'Potong',
160
+ pasteRecord : 'Tempel',
161
+ rows : 'baris-baris',
162
+ row : 'baris'
163
+ },
164
+
165
+ CellCopyPaste : {
166
+ copy : 'Salin',
167
+ cut : 'Potong',
168
+ paste : 'Tempel'
169
+ },
170
+
171
+ Charts : {
172
+ chartDesigner : 'Perancang Grafik',
173
+ newChart : 'Grafik Baru',
174
+ download : 'Unduh',
175
+ settings : 'Pengaturan'
176
+ },
177
+
178
+ PdfExport : {
179
+ 'Waiting for response from server' : 'Menunggu respons dari server...',
180
+ 'Export failed' : 'Ekspor gagal',
181
+ 'Server error' : 'Kesalahan server',
182
+ 'Generating pages' : 'Membuat halaman...',
183
+ 'Click to abort' : 'Batalkan'
184
+ },
185
+
186
+ ExportDialog : {
187
+ width : '40em',
188
+ labelWidth : '12em',
189
+ exportSettings : 'Pengaturan ekspor',
190
+ export : 'Ekspor',
191
+ printSettings : 'Pengaturan Cetak',
192
+ print : 'Cetak',
193
+ exporterType : 'Mengontrol pemberian nomor halaman',
194
+ cancel : 'Batalkan',
195
+ fileFormat : 'Format file',
196
+ rows : 'Baris',
197
+ alignRows : 'Ratakan baris',
198
+ columns : 'Kolom',
199
+ paperFormat : 'Format kertas',
200
+ orientation : 'Orientasi',
201
+ repeatHeader : 'Ulangi header'
202
+ },
203
+
204
+ ExportRowsCombo : {
205
+ all : 'Semua baris',
206
+ visible : 'Baris yang dapat dilihat'
207
+ },
208
+
209
+ ExportOrientationCombo : {
210
+ portrait : 'Potret',
211
+ landscape : 'Lanskap'
212
+ },
213
+
214
+ SinglePageExporter : {
215
+ singlepage : 'Halaman tunggal'
216
+ },
217
+
218
+ SinglePageUnscaledExporter : {
219
+ singlepageunscaled : 'Halaman tunggal (tidak diskalakan)'
220
+ },
221
+
222
+ MultiPageExporter : {
223
+ multipage : 'Multi-halaman',
224
+ exportingPage : ({ currentPage, totalPages }) => `Mengekspor halaman ${currentPage}/${totalPages}`
225
+ },
226
+
227
+ MultiPageVerticalExporter : {
228
+ multipagevertical : 'Multi- halaman (vertikal)',
229
+ exportingPage : ({ currentPage, totalPages }) => `Mengekspor halaman ${currentPage}/${totalPages}`
230
+ },
231
+
232
+ RowExpander : {
233
+ loading : 'Memuat',
234
+ expand : 'Perluas',
235
+ collapse : 'Ciutkan',
236
+ columnDescription : 'Alihkan detail baris',
237
+ expandedRowContent : 'Konten baris yang diperluas'
238
+ },
239
+
240
+ TreeGroup : {
241
+ group : 'Kelompokkan berdasarkan',
242
+ stopGrouping : 'Berhenti mengelompokkan',
243
+ stopGroupingThisColumn : 'Batal kelompokkan kolom ini'
244
+ },
245
+
246
+ AIFilter : {
247
+ unsuccessfulFilterMessage : 'Operasi filter tidak berhasil, silakan coba lagi'
248
+ },
249
+
250
+ AIFilterField : {
251
+ progressText : 'Menyaring'
252
+ },
253
+
254
+ PinColumns : {
255
+ pinColumn : 'Sematkan kolom',
256
+ unpin : 'Tidak disematkan',
257
+ pinToStart : 'Sematkan ke awal',
258
+ pinToEnd : 'Sematkan ke akhir'
115
259
  }
116
- },
117
- RowNumberColumn: {
118
- rowNumber: 'Nomor baris'
119
- },
120
- GridBase: {
121
- loadFailedMessage: 'Pemuatan data gagal!',
122
- syncFailedMessage: 'Sinkronisasi data gagal!',
123
- unspecifiedFailure: 'Kegagalan tidak ditentukan',
124
- networkFailure: 'Kesalahan jaringan',
125
- parseFailure: 'Gagal mengurai respons server',
126
- serverResponse: 'Respons server:',
127
- noRows: 'Tidak ada data untuk ditampilkan',
128
- moveColumnLeft: 'Pindahkan ke bagian kiri',
129
- moveColumnRight: 'Pindahkan ke bagian kanan',
130
- moveColumnTo: region => `Pindahkan kolom ke ${region}`,
131
- filteredRecords: n => n ? n === 1 ? `1 baris cocok dengan filter` : `${n} baris cocok dengan filter` : 'Tidak ada baris yang cocok dengan filter'
132
- },
133
- CellMenu: {
134
- removeRow: 'Hapus'
135
- },
136
- RowCopyPaste: {
137
- copyRecord: 'Salin',
138
- cutRecord: 'Potong',
139
- pasteRecord: 'Tempel',
140
- rows: 'baris-baris',
141
- row: 'baris'
142
- },
143
- CellCopyPaste: {
144
- copy: 'Salin',
145
- cut: 'Potong',
146
- paste: 'Tempel'
147
- },
148
- Charts: {
149
- chartDesigner: 'Perancang Grafik',
150
- newChart: 'Grafik Baru',
151
- download: 'Unduh',
152
- settings: 'Pengaturan'
153
- },
154
- PdfExport: {
155
- 'Waiting for response from server': 'Menunggu respons dari server...',
156
- 'Export failed': 'Ekspor gagal',
157
- 'Server error': 'Kesalahan server',
158
- 'Generating pages': 'Membuat halaman...',
159
- 'Click to abort': 'Batalkan'
160
- },
161
- ExportDialog: {
162
- width: '40em',
163
- labelWidth: '12em',
164
- exportSettings: 'Pengaturan ekspor',
165
- export: 'Ekspor',
166
- printSettings: 'Pengaturan Cetak',
167
- print: 'Cetak',
168
- exporterType: 'Mengontrol pemberian nomor halaman',
169
- cancel: 'Batalkan',
170
- fileFormat: 'Format file',
171
- rows: 'Baris',
172
- alignRows: 'Ratakan baris',
173
- columns: 'Kolom',
174
- paperFormat: 'Format kertas',
175
- orientation: 'Orientasi',
176
- repeatHeader: 'Ulangi header'
177
- },
178
- ExportRowsCombo: {
179
- all: 'Semua baris',
180
- visible: 'Baris yang dapat dilihat'
181
- },
182
- ExportOrientationCombo: {
183
- portrait: 'Potret',
184
- landscape: 'Lanskap'
185
- },
186
- SinglePageExporter: {
187
- singlepage: 'Halaman tunggal'
188
- },
189
- SinglePageUnscaledExporter: {
190
- singlepageunscaled: 'Halaman tunggal (tidak diskalakan)'
191
- },
192
- MultiPageExporter: {
193
- multipage: 'Multi-halaman',
194
- exportingPage: ({
195
- currentPage,
196
- totalPages
197
- }) => `Mengekspor halaman ${currentPage}/${totalPages}`
198
- },
199
- MultiPageVerticalExporter: {
200
- multipagevertical: 'Multi- halaman (vertikal)',
201
- exportingPage: ({
202
- currentPage,
203
- totalPages
204
- }) => `Mengekspor halaman ${currentPage}/${totalPages}`
205
- },
206
- RowExpander: {
207
- loading: 'Memuat',
208
- expand: 'Perluas',
209
- collapse: 'Ciutkan',
210
- columnDescription: 'Alihkan detail baris',
211
- expandedRowContent: 'Konten baris yang diperluas'
212
- },
213
- TreeGroup: {
214
- group: 'Kelompokkan berdasarkan',
215
- stopGrouping: 'Berhenti mengelompokkan',
216
- stopGroupingThisColumn: 'Batal kelompokkan kolom ini'
217
- },
218
- AIFilter: {
219
- unsuccessfulFilterMessage: 'Operasi filter tidak berhasil, silakan coba lagi'
220
- },
221
- AIFilterField: {
222
- progressText: 'Menyaring'
223
- },
224
- PinColumns: {
225
- pinColumn: 'Sematkan kolom',
226
- unpin: 'Tidak disematkan',
227
- pinToStart: 'Sematkan ke awal',
228
- pinToEnd: 'Sematkan ke akhir'
229
- }
230
260
  };
231
- export default LocaleHelper.publishLocale(locale);
261
+
262
+ export default LocaleHelper.publishLocale(locale);