@ckeditor/ckeditor5-table 0.0.0-nightly-20250505.0 → 0.0.0-nightly-20250506.0

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/index.js CHANGED
@@ -7070,7 +7070,14 @@ const isEmpty = (val)=>val === '';
7070
7070
  * * have some icons,
7071
7071
  * * set a certain UI view property value upon execution.
7072
7072
  *
7073
- * @param nameToValue A function that maps a button name to a value. By default names are the same as values.
7073
+ * @param options Configuration options
7074
+ * @param options.view The view that has the observable property.
7075
+ * @param options.icons Object with button icons.
7076
+ * @param options.toolbar The toolbar to fill with buttons.
7077
+ * @param options.labels Object with button labels.
7078
+ * @param options.propertyName The name of the observable property in the view.
7079
+ * @param options.nameToValue A function that maps a button name to a value. By default names are the same as values.
7080
+ * @param options.defaultValue Default value for the property.
7074
7081
  */ function fillToolbar(options) {
7075
7082
  const { view, icons, toolbar, labels, propertyName, nameToValue, defaultValue } = options;
7076
7083
  for(const name in labels){
@@ -8395,7 +8402,7 @@ const propertyToCommandMap$1 = {
8395
8402
  * Creates a callback that when executed upon the {@link #view view's} property change
8396
8403
  * executes a related editor command with the new property value.
8397
8404
  *
8398
- * @param defaultValue The default value of the command.
8405
+ * @param commandName The default value of the command.
8399
8406
  */ _getPropertyChangeCallback(commandName) {
8400
8407
  return (evt, propertyName, newValue)=>{
8401
8408
  if (!this._isReady) {