@progress/kendo-angular-spreadsheet 17.0.0-develop.4 → 17.0.0-develop.41

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 (87) hide show
  1. package/README.md +30 -19
  2. package/action-bar/formula-input.directive.d.ts +1 -1
  3. package/action-bar/list.component.d.ts +5 -4
  4. package/action-bar/namebox.component.d.ts +1 -1
  5. package/{esm2020 → esm2022}/action-bar/formula-input.directive.mjs +63 -54
  6. package/{esm2020 → esm2022}/action-bar/list.component.mjs +21 -16
  7. package/{esm2020 → esm2022}/action-bar/namebox.component.mjs +20 -12
  8. package/{esm2020 → esm2022}/common/error-handling.service.mjs +12 -6
  9. package/{esm2020 → esm2022}/common/main-menu.directive.mjs +5 -3
  10. package/{esm2020 → esm2022}/common/spreadsheet.service.mjs +10 -7
  11. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  12. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +7 -6
  13. package/esm2022/localization/messages.mjs +494 -0
  14. package/{esm2020 → esm2022}/localization/spreadsheet-localization.service.mjs +3 -3
  15. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  16. package/{esm2020 → esm2022}/sheets-bar/action-dialog.component.mjs +8 -4
  17. package/{esm2020 → esm2022}/sheets-bar/sheets-bar.component.mjs +138 -116
  18. package/{esm2020 → esm2022}/spreadsheet.component.mjs +236 -194
  19. package/{esm2020 → esm2022}/spreadsheet.module.mjs +4 -4
  20. package/{esm2020 → esm2022}/tools/align/align-tool.directive.mjs +8 -5
  21. package/{esm2020 → esm2022}/tools/align/horizontal-align-tool.directive.mjs +8 -5
  22. package/{esm2020 → esm2022}/tools/align/vertical-align-tool.directive.mjs +8 -5
  23. package/{esm2020 → esm2022}/tools/colorpicker/spreadsheet-backcolor.component.mjs +32 -28
  24. package/{esm2020 → esm2022}/tools/colorpicker/spreadsheet-forecolor.component.mjs +32 -28
  25. package/{esm2020 → esm2022}/tools/decrease-decimal-tool.directive.mjs +3 -3
  26. package/{esm2020 → esm2022}/tools/font-family/font-family-dropdownlist.component.mjs +6 -4
  27. package/{esm2020 → esm2022}/tools/font-family/spreadsheet-fontfamily-tool.component.mjs +4 -4
  28. package/{esm2020 → esm2022}/tools/font-size/decrease-font-tool.directive.mjs +4 -3
  29. package/{esm2020 → esm2022}/tools/font-size/font-size-dropdownlist.component.mjs +6 -4
  30. package/{esm2020 → esm2022}/tools/font-size/increase-font-tool.directive.mjs +4 -3
  31. package/{esm2020 → esm2022}/tools/font-size/spreadsheet-fontsize-tool.component.mjs +4 -4
  32. package/{esm2020 → esm2022}/tools/format-tool.directive.mjs +19 -16
  33. package/{esm2020 → esm2022}/tools/gridlines-tool.directive.mjs +3 -3
  34. package/{esm2020 → esm2022}/tools/history/redo-tool.mjs +3 -3
  35. package/{esm2020 → esm2022}/tools/history/undo-tool.mjs +3 -3
  36. package/{esm2020 → esm2022}/tools/increase-decimal-tool.directive.mjs +3 -3
  37. package/{esm2020 → esm2022}/tools/insert/insert-link-dialog.component.mjs +7 -5
  38. package/{esm2020 → esm2022}/tools/insert/insert-link-tool.directive.mjs +5 -3
  39. package/{esm2020 → esm2022}/tools/load-file.component.mjs +27 -28
  40. package/{esm2020 → esm2022}/tools/save-file-tool.directive.mjs +7 -4
  41. package/{esm2020 → esm2022}/tools/shared/dialog-content.component.mjs +10 -5
  42. package/{esm2020 → esm2022}/tools/shared/spreadsheet-command-base.mjs +9 -4
  43. package/{esm2020 → esm2022}/tools/shared/spreadsheet-command-button.mjs +6 -0
  44. package/{esm2020 → esm2022}/tools/shared/spreadsheet-dropdown-tools-base.mjs +25 -18
  45. package/{esm2020 → esm2022}/tools/shared/spreadsheet-dropdownlist.base.mjs +12 -8
  46. package/{esm2020 → esm2022}/tools/tables/add-column-left-button.directive.mjs +3 -3
  47. package/{esm2020 → esm2022}/tools/tables/add-column-right-button.directive.mjs +3 -3
  48. package/{esm2020 → esm2022}/tools/tables/add-row-above-button.directive.mjs +3 -3
  49. package/{esm2020 → esm2022}/tools/tables/add-row-below-button.directive.mjs +3 -3
  50. package/{esm2020 → esm2022}/tools/tables/delete-column-button.directive.mjs +3 -3
  51. package/{esm2020 → esm2022}/tools/tables/delete-row-button.directive.mjs +3 -3
  52. package/{esm2020 → esm2022}/tools/tables/merge-tool.directive.mjs +8 -5
  53. package/{esm2020 → esm2022}/tools/text-wrap-tool.directive.mjs +3 -3
  54. package/esm2022/tools/tools.service.mjs +61 -0
  55. package/{esm2020 → esm2022}/tools/typographical-emphasis/bold-tool.directive.mjs +3 -3
  56. package/{esm2020 → esm2022}/tools/typographical-emphasis/italic-tool.directive.mjs +3 -3
  57. package/{esm2020 → esm2022}/tools/typographical-emphasis/underline-tool.directive.mjs +3 -3
  58. package/{fesm2020 → fesm2022}/progress-kendo-angular-spreadsheet.mjs +1194 -709
  59. package/localization/messages.d.ts +1 -1
  60. package/models/sheet-info.d.ts +2 -2
  61. package/package.json +26 -32
  62. package/schematics/ngAdd/index.js +2 -2
  63. package/sheets-bar/sheets-bar.component.d.ts +1 -1
  64. package/spreadsheet.component.d.ts +1 -1
  65. package/tools/load-file.component.d.ts +0 -3
  66. package/tools/shared/commands.d.ts +1 -1
  67. package/tools/shared/spreadsheet-dropdown-tools-base.d.ts +1 -3
  68. package/tools/shared/spreadsheet-dropdownlist.base.d.ts +1 -1
  69. package/esm2020/localization/messages.mjs +0 -175
  70. package/esm2020/tools/tools.service.mjs +0 -60
  71. package/fesm2015/progress-kendo-angular-spreadsheet.mjs +0 -4580
  72. /package/{esm2020 → esm2022}/common/sheet-changes.mjs +0 -0
  73. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  74. /package/{esm2020 → esm2022}/index.mjs +0 -0
  75. /package/{esm2020 → esm2022}/models/events.mjs +0 -0
  76. /package/{esm2020 → esm2022}/models/index.mjs +0 -0
  77. /package/{esm2020 → esm2022}/models/main-menu-item.mjs +0 -0
  78. /package/{esm2020 → esm2022}/models/sheet-info.mjs +0 -0
  79. /package/{esm2020 → esm2022}/progress-kendo-angular-spreadsheet.mjs +0 -0
  80. /package/{esm2020 → esm2022}/sheets-bar/utils.mjs +0 -0
  81. /package/{esm2020 → esm2022}/tools/index.mjs +0 -0
  82. /package/{esm2020 → esm2022}/tools/shared/command-icons.mjs +0 -0
  83. /package/{esm2020 → esm2022}/tools/shared/commands.mjs +0 -0
  84. /package/{esm2020 → esm2022}/tools/shared/constants.mjs +0 -0
  85. /package/{esm2020 → esm2022}/tools/tables/index.mjs +0 -0
  86. /package/{esm2020 → esm2022}/tools/utils.mjs +0 -0
  87. /package/{esm2020 → esm2022}/utils.mjs +0 -0
@@ -0,0 +1,494 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, Input } from '@angular/core';
6
+ import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export class MessagesDirective extends ComponentMessages {
12
+ /* Tabs */
13
+ /**
14
+ * The name of the "Home" toolbar tab
15
+ */
16
+ home;
17
+ /**
18
+ * The name of the "File" toolbar tab
19
+ */
20
+ file;
21
+ /**
22
+ * The name of the "Insert" toolbar tab
23
+ */
24
+ insert;
25
+ /**
26
+ * The name of the "Format" toolbar tab
27
+ */
28
+ formatTab;
29
+ /* Section of Tools Messages */
30
+ /**
31
+ * The title of the Save File tool
32
+ */
33
+ saveFile;
34
+ /**
35
+ * The title of the Load File tool
36
+ */
37
+ loadFile;
38
+ /**
39
+ * The title of the Bold tool
40
+ */
41
+ bold;
42
+ /**
43
+ * The title of the Italic tool
44
+ */
45
+ italic;
46
+ /**
47
+ * The title of the Underline tool
48
+ */
49
+ underline;
50
+ /**
51
+ * The title of the Format tool
52
+ */
53
+ format;
54
+ /**
55
+ * The title of the Font Family tool
56
+ */
57
+ fontFamily;
58
+ /**
59
+ * The title of the Font Size tool
60
+ */
61
+ fontSize;
62
+ /**
63
+ * The title of the Undo tool
64
+ */
65
+ undo;
66
+ /**
67
+ * The title of the Redo tool
68
+ */
69
+ redo;
70
+ /**
71
+ * The title of the tool that changes the text background color
72
+ */
73
+ background;
74
+ /**
75
+ * The title of the tool that changes the text font color
76
+ */
77
+ color;
78
+ /**
79
+ * The title of the Grid Lines tool
80
+ */
81
+ gridLines;
82
+ /**
83
+ * The title of the tool that adds new column before currently selected column
84
+ */
85
+ addColumnLeft;
86
+ /**
87
+ * The title of the tool that adds new column after currently selected column
88
+ */
89
+ addColumnRight;
90
+ /**
91
+ * The title of the tool that adds new row below currently selected row
92
+ */
93
+ addRowBelow;
94
+ /**
95
+ * The title of the tool that adds new row above currently selected row
96
+ */
97
+ addRowAbove;
98
+ /**
99
+ * The title of the tool that deletes a column
100
+ */
101
+ deleteColumn;
102
+ /**
103
+ * The title of the tool that deletes a row
104
+ */
105
+ deleteRow;
106
+ /**
107
+ * The title of the Text Wrap tool
108
+ */
109
+ wrap;
110
+ /**
111
+ * The title of the Text Align tool
112
+ */
113
+ align;
114
+ /**
115
+ * The title of the Text Align Horizontal tool
116
+ */
117
+ alignHorizontal;
118
+ /**
119
+ * The title of the Text Align Vertical tool
120
+ */
121
+ alignVertical;
122
+ /**
123
+ * The title of the Text Align Left tool
124
+ */
125
+ alignLeft;
126
+ /**
127
+ * The title of the Text Align Center tool
128
+ */
129
+ alignCenter;
130
+ /**
131
+ * The title of the Text Align Right tool
132
+ */
133
+ alignRight;
134
+ /**
135
+ * The title of the Text Align Justify tool
136
+ */
137
+ alignJustify;
138
+ /**
139
+ * The title of the Text Align Top tool
140
+ */
141
+ alignTop;
142
+ /**
143
+ * The title of the Text Align Middle tool
144
+ */
145
+ alignMiddle;
146
+ /**
147
+ * The title of the Text Align Bottom tool
148
+ */
149
+ alignBottom;
150
+ /* Dialogs */
151
+ /**
152
+ * The text of the Apply button in all Spreadsheet dialogs
153
+ */
154
+ dialogApply;
155
+ /* Dialogs */
156
+ /**
157
+ * The text of the Cancel button in all Spreadsheet dialogs
158
+ */
159
+ dialogCancel;
160
+ /**
161
+ * The text of the Delete button in the Delete sheet dialog
162
+ */
163
+ dialogDelete;
164
+ /**
165
+ * The text of the Rename button in the Rename sheet dialog
166
+ */
167
+ dialogRename;
168
+ /**
169
+ * The text of the **Insert** button in all Spreadsheet dialogs
170
+ */
171
+ dialogInsert;
172
+ /**
173
+ * The text of the **Remove link** button in the Link tool dialog
174
+ */
175
+ dialogRemoveLink;
176
+ /**
177
+ * The title of the Delete sheet dialog
178
+ */
179
+ delete;
180
+ /**
181
+ * The title of the Rename sheet dialog
182
+ */
183
+ rename;
184
+ /**
185
+ * The title of the Name Box input
186
+ */
187
+ nameBox;
188
+ /**
189
+ * The title of the Formula input
190
+ */
191
+ formulaInput;
192
+ /**
193
+ * The title of the Add new sheet button
194
+ */
195
+ addSheet;
196
+ /**
197
+ * The title of the Sheets menu button
198
+ */
199
+ sheetsMenu;
200
+ /**
201
+ * The text of the View toolbar tab
202
+ */
203
+ view;
204
+ /**
205
+ * The title of the Cells Merge tool
206
+ */
207
+ merge;
208
+ /**
209
+ * The title of the Merge horizontally tool
210
+ */
211
+ mergeHorizontally;
212
+ /**
213
+ * The title of the Merge vertically tool
214
+ */
215
+ mergeVertically;
216
+ /**
217
+ * The title of the Merge all tool
218
+ */
219
+ mergeAll;
220
+ /**
221
+ * The title of the Unmerge tool
222
+ */
223
+ unmerge;
224
+ /**
225
+ * The title of the tool that inserts a link
226
+ */
227
+ insertLink;
228
+ /**
229
+ * The title of the tool that inserts a link
230
+ */
231
+ increaseDecimal;
232
+ /**
233
+ * The title of the tool that inserts a link
234
+ */
235
+ decreaseDecimal;
236
+ /**
237
+ * The title of the tool that increases the cell font size
238
+ */
239
+ increaseFontSize;
240
+ /**
241
+ * The title of the tool that decreases the cell font size
242
+ */
243
+ decreaseFontSize;
244
+ /**
245
+ * The content of the dialog that warns about an unsupported file type
246
+ */
247
+ openUnsupported;
248
+ /**
249
+ * The content of the dialog that warns about modifying a merged cell
250
+ */
251
+ modifyMerged;
252
+ /**
253
+ * The content of the dialog that warns about modifying a disabled cell
254
+ */
255
+ cannotModifyDisabled;
256
+ /**
257
+ * The text of the **OK** dialog button
258
+ */
259
+ dialogOk;
260
+ /**
261
+ * The title of an error dialog
262
+ */
263
+ dialogError;
264
+ /**
265
+ * The content of the dialog that warns about duplicated sheet name
266
+ */
267
+ duplicateSheetName;
268
+ /**
269
+ * The Copy command text
270
+ */
271
+ copy;
272
+ /**
273
+ * The Cut command text
274
+ */
275
+ cut;
276
+ /**
277
+ * The Paste command text
278
+ */
279
+ paste;
280
+ /**
281
+ * The Hide row command text
282
+ */
283
+ hideRow;
284
+ /**
285
+ * The Unhide row command text
286
+ */
287
+ unhideRow;
288
+ /**
289
+ * The Hide column command text
290
+ */
291
+ hideColumn;
292
+ /**
293
+ * The Unhide column command text
294
+ */
295
+ unhideColumn;
296
+ /**
297
+ * The text of the Sheet menu Delete option
298
+ */
299
+ sheetDelete;
300
+ /**
301
+ * The text of the Sheet menu Rename option
302
+ */
303
+ sheetRename;
304
+ /**
305
+ * The text of the Sheet menu Hide option
306
+ */
307
+ sheetHide;
308
+ /**
309
+ * The text of the Sheet menu Duplicate option
310
+ */
311
+ sheetDuplicate;
312
+ /**
313
+ * The text of the Sheet menu Move Left option
314
+ */
315
+ sheetMoveLeft;
316
+ /**
317
+ * The text of the Sheet menu Move Right option
318
+ */
319
+ sheetMoveRight;
320
+ /**
321
+ * The content of the dialog that warns about invalid name input.
322
+ *
323
+ * The content consists of a two-part message - the input value and a localizable string.
324
+ * For user value input **A1%**, the default dialog content will be **Invalid name: A1%**.
325
+ *
326
+ * To allow reordering the input value and the localizable part, the `invalidNameError` accepts a string with a
327
+ * placeholder for the input value, for example, **{inputValue} is invalid**. The `{inputValue}` placeholder will be replaced
328
+ * internally with the current value, and the resulting label will be rendered as **A1% is invalid**.
329
+ */
330
+ invalidNameError;
331
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MessagesDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
332
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MessagesDirective, isStandalone: true, selector: "[kendoSpreadsheetMessages]", inputs: { home: "home", file: "file", insert: "insert", formatTab: "formatTab", saveFile: "saveFile", loadFile: "loadFile", bold: "bold", italic: "italic", underline: "underline", format: "format", fontFamily: "fontFamily", fontSize: "fontSize", undo: "undo", redo: "redo", background: "background", color: "color", gridLines: "gridLines", addColumnLeft: "addColumnLeft", addColumnRight: "addColumnRight", addRowBelow: "addRowBelow", addRowAbove: "addRowAbove", deleteColumn: "deleteColumn", deleteRow: "deleteRow", wrap: "wrap", align: "align", alignHorizontal: "alignHorizontal", alignVertical: "alignVertical", alignLeft: "alignLeft", alignCenter: "alignCenter", alignRight: "alignRight", alignJustify: "alignJustify", alignTop: "alignTop", alignMiddle: "alignMiddle", alignBottom: "alignBottom", dialogApply: "dialogApply", dialogCancel: "dialogCancel", dialogDelete: "dialogDelete", dialogRename: "dialogRename", dialogInsert: "dialogInsert", dialogRemoveLink: "dialogRemoveLink", delete: "delete", rename: "rename", nameBox: "nameBox", formulaInput: "formulaInput", addSheet: "addSheet", sheetsMenu: "sheetsMenu", view: "view", merge: "merge", mergeHorizontally: "mergeHorizontally", mergeVertically: "mergeVertically", mergeAll: "mergeAll", unmerge: "unmerge", insertLink: "insertLink", increaseDecimal: "increaseDecimal", decreaseDecimal: "decreaseDecimal", increaseFontSize: "increaseFontSize", decreaseFontSize: "decreaseFontSize", openUnsupported: "openUnsupported", modifyMerged: "modifyMerged", cannotModifyDisabled: "cannotModifyDisabled", dialogOk: "dialogOk", dialogError: "dialogError", duplicateSheetName: "duplicateSheetName", copy: "copy", cut: "cut", paste: "paste", hideRow: "hideRow", unhideRow: "unhideRow", hideColumn: "hideColumn", unhideColumn: "unhideColumn", sheetDelete: "sheetDelete", sheetRename: "sheetRename", sheetHide: "sheetHide", sheetDuplicate: "sheetDuplicate", sheetMoveLeft: "sheetMoveLeft", sheetMoveRight: "sheetMoveRight", invalidNameError: "invalidNameError" }, usesInheritance: true, ngImport: i0 });
333
+ }
334
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MessagesDirective, decorators: [{
335
+ type: Directive,
336
+ args: [{
337
+ selector: '[kendoSpreadsheetMessages]',
338
+ standalone: true
339
+ }]
340
+ }], propDecorators: { home: [{
341
+ type: Input
342
+ }], file: [{
343
+ type: Input
344
+ }], insert: [{
345
+ type: Input
346
+ }], formatTab: [{
347
+ type: Input
348
+ }], saveFile: [{
349
+ type: Input
350
+ }], loadFile: [{
351
+ type: Input
352
+ }], bold: [{
353
+ type: Input
354
+ }], italic: [{
355
+ type: Input
356
+ }], underline: [{
357
+ type: Input
358
+ }], format: [{
359
+ type: Input
360
+ }], fontFamily: [{
361
+ type: Input
362
+ }], fontSize: [{
363
+ type: Input
364
+ }], undo: [{
365
+ type: Input
366
+ }], redo: [{
367
+ type: Input
368
+ }], background: [{
369
+ type: Input
370
+ }], color: [{
371
+ type: Input
372
+ }], gridLines: [{
373
+ type: Input
374
+ }], addColumnLeft: [{
375
+ type: Input
376
+ }], addColumnRight: [{
377
+ type: Input
378
+ }], addRowBelow: [{
379
+ type: Input
380
+ }], addRowAbove: [{
381
+ type: Input
382
+ }], deleteColumn: [{
383
+ type: Input
384
+ }], deleteRow: [{
385
+ type: Input
386
+ }], wrap: [{
387
+ type: Input
388
+ }], align: [{
389
+ type: Input
390
+ }], alignHorizontal: [{
391
+ type: Input
392
+ }], alignVertical: [{
393
+ type: Input
394
+ }], alignLeft: [{
395
+ type: Input
396
+ }], alignCenter: [{
397
+ type: Input
398
+ }], alignRight: [{
399
+ type: Input
400
+ }], alignJustify: [{
401
+ type: Input
402
+ }], alignTop: [{
403
+ type: Input
404
+ }], alignMiddle: [{
405
+ type: Input
406
+ }], alignBottom: [{
407
+ type: Input
408
+ }], dialogApply: [{
409
+ type: Input
410
+ }], dialogCancel: [{
411
+ type: Input
412
+ }], dialogDelete: [{
413
+ type: Input
414
+ }], dialogRename: [{
415
+ type: Input
416
+ }], dialogInsert: [{
417
+ type: Input
418
+ }], dialogRemoveLink: [{
419
+ type: Input
420
+ }], delete: [{
421
+ type: Input
422
+ }], rename: [{
423
+ type: Input
424
+ }], nameBox: [{
425
+ type: Input
426
+ }], formulaInput: [{
427
+ type: Input
428
+ }], addSheet: [{
429
+ type: Input
430
+ }], sheetsMenu: [{
431
+ type: Input
432
+ }], view: [{
433
+ type: Input
434
+ }], merge: [{
435
+ type: Input
436
+ }], mergeHorizontally: [{
437
+ type: Input
438
+ }], mergeVertically: [{
439
+ type: Input
440
+ }], mergeAll: [{
441
+ type: Input
442
+ }], unmerge: [{
443
+ type: Input
444
+ }], insertLink: [{
445
+ type: Input
446
+ }], increaseDecimal: [{
447
+ type: Input
448
+ }], decreaseDecimal: [{
449
+ type: Input
450
+ }], increaseFontSize: [{
451
+ type: Input
452
+ }], decreaseFontSize: [{
453
+ type: Input
454
+ }], openUnsupported: [{
455
+ type: Input
456
+ }], modifyMerged: [{
457
+ type: Input
458
+ }], cannotModifyDisabled: [{
459
+ type: Input
460
+ }], dialogOk: [{
461
+ type: Input
462
+ }], dialogError: [{
463
+ type: Input
464
+ }], duplicateSheetName: [{
465
+ type: Input
466
+ }], copy: [{
467
+ type: Input
468
+ }], cut: [{
469
+ type: Input
470
+ }], paste: [{
471
+ type: Input
472
+ }], hideRow: [{
473
+ type: Input
474
+ }], unhideRow: [{
475
+ type: Input
476
+ }], hideColumn: [{
477
+ type: Input
478
+ }], unhideColumn: [{
479
+ type: Input
480
+ }], sheetDelete: [{
481
+ type: Input
482
+ }], sheetRename: [{
483
+ type: Input
484
+ }], sheetHide: [{
485
+ type: Input
486
+ }], sheetDuplicate: [{
487
+ type: Input
488
+ }], sheetMoveLeft: [{
489
+ type: Input
490
+ }], sheetMoveRight: [{
491
+ type: Input
492
+ }], invalidNameError: [{
493
+ type: Input
494
+ }] } });
@@ -13,10 +13,10 @@ export class SpreadsheetLocalizationService extends LocalizationService {
13
13
  constructor(prefix, messageService, _rtl) {
14
14
  super(prefix, messageService, _rtl);
15
15
  }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpreadsheetLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
17
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpreadsheetLocalizationService });
16
18
  }
17
- SpreadsheetLocalizationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SpreadsheetLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
18
- SpreadsheetLocalizationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SpreadsheetLocalizationService });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SpreadsheetLocalizationService, decorators: [{
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpreadsheetLocalizationService, decorators: [{
20
20
  type: Injectable
21
21
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
22
22
  type: Inject,
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-spreadsheet',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1728985215,
13
- version: '17.0.0-develop.4',
12
+ publishDate: 1730818370,
13
+ version: '17.0.0-develop.41',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
15
15
  };
@@ -13,6 +13,10 @@ import * as i1 from "@progress/kendo-angular-dialog";
13
13
  * @hidden
14
14
  */
15
15
  export class ActionDialogComponent extends DialogContentBase {
16
+ dialog;
17
+ commandName;
18
+ value;
19
+ tabindex;
16
20
  constructor(dialog) {
17
21
  super(dialog);
18
22
  this.dialog = dialog;
@@ -22,9 +26,8 @@ export class ActionDialogComponent extends DialogContentBase {
22
26
  this.tabindex = args.tabindex;
23
27
  this.commandName = args.commandName;
24
28
  }
25
- }
26
- ActionDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ActionDialogComponent, deps: [{ token: i1.DialogRef }], target: i0.ɵɵFactoryTarget.Component });
27
- ActionDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ActionDialogComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
29
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionDialogComponent, deps: [{ token: i1.DialogRef }], target: i0.ɵɵFactoryTarget.Component });
30
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ActionDialogComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
28
31
  <ng-container *ngIf="commandName === 'delete'">
29
32
  <p>The deleted sheet data will be lost.</p>
30
33
  <p>Are you sure you want to proceed?</p>
@@ -43,7 +46,8 @@ ActionDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
43
46
  </div>
44
47
  </form>
45
48
  `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
46
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ActionDialogComponent, decorators: [{
49
+ }
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionDialogComponent, decorators: [{
47
51
  type: Component,
48
52
  args: [{
49
53
  template: `