@progress/kendo-angular-spreadsheet 21.0.0-develop.20 → 21.0.0-develop.21

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1762335551,
14
- version: '21.0.0-develop.20',
13
+ publishDate: 1762426815,
14
+ version: '21.0.0-develop.21',
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
  };
@@ -43,8 +43,8 @@ const packageMetadata = {
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCode: 'KENDOUIANGULAR',
45
45
  productCodes: ['KENDOUIANGULAR'],
46
- publishDate: 1762335551,
47
- version: '21.0.0-develop.20',
46
+ publishDate: 1762426815,
47
+ version: '21.0.0-develop.21',
48
48
  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',
49
49
  };
50
50
 
@@ -33,31 +33,31 @@ export interface Rectangle {
33
33
  bottom: number;
34
34
  }
35
35
  /**
36
- * Represents the arguments passed to the handler callback for each cell editor.
36
+ * Represents the arguments passed to the handler callback for each cell editor ([see example](slug:custom_cell_editors_spreadsheet#action-handlers)).
37
37
  */
38
38
  export interface SpreadsheetCellEditorHandlerArgs {
39
39
  /**
40
- * Represents the original event that triggered the action.
40
+ * The data returned from the component's original event (for example, the selected color value from a ColorPalette's `valueChange` event).
41
41
  */
42
42
  originalEvent?: any;
43
43
  /**
44
- * Represents the range that the action will execute for.
44
+ * The Spreadsheet `Range` object representing the currently selected cells. Provides methods to apply values, formatting, and styling to the Spreadsheet cells using the original event's data.
45
45
  */
46
46
  range?: Range;
47
47
  /**
48
- * Represents the `Rectangle` object that provides information about the size and position of the currently active range.
48
+ * Represents the `Rectangle` object that provides position and dimension information about the active range, useful for custom positioning logic.
49
49
  */
50
50
  rect?: Rectangle;
51
51
  /**
52
- * Represents the current `View` instance.
52
+ * The current Spreadsheet `View` instance, giving access to the broader Spreadsheet context.
53
53
  */
54
54
  view?: View;
55
55
  /**
56
- * Represents the validation rules of the currently active range.
56
+ * Any validation rules configured for the active range, allowing you to respect existing constraints.
57
57
  */
58
58
  validation?: any;
59
59
  /**
60
- * Represents the callback function that edits the active cell or range with the provided value.
60
+ * A function that edits the active cell or range with a provided value. Use this as an alternative to `args.range.value` manipulation for updating the cell content.
61
61
  */
62
62
  callback?: Function;
63
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-spreadsheet",
3
- "version": "21.0.0-develop.20",
3
+ "version": "21.0.0-develop.21",
4
4
  "description": "A Spreadsheet Component for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1762335551,
22
+ "publishDate": 1762426815,
23
23
  "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"
24
24
  }
25
25
  },
@@ -29,25 +29,25 @@
29
29
  "@angular/core": "18 - 20",
30
30
  "@angular/platform-browser": "18 - 20",
31
31
  "@progress/kendo-licensing": "^1.7.0",
32
- "@progress/kendo-angular-buttons": "21.0.0-develop.20",
33
- "@progress/kendo-angular-common": "21.0.0-develop.20",
34
- "@progress/kendo-angular-dialog": "21.0.0-develop.20",
35
- "@progress/kendo-angular-dropdowns": "21.0.0-develop.20",
36
- "@progress/kendo-angular-icons": "21.0.0-develop.20",
37
- "@progress/kendo-angular-inputs": "21.0.0-develop.20",
38
- "@progress/kendo-angular-dateinputs": "21.0.0-develop.20",
39
- "@progress/kendo-angular-intl": "21.0.0-develop.20",
40
- "@progress/kendo-angular-l10n": "21.0.0-develop.20",
41
- "@progress/kendo-angular-label": "21.0.0-develop.20",
42
- "@progress/kendo-angular-layout": "21.0.0-develop.20",
43
- "@progress/kendo-angular-menu": "21.0.0-develop.20",
44
- "@progress/kendo-angular-popup": "21.0.0-develop.20",
45
- "@progress/kendo-angular-toolbar": "21.0.0-develop.20",
32
+ "@progress/kendo-angular-buttons": "21.0.0-develop.21",
33
+ "@progress/kendo-angular-common": "21.0.0-develop.21",
34
+ "@progress/kendo-angular-dialog": "21.0.0-develop.21",
35
+ "@progress/kendo-angular-dropdowns": "21.0.0-develop.21",
36
+ "@progress/kendo-angular-icons": "21.0.0-develop.21",
37
+ "@progress/kendo-angular-inputs": "21.0.0-develop.21",
38
+ "@progress/kendo-angular-dateinputs": "21.0.0-develop.21",
39
+ "@progress/kendo-angular-intl": "21.0.0-develop.21",
40
+ "@progress/kendo-angular-l10n": "21.0.0-develop.21",
41
+ "@progress/kendo-angular-label": "21.0.0-develop.21",
42
+ "@progress/kendo-angular-layout": "21.0.0-develop.21",
43
+ "@progress/kendo-angular-menu": "21.0.0-develop.21",
44
+ "@progress/kendo-angular-popup": "21.0.0-develop.21",
45
+ "@progress/kendo-angular-toolbar": "21.0.0-develop.21",
46
46
  "rxjs": "^6.5.3 || ^7.0.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "tslib": "^2.3.1",
50
- "@progress/kendo-angular-schematics": "21.0.0-develop.20",
50
+ "@progress/kendo-angular-schematics": "21.0.0-develop.21",
51
51
  "@progress/jszip-esm": "^1.0.3",
52
52
  "@progress/kendo-common": "^1.0.1",
53
53
  "@progress/kendo-date-math": "^1.5.10",
@@ -7,8 +7,8 @@ function default_1(options) {
7
7
  // Peer dependency of icons
8
8
  '@progress/kendo-svg-icons': '^4.0.0',
9
9
  // peer deps of the dropdowns
10
- '@progress/kendo-angular-navigation': '21.0.0-develop.20',
11
- '@progress/kendo-angular-treeview': '21.0.0-develop.20'
10
+ '@progress/kendo-angular-navigation': '21.0.0-develop.21',
11
+ '@progress/kendo-angular-treeview': '21.0.0-develop.21'
12
12
  } });
13
13
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
14
14
  }