@progress/kendo-angular-spreadsheet 19.1.2-develop.3 → 19.1.2-develop.5

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/directives.d.ts CHANGED
@@ -35,6 +35,23 @@ import { SpreadsheetHorizontalTextAlignDirective } from './tools/align/horizonta
35
35
  import { SpreadsheetVerticalTextAlignDirective } from './tools/align/vertical-align-tool.directive';
36
36
  import { SpreadsheetDataValidationDirective } from './tools/data-validation-tool.directive';
37
37
  /**
38
- * Utility array that contains all `@progress/kendo-angular-spreadsheet` related components and directives.
38
+ * Use this utility array to access all `@progress/kendo-angular-spreadsheet`-related components and directives in a standalone Angular component.
39
+ *
40
+ * @example
41
+ * ```typescript
42
+ * import { Component } from '@angular/core';
43
+ * import { KENDO_SPREADSHEET } from '@progress/kendo-angular-spreadsheet';
44
+ *
45
+ * @Component({
46
+ * selector: 'my-app',
47
+ * standalone: true,
48
+ * imports: [KENDO_SPREADSHEET],
49
+ * template: `<kendo-spreadsheet [sheets]="sheets"></kendo-spreadsheet>`
50
+ * })
51
+ *
52
+ * export class AppComponent {
53
+ * public sheets = SheetDescriptor[] = sampleSheet;
54
+ * }
55
+ * ```
39
56
  */
40
57
  export declare const KENDO_SPREADSHEET: readonly [typeof SpreadsheetComponent, typeof CustomMessagesComponent, typeof SpreadsheetBoldDirective, typeof SpreadsheetDataValidationDirective, typeof SpreadsheetItalicDirective, typeof SpreadsheetUnderlineDirective, typeof SpreadsheetLoadFileComponent, typeof SpreadsheetSaveFileDirective, typeof SpreadsheetFormatDirective, typeof SpreadsheetUndoDirective, typeof SpreadsheetRedoDirective, typeof SpreadsheetFontFamilyComponent, typeof SpreadsheetFontSizeComponent, typeof SpreadsheetBackColorComponent, typeof SpreadsheetForeColorComponent, typeof SpreadsheetGridLinesDirective, typeof SpreadsheetAddColumnLeftButtonDirective, typeof SpreadsheetAddColumnRightButtonDirective, typeof SpreadsheetAddRowAboveButtonDirective, typeof SpreadsheetAddRowBelowButtonDirective, typeof SpreadsheetDeleteColumnButtonDirective, typeof SpreadsheetDeleteRowButtonDirective, typeof SpreadsheetTextAlignDirective, typeof SpreadsheetTextWrapDirective, typeof SpreadsheetMergeDirective, typeof SpreadsheetInsertLinkDirective, typeof SpreadsheetIncreaseFontSizeDirective, typeof SpreadsheetDecreaseFontSizeDirective, typeof SpreadsheetIncreaseDecimalDirective, typeof SpreadsheetDecreaseDecimalDirective, typeof SpreadsheetHorizontalTextAlignDirective, typeof SpreadsheetVerticalTextAlignDirective];
@@ -35,7 +35,24 @@ import { SpreadsheetHorizontalTextAlignDirective } from './tools/align/horizonta
35
35
  import { SpreadsheetVerticalTextAlignDirective } from './tools/align/vertical-align-tool.directive';
36
36
  import { SpreadsheetDataValidationDirective } from './tools/data-validation-tool.directive';
37
37
  /**
38
- * Utility array that contains all `@progress/kendo-angular-spreadsheet` related components and directives.
38
+ * Use this utility array to access all `@progress/kendo-angular-spreadsheet`-related components and directives in a standalone Angular component.
39
+ *
40
+ * @example
41
+ * ```typescript
42
+ * import { Component } from '@angular/core';
43
+ * import { KENDO_SPREADSHEET } from '@progress/kendo-angular-spreadsheet';
44
+ *
45
+ * @Component({
46
+ * selector: 'my-app',
47
+ * standalone: true,
48
+ * imports: [KENDO_SPREADSHEET],
49
+ * template: `<kendo-spreadsheet [sheets]="sheets"></kendo-spreadsheet>`
50
+ * })
51
+ *
52
+ * export class AppComponent {
53
+ * public sheets = SheetDescriptor[] = sampleSheet;
54
+ * }
55
+ * ```
39
56
  */
40
57
  export const KENDO_SPREADSHEET = [
41
58
  SpreadsheetComponent,
@@ -8,7 +8,16 @@ import { MessagesDirective } from './messages';
8
8
  import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
- * Custom component messages override default component messages.
11
+ * Overrides the default Spreadsheet component messages with custom messages.
12
+ * You can use this component to provide custom text for the Spreadsheet UI elements, such as the toolbar, dialogs, and other components.
13
+ *
14
+ * @example
15
+ * ```html
16
+ * <kendo-spreadsheet [sheets]="sheets">
17
+ * <kendo-spreadsheet-messages home="Home" file="File">
18
+ * </kendo-spreadsheet-messages>
19
+ * </kendo-spreadsheet>
20
+ * ```
12
21
  */
13
22
  export class CustomMessagesComponent extends MessagesDirective {
14
23
  service;
@@ -11,450 +11,450 @@ import * as i0 from "@angular/core";
11
11
  export class MessagesDirective extends ComponentMessages {
12
12
  /* Tabs */
13
13
  /**
14
- * The name of the "Home" toolbar tab
14
+ * Sets the name for the **Home** toolbar tab.
15
15
  */
16
16
  home;
17
17
  /**
18
- * The name of the "File" toolbar tab
18
+ * Sets the name for the **File** toolbar tab.
19
19
  */
20
20
  file;
21
21
  /**
22
- * The name of the "Insert" toolbar tab
22
+ * Sets the name for the **Insert** toolbar tab.
23
23
  */
24
24
  insert;
25
25
  /**
26
- * The name of the "Format" toolbar tab
26
+ * Sets the name for the **Format** toolbar tab.
27
27
  */
28
28
  formatTab;
29
29
  /**
30
- * The name of the "Data" toolbar tab
30
+ * Sets the name for the **Data** toolbar tab.
31
31
  */
32
32
  dataTab;
33
33
  /* Section of Tools Messages */
34
34
  /**
35
- * The title of the Save File tool
35
+ * Sets the title for the **Save** File tool.
36
36
  */
37
37
  saveFile;
38
38
  /**
39
- * The title of the Load File tool
39
+ * Sets the title for the **Load File** tool.
40
40
  */
41
41
  loadFile;
42
42
  /**
43
- * The title of the Bold tool
43
+ * Sets the title for the **Bold** tool.
44
44
  */
45
45
  bold;
46
46
  /**
47
- * The title of the Data Validation tool
47
+ * Sets the title for the **Data Validation** tool.
48
48
  */
49
49
  dataValidation;
50
50
  /**
51
- * The text of the Cell Range input label in the data validation dialog
51
+ * Sets the label text for the Cell Range input in the data validation dialog.
52
52
  */
53
53
  validationCellRange;
54
54
  /**
55
- * The text of the Criteria dropdown list label in the data validation dialog.
55
+ * Sets the label text for the Criteria dropdown in the data validation dialog.
56
56
  */
57
57
  validationCriteria;
58
58
  /**
59
- * The text of the Comparer dropdown list label in the data validation dialog.
59
+ * Sets the label text for the Comparer dropdown in the data validation dialog.
60
60
  */
61
61
  validationComparer;
62
62
  /**
63
- * The text of the Min value label in the data validation dialog.
63
+ * Sets the label text for the Min value in the data validation dialog.
64
64
  */
65
65
  validationMinValue;
66
66
  /**
67
- * The text of the Max value label in the data validation dialog.
67
+ * Sets the label text for the Max value in the data validation dialog.
68
68
  */
69
69
  validationMaxValue;
70
70
  /**
71
- * The text of the Start value label in the data validation dialog.
71
+ * Sets the label text for the Start value in the data validation dialog.
72
72
  */
73
73
  validationStartValue;
74
74
  /**
75
- * The text of the End value label in the data validation dialog.
75
+ * Sets the label text for the End value in the data validation dialog.
76
76
  */
77
77
  validationEndValue;
78
78
  /**
79
- * The text of the Value label in the data validation dialog.
79
+ * Sets the label text for the Value in the data validation dialog.
80
80
  */
81
81
  validationValue;
82
82
  /**
83
- * The text for the Show list button checkbox label in the data validation dialog.
83
+ * Sets the label text for the Show list button checkbox in the data validation dialog.
84
84
  */
85
85
  validationShowListButtonCheckbox;
86
86
  /**
87
- * The text for the Show date button checkbox label in the data validation dialog.
87
+ * Sets the label text for the Show date button checkbox in the data validation dialog.
88
88
  */
89
89
  validationShowDateButtonCheckbox;
90
90
  /**
91
- * The text for the Ignore blank checkbox label in the data validation dialog.
91
+ * Sets the label text for the Ignore blank checkbox in the data validation dialog.
92
92
  */
93
93
  validationIgnoreBlankCheckbox;
94
94
  /**
95
- * The text for the On invalid data label in the data validation dialog.
95
+ * Sets the label text for the On invalid data option in the data validation dialog.
96
96
  */
97
97
  validationOnInvalidData;
98
98
  /**
99
- * The text for the Reject input radio button label in the data validation dialog.
99
+ * Sets the label text for the Reject input radio button in the data validation dialog.
100
100
  */
101
101
  validationRejectInput;
102
102
  /**
103
- * The text for the Show warning radio button label in the data validation dialog.
103
+ * Sets the label text for the Show warning radio button in the data validation dialog.
104
104
  */
105
105
  validationShowWarning;
106
106
  /**
107
- * The text for the Show hint checkbox label in the data validation dialog.
107
+ * Sets the label text for the Show hint checkbox in the data validation dialog.
108
108
  */
109
109
  validationShowHint;
110
110
  /**
111
- * The text of the Any value validation criteria.
111
+ * Sets the text for the Any value validation criteria.
112
112
  */
113
113
  anyValueValidationCriteria;
114
114
  /**
115
- * The text of the Number validation criteria.
115
+ * Sets the text for the Number validation criteria.
116
116
  */
117
117
  numberValidationCriteria;
118
118
  /**
119
- * The text of the Text validation criteria.
119
+ * Sets the text for the Text validation criteria.
120
120
  */
121
121
  textValidationCriteria;
122
122
  /**
123
- * The text of the Date validation criteria.
123
+ * Sets the text for the Date validation criteria.
124
124
  */
125
125
  dateValidationCriteria;
126
126
  /**
127
- * The text of the Custom Formula validation criteria.
127
+ * Sets the text for the Custom Formula validation criteria.
128
128
  */
129
129
  customFormulaValidationCriteria;
130
130
  /**
131
- * The text of the List validation criteria.
131
+ * Sets the text for the List validation criteria.
132
132
  */
133
133
  listValidationCriteria;
134
134
  /**
135
- * The text of the greater than validation comparer.
135
+ * Sets the text for the greater than validation comparer.
136
136
  */
137
137
  greaterThanValidationComparer;
138
138
  /**
139
- * The text of the less than validation comparer.
139
+ * Sets the text for the less than validation comparer.
140
140
  */
141
141
  lessThanValidationComparer;
142
142
  /**
143
- * The text of the between validation comparer.
143
+ * Sets the text for the between validation comparer.
144
144
  */
145
145
  betweenValidationComparer;
146
146
  /**
147
- * The text of the not between validation comparer.
147
+ * Sets the text for the not between validation comparer.
148
148
  */
149
149
  notBetweenValidationComparer;
150
150
  /**
151
- * The text of the equal to validation comparer.
151
+ * Sets the text for the equal to validation comparer.
152
152
  */
153
153
  equalToValidationComparer;
154
154
  /**
155
- * The text of the not equal to validation comparer.
155
+ * Sets the text for the not equal to validation comparer.
156
156
  */
157
157
  notEqualToValidationComparer;
158
158
  /**
159
- * The text of the greater than or equal to validation comparer.
159
+ * Sets the text for the greater than or equal to validation comparer.
160
160
  */
161
161
  greaterThanOrEqualToValidationComparer;
162
162
  /**
163
- * The text of the less than or equal to validation comparer.
163
+ * Sets the text for the less than or equal to validation comparer.
164
164
  */
165
165
  lessThanOrEqualToValidationComparer;
166
166
  /**
167
- * The text for the Custom hint input label in the data validation dialog.
167
+ * Sets the label text for the Custom hint input in the data validation dialog.
168
168
  */
169
169
  validationHintMessage;
170
170
  /**
171
- * The text for the Custom hint title input label in the data validation dialog.
171
+ * Sets the label text for the Custom hint title input in the data validation dialog.
172
172
  */
173
173
  validationHintTitle;
174
174
  /**
175
- * The title of the Italic tool
175
+ * Sets the title for the **Italic** tool.
176
176
  */
177
177
  italic;
178
178
  /**
179
- * The title of the Underline tool
179
+ * Sets the title for the **Underline** tool.
180
180
  */
181
181
  underline;
182
182
  /**
183
- * The title of the Format tool
183
+ * Sets the title for the **Format** tool.
184
184
  */
185
185
  format;
186
186
  /**
187
- * The title of the Font Family tool
187
+ * Sets the title for the **Font Family** tool.
188
188
  */
189
189
  fontFamily;
190
190
  /**
191
- * The title of the Font Size tool
191
+ * Sets the title for the **Font Size** tool.
192
192
  */
193
193
  fontSize;
194
194
  /**
195
- * The title of the Undo tool
195
+ * Sets the title for the **Undo** tool.
196
196
  */
197
197
  undo;
198
198
  /**
199
- * The title of the Redo tool
199
+ * Sets the title for the **Redo** tool.
200
200
  */
201
201
  redo;
202
202
  /**
203
- * The title of the tool that changes the text background color
203
+ * Sets the title for the tool that changes the text background color.
204
204
  */
205
205
  background;
206
206
  /**
207
- * The title of the tool that changes the text font color
207
+ * Sets the title for the tool that changes the text font color.
208
208
  */
209
209
  color;
210
210
  /**
211
- * The title of the Grid Lines tool
211
+ * Sets the title for the **Grid Lines** tool.
212
212
  */
213
213
  gridLines;
214
214
  /**
215
- * The title of the tool that adds new column before currently selected column
215
+ * Sets the title for the tool that adds a new column before the selected column.
216
216
  */
217
217
  addColumnLeft;
218
218
  /**
219
- * The title of the tool that adds new column after currently selected column
219
+ * Sets the title for the tool that adds a new column after the selected column.
220
220
  */
221
221
  addColumnRight;
222
222
  /**
223
- * The title of the tool that adds new row below currently selected row
223
+ * Sets the title for the tool that adds a new row below the selected row.
224
224
  */
225
225
  addRowBelow;
226
226
  /**
227
- * The title of the tool that adds new row above currently selected row
227
+ * Sets the title for the tool that adds a new row above the selected row.
228
228
  */
229
229
  addRowAbove;
230
230
  /**
231
- * The title of the tool that deletes a column
231
+ * Sets the title for the tool that deletes a column.
232
232
  */
233
233
  deleteColumn;
234
234
  /**
235
- * The title of the tool that deletes a row
235
+ * Sets the title for the tool that deletes a row.
236
236
  */
237
237
  deleteRow;
238
238
  /**
239
- * The title of the Text Wrap tool
239
+ * Sets the title for the **Text Wrap** tool.
240
240
  */
241
241
  wrap;
242
242
  /**
243
- * The title of the Text Align tool
243
+ * Sets the title for the **Text Align** tool.
244
244
  */
245
245
  align;
246
246
  /**
247
- * The title of the Text Align Horizontal tool
247
+ * Sets the title for the **Text Align Horizontal** tool.
248
248
  */
249
249
  alignHorizontal;
250
250
  /**
251
- * The title of the Text Align Vertical tool
251
+ * Sets the title for the **Text Align Vertical** tool.
252
252
  */
253
253
  alignVertical;
254
254
  /**
255
- * The title of the Text Align Left tool
255
+ * Sets the title for the **Text Align Left** tool.
256
256
  */
257
257
  alignLeft;
258
258
  /**
259
- * The title of the Text Align Center tool
259
+ * Sets the title for the **Text Align Center** tool.
260
260
  */
261
261
  alignCenter;
262
262
  /**
263
- * The title of the Text Align Right tool
263
+ * Sets the title for the **Text Align Right** tool.
264
264
  */
265
265
  alignRight;
266
266
  /**
267
- * The title of the Text Align Justify tool
267
+ * Sets the title for the **Text Align Justify** tool.
268
268
  */
269
269
  alignJustify;
270
270
  /**
271
- * The title of the Text Align Top tool
271
+ * Sets the title for the **Text Align Top** tool.
272
272
  */
273
273
  alignTop;
274
274
  /**
275
- * The title of the Text Align Middle tool
275
+ * Sets the title for the **Text Align Middle** tool.
276
276
  */
277
277
  alignMiddle;
278
278
  /**
279
- * The title of the Text Align Bottom tool
279
+ * Sets the title for the **Text Align Bottom** tool.
280
280
  */
281
281
  alignBottom;
282
282
  /* Dialogs */
283
283
  /**
284
- * The text of the Apply button in all Spreadsheet dialogs
284
+ * Sets the text for the **Apply** button in all Spreadsheet dialogs.
285
285
  */
286
286
  dialogApply;
287
287
  /* Dialogs */
288
288
  /**
289
- * The text of the Cancel button in all Spreadsheet dialogs
289
+ * Sets the text for the **Cancel** button in all Spreadsheet dialogs.
290
290
  */
291
291
  dialogCancel;
292
292
  /**
293
- * The text of the Delete button in the Delete sheet dialog
293
+ * Sets the text for the **Delete** button in the Delete sheet dialog.
294
294
  */
295
295
  dialogDelete;
296
296
  /**
297
- * The text of the Rename button in the Rename sheet dialog
297
+ * Sets the text for the **Rename** button in the Rename sheet dialog.
298
298
  */
299
299
  dialogRename;
300
300
  /**
301
- * The text of the **Insert** button in all Spreadsheet dialogs
301
+ * Sets the text for the **Insert** button in all Spreadsheet dialogs.
302
302
  */
303
303
  dialogInsert;
304
304
  /**
305
- * The text of the **Remove** button in all Spreadsheet dialogs
305
+ * Sets the text for the **Remove** button in all Spreadsheet dialogs.
306
306
  */
307
307
  dialogRemove;
308
308
  /**
309
- * The text of the **Remove link** button in the Link tool dialog
309
+ * Sets the text for the **Remove link** button in the Link tool dialog.
310
310
  */
311
311
  dialogRemoveLink;
312
312
  /**
313
- * The title of the Delete sheet dialog
313
+ * Sets the title for the Delete sheet dialog.
314
314
  */
315
315
  delete;
316
316
  /**
317
- * The title of the Rename sheet dialog
317
+ * Sets the title for the Rename sheet dialog.
318
318
  */
319
319
  rename;
320
320
  /**
321
- * The title of the Name Box input
321
+ * Sets the title for the Name Box input.
322
322
  */
323
323
  nameBox;
324
324
  /**
325
- * The title of the Formula input
325
+ * Sets the title for the Formula input.
326
326
  */
327
327
  formulaInput;
328
328
  /**
329
- * The title of the Add new sheet button
329
+ * Sets the title for the Add new sheet button.
330
330
  */
331
331
  addSheet;
332
332
  /**
333
- * The title of the Sheets menu button
333
+ * Sets the title for the Sheets menu button.
334
334
  */
335
335
  sheetsMenu;
336
336
  /**
337
- * The text of the View toolbar tab
337
+ * Sets the text for the View toolbar tab.
338
338
  */
339
339
  view;
340
340
  /**
341
- * The title of the Cells Merge tool
341
+ * Sets the title for the Cells Merge tool.
342
342
  */
343
343
  merge;
344
344
  /**
345
- * The title of the Merge horizontally tool
345
+ * Sets the title for the Merge horizontally tool.
346
346
  */
347
347
  mergeHorizontally;
348
348
  /**
349
- * The title of the Merge vertically tool
349
+ * Sets the title for the Merge vertically tool.
350
350
  */
351
351
  mergeVertically;
352
352
  /**
353
- * The title of the Merge all tool
353
+ * Sets the title for the Merge all tool.
354
354
  */
355
355
  mergeAll;
356
356
  /**
357
- * The title of the Unmerge tool
357
+ * Sets the title for the Unmerge tool.
358
358
  */
359
359
  unmerge;
360
360
  /**
361
- * The title of the tool that inserts a link
361
+ * Sets the title for the tool that inserts a link.
362
362
  */
363
363
  insertLink;
364
364
  /**
365
- * The title of the tool that inserts a link
365
+ * Sets the title for the tool that increases decimals.
366
366
  */
367
367
  increaseDecimal;
368
368
  /**
369
- * The title of the tool that inserts a link
369
+ * Sets the title for the tool that decreases decimals.
370
370
  */
371
371
  decreaseDecimal;
372
372
  /**
373
- * The title of the tool that increases the cell font size
373
+ * Sets the title for the tool that increases the cell font size.
374
374
  */
375
375
  increaseFontSize;
376
376
  /**
377
- * The title of the tool that decreases the cell font size
377
+ * Sets the title for the tool that decreases the cell font size.
378
378
  */
379
379
  decreaseFontSize;
380
380
  /**
381
- * The content of the dialog that warns about an unsupported file type
381
+ * Sets the content for the dialog that warns about an unsupported file type.
382
382
  */
383
383
  openUnsupported;
384
384
  /**
385
- * The content of the dialog that warns about modifying a merged cell
385
+ * Sets the content for the dialog that warns about modifying a merged cell.
386
386
  */
387
387
  modifyMerged;
388
388
  /**
389
- * The content of the dialog that warns about modifying a disabled cell
389
+ * Sets the content for the dialog that warns about modifying a disabled cell.
390
390
  */
391
391
  cannotModifyDisabled;
392
392
  /**
393
- * The text of the **OK** dialog button
393
+ * Sets the text for the **OK** dialog button.
394
394
  */
395
395
  dialogOk;
396
396
  /**
397
- * The title of an error dialog
397
+ * Sets the title for an error dialog.
398
398
  */
399
399
  dialogError;
400
400
  /**
401
- * The content of the dialog that warns about duplicated sheet name
401
+ * Sets the content for the dialog that warns about duplicated sheet name.
402
402
  */
403
403
  duplicateSheetName;
404
404
  /**
405
- * The Copy command text
405
+ * Sets the Copy command text.
406
406
  */
407
407
  copy;
408
408
  /**
409
- * The Cut command text
409
+ * Sets the Cut command text.
410
410
  */
411
411
  cut;
412
412
  /**
413
- * The Paste command text
413
+ * Sets the Paste command text.
414
414
  */
415
415
  paste;
416
416
  /**
417
- * The Hide row command text
417
+ * Sets the Hide row command text.
418
418
  */
419
419
  hideRow;
420
420
  /**
421
- * The Unhide row command text
421
+ * Sets the Unhide row command text.
422
422
  */
423
423
  unhideRow;
424
424
  /**
425
- * The Hide column command text
425
+ * Sets the Hide column command text.
426
426
  */
427
427
  hideColumn;
428
428
  /**
429
- * The Unhide column command text
429
+ * Sets the Unhide column command text.
430
430
  */
431
431
  unhideColumn;
432
432
  /**
433
- * The text of the Sheet menu Delete option
433
+ * Sets the text for the Sheet menu Delete option.
434
434
  */
435
435
  sheetDelete;
436
436
  /**
437
- * The text of the Sheet menu Rename option
437
+ * Sets the text for the Sheet menu Rename option.
438
438
  */
439
439
  sheetRename;
440
440
  /**
441
- * The text of the Sheet menu Hide option
441
+ * Sets the text for the Sheet menu Hide option.
442
442
  */
443
443
  sheetHide;
444
444
  /**
445
- * The text of the Sheet menu Duplicate option
445
+ * Sets the text for the Sheet menu Duplicate option.
446
446
  */
447
447
  sheetDuplicate;
448
448
  /**
449
- * The text of the Sheet menu Move Left option
449
+ * Sets the text for the Sheet menu Move Left option.
450
450
  */
451
451
  sheetMoveLeft;
452
452
  /**
453
- * The text of the Sheet menu Move Right option
453
+ * Sets the text for the Sheet menu Move Right option.
454
454
  */
455
455
  sheetMoveRight;
456
456
  /**
457
- * The content of the dialog that warns about invalid name input.
457
+ * Sets the content for the dialog that warns about invalid name input.
458
458
  *
459
459
  * The content consists of a two-part message - the input value and a localizable string.
460
460
  * For user value input **A1%**, the default dialog content will be **Invalid name: A1%**.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1750152631,
14
- version: '19.1.2-develop.3',
13
+ publishDate: 1750430963,
14
+ version: '19.1.2-develop.5',
15
15
  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',
16
16
  };