@progress/kendo-angular-treelist 13.2.1-develop.8 → 13.2.1

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-treelist',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1690455557,
13
- version: '13.2.1-develop.8',
12
+ publishDate: 1690969907,
13
+ version: '13.2.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -179,7 +179,7 @@ export class PDFComponent extends PDFExportComponent {
179
179
  };
180
180
  this.component.notifyPageChange('pdf', { skip: skip, take: _take });
181
181
  if (this.component.view.loading) {
182
- this.component.vida.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
182
+ this.component.view.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
183
183
  }
184
184
  else {
185
185
  onPageChanged();
@@ -48,8 +48,8 @@ const packageMetadata = {
48
48
  name: '@progress/kendo-angular-treelist',
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
51
- publishDate: 1690455557,
52
- version: '13.2.1-develop.8',
51
+ publishDate: 1690969907,
52
+ version: '13.2.1',
53
53
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
54
  };
55
55
 
@@ -3061,17 +3061,17 @@ const updateClass = (element, valid, svg) => {
3061
3061
  const path = valid ? plusIcon.content : cancelIcon.content;
3062
3062
  icon.firstElementChild.innerHTML = path + icon.firstElementChild.innerHTML;
3063
3063
  }
3064
- icon.className = icon.className.replace(/(plus|cancel)/, valid ? 'plus' : 'cancel');
3064
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
3065
3065
  };
3066
3066
  const updateLock = (element, locked = null, svg) => {
3067
3067
  const icon = element.querySelectorAll('.k-icon, .k-svg-icon')[1];
3068
3068
  const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
3069
3069
  if (svg) {
3070
- icon.className = icon.className.replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`;
3070
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
3071
3071
  icon.firstElementChild.innerHTML = locked ? lockIcon.content : unlockIcon.content;
3072
3072
  }
3073
3073
  else {
3074
- icon.className = icon.className.replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`;
3074
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`);
3075
3075
  }
3076
3076
  };
3077
3077
  const decorate = (element) => {
@@ -3087,15 +3087,15 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
3087
3087
  viewBox="${viewBox}"
3088
3088
  aria-hidden="true">
3089
3089
  ${content}
3090
- <span class="k-svg-icon k-icon-modifier">
3091
- <svg
3092
- xmlns="http://www.w3.org/2000/svg"
3093
- xmlns:xlink="http://www.w3.org/1999/xlink"
3094
- viewBox="${viewBox}"
3095
- aria-hidden="true">
3096
- </svg>
3097
- </span>
3098
3090
  </svg>
3091
+ <span class="k-svg-icon k-icon-modifier">
3092
+ <svg
3093
+ xmlns="http://www.w3.org/2000/svg"
3094
+ xmlns:xlink="http://www.w3.org/1999/xlink"
3095
+ viewBox="${viewBox}"
3096
+ aria-hidden="true">
3097
+ </svg>
3098
+ </span>
3099
3099
  </span>
3100
3100
  ${safeTitle}`;
3101
3101
  const fontIconsMarkup = (safeTitle) => `
@@ -21037,7 +21037,7 @@ class PDFComponent extends PDFExportComponent {
21037
21037
  };
21038
21038
  this.component.notifyPageChange('pdf', { skip: skip, take: _take });
21039
21039
  if (this.component.view.loading) {
21040
- this.component.vida.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
21040
+ this.component.view.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
21041
21041
  }
21042
21042
  else {
21043
21043
  onPageChanged();
@@ -48,8 +48,8 @@ const packageMetadata = {
48
48
  name: '@progress/kendo-angular-treelist',
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
51
- publishDate: 1690455557,
52
- version: '13.2.1-develop.8',
51
+ publishDate: 1690969907,
52
+ version: '13.2.1',
53
53
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
54
  };
55
55
 
@@ -3035,17 +3035,17 @@ const updateClass = (element, valid, svg) => {
3035
3035
  const path = valid ? plusIcon.content : cancelIcon.content;
3036
3036
  icon.firstElementChild.innerHTML = path + icon.firstElementChild.innerHTML;
3037
3037
  }
3038
- icon.className = icon.className.replace(/(plus|cancel)/, valid ? 'plus' : 'cancel');
3038
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
3039
3039
  };
3040
3040
  const updateLock = (element, locked = null, svg) => {
3041
3041
  const icon = element.querySelectorAll('.k-icon, .k-svg-icon')[1];
3042
3042
  const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
3043
3043
  if (svg) {
3044
- icon.className = icon.className.replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`;
3044
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
3045
3045
  icon.firstElementChild.innerHTML = locked ? lockIcon.content : unlockIcon.content;
3046
3046
  }
3047
3047
  else {
3048
- icon.className = icon.className.replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`;
3048
+ icon.setAttribute('class', icon.getAttribute('class').replace(/(k-i-unlock|k-i-lock)/, '').trim() + ` ${value}`);
3049
3049
  }
3050
3050
  };
3051
3051
  const decorate = (element) => {
@@ -3061,15 +3061,15 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
3061
3061
  viewBox="${viewBox}"
3062
3062
  aria-hidden="true">
3063
3063
  ${content}
3064
- <span class="k-svg-icon k-icon-modifier">
3065
- <svg
3066
- xmlns="http://www.w3.org/2000/svg"
3067
- xmlns:xlink="http://www.w3.org/1999/xlink"
3068
- viewBox="${viewBox}"
3069
- aria-hidden="true">
3070
- </svg>
3071
- </span>
3072
3064
  </svg>
3065
+ <span class="k-svg-icon k-icon-modifier">
3066
+ <svg
3067
+ xmlns="http://www.w3.org/2000/svg"
3068
+ xmlns:xlink="http://www.w3.org/1999/xlink"
3069
+ viewBox="${viewBox}"
3070
+ aria-hidden="true">
3071
+ </svg>
3072
+ </span>
3073
3073
  </span>
3074
3074
  ${safeTitle}`;
3075
3075
  const fontIconsMarkup = (safeTitle) => `
@@ -20970,7 +20970,7 @@ class PDFComponent extends PDFExportComponent {
20970
20970
  };
20971
20971
  this.component.notifyPageChange('pdf', { skip: skip, take: _take });
20972
20972
  if (this.component.view.loading) {
20973
- this.component.vida.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
20973
+ this.component.view.dataLoaded.pipe(take(1)).subscribe(onPageChanged);
20974
20974
  }
20975
20975
  else {
20976
20976
  onPageChanged();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "13.2.1-develop.8",
3
+ "version": "13.2.1",
4
4
  "description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -30,25 +30,25 @@
30
30
  "@progress/kendo-data-query": "^1.0.0",
31
31
  "@progress/kendo-drawing": "^1.17.2",
32
32
  "@progress/kendo-licensing": "^1.0.2",
33
- "@progress/kendo-angular-buttons": "13.2.1-develop.8",
34
- "@progress/kendo-angular-common": "13.2.1-develop.8",
35
- "@progress/kendo-angular-dateinputs": "13.2.1-develop.8",
36
- "@progress/kendo-angular-dropdowns": "13.2.1-develop.8",
37
- "@progress/kendo-angular-excel-export": "13.2.1-develop.8",
38
- "@progress/kendo-angular-icons": "13.2.1-develop.8",
39
- "@progress/kendo-angular-inputs": "13.2.1-develop.8",
40
- "@progress/kendo-angular-intl": "13.2.1-develop.8",
41
- "@progress/kendo-angular-l10n": "13.2.1-develop.8",
42
- "@progress/kendo-angular-label": "13.2.1-develop.8",
43
- "@progress/kendo-angular-pdf-export": "13.2.1-develop.8",
44
- "@progress/kendo-angular-popup": "13.2.1-develop.8",
45
- "@progress/kendo-angular-utils": "13.2.1-develop.8",
33
+ "@progress/kendo-angular-buttons": "13.2.1",
34
+ "@progress/kendo-angular-common": "13.2.1",
35
+ "@progress/kendo-angular-dateinputs": "13.2.1",
36
+ "@progress/kendo-angular-dropdowns": "13.2.1",
37
+ "@progress/kendo-angular-excel-export": "13.2.1",
38
+ "@progress/kendo-angular-icons": "13.2.1",
39
+ "@progress/kendo-angular-inputs": "13.2.1",
40
+ "@progress/kendo-angular-intl": "13.2.1",
41
+ "@progress/kendo-angular-l10n": "13.2.1",
42
+ "@progress/kendo-angular-label": "13.2.1",
43
+ "@progress/kendo-angular-pdf-export": "13.2.1",
44
+ "@progress/kendo-angular-popup": "13.2.1",
45
+ "@progress/kendo-angular-utils": "13.2.1",
46
46
  "rxjs": "^6.5.3 || ^7.0.0",
47
- "@progress/kendo-angular-listview": "13.2.1-develop.8"
47
+ "@progress/kendo-angular-listview": "13.2.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "13.2.1-develop.8",
51
+ "@progress/kendo-angular-schematics": "13.2.1",
52
52
  "@progress/kendo-common": "^0.2.0",
53
53
  "@progress/kendo-file-saver": "^1.0.0"
54
54
  },
@@ -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: 'TreeListModule', package: 'treelist', 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',
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',
10
10
  // peer dependency of kendo-angular-icons
11
11
  '@progress/kendo-svg-icons': '^1.0.0',
12
12
  // peer dependency of kendo-angular-dateinputs
13
- '@progress/kendo-angular-navigation': '13.2.1-develop.8',
13
+ '@progress/kendo-angular-navigation': '13.2.1',
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }