@syncfusion/ej2-popups
Advanced tools
+263
| { | ||
| "env": { | ||
| "browser": true, | ||
| "es2021": true | ||
| }, | ||
| "extends": [ | ||
| "eslint:recommended", | ||
| "plugin:@typescript-eslint/recommended", | ||
| "plugin:jsdoc/recommended", | ||
| "plugin:security/recommended" | ||
| ], | ||
| "parser": "@typescript-eslint/parser", | ||
| "parserOptions": { | ||
| "ecmaFeatures": { "js": true }, | ||
| "ecmaVersion": 2018, | ||
| "project": "./tsconfig.json", | ||
| "sourceType": "module" | ||
| }, | ||
| "ignorePatterns": ["*.d.ts", "*.js"], | ||
| "plugins": [ | ||
| "@typescript-eslint", | ||
| "@typescript-eslint/tslint", | ||
| "eslint-plugin-security", | ||
| "jsdoc" | ||
| ], | ||
| "rules": { | ||
| "use-isnan": "error", | ||
| "security/detect-unsafe-regex":"error", | ||
| "security/detect-buffer-noassert":"error", | ||
| "security/detect-child-process":"error", | ||
| "security/detect-disable-mustache-escape":"error", | ||
| "security/detect-eval-with-expression":"error", | ||
| "security/detect-no-csrf-before-method-override":"error", | ||
| "security/detect-non-literal-fs-filename":"error", | ||
| "security/detect-non-literal-regexp":"error", | ||
| "security/detect-non-literal-require":"error", | ||
| "security/detect-object-injection":"error", | ||
| "security/detect-possible-timing-attacks":"error", | ||
| "security/detect-pseudoRandomBytes":"error", | ||
| "security/detect-new-buffer":"error", | ||
| "security/detect-bidi-characters":"error", | ||
| "no-prototype-builtins": "warn", | ||
| "no-extend-native": ["warn"], | ||
| "@typescript-eslint/no-inferrable-types": "off", | ||
| "@typescript-eslint/ban-types": ["warn", { | ||
| "types": { | ||
| "Object": false, | ||
| "object": false, | ||
| "{}": false, | ||
| "Function": false | ||
| } | ||
| }], | ||
| "jsdoc/check-tag-names": 0, | ||
| "@typescript-eslint/tslint/config": [ | ||
| "error", | ||
| { | ||
| "rules": { | ||
| "ban": true, | ||
| "chai-vague-errors": true, | ||
| "max-func-body-length": [ | ||
| true, | ||
| 120, | ||
| { | ||
| "ignore-parameters-to-function-regex": "describe" | ||
| } | ||
| ], | ||
| "missing-jsdoc": true, | ||
| "no-backbone-get-set-outside-model": false, | ||
| "no-cookies": false, | ||
| "no-delete-expression": false, | ||
| "no-disable-auto-sanitization": true, | ||
| "no-duplicate-case": true, | ||
| "no-duplicate-parameter-names": true, | ||
| "no-empty-interfaces": false, | ||
| "no-exec-script": true, | ||
| "no-function-expression": false, | ||
| "no-multiple-var-decl": false, | ||
| "no-string-based-set-immediate": false, | ||
| "no-string-based-set-interval": false, | ||
| "no-unnecessary-bind": false, | ||
| "no-unused-imports": true, | ||
| "no-with-statement": false, | ||
| "prefer-array-literal": false, | ||
| "typedef": [ | ||
| true, | ||
| "call-signature", | ||
| "parameter", | ||
| "property-declaration", | ||
| "variable-declaration", | ||
| "arrow-parameter", | ||
| "member-variable-declaration" | ||
| ], | ||
| "use-named-parameter": false, | ||
| "valid-typeof": true, | ||
| "whitespace": [ | ||
| true, | ||
| "check-branch", | ||
| "check-decl", | ||
| "check-operator", | ||
| "check-separator", | ||
| "check-type" | ||
| ] | ||
| } | ||
| } | ||
| ], | ||
| "no-control-regex": "error", | ||
| "no-constant-condition": "error", | ||
| "no-invalid-regexp": "error", | ||
| "curly": "error", | ||
| "eol-last": [ | ||
| "error", | ||
| "always" | ||
| ], | ||
| "guard-for-in": "error", | ||
| "no-labels": "error", | ||
| "max-len": [ | ||
| "error", | ||
| { | ||
| "code": 140, | ||
| "tabWidth": 4, | ||
| "ignoreComments": true, | ||
| "ignoreStrings": true, | ||
| "ignoreTemplateLiterals": true, | ||
| "ignoreRegExpLiterals": true | ||
| } | ||
| ], | ||
| "no-console": [ | ||
| "error", | ||
| { | ||
| "allow": [ | ||
| "warn", | ||
| "dir", | ||
| "timeLog", | ||
| "assert", | ||
| "clear", | ||
| "count", | ||
| "countReset", | ||
| "group", | ||
| "groupEnd", | ||
| "table", | ||
| "dirxml", | ||
| "error", | ||
| "groupCollapsed", | ||
| "Console", | ||
| "profile", | ||
| "profileEnd", | ||
| "timeStamp", | ||
| "context" | ||
| ] | ||
| } | ||
| ], | ||
| "no-redeclare": [ | ||
| "error", | ||
| { | ||
| "builtinGlobals": true | ||
| } | ||
| ], | ||
| "@typescript-eslint/no-parameter-properties": "error", | ||
| "@typescript-eslint/indent": [ | ||
| "error", | ||
| 4, | ||
| { | ||
| "CallExpression": { | ||
| "arguments": "first" | ||
| }, | ||
| "FunctionDeclaration": { | ||
| "parameters": "first" | ||
| }, | ||
| "FunctionExpression": { | ||
| "parameters": "first" | ||
| } | ||
| } | ||
| ], | ||
| "no-debugger": "error", | ||
| "no-eval": "error", | ||
| "no-extra-semi": "error", | ||
| "no-throw-literal": "error", | ||
| "no-fallthrough": "error", | ||
| "comma-dangle": [ | ||
| "error", | ||
| "never" | ||
| ], | ||
| "no-trailing-spaces": "error", | ||
| "@typescript-eslint/no-unused-expressions": "error", | ||
| "@typescript-eslint/no-var-requires": "error", | ||
| "one-var": [ | ||
| "error", | ||
| "never" | ||
| ], | ||
| "@typescript-eslint/no-explicit-any": "warn", | ||
| "no-cond-assign": [ | ||
| "error", | ||
| "always" | ||
| ], | ||
| "@typescript-eslint/consistent-type-assertions": "off", | ||
| "jsdoc/check-alignment": "error", | ||
| "no-empty": "error", | ||
| "quotes": [ | ||
| "error", | ||
| "single" | ||
| ], | ||
| "semi": [ | ||
| "error", | ||
| "always" | ||
| ], | ||
| "eqeqeq": [ | ||
| "error", | ||
| "smart" | ||
| ], | ||
| "valid-typeof": [ | ||
| "error", | ||
| { | ||
| "requireStringLiterals": true | ||
| } | ||
| ], | ||
| "camelcase": [ | ||
| "error", | ||
| { | ||
| "properties": "always", | ||
| "ignoreDestructuring": true, | ||
| "ignoreImports": true | ||
| } | ||
| ], | ||
| "no-irregular-whitespace": [ | ||
| "error", | ||
| { | ||
| "skipStrings": true, | ||
| "skipComments": true, | ||
| "skipRegExps": true, | ||
| "skipTemplates": true | ||
| } | ||
| ], | ||
| "valid-jsdoc": [ | ||
| "error", | ||
| { | ||
| "prefer": { | ||
| "arg": "param", | ||
| "argument": "param", | ||
| "class": "constructor", | ||
| "return": "returns", | ||
| "virtual": "abstract" | ||
| } | ||
| } | ||
| ], | ||
| "no-var": "error", | ||
| "radix": "error" | ||
| }, | ||
| "reportUnusedDisableDirectives": true, | ||
| "overrides": [ | ||
| { | ||
| "files": [ | ||
| "node_modules", | ||
| "dist", | ||
| "public", | ||
| "coverage", | ||
| "test-report" | ||
| ], | ||
| "rules": { | ||
| "no-unused-expressions": "off" | ||
| } | ||
| } | ||
| ] | ||
| } |
+17
| //Config file for Accessibility-Checker | ||
| module.exports = { | ||
| ruleArchive: "18March2024", | ||
| policies: ["WCAG_2_1","IBM_Accessibility"], | ||
| failLevels: ["violation", "potentialviolation"], | ||
| reportLevels: [ | ||
| "violation", | ||
| "potentialviolation", | ||
| "recommendation", | ||
| "potentialrecommendation", | ||
| "manual", | ||
| "pass", | ||
| ], | ||
| outputFormat: ["html","json"], | ||
| label: [process.env.TRAVIS_BRANCH], | ||
| outputFolder:"accessibility-reports", | ||
| }; |
+111
| { | ||
| "rules": { | ||
| "chai-vague-errors": true, | ||
| "use-isnan": true, | ||
| "missing-jsdoc": true, | ||
| "missing-optional-annotation": true, | ||
| "no-backbone-get-set-outside-model": true, | ||
| "no-banned-terms": true, | ||
| "no-constant-condition": true, | ||
| "no-control-regex": true, | ||
| "no-cookies": true, | ||
| "no-delete-expression": true, | ||
| "no-document-write": true, | ||
| "no-document-domain": true, | ||
| "no-disable-auto-sanitization": true, | ||
| "no-duplicate-case": true, | ||
| "no-duplicate-parameter-names": true, | ||
| "no-empty-interfaces": true, | ||
| "no-exec-script": true, | ||
| "no-function-constructor-with-string-args": true, | ||
| "no-function-expression": true, | ||
| "no-invalid-regexp": true, | ||
| "no-for-in": true, | ||
| "member-access": true, | ||
| "no-multiline-string": true, | ||
| "no-multiple-var-decl": true, | ||
| "no-unnecessary-bind": true, | ||
| "no-unnecessary-semicolons": true, | ||
| "no-octal-literal": true, | ||
| "no-regex-spaces": true, | ||
| "no-sparse-arrays": true, | ||
| "no-string-based-set-immediate": true, | ||
| "no-string-based-set-interval": true, | ||
| "no-unused-imports": true, | ||
| "no-with-statement": true, | ||
| "prefer-array-literal": true, | ||
| "promise-must-complete": false, | ||
| "react-no-dangerous-html": true, | ||
| "use-named-parameter": true, | ||
| "valid-typeof": true, | ||
| "max-func-body-length": [true, 100, { | ||
| "ignore-parameters-to-function-regex": "describe" | ||
| }], | ||
| "class-name": true, | ||
| "curly": true, | ||
| "eofline": false, | ||
| "forin": true, | ||
| "indent": [ | ||
| true, | ||
| "spaces" | ||
| ], | ||
| "label-position": true, | ||
| "max-line-length": [true, 140], | ||
| "no-arg": true, | ||
| "no-console": [true, | ||
| "debug", | ||
| "info", | ||
| "log", | ||
| "time", | ||
| "timeEnd", | ||
| "trace" | ||
| ], | ||
| "no-construct": true, | ||
| "no-parameter-properties": true, | ||
| "no-debugger": true, | ||
| "no-duplicate-variable": true, | ||
| "no-empty": true, | ||
| "no-eval": true, | ||
| "no-string-literal": true, | ||
| "no-switch-case-fall-through": true, | ||
| "trailing-comma": true, | ||
| "no-trailing-whitespace": true, | ||
| "no-unused-expression": true, | ||
| "no-use-before-declare": false, | ||
| "no-var-requires": true, | ||
| "one-line": [true, | ||
| "check-open-brace", | ||
| "check-catch", | ||
| "check-else", | ||
| "check-whitespace" | ||
| ], | ||
| "no-any": true, | ||
| "no-conditional-assignment": true, | ||
| "no-angle-bracket-type-assertion": false, | ||
| "align": [true, "parameters", "arguments", "statements"], | ||
| "no-empty-line-after-opening-brace": false, | ||
| "typedef-whitespace": [false], | ||
| "ban": true, | ||
| "quotemark": [true, "single"], | ||
| "semicolon": true, | ||
| "triple-equals": [true, "allow-null-check"], | ||
| "typedef": [true, | ||
| "call-signature", | ||
| "parameter", | ||
| "property-declaration", | ||
| "variable-declaration", | ||
| "arrow-parameter", | ||
| "member-variable-declaration"], | ||
| "variable-name": true, | ||
| "whitespace": [true, | ||
| "check-branch", | ||
| "check-decl", | ||
| "check-operator", | ||
| "check-separator", | ||
| "check-type" | ||
| ], | ||
| "jsdoc-format": true, | ||
| "no-var-keyword": true, | ||
| "radix": true | ||
| } | ||
| } |
| /*! | ||
| * filename: index.d.ts | ||
| * version : 32.2.5 | ||
| * version : 32.2.7 | ||
| * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
+2
-2
| { | ||
| "name": "@syncfusion/ej2-popups", | ||
| "version": "32.2.6", | ||
| "version": "32.2.7", | ||
| "description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups.", | ||
@@ -12,3 +12,3 @@ "author": "Syncfusion Inc.", | ||
| "@syncfusion/ej2-base": "~32.2.6", | ||
| "@syncfusion/ej2-buttons": "~32.2.3" | ||
| "@syncfusion/ej2-buttons": "~32.2.7" | ||
| }, | ||
@@ -15,0 +15,0 @@ "devDependencies": {}, |
@@ -369,2 +369,3 @@ import { Component, EmitType } from '@syncfusion/ej2-base'; | ||
| private boundWindowResizeHandler; | ||
| private keyDownHandler; | ||
| /** | ||
@@ -371,0 +372,0 @@ * Specifies the value that can be displayed in dialog's content area. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
5180536
0.26%821
0.37%99116
0.41%71
1.43%