@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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes