@progress/kendo-react-editor 5.15.0-dev.202307180734 → 5.15.0-dev.202307181521
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/dist/cdn/js/kendo-react-editor.js +1 -1
- package/dist/es/Editor.js +7 -0
- package/dist/es/messages/index.d.ts +162 -0
- package/dist/es/messages/index.js +487 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tools/insertTable/tool.js +3 -2
- package/dist/es/tools/main.d.ts +20 -0
- package/dist/es/tools/main.js +12 -0
- package/dist/es/tools/table-wizard/tableCellProperties.d.ts +35 -0
- package/dist/es/tools/table-wizard/tableCellProperties.js +471 -0
- package/dist/es/tools/table-wizard/tableProperties.d.ts +11 -0
- package/dist/es/tools/table-wizard/tableProperties.js +701 -0
- package/dist/es/tools/table-wizard/utils.d.ts +25 -0
- package/dist/es/tools/table-wizard/utils.js +90 -0
- package/dist/es/tools/tableEdit.d.ts +9 -0
- package/dist/es/tools/tableEdit.js +2 -2
- package/dist/es/tools/utils.d.ts +30 -1
- package/dist/es/tools/utils.js +39 -1
- package/dist/npm/Editor.js +7 -0
- package/dist/npm/messages/index.d.ts +162 -0
- package/dist/npm/messages/index.js +487 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tools/insertTable/tool.js +2 -1
- package/dist/npm/tools/main.d.ts +20 -0
- package/dist/npm/tools/main.js +12 -0
- package/dist/npm/tools/table-wizard/tableCellProperties.d.ts +35 -0
- package/dist/npm/tools/table-wizard/tableCellProperties.js +479 -0
- package/dist/npm/tools/table-wizard/tableProperties.d.ts +11 -0
- package/dist/npm/tools/table-wizard/tableProperties.js +705 -0
- package/dist/npm/tools/table-wizard/utils.d.ts +25 -0
- package/dist/npm/tools/table-wizard/utils.js +97 -0
- package/dist/npm/tools/tableEdit.d.ts +9 -0
- package/dist/npm/tools/tableEdit.js +5 -3
- package/dist/npm/tools/utils.d.ts +30 -1
- package/dist/npm/tools/utils.js +43 -1
- package/dist/systemjs/kendo-react-editor.js +1 -1
- package/package.json +13 -13
package/dist/es/Editor.js
CHANGED
|
@@ -399,6 +399,13 @@ var Editor = /** @class */ (function (_super) {
|
|
|
399
399
|
focus: this.onFocus,
|
|
400
400
|
blur: this.onBlur,
|
|
401
401
|
paste: this.onPaste
|
|
402
|
+
},
|
|
403
|
+
handleDrop: function (_view, _event, slice, _moved) {
|
|
404
|
+
var hasCaption = false;
|
|
405
|
+
slice.content.nodesBetween(0, slice.content.size, function (node) {
|
|
406
|
+
hasCaption = hasCaption || node.type.name === 'table_caption_external';
|
|
407
|
+
});
|
|
408
|
+
return hasCaption;
|
|
402
409
|
}
|
|
403
410
|
};
|
|
404
411
|
var mountEvent = { plugins: plugins, shortcuts: shortcuts, target: target, viewProps: viewProps, dom: dom };
|
|
@@ -83,6 +83,87 @@ export declare const messages: {
|
|
|
83
83
|
"editor.iframeTitle": string;
|
|
84
84
|
"editorTools.foreColorLabel": string;
|
|
85
85
|
"editorTools.backColorLabel": string;
|
|
86
|
+
"editor.cellProperties": string;
|
|
87
|
+
"editor.cellPropertiesLeftTop": string;
|
|
88
|
+
"editor.cellPropertiesCenterTop": string;
|
|
89
|
+
"editor.cellPropertiesRightTop": string;
|
|
90
|
+
"editor.cellPropertiesLeftMiddle": string;
|
|
91
|
+
"editor.cellPropertiesCenterMiddle": string;
|
|
92
|
+
"editor.cellPropertiesRightMiddle": string;
|
|
93
|
+
"editor.cellPropertiesLeftBottom": string;
|
|
94
|
+
"editor.cellPropertiesCenterBottom": string;
|
|
95
|
+
"editor.cellPropertiesRightBottom": string;
|
|
96
|
+
"editor.cellPropertiesNoAlignment": string;
|
|
97
|
+
"editor.cellPropertiesWrap": string;
|
|
98
|
+
"editor.cellPropertiesFitToCell": string;
|
|
99
|
+
"editor.cellPropertiesApplyToAllCells": string;
|
|
100
|
+
"editor.cellPropertiesWidth": string;
|
|
101
|
+
"editor.cellPropertiesApplyToColumn": string;
|
|
102
|
+
"editor.cellPropertiesHeight": string;
|
|
103
|
+
"editor.cellPropertiesApplyToRow": string;
|
|
104
|
+
"editor.cellPropertiesAlignment": string;
|
|
105
|
+
"editor.cellPropertiesTextControl": string;
|
|
106
|
+
"editor.cellPropertiesCellPadding": string;
|
|
107
|
+
"editor.cellPropertiesBackground": string;
|
|
108
|
+
"editor.cellPropertiesBorderWidth": string;
|
|
109
|
+
"editor.cellPropertiesBorderColor": string;
|
|
110
|
+
"editor.cellPropertiesBorderStyle": string;
|
|
111
|
+
"editor.cellPropertiesId": string;
|
|
112
|
+
"editor.cellPropertiesCssClass": string;
|
|
113
|
+
"editor.cellPropertiesSave": string;
|
|
114
|
+
"editor.cellPropertiesCancel": string;
|
|
115
|
+
"editor.tableProperties": string;
|
|
116
|
+
"editor.tablePropertiesAlignLeft": string;
|
|
117
|
+
"editor.tablePropertiesAlignCenter": string;
|
|
118
|
+
"editor.tablePropertiesAlignRight": string;
|
|
119
|
+
"editor.tablePropertiesNoAlignment": string;
|
|
120
|
+
"editor.tablePropertiesLeft": string;
|
|
121
|
+
"editor.tablePropertiesCenter": string;
|
|
122
|
+
"editor.tablePropertiesRight": string;
|
|
123
|
+
"editor.tablePropertiesTop": string;
|
|
124
|
+
"editor.tablePropertiesBottom": string;
|
|
125
|
+
"editor.tablePropertiesNone": string;
|
|
126
|
+
"editor.tablePropertiesUsingScopeAttribute": string;
|
|
127
|
+
"editor.tablePropertiesUsingIdAttributes": string;
|
|
128
|
+
"editor.tablePropertiesRows": string;
|
|
129
|
+
"editor.tablePropertiesColumns": string;
|
|
130
|
+
"editor.tablePropertiesWidth": string;
|
|
131
|
+
"editor.tablePropertiesHeight": string;
|
|
132
|
+
"editor.tablePropertiesPosition": string;
|
|
133
|
+
"editor.tablePropertiesAlignment": string;
|
|
134
|
+
"editor.tablePropertiesCellSpacing": string;
|
|
135
|
+
"editor.tablePropertiesCellPadding": string;
|
|
136
|
+
"editor.tablePropertiesTableBackground": string;
|
|
137
|
+
"editor.tablePropertiesBorderWidth": string;
|
|
138
|
+
"editor.tablePropertiesBorderColor": string;
|
|
139
|
+
"editor.tablePropertiesBorderStyle": string;
|
|
140
|
+
"editor.tablePropertiesCollapseBorders": string;
|
|
141
|
+
"editor.tablePropertiesID": string;
|
|
142
|
+
"editor.tablePropertiesCssClass": string;
|
|
143
|
+
"editor.tablePropertiesAccessibility": string;
|
|
144
|
+
"editor.tablePropertiesCaption": string;
|
|
145
|
+
"editor.tablePropertiesCaptionPosition": string;
|
|
146
|
+
"editor.tablePropertiesCaptionAlignment": string;
|
|
147
|
+
"editor.tablePropertiesHeaderRows": string;
|
|
148
|
+
"editor.tablePropertiesHeaderCols": string;
|
|
149
|
+
"editor.tablePropertiesAssociateHeaders": string;
|
|
150
|
+
"editor.tablePropertiesGeneral": string;
|
|
151
|
+
"editor.tablePropertiesAdvanced": string;
|
|
152
|
+
"editor.tablePropertiesSave": string;
|
|
153
|
+
"editor.tablePropertiesCancel": string;
|
|
154
|
+
"editor.borderStyleNone": string;
|
|
155
|
+
"editor.borderStyleSolid": string;
|
|
156
|
+
"editor.borderStyleDotted": string;
|
|
157
|
+
"editor.borderStyleDashed": string;
|
|
158
|
+
"editor.borderStyleDouble": string;
|
|
159
|
+
"editor.borderStyleGroove": string;
|
|
160
|
+
"editor.borderStyleRidge": string;
|
|
161
|
+
"editor.borderStyleInset": string;
|
|
162
|
+
"editor.borderStyleOutset": string;
|
|
163
|
+
"editor.borderStyleInitial": string;
|
|
164
|
+
"editor.borderStyleInherit": string;
|
|
165
|
+
"editor.borderStyleHidden": string;
|
|
166
|
+
"editor.sizeAuto": string;
|
|
86
167
|
};
|
|
87
168
|
/**
|
|
88
169
|
* @hidden
|
|
@@ -169,4 +250,85 @@ export declare const keys: {
|
|
|
169
250
|
iframeTitle: string;
|
|
170
251
|
foreColorLabel: string;
|
|
171
252
|
backColorLabel: string;
|
|
253
|
+
cellProperties: string;
|
|
254
|
+
cellPropertiesLeftTop: string;
|
|
255
|
+
cellPropertiesCenterTop: string;
|
|
256
|
+
cellPropertiesRightTop: string;
|
|
257
|
+
cellPropertiesLeftMiddle: string;
|
|
258
|
+
cellPropertiesCenterMiddle: string;
|
|
259
|
+
cellPropertiesRightMiddle: string;
|
|
260
|
+
cellPropertiesLeftBottom: string;
|
|
261
|
+
cellPropertiesCenterBottom: string;
|
|
262
|
+
cellPropertiesRightBottom: string;
|
|
263
|
+
cellPropertiesNoAlignment: string;
|
|
264
|
+
cellPropertiesWrap: string;
|
|
265
|
+
cellPropertiesFitToCell: string;
|
|
266
|
+
cellPropertiesApplyToAllCells: string;
|
|
267
|
+
cellPropertiesWidth: string;
|
|
268
|
+
cellPropertiesApplyToColumn: string;
|
|
269
|
+
cellPropertiesHeight: string;
|
|
270
|
+
cellPropertiesApplyToRow: string;
|
|
271
|
+
cellPropertiesAlignment: string;
|
|
272
|
+
cellPropertiesTextControl: string;
|
|
273
|
+
cellPropertiesCellPadding: string;
|
|
274
|
+
cellPropertiesBackground: string;
|
|
275
|
+
cellPropertiesBorderWidth: string;
|
|
276
|
+
cellPropertiesBorderColor: string;
|
|
277
|
+
cellPropertiesBorderStyle: string;
|
|
278
|
+
cellPropertiesId: string;
|
|
279
|
+
cellPropertiesCssClass: string;
|
|
280
|
+
cellPropertiesSave: string;
|
|
281
|
+
cellPropertiesCancel: string;
|
|
282
|
+
tableProperties: string;
|
|
283
|
+
tablePropertiesAlignLeft: string;
|
|
284
|
+
tablePropertiesAlignCenter: string;
|
|
285
|
+
tablePropertiesAlignRight: string;
|
|
286
|
+
tablePropertiesNoAlignment: string;
|
|
287
|
+
tablePropertiesLeft: string;
|
|
288
|
+
tablePropertiesCenter: string;
|
|
289
|
+
tablePropertiesRight: string;
|
|
290
|
+
tablePropertiesTop: string;
|
|
291
|
+
tablePropertiesBottom: string;
|
|
292
|
+
tablePropertiesNone: string;
|
|
293
|
+
tablePropertiesUsingScopeAttribute: string;
|
|
294
|
+
tablePropertiesUsingIdAttributes: string;
|
|
295
|
+
tablePropertiesRows: string;
|
|
296
|
+
tablePropertiesColumns: string;
|
|
297
|
+
tablePropertiesWidth: string;
|
|
298
|
+
tablePropertiesHeight: string;
|
|
299
|
+
tablePropertiesPosition: string;
|
|
300
|
+
tablePropertiesAlignment: string;
|
|
301
|
+
tablePropertiesCellSpacing: string;
|
|
302
|
+
tablePropertiesCellPadding: string;
|
|
303
|
+
tablePropertiesTableBackground: string;
|
|
304
|
+
tablePropertiesBorderWidth: string;
|
|
305
|
+
tablePropertiesBorderColor: string;
|
|
306
|
+
tablePropertiesBorderStyle: string;
|
|
307
|
+
tablePropertiesCollapseBorders: string;
|
|
308
|
+
tablePropertiesId: string;
|
|
309
|
+
tablePropertiesCssClass: string;
|
|
310
|
+
tablePropertiesAccessibility: string;
|
|
311
|
+
tablePropertiesCaption: string;
|
|
312
|
+
tablePropertiesCaptionPosition: string;
|
|
313
|
+
tablePropertiesCaptionAlignment: string;
|
|
314
|
+
tablePropertiesHeaderRows: string;
|
|
315
|
+
tablePropertiesHeaderCols: string;
|
|
316
|
+
tablePropertiesAssociateHeaders: string;
|
|
317
|
+
tablePropertiesGeneral: string;
|
|
318
|
+
tablePropertiesAdvanced: string;
|
|
319
|
+
tablePropertiesSave: string;
|
|
320
|
+
tablePropertiesCancel: string;
|
|
321
|
+
borderStyleNone: string;
|
|
322
|
+
borderStyleSolid: string;
|
|
323
|
+
borderStyleDotted: string;
|
|
324
|
+
borderStyleDashed: string;
|
|
325
|
+
borderStyleDouble: string;
|
|
326
|
+
borderStyleGroove: string;
|
|
327
|
+
borderStyleRidge: string;
|
|
328
|
+
borderStyleInset: string;
|
|
329
|
+
borderStyleOutset: string;
|
|
330
|
+
borderStyleInitial: string;
|
|
331
|
+
borderStyleInherit: string;
|
|
332
|
+
borderStyleHidden: string;
|
|
333
|
+
sizeAuto: string;
|
|
172
334
|
};
|
|
@@ -323,6 +323,330 @@ var foreColorLabel = 'editorTools.foreColorLabel';
|
|
|
323
323
|
* @hidden
|
|
324
324
|
*/
|
|
325
325
|
var backColorLabel = 'editorTools.backColorLabel';
|
|
326
|
+
/**
|
|
327
|
+
* @hidden
|
|
328
|
+
*/
|
|
329
|
+
var cellProperties = 'editor.cellProperties';
|
|
330
|
+
/**
|
|
331
|
+
* @hidden
|
|
332
|
+
*/
|
|
333
|
+
var cellPropertiesLeftTop = 'editor.cellPropertiesLeftTop';
|
|
334
|
+
/**
|
|
335
|
+
* @hidden
|
|
336
|
+
*/
|
|
337
|
+
var cellPropertiesCenterTop = 'editor.cellPropertiesCenterTop';
|
|
338
|
+
/**
|
|
339
|
+
* @hidden
|
|
340
|
+
*/
|
|
341
|
+
var cellPropertiesRightTop = 'editor.cellPropertiesRightTop';
|
|
342
|
+
/**
|
|
343
|
+
* @hidden
|
|
344
|
+
*/
|
|
345
|
+
var cellPropertiesLeftMiddle = 'editor.cellPropertiesLeftMiddle';
|
|
346
|
+
/**
|
|
347
|
+
* @hidden
|
|
348
|
+
*/
|
|
349
|
+
var cellPropertiesCenterMiddle = 'editor.cellPropertiesCenterMiddle';
|
|
350
|
+
/**
|
|
351
|
+
* @hidden
|
|
352
|
+
*/
|
|
353
|
+
var cellPropertiesRightMiddle = 'editor.cellPropertiesRightMiddle';
|
|
354
|
+
/**
|
|
355
|
+
* @hidden
|
|
356
|
+
*/
|
|
357
|
+
var cellPropertiesLeftBottom = 'editor.cellPropertiesLeftBottom';
|
|
358
|
+
/**
|
|
359
|
+
* @hidden
|
|
360
|
+
*/
|
|
361
|
+
var cellPropertiesCenterBottom = 'editor.cellPropertiesCenterBottom';
|
|
362
|
+
/**
|
|
363
|
+
* @hidden
|
|
364
|
+
*/
|
|
365
|
+
var cellPropertiesRightBottom = 'editor.cellPropertiesRightBottom';
|
|
366
|
+
/**
|
|
367
|
+
* @hidden
|
|
368
|
+
*/
|
|
369
|
+
var cellPropertiesNoAlignment = 'editor.cellPropertiesNoAlignment';
|
|
370
|
+
/**
|
|
371
|
+
* @hidden
|
|
372
|
+
*/
|
|
373
|
+
var cellPropertiesWrap = 'editor.cellPropertiesWrap';
|
|
374
|
+
/**
|
|
375
|
+
* @hidden
|
|
376
|
+
*/
|
|
377
|
+
var cellPropertiesFitToCell = 'editor.cellPropertiesFitToCell';
|
|
378
|
+
/**
|
|
379
|
+
* @hidden
|
|
380
|
+
*/
|
|
381
|
+
var cellPropertiesApplyToAllCells = 'editor.cellPropertiesApplyToAllCells';
|
|
382
|
+
/**
|
|
383
|
+
* @hidden
|
|
384
|
+
*/
|
|
385
|
+
var cellPropertiesWidth = 'editor.cellPropertiesWidth';
|
|
386
|
+
/**
|
|
387
|
+
* @hidden
|
|
388
|
+
*/
|
|
389
|
+
var cellPropertiesApplyToColumn = 'editor.cellPropertiesApplyToColumn';
|
|
390
|
+
/**
|
|
391
|
+
* @hidden
|
|
392
|
+
*/
|
|
393
|
+
var cellPropertiesHeight = 'editor.cellPropertiesHeight';
|
|
394
|
+
/**
|
|
395
|
+
* @hidden
|
|
396
|
+
*/
|
|
397
|
+
var cellPropertiesApplyToRow = 'editor.cellPropertiesApplyToRow';
|
|
398
|
+
/**
|
|
399
|
+
* @hidden
|
|
400
|
+
*/
|
|
401
|
+
var cellPropertiesAlignment = 'editor.cellPropertiesAlignment';
|
|
402
|
+
/**
|
|
403
|
+
* @hidden
|
|
404
|
+
*/
|
|
405
|
+
var cellPropertiesTextControl = 'editor.cellPropertiesTextControl';
|
|
406
|
+
/**
|
|
407
|
+
* @hidden
|
|
408
|
+
*/
|
|
409
|
+
var cellPropertiesCellPadding = 'editor.cellPropertiesCellPadding';
|
|
410
|
+
/**
|
|
411
|
+
* @hidden
|
|
412
|
+
*/
|
|
413
|
+
var cellPropertiesBackground = 'editor.cellPropertiesBackground';
|
|
414
|
+
/**
|
|
415
|
+
* @hidden
|
|
416
|
+
*/
|
|
417
|
+
var cellPropertiesBorderWidth = 'editor.cellPropertiesBorderWidth';
|
|
418
|
+
/**
|
|
419
|
+
* @hidden
|
|
420
|
+
*/
|
|
421
|
+
var cellPropertiesBorderColor = 'editor.cellPropertiesBorderColor';
|
|
422
|
+
/**
|
|
423
|
+
* @hidden
|
|
424
|
+
*/
|
|
425
|
+
var cellPropertiesBorderStyle = 'editor.cellPropertiesBorderStyle';
|
|
426
|
+
/**
|
|
427
|
+
* @hidden
|
|
428
|
+
*/
|
|
429
|
+
var cellPropertiesId = 'editor.cellPropertiesId';
|
|
430
|
+
/**
|
|
431
|
+
* @hidden
|
|
432
|
+
*/
|
|
433
|
+
var cellPropertiesCssClass = 'editor.cellPropertiesCssClass';
|
|
434
|
+
/**
|
|
435
|
+
* @hidden
|
|
436
|
+
*/
|
|
437
|
+
var cellPropertiesSave = 'editor.cellPropertiesSave';
|
|
438
|
+
/**
|
|
439
|
+
* @hidden
|
|
440
|
+
*/
|
|
441
|
+
var cellPropertiesCancel = 'editor.cellPropertiesCancel';
|
|
442
|
+
/**
|
|
443
|
+
* @hidden
|
|
444
|
+
*/
|
|
445
|
+
var tableProperties = 'editor.tableProperties';
|
|
446
|
+
/**
|
|
447
|
+
* @hidden
|
|
448
|
+
*/
|
|
449
|
+
var tablePropertiesAlignLeft = 'editor.tablePropertiesAlignLeft';
|
|
450
|
+
/**
|
|
451
|
+
* @hidden
|
|
452
|
+
*/
|
|
453
|
+
var tablePropertiesAlignCenter = 'editor.tablePropertiesAlignCenter';
|
|
454
|
+
/**
|
|
455
|
+
* @hidden
|
|
456
|
+
*/
|
|
457
|
+
var tablePropertiesAlignRight = 'editor.tablePropertiesAlignRight';
|
|
458
|
+
/**
|
|
459
|
+
* @hidden
|
|
460
|
+
*/
|
|
461
|
+
var tablePropertiesNoAlignment = 'editor.tablePropertiesNoAlignment';
|
|
462
|
+
/**
|
|
463
|
+
* @hidden
|
|
464
|
+
*/
|
|
465
|
+
var tablePropertiesLeft = 'editor.tablePropertiesLeft';
|
|
466
|
+
/**
|
|
467
|
+
* @hidden
|
|
468
|
+
*/
|
|
469
|
+
var tablePropertiesCenter = 'editor.tablePropertiesCenter';
|
|
470
|
+
/**
|
|
471
|
+
* @hidden
|
|
472
|
+
*/
|
|
473
|
+
var tablePropertiesRight = 'editor.tablePropertiesRight';
|
|
474
|
+
/**
|
|
475
|
+
* @hidden
|
|
476
|
+
*/
|
|
477
|
+
var tablePropertiesTop = 'editor.tablePropertiesTop';
|
|
478
|
+
/**
|
|
479
|
+
* @hidden
|
|
480
|
+
*/
|
|
481
|
+
var tablePropertiesBottom = 'editor.tablePropertiesBottom';
|
|
482
|
+
/**
|
|
483
|
+
* @hidden
|
|
484
|
+
*/
|
|
485
|
+
var tablePropertiesNone = 'editor.tablePropertiesNone';
|
|
486
|
+
/**
|
|
487
|
+
* @hidden
|
|
488
|
+
*/
|
|
489
|
+
var tablePropertiesUsingScopeAttribute = 'editor.tablePropertiesUsingScopeAttribute';
|
|
490
|
+
/**
|
|
491
|
+
* @hidden
|
|
492
|
+
*/
|
|
493
|
+
var tablePropertiesUsingIdAttributes = 'editor.tablePropertiesUsingIdAttributes';
|
|
494
|
+
/**
|
|
495
|
+
* @hidden
|
|
496
|
+
*/
|
|
497
|
+
var tablePropertiesRows = 'editor.tablePropertiesRows';
|
|
498
|
+
/**
|
|
499
|
+
* @hidden
|
|
500
|
+
*/
|
|
501
|
+
var tablePropertiesColumns = 'editor.tablePropertiesColumns';
|
|
502
|
+
/**
|
|
503
|
+
* @hidden
|
|
504
|
+
*/
|
|
505
|
+
var tablePropertiesWidth = 'editor.tablePropertiesWidth';
|
|
506
|
+
/**
|
|
507
|
+
* @hidden
|
|
508
|
+
*/
|
|
509
|
+
var tablePropertiesHeight = 'editor.tablePropertiesHeight';
|
|
510
|
+
/**
|
|
511
|
+
* @hidden
|
|
512
|
+
*/
|
|
513
|
+
var tablePropertiesPosition = 'editor.tablePropertiesPosition';
|
|
514
|
+
/**
|
|
515
|
+
* @hidden
|
|
516
|
+
*/
|
|
517
|
+
var tablePropertiesAlignment = 'editor.tablePropertiesAlignment';
|
|
518
|
+
/**
|
|
519
|
+
* @hidden
|
|
520
|
+
*/
|
|
521
|
+
var tablePropertiesCellSpacing = 'editor.tablePropertiesCellSpacing';
|
|
522
|
+
/**
|
|
523
|
+
* @hidden
|
|
524
|
+
*/
|
|
525
|
+
var tablePropertiesCellPadding = 'editor.tablePropertiesCellPadding';
|
|
526
|
+
/**
|
|
527
|
+
* @hidden
|
|
528
|
+
*/
|
|
529
|
+
var tablePropertiesTableBackground = 'editor.tablePropertiesTableBackground';
|
|
530
|
+
/**
|
|
531
|
+
* @hidden
|
|
532
|
+
*/
|
|
533
|
+
var tablePropertiesBorderWidth = 'editor.tablePropertiesBorderWidth';
|
|
534
|
+
/**
|
|
535
|
+
* @hidden
|
|
536
|
+
*/
|
|
537
|
+
var tablePropertiesBorderColor = 'editor.tablePropertiesBorderColor';
|
|
538
|
+
/**
|
|
539
|
+
* @hidden
|
|
540
|
+
*/
|
|
541
|
+
var tablePropertiesBorderStyle = 'editor.tablePropertiesBorderStyle';
|
|
542
|
+
/**
|
|
543
|
+
* @hidden
|
|
544
|
+
*/
|
|
545
|
+
var tablePropertiesCollapseBorders = 'editor.tablePropertiesCollapseBorders';
|
|
546
|
+
/**
|
|
547
|
+
* @hidden
|
|
548
|
+
*/
|
|
549
|
+
var tablePropertiesId = 'editor.tablePropertiesID';
|
|
550
|
+
/**
|
|
551
|
+
* @hidden
|
|
552
|
+
*/
|
|
553
|
+
var tablePropertiesCssClass = 'editor.tablePropertiesCssClass';
|
|
554
|
+
/**
|
|
555
|
+
* @hidden
|
|
556
|
+
*/
|
|
557
|
+
var tablePropertiesAccessibility = 'editor.tablePropertiesAccessibility';
|
|
558
|
+
/**
|
|
559
|
+
* @hidden
|
|
560
|
+
*/
|
|
561
|
+
var tablePropertiesCaption = 'editor.tablePropertiesCaption';
|
|
562
|
+
/**
|
|
563
|
+
* @hidden
|
|
564
|
+
*/
|
|
565
|
+
var tablePropertiesCaptionPosition = 'editor.tablePropertiesCaptionPosition';
|
|
566
|
+
/**
|
|
567
|
+
* @hidden
|
|
568
|
+
*/
|
|
569
|
+
var tablePropertiesCaptionAlignment = 'editor.tablePropertiesCaptionAlignment';
|
|
570
|
+
/**
|
|
571
|
+
* @hidden
|
|
572
|
+
*/
|
|
573
|
+
var tablePropertiesHeaderRows = 'editor.tablePropertiesHeaderRows';
|
|
574
|
+
/**
|
|
575
|
+
* @hidden
|
|
576
|
+
*/
|
|
577
|
+
var tablePropertiesHeaderCols = 'editor.tablePropertiesHeaderCols';
|
|
578
|
+
/**
|
|
579
|
+
* @hidden
|
|
580
|
+
*/
|
|
581
|
+
var tablePropertiesAssociateHeaders = 'editor.tablePropertiesAssociateHeaders';
|
|
582
|
+
/**
|
|
583
|
+
* @hidden
|
|
584
|
+
*/
|
|
585
|
+
var tablePropertiesGeneral = 'editor.tablePropertiesGeneral';
|
|
586
|
+
/**
|
|
587
|
+
* @hidden
|
|
588
|
+
*/
|
|
589
|
+
var tablePropertiesAdvanced = 'editor.tablePropertiesAdvanced';
|
|
590
|
+
/**
|
|
591
|
+
* @hidden
|
|
592
|
+
*/
|
|
593
|
+
var tablePropertiesSave = 'editor.tablePropertiesSave';
|
|
594
|
+
/**
|
|
595
|
+
* @hidden
|
|
596
|
+
*/
|
|
597
|
+
var tablePropertiesCancel = 'editor.tablePropertiesCancel';
|
|
598
|
+
/**
|
|
599
|
+
* @hidden
|
|
600
|
+
*/
|
|
601
|
+
var borderStyleNone = 'editor.borderStyleNone';
|
|
602
|
+
/**
|
|
603
|
+
* @hidden
|
|
604
|
+
*/
|
|
605
|
+
var borderStyleSolid = 'editor.borderStyleSolid';
|
|
606
|
+
/**
|
|
607
|
+
* @hidden
|
|
608
|
+
*/
|
|
609
|
+
var borderStyleDotted = 'editor.borderStyleDotted';
|
|
610
|
+
/**
|
|
611
|
+
* @hidden
|
|
612
|
+
*/
|
|
613
|
+
var borderStyleDashed = 'editor.borderStyleDashed';
|
|
614
|
+
/**
|
|
615
|
+
* @hidden
|
|
616
|
+
*/
|
|
617
|
+
var borderStyleDouble = 'editor.borderStyleDouble';
|
|
618
|
+
/**
|
|
619
|
+
* @hidden
|
|
620
|
+
*/
|
|
621
|
+
var borderStyleGroove = 'editor.borderStyleGroove';
|
|
622
|
+
/**
|
|
623
|
+
* @hidden
|
|
624
|
+
*/
|
|
625
|
+
var borderStyleRidge = 'editor.borderStyleRidge';
|
|
626
|
+
/**
|
|
627
|
+
* @hidden
|
|
628
|
+
*/
|
|
629
|
+
var borderStyleInset = 'editor.borderStyleInset';
|
|
630
|
+
/**
|
|
631
|
+
* @hidden
|
|
632
|
+
*/
|
|
633
|
+
var borderStyleOutset = 'editor.borderStyleOutset';
|
|
634
|
+
/**
|
|
635
|
+
* @hidden
|
|
636
|
+
*/
|
|
637
|
+
var borderStyleInitial = 'editor.borderStyleInitial';
|
|
638
|
+
/**
|
|
639
|
+
* @hidden
|
|
640
|
+
*/
|
|
641
|
+
var borderStyleInherit = 'editor.borderStyleInherit';
|
|
642
|
+
/**
|
|
643
|
+
* @hidden
|
|
644
|
+
*/
|
|
645
|
+
var borderStyleHidden = 'editor.borderStyleHidden';
|
|
646
|
+
/**
|
|
647
|
+
* @hidden
|
|
648
|
+
*/
|
|
649
|
+
var sizeAuto = 'editor.sizeAuto';
|
|
326
650
|
/**
|
|
327
651
|
* @hidden
|
|
328
652
|
*/
|
|
@@ -414,6 +738,87 @@ export var messages = (_a = {},
|
|
|
414
738
|
_a[iframeTitle] = 'Editable area. Press Alt + F10 for toolbar.',
|
|
415
739
|
_a[foreColorLabel] = 'Fore Color',
|
|
416
740
|
_a[backColorLabel] = 'Back Color',
|
|
741
|
+
_a[cellProperties] = 'Cell properties',
|
|
742
|
+
_a[cellPropertiesLeftTop] = 'Left Top',
|
|
743
|
+
_a[cellPropertiesCenterTop] = 'Center Top',
|
|
744
|
+
_a[cellPropertiesRightTop] = 'Right Top',
|
|
745
|
+
_a[cellPropertiesLeftMiddle] = 'Left Middle',
|
|
746
|
+
_a[cellPropertiesCenterMiddle] = 'Center Middle',
|
|
747
|
+
_a[cellPropertiesRightMiddle] = 'Right Middle',
|
|
748
|
+
_a[cellPropertiesLeftBottom] = 'Left Bottom',
|
|
749
|
+
_a[cellPropertiesCenterBottom] = 'Center Bottom',
|
|
750
|
+
_a[cellPropertiesRightBottom] = 'Right Bottom',
|
|
751
|
+
_a[cellPropertiesNoAlignment] = 'No Alignment',
|
|
752
|
+
_a[cellPropertiesWrap] = 'Wrap',
|
|
753
|
+
_a[cellPropertiesFitToCell] = 'Fit to cell',
|
|
754
|
+
_a[cellPropertiesApplyToAllCells] = 'Apply to all cells',
|
|
755
|
+
_a[cellPropertiesWidth] = 'Width',
|
|
756
|
+
_a[cellPropertiesApplyToColumn] = 'apply to column',
|
|
757
|
+
_a[cellPropertiesHeight] = 'Height',
|
|
758
|
+
_a[cellPropertiesApplyToRow] = 'apply to row',
|
|
759
|
+
_a[cellPropertiesAlignment] = 'Alignment',
|
|
760
|
+
_a[cellPropertiesTextControl] = 'Text control',
|
|
761
|
+
_a[cellPropertiesCellPadding] = 'Cell padding',
|
|
762
|
+
_a[cellPropertiesBackground] = 'Background',
|
|
763
|
+
_a[cellPropertiesBorderWidth] = 'Border width',
|
|
764
|
+
_a[cellPropertiesBorderColor] = 'Border color',
|
|
765
|
+
_a[cellPropertiesBorderStyle] = 'Border style',
|
|
766
|
+
_a[cellPropertiesId] = 'ID',
|
|
767
|
+
_a[cellPropertiesCssClass] = 'CSS class',
|
|
768
|
+
_a[cellPropertiesSave] = 'Save',
|
|
769
|
+
_a[cellPropertiesCancel] = 'Cancel',
|
|
770
|
+
_a[tableProperties] = 'Table properties',
|
|
771
|
+
_a[tablePropertiesAlignLeft] = 'Align Left',
|
|
772
|
+
_a[tablePropertiesAlignCenter] = 'Align Center',
|
|
773
|
+
_a[tablePropertiesAlignRight] = 'Align Right',
|
|
774
|
+
_a[tablePropertiesNoAlignment] = 'No Alignment',
|
|
775
|
+
_a[tablePropertiesLeft] = 'Left',
|
|
776
|
+
_a[tablePropertiesCenter] = 'Center',
|
|
777
|
+
_a[tablePropertiesRight] = 'Right',
|
|
778
|
+
_a[tablePropertiesTop] = 'Top',
|
|
779
|
+
_a[tablePropertiesBottom] = 'Bottom',
|
|
780
|
+
_a[tablePropertiesNone] = 'None',
|
|
781
|
+
_a[tablePropertiesUsingScopeAttribute] = 'Using \'scope\' attribute',
|
|
782
|
+
_a[tablePropertiesUsingIdAttributes] = 'Using \'id\' attributes',
|
|
783
|
+
_a[tablePropertiesRows] = 'Rows',
|
|
784
|
+
_a[tablePropertiesColumns] = 'Columns',
|
|
785
|
+
_a[tablePropertiesWidth] = 'Width',
|
|
786
|
+
_a[tablePropertiesHeight] = 'Height',
|
|
787
|
+
_a[tablePropertiesPosition] = 'Position',
|
|
788
|
+
_a[tablePropertiesAlignment] = 'Alignment',
|
|
789
|
+
_a[tablePropertiesCellSpacing] = 'Cell spacing',
|
|
790
|
+
_a[tablePropertiesCellPadding] = 'Cell padding',
|
|
791
|
+
_a[tablePropertiesTableBackground] = 'Table background',
|
|
792
|
+
_a[tablePropertiesBorderWidth] = 'Border width',
|
|
793
|
+
_a[tablePropertiesBorderColor] = 'Border color',
|
|
794
|
+
_a[tablePropertiesBorderStyle] = 'Border style',
|
|
795
|
+
_a[tablePropertiesCollapseBorders] = 'Collapse borders',
|
|
796
|
+
_a[tablePropertiesId] = 'ID',
|
|
797
|
+
_a[tablePropertiesCssClass] = 'CSS class',
|
|
798
|
+
_a[tablePropertiesAccessibility] = 'Accessibility',
|
|
799
|
+
_a[tablePropertiesCaption] = 'Caption',
|
|
800
|
+
_a[tablePropertiesCaptionPosition] = 'Position',
|
|
801
|
+
_a[tablePropertiesCaptionAlignment] = 'Alignment',
|
|
802
|
+
_a[tablePropertiesHeaderRows] = 'Header rows',
|
|
803
|
+
_a[tablePropertiesHeaderCols] = 'Header cols',
|
|
804
|
+
_a[tablePropertiesAssociateHeaders] = 'Associate headers',
|
|
805
|
+
_a[tablePropertiesGeneral] = 'General',
|
|
806
|
+
_a[tablePropertiesAdvanced] = 'Advanced',
|
|
807
|
+
_a[tablePropertiesSave] = 'Save',
|
|
808
|
+
_a[tablePropertiesCancel] = 'Cancel',
|
|
809
|
+
_a[borderStyleNone] = 'None',
|
|
810
|
+
_a[borderStyleSolid] = 'Solid',
|
|
811
|
+
_a[borderStyleDotted] = 'Dotted',
|
|
812
|
+
_a[borderStyleDashed] = 'Dashed',
|
|
813
|
+
_a[borderStyleDouble] = 'Double',
|
|
814
|
+
_a[borderStyleGroove] = 'Groove',
|
|
815
|
+
_a[borderStyleRidge] = 'Ridge',
|
|
816
|
+
_a[borderStyleInset] = 'Inset',
|
|
817
|
+
_a[borderStyleOutset] = 'Outset',
|
|
818
|
+
_a[borderStyleInitial] = 'Initial',
|
|
819
|
+
_a[borderStyleInherit] = 'Inherit',
|
|
820
|
+
_a[borderStyleHidden] = 'Hidden',
|
|
821
|
+
_a[sizeAuto] = 'Auto',
|
|
417
822
|
_a);
|
|
418
823
|
/**
|
|
419
824
|
* @hidden
|
|
@@ -499,5 +904,86 @@ export var keys = {
|
|
|
499
904
|
findReplaceMatches: findReplaceMatches,
|
|
500
905
|
iframeTitle: iframeTitle,
|
|
501
906
|
foreColorLabel: foreColorLabel,
|
|
502
|
-
backColorLabel: backColorLabel
|
|
907
|
+
backColorLabel: backColorLabel,
|
|
908
|
+
cellProperties: cellProperties,
|
|
909
|
+
cellPropertiesLeftTop: cellPropertiesLeftTop,
|
|
910
|
+
cellPropertiesCenterTop: cellPropertiesCenterTop,
|
|
911
|
+
cellPropertiesRightTop: cellPropertiesRightTop,
|
|
912
|
+
cellPropertiesLeftMiddle: cellPropertiesLeftMiddle,
|
|
913
|
+
cellPropertiesCenterMiddle: cellPropertiesCenterMiddle,
|
|
914
|
+
cellPropertiesRightMiddle: cellPropertiesRightMiddle,
|
|
915
|
+
cellPropertiesLeftBottom: cellPropertiesLeftBottom,
|
|
916
|
+
cellPropertiesCenterBottom: cellPropertiesCenterBottom,
|
|
917
|
+
cellPropertiesRightBottom: cellPropertiesRightBottom,
|
|
918
|
+
cellPropertiesNoAlignment: cellPropertiesNoAlignment,
|
|
919
|
+
cellPropertiesWrap: cellPropertiesWrap,
|
|
920
|
+
cellPropertiesFitToCell: cellPropertiesFitToCell,
|
|
921
|
+
cellPropertiesApplyToAllCells: cellPropertiesApplyToAllCells,
|
|
922
|
+
cellPropertiesWidth: cellPropertiesWidth,
|
|
923
|
+
cellPropertiesApplyToColumn: cellPropertiesApplyToColumn,
|
|
924
|
+
cellPropertiesHeight: cellPropertiesHeight,
|
|
925
|
+
cellPropertiesApplyToRow: cellPropertiesApplyToRow,
|
|
926
|
+
cellPropertiesAlignment: cellPropertiesAlignment,
|
|
927
|
+
cellPropertiesTextControl: cellPropertiesTextControl,
|
|
928
|
+
cellPropertiesCellPadding: cellPropertiesCellPadding,
|
|
929
|
+
cellPropertiesBackground: cellPropertiesBackground,
|
|
930
|
+
cellPropertiesBorderWidth: cellPropertiesBorderWidth,
|
|
931
|
+
cellPropertiesBorderColor: cellPropertiesBorderColor,
|
|
932
|
+
cellPropertiesBorderStyle: cellPropertiesBorderStyle,
|
|
933
|
+
cellPropertiesId: cellPropertiesId,
|
|
934
|
+
cellPropertiesCssClass: cellPropertiesCssClass,
|
|
935
|
+
cellPropertiesSave: cellPropertiesSave,
|
|
936
|
+
cellPropertiesCancel: cellPropertiesCancel,
|
|
937
|
+
tableProperties: tableProperties,
|
|
938
|
+
tablePropertiesAlignLeft: tablePropertiesAlignLeft,
|
|
939
|
+
tablePropertiesAlignCenter: tablePropertiesAlignCenter,
|
|
940
|
+
tablePropertiesAlignRight: tablePropertiesAlignRight,
|
|
941
|
+
tablePropertiesNoAlignment: tablePropertiesNoAlignment,
|
|
942
|
+
tablePropertiesLeft: tablePropertiesLeft,
|
|
943
|
+
tablePropertiesCenter: tablePropertiesCenter,
|
|
944
|
+
tablePropertiesRight: tablePropertiesRight,
|
|
945
|
+
tablePropertiesTop: tablePropertiesTop,
|
|
946
|
+
tablePropertiesBottom: tablePropertiesBottom,
|
|
947
|
+
tablePropertiesNone: tablePropertiesNone,
|
|
948
|
+
tablePropertiesUsingScopeAttribute: tablePropertiesUsingScopeAttribute,
|
|
949
|
+
tablePropertiesUsingIdAttributes: tablePropertiesUsingIdAttributes,
|
|
950
|
+
tablePropertiesRows: tablePropertiesRows,
|
|
951
|
+
tablePropertiesColumns: tablePropertiesColumns,
|
|
952
|
+
tablePropertiesWidth: tablePropertiesWidth,
|
|
953
|
+
tablePropertiesHeight: tablePropertiesHeight,
|
|
954
|
+
tablePropertiesPosition: tablePropertiesPosition,
|
|
955
|
+
tablePropertiesAlignment: tablePropertiesAlignment,
|
|
956
|
+
tablePropertiesCellSpacing: tablePropertiesCellSpacing,
|
|
957
|
+
tablePropertiesCellPadding: tablePropertiesCellPadding,
|
|
958
|
+
tablePropertiesTableBackground: tablePropertiesTableBackground,
|
|
959
|
+
tablePropertiesBorderWidth: tablePropertiesBorderWidth,
|
|
960
|
+
tablePropertiesBorderColor: tablePropertiesBorderColor,
|
|
961
|
+
tablePropertiesBorderStyle: tablePropertiesBorderStyle,
|
|
962
|
+
tablePropertiesCollapseBorders: tablePropertiesCollapseBorders,
|
|
963
|
+
tablePropertiesId: tablePropertiesId,
|
|
964
|
+
tablePropertiesCssClass: tablePropertiesCssClass,
|
|
965
|
+
tablePropertiesAccessibility: tablePropertiesAccessibility,
|
|
966
|
+
tablePropertiesCaption: tablePropertiesCaption,
|
|
967
|
+
tablePropertiesCaptionPosition: tablePropertiesCaptionPosition,
|
|
968
|
+
tablePropertiesCaptionAlignment: tablePropertiesCaptionAlignment,
|
|
969
|
+
tablePropertiesHeaderRows: tablePropertiesHeaderRows,
|
|
970
|
+
tablePropertiesHeaderCols: tablePropertiesHeaderCols,
|
|
971
|
+
tablePropertiesAssociateHeaders: tablePropertiesAssociateHeaders,
|
|
972
|
+
tablePropertiesGeneral: tablePropertiesGeneral,
|
|
973
|
+
tablePropertiesAdvanced: tablePropertiesAdvanced,
|
|
974
|
+
tablePropertiesSave: tablePropertiesSave,
|
|
975
|
+
tablePropertiesCancel: tablePropertiesCancel,
|
|
976
|
+
borderStyleNone: borderStyleNone,
|
|
977
|
+
borderStyleSolid: borderStyleSolid,
|
|
978
|
+
borderStyleDotted: borderStyleDotted,
|
|
979
|
+
borderStyleDashed: borderStyleDashed,
|
|
980
|
+
borderStyleDouble: borderStyleDouble,
|
|
981
|
+
borderStyleGroove: borderStyleGroove,
|
|
982
|
+
borderStyleRidge: borderStyleRidge,
|
|
983
|
+
borderStyleInset: borderStyleInset,
|
|
984
|
+
borderStyleOutset: borderStyleOutset,
|
|
985
|
+
borderStyleInitial: borderStyleInitial,
|
|
986
|
+
borderStyleInherit: borderStyleInherit,
|
|
987
|
+
borderStyleHidden: borderStyleHidden,
|
|
988
|
+
sizeAuto: sizeAuto
|
|
503
989
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-editor',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1689692150,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
11
11
|
};
|