@progress/kendo-angular-grid 13.2.1-develop.8 → 13.2.1-develop.9

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.
@@ -19,17 +19,17 @@ const updateClass = (element, valid, svg) => {
19
19
  const path = valid ? plusIcon.content : cancelIcon.content;
20
20
  icon.firstElementChild.innerHTML = path + icon.firstElementChild.innerHTML;
21
21
  }
22
- icon.className = icon.className.replace(/(plus|cancel)/, valid ? 'plus' : 'cancel');
22
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
23
23
  };
24
24
  const updateLock = (element, locked = null, svg) => {
25
25
  const icon = element.querySelectorAll('.k-icon, .k-svg-icon')[1];
26
26
  const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
27
27
  if (svg) {
28
- icon.className = icon.className.replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`;
28
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
29
29
  icon.firstElementChild.innerHTML = locked ? lockIcon.content : unlockIcon.content;
30
30
  }
31
31
  else {
32
- icon.className = icon.className.replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`;
32
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`);
33
33
  }
34
34
  };
35
35
  const decorate = (element) => {
@@ -45,15 +45,15 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
45
45
  viewBox="${viewBox}"
46
46
  aria-hidden="true">
47
47
  ${content}
48
- <span class="k-svg-icon k-icon-modifier">
49
- <svg
50
- xmlns="http://www.w3.org/2000/svg"
51
- xmlns:xlink="http://www.w3.org/1999/xlink"
52
- viewBox="${viewBox}"
53
- aria-hidden="true">
54
- </svg>
55
- </span>
56
48
  </svg>
49
+ <span class="k-svg-icon k-icon-modifier">
50
+ <svg
51
+ xmlns="http://www.w3.org/2000/svg"
52
+ xmlns:xlink="http://www.w3.org/1999/xlink"
53
+ viewBox="${viewBox}"
54
+ aria-hidden="true">
55
+ </svg>
56
+ </span>
57
57
  </span>
58
58
  ${safeTitle}`;
59
59
  const fontIconsMarkup = (safeTitle) => `
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-grid',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1690455535,
13
- version: '13.2.1-develop.8',
12
+ publishDate: 1690457848,
13
+ version: '13.2.1-develop.9',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -4454,8 +4454,8 @@ const packageMetadata = {
4454
4454
  name: '@progress/kendo-angular-grid',
4455
4455
  productName: 'Kendo UI for Angular',
4456
4456
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
4457
- publishDate: 1690455535,
4458
- version: '13.2.1-develop.8',
4457
+ publishDate: 1690457848,
4458
+ version: '13.2.1-develop.9',
4459
4459
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
4460
4460
  };
4461
4461
 
@@ -6105,17 +6105,17 @@ const updateClass = (element, valid, svg) => {
6105
6105
  const path = valid ? plusIcon.content : cancelIcon.content;
6106
6106
  icon.firstElementChild.innerHTML = path + icon.firstElementChild.innerHTML;
6107
6107
  }
6108
- icon.className = icon.className.replace(/(plus|cancel)/, valid ? 'plus' : 'cancel');
6108
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
6109
6109
  };
6110
6110
  const updateLock = (element, locked = null, svg) => {
6111
6111
  const icon = element.querySelectorAll('.k-icon, .k-svg-icon')[1];
6112
6112
  const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
6113
6113
  if (svg) {
6114
- icon.className = icon.className.replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`;
6114
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
6115
6115
  icon.firstElementChild.innerHTML = locked ? lockIcon.content : unlockIcon.content;
6116
6116
  }
6117
6117
  else {
6118
- icon.className = icon.className.replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`;
6118
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`);
6119
6119
  }
6120
6120
  };
6121
6121
  const decorate = (element) => {
@@ -6131,15 +6131,15 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
6131
6131
  viewBox="${viewBox}"
6132
6132
  aria-hidden="true">
6133
6133
  ${content}
6134
- <span class="k-svg-icon k-icon-modifier">
6135
- <svg
6136
- xmlns="http://www.w3.org/2000/svg"
6137
- xmlns:xlink="http://www.w3.org/1999/xlink"
6138
- viewBox="${viewBox}"
6139
- aria-hidden="true">
6140
- </svg>
6141
- </span>
6142
6134
  </svg>
6135
+ <span class="k-svg-icon k-icon-modifier">
6136
+ <svg
6137
+ xmlns="http://www.w3.org/2000/svg"
6138
+ xmlns:xlink="http://www.w3.org/1999/xlink"
6139
+ viewBox="${viewBox}"
6140
+ aria-hidden="true">
6141
+ </svg>
6142
+ </span>
6143
6143
  </span>
6144
6144
  ${safeTitle}`;
6145
6145
  const fontIconsMarkup = (safeTitle) => `
@@ -4422,8 +4422,8 @@ const packageMetadata = {
4422
4422
  name: '@progress/kendo-angular-grid',
4423
4423
  productName: 'Kendo UI for Angular',
4424
4424
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
4425
- publishDate: 1690455535,
4426
- version: '13.2.1-develop.8',
4425
+ publishDate: 1690457848,
4426
+ version: '13.2.1-develop.9',
4427
4427
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
4428
4428
  };
4429
4429
 
@@ -6062,17 +6062,17 @@ const updateClass = (element, valid, svg) => {
6062
6062
  const path = valid ? plusIcon.content : cancelIcon.content;
6063
6063
  icon.firstElementChild.innerHTML = path + icon.firstElementChild.innerHTML;
6064
6064
  }
6065
- icon.className = icon.className.replace(/(plus|cancel)/, valid ? 'plus' : 'cancel');
6065
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
6066
6066
  };
6067
6067
  const updateLock = (element, locked = null, svg) => {
6068
6068
  const icon = element.querySelectorAll('.k-icon, .k-svg-icon')[1];
6069
6069
  const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
6070
6070
  if (svg) {
6071
- icon.className = icon.className.replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`;
6071
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
6072
6072
  icon.firstElementChild.innerHTML = locked ? lockIcon.content : unlockIcon.content;
6073
6073
  }
6074
6074
  else {
6075
- icon.className = icon.className.replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`;
6075
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`);
6076
6076
  }
6077
6077
  };
6078
6078
  const decorate = (element) => {
@@ -6088,15 +6088,15 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
6088
6088
  viewBox="${viewBox}"
6089
6089
  aria-hidden="true">
6090
6090
  ${content}
6091
- <span class="k-svg-icon k-icon-modifier">
6092
- <svg
6093
- xmlns="http://www.w3.org/2000/svg"
6094
- xmlns:xlink="http://www.w3.org/1999/xlink"
6095
- viewBox="${viewBox}"
6096
- aria-hidden="true">
6097
- </svg>
6098
- </span>
6099
6091
  </svg>
6092
+ <span class="k-svg-icon k-icon-modifier">
6093
+ <svg
6094
+ xmlns="http://www.w3.org/2000/svg"
6095
+ xmlns:xlink="http://www.w3.org/1999/xlink"
6096
+ viewBox="${viewBox}"
6097
+ aria-hidden="true">
6098
+ </svg>
6099
+ </span>
6100
6100
  </span>
6101
6101
  ${safeTitle}`;
6102
6102
  const fontIconsMarkup = (safeTitle) => `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "13.2.1-develop.8",
3
+ "version": "13.2.1-develop.9",
4
4
  "description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -32,25 +32,25 @@
32
32
  "@progress/kendo-data-query": "^1.0.0",
33
33
  "@progress/kendo-drawing": "^1.17.2",
34
34
  "@progress/kendo-licensing": "^1.0.2",
35
- "@progress/kendo-angular-buttons": "13.2.1-develop.8",
36
- "@progress/kendo-angular-common": "13.2.1-develop.8",
37
- "@progress/kendo-angular-dateinputs": "13.2.1-develop.8",
38
- "@progress/kendo-angular-layout": "13.2.1-develop.8",
39
- "@progress/kendo-angular-dropdowns": "13.2.1-develop.8",
40
- "@progress/kendo-angular-excel-export": "13.2.1-develop.8",
41
- "@progress/kendo-angular-icons": "13.2.1-develop.8",
42
- "@progress/kendo-angular-inputs": "13.2.1-develop.8",
43
- "@progress/kendo-angular-intl": "13.2.1-develop.8",
44
- "@progress/kendo-angular-l10n": "13.2.1-develop.8",
45
- "@progress/kendo-angular-label": "13.2.1-develop.8",
46
- "@progress/kendo-angular-pdf-export": "13.2.1-develop.8",
47
- "@progress/kendo-angular-popup": "13.2.1-develop.8",
48
- "@progress/kendo-angular-utils": "13.2.1-develop.8",
35
+ "@progress/kendo-angular-buttons": "13.2.1-develop.9",
36
+ "@progress/kendo-angular-common": "13.2.1-develop.9",
37
+ "@progress/kendo-angular-dateinputs": "13.2.1-develop.9",
38
+ "@progress/kendo-angular-layout": "13.2.1-develop.9",
39
+ "@progress/kendo-angular-dropdowns": "13.2.1-develop.9",
40
+ "@progress/kendo-angular-excel-export": "13.2.1-develop.9",
41
+ "@progress/kendo-angular-icons": "13.2.1-develop.9",
42
+ "@progress/kendo-angular-inputs": "13.2.1-develop.9",
43
+ "@progress/kendo-angular-intl": "13.2.1-develop.9",
44
+ "@progress/kendo-angular-l10n": "13.2.1-develop.9",
45
+ "@progress/kendo-angular-label": "13.2.1-develop.9",
46
+ "@progress/kendo-angular-pdf-export": "13.2.1-develop.9",
47
+ "@progress/kendo-angular-popup": "13.2.1-develop.9",
48
+ "@progress/kendo-angular-utils": "13.2.1-develop.9",
49
49
  "rxjs": "^6.5.3 || ^7.0.0"
50
50
  },
51
51
  "dependencies": {
52
52
  "tslib": "^2.3.1",
53
- "@progress/kendo-angular-schematics": "13.2.1-develop.8",
53
+ "@progress/kendo-angular-schematics": "13.2.1-develop.9",
54
54
  "@progress/kendo-common": "^0.2.0",
55
55
  "@progress/kendo-file-saver": "^1.0.0"
56
56
  },
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
6
6
  // peer dep of the dropdowns
7
- '@progress/kendo-angular-treeview': '13.2.1-develop.8',
7
+ '@progress/kendo-angular-treeview': '13.2.1-develop.9',
8
8
  // peer dependency of kendo-angular-inputs
9
- '@progress/kendo-angular-dialog': '13.2.1-develop.8',
9
+ '@progress/kendo-angular-dialog': '13.2.1-develop.9',
10
10
  // peer dependency of kendo-angular-icons
11
11
  '@progress/kendo-svg-icons': '^1.0.0',
12
12
  // peer dependency of kendo-angular-layout
13
- '@progress/kendo-angular-progressbar': '13.2.1-develop.8'
13
+ '@progress/kendo-angular-progressbar': '13.2.1-develop.9'
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }