@syncfusion/ej2-maps 32.2.3 → 32.2.4

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 32.2.3
3
+ * version : 32.2.4
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-maps",
3
- "version": "32.2.3",
3
+ "version": "32.2.4",
4
4
  "description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -1255,7 +1255,7 @@ var Zoom = /** @class */ (function () {
1255
1255
  var layerX = event.type.indexOf('mouse') > -1 || event.type.indexOf('key') > -1 ? event['layerX'] : event.touches[0].pageX;
1256
1256
  var layerY = event.type.indexOf('mouse') > -1 || event.type.indexOf('key') > -1 ? event['layerY'] : event.touches[0].pageY;
1257
1257
  this.maps.mergeCluster();
1258
- if (!map.isTileMap) {
1258
+ if (!map.isTileMap && map.mapScaleValue > 1) {
1259
1259
  var marginTop = getProcessedMarginValue(map.margin.top);
1260
1260
  var legendElement = document.getElementById(map.element.id + '_Legend_Group');
1261
1261
  var legendHeight = !isNullOrUndefined(legendElement) ? legendElement.getClientRects()[0].height : 0;
package/.eslintrc.json DELETED
@@ -1,263 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "es2021": true
5
- },
6
- "extends": [
7
- "eslint:recommended",
8
- "plugin:@typescript-eslint/recommended",
9
- "plugin:jsdoc/recommended",
10
- "plugin:security/recommended"
11
- ],
12
- "parser": "@typescript-eslint/parser",
13
- "parserOptions": {
14
- "ecmaFeatures": { "js": true },
15
- "ecmaVersion": 2018,
16
- "project": "./tsconfig.json",
17
- "sourceType": "module"
18
- },
19
- "ignorePatterns": ["*.d.ts", "*.js"],
20
- "plugins": [
21
- "@typescript-eslint",
22
- "@typescript-eslint/tslint",
23
- "eslint-plugin-security",
24
- "jsdoc"
25
- ],
26
- "rules": {
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"],
44
- "@typescript-eslint/no-inferrable-types": "off",
45
- "@typescript-eslint/ban-types": ["warn", {
46
- "types": {
47
- "Object": false,
48
- "object": false,
49
- "{}": false,
50
- "Function": false
51
- }
52
- }],
53
- "jsdoc/check-tag-names": 0,
54
- "@typescript-eslint/tslint/config": [
55
- "error",
56
- {
57
- "rules": {
58
- "ban": true,
59
- "chai-vague-errors": true,
60
- "max-func-body-length": [
61
- true,
62
- 120,
63
- {
64
- "ignore-parameters-to-function-regex": "describe"
65
- }
66
- ],
67
- "missing-jsdoc": true,
68
- "no-backbone-get-set-outside-model": false,
69
- "no-cookies": false,
70
- "no-delete-expression": false,
71
- "no-disable-auto-sanitization": true,
72
- "no-duplicate-case": true,
73
- "no-duplicate-parameter-names": true,
74
- "no-empty-interfaces": false,
75
- "no-exec-script": true,
76
- "no-function-expression": false,
77
- "no-multiple-var-decl": false,
78
- "no-string-based-set-immediate": false,
79
- "no-string-based-set-interval": false,
80
- "no-unnecessary-bind": false,
81
- "no-unused-imports": true,
82
- "no-with-statement": false,
83
- "prefer-array-literal": false,
84
- "typedef": [
85
- true,
86
- "call-signature",
87
- "parameter",
88
- "property-declaration",
89
- "variable-declaration",
90
- "arrow-parameter",
91
- "member-variable-declaration"
92
- ],
93
- "use-named-parameter": false,
94
- "valid-typeof": true,
95
- "whitespace": [
96
- true,
97
- "check-branch",
98
- "check-decl",
99
- "check-operator",
100
- "check-separator",
101
- "check-type"
102
- ]
103
- }
104
- }
105
- ],
106
- "no-control-regex": "error",
107
- "no-constant-condition": "error",
108
- "no-invalid-regexp": "error",
109
- "curly": "error",
110
- "eol-last": [
111
- "error",
112
- "always"
113
- ],
114
- "guard-for-in": "error",
115
- "no-labels": "error",
116
- "max-len": [
117
- "error",
118
- {
119
- "code": 140,
120
- "tabWidth": 4,
121
- "ignoreComments": true,
122
- "ignoreStrings": true,
123
- "ignoreTemplateLiterals": true,
124
- "ignoreRegExpLiterals": true
125
- }
126
- ],
127
- "no-console": [
128
- "error",
129
- {
130
- "allow": [
131
- "warn",
132
- "dir",
133
- "timeLog",
134
- "assert",
135
- "clear",
136
- "count",
137
- "countReset",
138
- "group",
139
- "groupEnd",
140
- "table",
141
- "dirxml",
142
- "error",
143
- "groupCollapsed",
144
- "Console",
145
- "profile",
146
- "profileEnd",
147
- "timeStamp",
148
- "context"
149
- ]
150
- }
151
- ],
152
- "no-redeclare": [
153
- "error",
154
- {
155
- "builtinGlobals": true
156
- }
157
- ],
158
- "@typescript-eslint/no-parameter-properties": "error",
159
- "@typescript-eslint/indent": [
160
- "error",
161
- 4,
162
- {
163
- "CallExpression": {
164
- "arguments": "first"
165
- },
166
- "FunctionDeclaration": {
167
- "parameters": "first"
168
- },
169
- "FunctionExpression": {
170
- "parameters": "first"
171
- }
172
- }
173
- ],
174
- "no-debugger": "error",
175
- "no-eval": "error",
176
- "no-extra-semi": "error",
177
- "no-throw-literal": "error",
178
- "no-fallthrough": "error",
179
- "comma-dangle": [
180
- "error",
181
- "never"
182
- ],
183
- "no-trailing-spaces": "error",
184
- "@typescript-eslint/no-unused-expressions": "error",
185
- "@typescript-eslint/no-var-requires": "error",
186
- "one-var": [
187
- "error",
188
- "never"
189
- ],
190
- "@typescript-eslint/no-explicit-any": "warn",
191
- "no-cond-assign": [
192
- "error",
193
- "always"
194
- ],
195
- "@typescript-eslint/consistent-type-assertions": "off",
196
- "jsdoc/check-alignment": "error",
197
- "no-empty": "error",
198
- "quotes": [
199
- "error",
200
- "single"
201
- ],
202
- "semi": [
203
- "error",
204
- "always"
205
- ],
206
- "eqeqeq": [
207
- "error",
208
- "smart"
209
- ],
210
- "valid-typeof": [
211
- "error",
212
- {
213
- "requireStringLiterals": true
214
- }
215
- ],
216
- "camelcase": [
217
- "error",
218
- {
219
- "properties": "always",
220
- "ignoreDestructuring": true,
221
- "ignoreImports": true
222
- }
223
- ],
224
- "no-irregular-whitespace": [
225
- "error",
226
- {
227
- "skipStrings": true,
228
- "skipComments": true,
229
- "skipRegExps": true,
230
- "skipTemplates": true
231
- }
232
- ],
233
- "valid-jsdoc": [
234
- "error",
235
- {
236
- "prefer": {
237
- "arg": "param",
238
- "argument": "param",
239
- "class": "constructor",
240
- "return": "returns",
241
- "virtual": "abstract"
242
- }
243
- }
244
- ],
245
- "no-var": "error",
246
- "radix": "error"
247
- },
248
- "reportUnusedDisableDirectives": true,
249
- "overrides": [
250
- {
251
- "files": [
252
- "node_modules",
253
- "dist",
254
- "public",
255
- "coverage",
256
- "test-report"
257
- ],
258
- "rules": {
259
- "no-unused-expressions": "off"
260
- }
261
- }
262
- ]
263
- }
package/aceconfig.js DELETED
@@ -1,17 +0,0 @@
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
- };
package/tslint.json DELETED
@@ -1,111 +0,0 @@
1
- {
2
- "rules": {
3
- "chai-vague-errors": true,
4
- "use-isnan": true,
5
- "missing-jsdoc": true,
6
- "missing-optional-annotation": true,
7
- "no-backbone-get-set-outside-model": true,
8
- "no-banned-terms": true,
9
- "no-constant-condition": true,
10
- "no-control-regex": true,
11
- "no-cookies": true,
12
- "no-delete-expression": true,
13
- "no-document-write": true,
14
- "no-document-domain": true,
15
- "no-disable-auto-sanitization": true,
16
- "no-duplicate-case": true,
17
- "no-duplicate-parameter-names": true,
18
- "no-empty-interfaces": true,
19
- "no-exec-script": true,
20
- "no-function-constructor-with-string-args": true,
21
- "no-function-expression": true,
22
- "no-invalid-regexp": true,
23
- "no-for-in": true,
24
- "member-access": true,
25
- "no-multiline-string": true,
26
- "no-multiple-var-decl": true,
27
- "no-unnecessary-bind": true,
28
- "no-unnecessary-semicolons": true,
29
- "no-octal-literal": true,
30
- "no-regex-spaces": true,
31
- "no-sparse-arrays": true,
32
- "no-string-based-set-immediate": true,
33
- "no-string-based-set-interval": true,
34
- "no-unused-imports": true,
35
- "no-with-statement": true,
36
- "prefer-array-literal": true,
37
- "promise-must-complete": false,
38
- "react-no-dangerous-html": true,
39
- "use-named-parameter": true,
40
- "valid-typeof": true,
41
- "max-func-body-length": [true, 100, {
42
- "ignore-parameters-to-function-regex": "describe"
43
- }],
44
- "class-name": true,
45
- "curly": true,
46
- "eofline": false,
47
- "forin": true,
48
- "indent": [
49
- true,
50
- "spaces"
51
- ],
52
- "label-position": true,
53
- "max-line-length": [true, 140],
54
- "no-arg": true,
55
- "no-console": [true,
56
- "debug",
57
- "info",
58
- "log",
59
- "time",
60
- "timeEnd",
61
- "trace"
62
- ],
63
- "no-construct": true,
64
- "no-parameter-properties": true,
65
- "no-debugger": true,
66
- "no-duplicate-variable": true,
67
- "no-empty": true,
68
- "no-eval": true,
69
- "no-string-literal": true,
70
- "no-switch-case-fall-through": true,
71
- "trailing-comma": true,
72
- "no-trailing-whitespace": true,
73
- "no-unused-expression": true,
74
- "no-use-before-declare": false,
75
- "no-var-requires": true,
76
- "one-line": [true,
77
- "check-open-brace",
78
- "check-catch",
79
- "check-else",
80
- "check-whitespace"
81
- ],
82
- "no-any": true,
83
- "no-conditional-assignment": true,
84
- "no-angle-bracket-type-assertion": false,
85
- "align": [true, "parameters", "arguments", "statements"],
86
- "no-empty-line-after-opening-brace": false,
87
- "typedef-whitespace": [false],
88
- "ban": true,
89
- "quotemark": [true, "single"],
90
- "semicolon": true,
91
- "triple-equals": [true, "allow-null-check"],
92
- "typedef": [true,
93
- "call-signature",
94
- "parameter",
95
- "property-declaration",
96
- "variable-declaration",
97
- "arrow-parameter",
98
- "member-variable-declaration"],
99
- "variable-name": true,
100
- "whitespace": [true,
101
- "check-branch",
102
- "check-decl",
103
- "check-operator",
104
- "check-separator",
105
- "check-type"
106
- ],
107
- "jsdoc-format": true,
108
- "no-var-keyword": true,
109
- "radix": true
110
- }
111
- }