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