@progress/kendo-typescript-tasks 10.0.21-ng12.63 → 10.0.21-ng12.67

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@progress/kendo-typescript-tasks",
3
3
  "description": "Kendo UI TypeScript package gulp tasks",
4
4
  "main": "gulp-tasks.js",
5
- "version": "10.0.21-ng12.63+81bf314",
5
+ "version": "10.0.21-ng12.67+048e42e",
6
6
  "author": "Telerik",
7
7
  "license": "Apache-2.0",
8
8
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "typescript": "^4.3.4"
19
19
  },
20
20
  "dependencies": {
21
- "@progress/kendo-common-tasks": "7.9.5-ng12.63+81bf314",
21
+ "@progress/kendo-common-tasks": "7.9.5-ng12.67+048e42e",
22
22
  "@typescript-eslint/eslint-plugin": "4.28.2",
23
23
  "@typescript-eslint/parser": "4.28.2",
24
24
  "core-js": "^3.18.0",
@@ -48,5 +48,5 @@
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "81bf314fca7c54a79e3e54ce91343080ee9ee8cd"
51
+ "gitHead": "048e42e5efdddc9f167be35b115e2f412da86739"
52
52
  }
@@ -148,6 +148,7 @@ const extractMembers = (packageName, modules, config) => {
148
148
  .children
149
149
  .filter(child => child.kindString !== "Reference")
150
150
  .filter(child => child.name !== 'core')
151
+ .filter(child => !child.sources[0].fileName.includes('prosemirror'))
151
152
  .map(child => {
152
153
  const fullName = moduleFullName(module.name, packageName, rootModules);
153
154
 
@@ -119,12 +119,12 @@ const singleTypeString = (type) => {
119
119
  }
120
120
  }
121
121
 
122
- if (type.typeArguments) {
123
- suffix = `<${singleTypeString(type.typeArguments[0])}>`;
122
+ if (type.type === 'array') {
123
+ return `${singleTypeString(type.elementType)}[]`;
124
124
  }
125
125
 
126
- if (type.type === 'array') {
127
- suffix += '[]';
126
+ if (type.typeArguments) {
127
+ suffix = `<${singleTypeString(type.typeArguments[0])}>`;
128
128
  }
129
129
 
130
130
  const name = typeName(type);