@syncfusion/ej2-treegrid 32.1.24 → 32.2.3
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/.eslintrc.json +22 -3
- package/aceconfig.js +17 -0
- package/dist/ej2-treegrid.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +112 -21
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +114 -21
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-treegrid.min.js +2 -2
- package/dist/global/ej2-treegrid.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +5 -5
- package/src/treegrid/actions/infinite-scroll.d.ts +8 -0
- package/src/treegrid/actions/infinite-scroll.js +83 -3
- package/src/treegrid/base/constant.d.ts +2 -0
- package/src/treegrid/base/constant.js +2 -0
- package/src/treegrid/base/treegrid.d.ts +1 -0
- package/src/treegrid/base/treegrid.js +28 -17
- package/tslint.json +111 -0
package/.eslintrc.json
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
"extends": [
|
|
7
7
|
"eslint:recommended",
|
|
8
8
|
"plugin:@typescript-eslint/recommended",
|
|
9
|
-
"plugin:jsdoc/recommended"
|
|
9
|
+
"plugin:jsdoc/recommended",
|
|
10
|
+
"plugin:security/recommended"
|
|
10
11
|
],
|
|
11
12
|
"parser": "@typescript-eslint/parser",
|
|
12
13
|
"parserOptions": {
|
|
@@ -14,14 +15,32 @@
|
|
|
14
15
|
"ecmaVersion": 2018,
|
|
15
16
|
"project": "./tsconfig.json",
|
|
16
17
|
"sourceType": "module"
|
|
17
|
-
|
|
18
|
+
},
|
|
19
|
+
"ignorePatterns": ["*.d.ts", "*.js"],
|
|
18
20
|
"plugins": [
|
|
19
21
|
"@typescript-eslint",
|
|
20
22
|
"@typescript-eslint/tslint",
|
|
23
|
+
"eslint-plugin-security",
|
|
21
24
|
"jsdoc"
|
|
22
25
|
],
|
|
23
26
|
"rules": {
|
|
24
27
|
"use-isnan": "error",
|
|
28
|
+
"security/detect-unsafe-regex":"error",
|
|
29
|
+
"security/detect-buffer-noassert":"error",
|
|
30
|
+
"security/detect-child-process":"error",
|
|
31
|
+
"security/detect-disable-mustache-escape":"error",
|
|
32
|
+
"security/detect-eval-with-expression":"error",
|
|
33
|
+
"security/detect-no-csrf-before-method-override":"error",
|
|
34
|
+
"security/detect-non-literal-fs-filename":"error",
|
|
35
|
+
"security/detect-non-literal-regexp":"error",
|
|
36
|
+
"security/detect-non-literal-require":"error",
|
|
37
|
+
"security/detect-object-injection":"error",
|
|
38
|
+
"security/detect-possible-timing-attacks":"error",
|
|
39
|
+
"security/detect-pseudoRandomBytes":"error",
|
|
40
|
+
"security/detect-new-buffer":"error",
|
|
41
|
+
"security/detect-bidi-characters":"error",
|
|
42
|
+
"no-prototype-builtins": "warn",
|
|
43
|
+
"no-extend-native": ["warn"],
|
|
25
44
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
26
45
|
"@typescript-eslint/ban-types": ["warn", {
|
|
27
46
|
"types": {
|
|
@@ -168,7 +187,7 @@
|
|
|
168
187
|
"error",
|
|
169
188
|
"never"
|
|
170
189
|
],
|
|
171
|
-
"@typescript-eslint/no-explicit-any": "
|
|
190
|
+
"@typescript-eslint/no-explicit-any": "warn",
|
|
172
191
|
"no-cond-assign": [
|
|
173
192
|
"error",
|
|
174
193
|
"always"
|
package/aceconfig.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
//Config file for Accessibility-Checker
|
|
2
|
+
module.exports = {
|
|
3
|
+
ruleArchive: "18March2024",
|
|
4
|
+
policies: ["WCAG_2_1","IBM_Accessibility"],
|
|
5
|
+
failLevels: ["violation", "potentialviolation"],
|
|
6
|
+
reportLevels: [
|
|
7
|
+
"violation",
|
|
8
|
+
"potentialviolation",
|
|
9
|
+
"recommendation",
|
|
10
|
+
"potentialrecommendation",
|
|
11
|
+
"manual",
|
|
12
|
+
"pass",
|
|
13
|
+
],
|
|
14
|
+
outputFormat: ["html","json"],
|
|
15
|
+
label: [process.env.TRAVIS_BRANCH],
|
|
16
|
+
outputFolder:"accessibility-reports",
|
|
17
|
+
};
|