@syncfusion/ej2-dropdowns 22.2.12 → 23.1.38
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 +260 -0
- package/CHANGELOG.md +4 -209
- package/dist/ej2-dropdowns.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +1149 -70
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1203 -66
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +3 -3
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +13 -12
- package/src/auto-complete/auto-complete.js +40 -2
- package/src/combo-box/combo-box.js +9 -3
- package/src/common/index.d.ts +2 -0
- package/src/common/index.js +1 -0
- package/src/common/interface.d.ts +76 -0
- package/src/common/interface.js +1 -0
- package/src/common/virtual-scroll.d.ts +62 -0
- package/src/common/virtual-scroll.js +379 -0
- package/src/drop-down-base/drop-down-base.d.ts +10 -4
- package/src/drop-down-base/drop-down-base.js +72 -8
- package/src/drop-down-list/drop-down-list-model.d.ts +8 -1
- package/src/drop-down-list/drop-down-list.d.ts +56 -1
- package/src/drop-down-list/drop-down-list.js +661 -40
- package/src/drop-down-list/index.d.ts +1 -0
- package/src/drop-down-list/index.js +1 -0
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
- package/src/global.js +3 -0
- package/src/mention/mention.js +8 -1
- package/src/multi-select/checkbox-selection.js +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +36 -9
- package/styles/auto-complete/bootstrap-dark.scss +1 -1
- package/styles/auto-complete/bootstrap.scss +1 -1
- package/styles/auto-complete/bootstrap4.scss +1 -1
- package/styles/auto-complete/bootstrap5-dark.scss +1 -1
- package/styles/auto-complete/bootstrap5.scss +1 -1
- package/styles/auto-complete/fabric-dark.scss +1 -1
- package/styles/auto-complete/fabric.scss +1 -1
- package/styles/auto-complete/fluent-dark.scss +1 -1
- package/styles/auto-complete/fluent.scss +1 -1
- package/styles/auto-complete/highcontrast-light.scss +1 -1
- package/styles/auto-complete/highcontrast.scss +1 -1
- package/styles/auto-complete/material-dark.css +0 -1
- package/styles/auto-complete/material-dark.scss +1 -1
- package/styles/auto-complete/material.css +0 -1
- package/styles/auto-complete/material.scss +1 -1
- package/styles/auto-complete/material3-dark.css +0 -1
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.css +0 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/auto-complete/tailwind-dark.css +0 -1
- package/styles/auto-complete/tailwind-dark.scss +1 -1
- package/styles/auto-complete/tailwind.css +0 -1
- package/styles/auto-complete/tailwind.scss +1 -1
- package/styles/bootstrap-dark.css +70 -15
- package/styles/bootstrap.css +70 -15
- package/styles/bootstrap4.css +71 -16
- package/styles/bootstrap5-dark.css +71 -16
- package/styles/bootstrap5.css +71 -16
- package/styles/combo-box/bootstrap-dark.scss +1 -1
- package/styles/combo-box/bootstrap.scss +1 -1
- package/styles/combo-box/bootstrap4.scss +1 -1
- package/styles/combo-box/bootstrap5-dark.scss +1 -1
- package/styles/combo-box/bootstrap5.scss +1 -1
- package/styles/combo-box/fabric-dark.scss +1 -1
- package/styles/combo-box/fabric.scss +1 -1
- package/styles/combo-box/fluent-dark.scss +1 -1
- package/styles/combo-box/fluent.scss +1 -1
- package/styles/combo-box/highcontrast-light.scss +1 -1
- package/styles/combo-box/highcontrast.scss +1 -1
- package/styles/combo-box/material-dark.css +0 -1
- package/styles/combo-box/material-dark.scss +1 -1
- package/styles/combo-box/material.css +0 -1
- package/styles/combo-box/material.scss +1 -1
- package/styles/combo-box/material3-dark.css +0 -1
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.css +0 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/combo-box/tailwind-dark.css +0 -1
- package/styles/combo-box/tailwind-dark.scss +1 -1
- package/styles/combo-box/tailwind.css +0 -1
- package/styles/combo-box/tailwind.scss +1 -1
- package/styles/drop-down-base/bootstrap-dark.scss +1 -1
- package/styles/drop-down-base/bootstrap.scss +1 -1
- package/styles/drop-down-base/bootstrap4.scss +1 -1
- package/styles/drop-down-base/bootstrap5-dark.scss +1 -1
- package/styles/drop-down-base/bootstrap5.scss +1 -1
- package/styles/drop-down-base/fabric-dark.scss +1 -1
- package/styles/drop-down-base/fabric.scss +1 -1
- package/styles/drop-down-base/fluent-dark.scss +1 -1
- package/styles/drop-down-base/fluent.scss +1 -1
- package/styles/drop-down-base/highcontrast-light.scss +1 -1
- package/styles/drop-down-base/highcontrast.scss +1 -1
- package/styles/drop-down-base/material-dark.css +0 -1
- package/styles/drop-down-base/material-dark.scss +1 -1
- package/styles/drop-down-base/material.css +0 -1
- package/styles/drop-down-base/material.scss +1 -1
- package/styles/drop-down-base/material3-dark.css +0 -1
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.css +0 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-base/tailwind-dark.css +0 -1
- package/styles/drop-down-base/tailwind-dark.scss +1 -1
- package/styles/drop-down-base/tailwind.css +0 -1
- package/styles/drop-down-base/tailwind.scss +1 -1
- package/styles/drop-down-list/bootstrap-dark.scss +2 -1
- package/styles/drop-down-list/bootstrap.scss +2 -1
- package/styles/drop-down-list/bootstrap4.scss +2 -1
- package/styles/drop-down-list/bootstrap5-dark.scss +2 -1
- package/styles/drop-down-list/bootstrap5.scss +2 -1
- package/styles/drop-down-list/fabric-dark.scss +2 -1
- package/styles/drop-down-list/fabric.scss +2 -1
- package/styles/drop-down-list/fluent-dark.scss +2 -1
- package/styles/drop-down-list/fluent.scss +2 -1
- package/styles/drop-down-list/highcontrast-light.scss +2 -1
- package/styles/drop-down-list/highcontrast.scss +2 -1
- package/styles/drop-down-list/material-dark.css +0 -1
- package/styles/drop-down-list/material-dark.scss +2 -1
- package/styles/drop-down-list/material.css +0 -1
- package/styles/drop-down-list/material.scss +2 -1
- package/styles/drop-down-list/material3-dark.css +0 -1
- package/styles/drop-down-list/material3-dark.scss +2 -1
- package/styles/drop-down-list/material3.css +0 -1
- package/styles/drop-down-list/material3.scss +2 -1
- package/styles/drop-down-list/tailwind-dark.css +0 -1
- package/styles/drop-down-list/tailwind-dark.scss +2 -1
- package/styles/drop-down-list/tailwind.css +0 -1
- package/styles/drop-down-list/tailwind.scss +2 -1
- package/styles/drop-down-tree/bootstrap-dark.scss +1 -1
- package/styles/drop-down-tree/bootstrap.scss +1 -1
- package/styles/drop-down-tree/bootstrap4.scss +1 -1
- package/styles/drop-down-tree/bootstrap5-dark.scss +1 -1
- package/styles/drop-down-tree/bootstrap5.scss +1 -1
- package/styles/drop-down-tree/fabric-dark.scss +1 -1
- package/styles/drop-down-tree/fabric.scss +1 -1
- package/styles/drop-down-tree/fluent-dark.scss +1 -1
- package/styles/drop-down-tree/fluent.scss +1 -1
- package/styles/drop-down-tree/highcontrast-light.scss +1 -1
- package/styles/drop-down-tree/highcontrast.scss +1 -1
- package/styles/drop-down-tree/material-dark.css +0 -1
- package/styles/drop-down-tree/material-dark.scss +1 -1
- package/styles/drop-down-tree/material.css +0 -1
- package/styles/drop-down-tree/material.scss +1 -1
- package/styles/drop-down-tree/material3-dark.css +0 -1
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.css +0 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/drop-down-tree/tailwind-dark.css +0 -1
- package/styles/drop-down-tree/tailwind-dark.scss +1 -1
- package/styles/drop-down-tree/tailwind.css +0 -1
- package/styles/drop-down-tree/tailwind.scss +1 -1
- package/styles/fabric-dark.css +70 -15
- package/styles/fabric.css +70 -15
- package/styles/fluent-dark.css +71 -16
- package/styles/fluent.css +71 -16
- package/styles/highcontrast-light.css +70 -15
- package/styles/highcontrast.css +70 -15
- package/styles/list-box/_bootstrap-dark-definition.scss +6 -2
- package/styles/list-box/_bootstrap-definition.scss +7 -3
- package/styles/list-box/_bootstrap4-definition.scss +10 -6
- package/styles/list-box/_bootstrap5-definition.scss +6 -4
- package/styles/list-box/_fabric-dark-definition.scss +6 -2
- package/styles/list-box/_fabric-definition.scss +6 -2
- package/styles/list-box/_fluent-definition.scss +10 -8
- package/styles/list-box/_highcontrast-definition.scss +6 -2
- package/styles/list-box/_highcontrast-light-definition.scss +6 -2
- package/styles/list-box/_layout.scss +0 -6
- package/styles/list-box/_material-dark-definition.scss +8 -4
- package/styles/list-box/_material-definition.scss +8 -4
- package/styles/list-box/_material3-definition.scss +10 -8
- package/styles/list-box/_tailwind-definition.scss +9 -7
- package/styles/list-box/_theme.scss +72 -7
- package/styles/list-box/bootstrap-dark.css +70 -15
- package/styles/list-box/bootstrap-dark.scss +1 -1
- package/styles/list-box/bootstrap.css +70 -15
- package/styles/list-box/bootstrap.scss +1 -1
- package/styles/list-box/bootstrap4.css +71 -16
- package/styles/list-box/bootstrap4.scss +1 -1
- package/styles/list-box/bootstrap5-dark.css +71 -16
- package/styles/list-box/bootstrap5-dark.scss +1 -1
- package/styles/list-box/bootstrap5.css +71 -16
- package/styles/list-box/bootstrap5.scss +1 -1
- package/styles/list-box/fabric-dark.css +70 -15
- package/styles/list-box/fabric-dark.scss +1 -1
- package/styles/list-box/fabric.css +70 -15
- package/styles/list-box/fabric.scss +1 -1
- package/styles/list-box/fluent-dark.css +71 -16
- package/styles/list-box/fluent-dark.scss +1 -1
- package/styles/list-box/fluent.css +71 -16
- package/styles/list-box/fluent.scss +1 -1
- package/styles/list-box/highcontrast-light.css +70 -15
- package/styles/list-box/highcontrast-light.scss +1 -1
- package/styles/list-box/highcontrast.css +70 -15
- package/styles/list-box/highcontrast.scss +1 -1
- package/styles/list-box/material-dark.css +71 -17
- package/styles/list-box/material-dark.scss +1 -1
- package/styles/list-box/material.css +71 -17
- package/styles/list-box/material.scss +1 -1
- package/styles/list-box/material3-dark.css +71 -17
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.css +71 -17
- package/styles/list-box/material3.scss +1 -1
- package/styles/list-box/tailwind-dark.css +71 -17
- package/styles/list-box/tailwind-dark.scss +1 -1
- package/styles/list-box/tailwind.css +71 -17
- package/styles/list-box/tailwind.scss +1 -1
- package/styles/material-dark.css +71 -17
- package/styles/material.css +71 -17
- package/styles/material3-dark.css +71 -17
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +71 -17
- package/styles/material3.scss +1 -1
- package/styles/mention/bootstrap-dark.scss +1 -1
- package/styles/mention/bootstrap.scss +1 -1
- package/styles/mention/bootstrap4.scss +1 -1
- package/styles/mention/bootstrap5-dark.scss +1 -1
- package/styles/mention/bootstrap5.scss +1 -1
- package/styles/mention/fabric-dark.scss +1 -1
- package/styles/mention/fabric.scss +1 -1
- package/styles/mention/fluent-dark.scss +1 -1
- package/styles/mention/fluent.scss +1 -1
- package/styles/mention/highcontrast-light.scss +1 -1
- package/styles/mention/highcontrast.scss +1 -1
- package/styles/mention/material-dark.css +0 -1
- package/styles/mention/material-dark.scss +1 -1
- package/styles/mention/material.css +0 -1
- package/styles/mention/material.scss +1 -1
- package/styles/mention/material3-dark.css +0 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.css +0 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/mention/tailwind-dark.css +0 -1
- package/styles/mention/tailwind-dark.scss +1 -1
- package/styles/mention/tailwind.css +0 -1
- package/styles/mention/tailwind.scss +1 -1
- package/styles/multi-select/bootstrap-dark.scss +1 -1
- package/styles/multi-select/bootstrap.scss +1 -1
- package/styles/multi-select/bootstrap4.scss +1 -1
- package/styles/multi-select/bootstrap5-dark.scss +1 -1
- package/styles/multi-select/bootstrap5.scss +1 -1
- package/styles/multi-select/fabric-dark.scss +1 -1
- package/styles/multi-select/fabric.scss +1 -1
- package/styles/multi-select/fluent-dark.scss +1 -1
- package/styles/multi-select/fluent.scss +1 -1
- package/styles/multi-select/highcontrast-light.scss +1 -1
- package/styles/multi-select/highcontrast.scss +1 -1
- package/styles/multi-select/material-dark.css +0 -1
- package/styles/multi-select/material-dark.scss +1 -1
- package/styles/multi-select/material.css +0 -1
- package/styles/multi-select/material.scss +1 -1
- package/styles/multi-select/material3-dark.css +0 -1
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.css +0 -1
- package/styles/multi-select/material3.scss +1 -1
- package/styles/multi-select/tailwind-dark.css +0 -1
- package/styles/multi-select/tailwind-dark.scss +1 -1
- package/styles/multi-select/tailwind.css +0 -1
- package/styles/multi-select/tailwind.scss +1 -1
- package/styles/tailwind-dark.css +71 -24
- package/styles/tailwind.css +71 -24
- package/tslint.json +111 -0
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,260 @@
|
|
|
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
|
+
"plugins": [
|
|
20
|
+
"@typescript-eslint",
|
|
21
|
+
"@typescript-eslint/tslint",
|
|
22
|
+
"eslint-plugin-security",
|
|
23
|
+
"jsdoc"
|
|
24
|
+
],
|
|
25
|
+
"rules": {
|
|
26
|
+
"use-isnan": "error",
|
|
27
|
+
"security/detect-unsafe-regex":"error",
|
|
28
|
+
"security/detect-buffer-noassert":"error",
|
|
29
|
+
"security/detect-child-process":"error",
|
|
30
|
+
"security/detect-disable-mustache-escape":"error",
|
|
31
|
+
"security/detect-eval-with-expression":"error",
|
|
32
|
+
"security/detect-no-csrf-before-method-override":"error",
|
|
33
|
+
"security/detect-non-literal-fs-filename":"error",
|
|
34
|
+
"security/detect-non-literal-regexp":"error",
|
|
35
|
+
"security/detect-non-literal-require":"error",
|
|
36
|
+
"security/detect-object-injection":"error",
|
|
37
|
+
"security/detect-possible-timing-attacks":"error",
|
|
38
|
+
"security/detect-pseudoRandomBytes":"error",
|
|
39
|
+
"security/detect-new-buffer":"error",
|
|
40
|
+
"security/detect-bidi-characters":"error",
|
|
41
|
+
"@typescript-eslint/no-inferrable-types": "off",
|
|
42
|
+
"@typescript-eslint/ban-types": ["warn", {
|
|
43
|
+
"types": {
|
|
44
|
+
"Object": false,
|
|
45
|
+
"object": false,
|
|
46
|
+
"{}": false,
|
|
47
|
+
"Function": false
|
|
48
|
+
}
|
|
49
|
+
}],
|
|
50
|
+
"jsdoc/check-tag-names": 0,
|
|
51
|
+
"@typescript-eslint/tslint/config": [
|
|
52
|
+
"error",
|
|
53
|
+
{
|
|
54
|
+
"rules": {
|
|
55
|
+
"ban": true,
|
|
56
|
+
"chai-vague-errors": true,
|
|
57
|
+
"max-func-body-length": [
|
|
58
|
+
true,
|
|
59
|
+
120,
|
|
60
|
+
{
|
|
61
|
+
"ignore-parameters-to-function-regex": "describe"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"missing-jsdoc": true,
|
|
65
|
+
"no-backbone-get-set-outside-model": false,
|
|
66
|
+
"no-cookies": false,
|
|
67
|
+
"no-delete-expression": false,
|
|
68
|
+
"no-disable-auto-sanitization": true,
|
|
69
|
+
"no-duplicate-case": true,
|
|
70
|
+
"no-duplicate-parameter-names": true,
|
|
71
|
+
"no-empty-interfaces": false,
|
|
72
|
+
"no-exec-script": true,
|
|
73
|
+
"no-function-expression": false,
|
|
74
|
+
"no-multiple-var-decl": false,
|
|
75
|
+
"no-string-based-set-immediate": false,
|
|
76
|
+
"no-string-based-set-interval": false,
|
|
77
|
+
"no-unnecessary-bind": false,
|
|
78
|
+
"no-unused-imports": true,
|
|
79
|
+
"no-with-statement": false,
|
|
80
|
+
"prefer-array-literal": false,
|
|
81
|
+
"typedef": [
|
|
82
|
+
true,
|
|
83
|
+
"call-signature",
|
|
84
|
+
"parameter",
|
|
85
|
+
"property-declaration",
|
|
86
|
+
"variable-declaration",
|
|
87
|
+
"arrow-parameter",
|
|
88
|
+
"member-variable-declaration"
|
|
89
|
+
],
|
|
90
|
+
"use-named-parameter": false,
|
|
91
|
+
"valid-typeof": true,
|
|
92
|
+
"whitespace": [
|
|
93
|
+
true,
|
|
94
|
+
"check-branch",
|
|
95
|
+
"check-decl",
|
|
96
|
+
"check-operator",
|
|
97
|
+
"check-separator",
|
|
98
|
+
"check-type"
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"no-control-regex": "error",
|
|
104
|
+
"no-constant-condition": "error",
|
|
105
|
+
"no-invalid-regexp": "error",
|
|
106
|
+
"curly": "error",
|
|
107
|
+
"eol-last": [
|
|
108
|
+
"error",
|
|
109
|
+
"always"
|
|
110
|
+
],
|
|
111
|
+
"guard-for-in": "error",
|
|
112
|
+
"no-labels": "error",
|
|
113
|
+
"max-len": [
|
|
114
|
+
"error",
|
|
115
|
+
{
|
|
116
|
+
"code": 140,
|
|
117
|
+
"tabWidth": 4,
|
|
118
|
+
"ignoreComments": true,
|
|
119
|
+
"ignoreStrings": true,
|
|
120
|
+
"ignoreTemplateLiterals": true,
|
|
121
|
+
"ignoreRegExpLiterals": true
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"no-console": [
|
|
125
|
+
"error",
|
|
126
|
+
{
|
|
127
|
+
"allow": [
|
|
128
|
+
"warn",
|
|
129
|
+
"dir",
|
|
130
|
+
"timeLog",
|
|
131
|
+
"assert",
|
|
132
|
+
"clear",
|
|
133
|
+
"count",
|
|
134
|
+
"countReset",
|
|
135
|
+
"group",
|
|
136
|
+
"groupEnd",
|
|
137
|
+
"table",
|
|
138
|
+
"dirxml",
|
|
139
|
+
"error",
|
|
140
|
+
"groupCollapsed",
|
|
141
|
+
"Console",
|
|
142
|
+
"profile",
|
|
143
|
+
"profileEnd",
|
|
144
|
+
"timeStamp",
|
|
145
|
+
"context"
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"no-redeclare": [
|
|
150
|
+
"error",
|
|
151
|
+
{
|
|
152
|
+
"builtinGlobals": true
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"@typescript-eslint/no-parameter-properties": "error",
|
|
156
|
+
"@typescript-eslint/indent": [
|
|
157
|
+
"error",
|
|
158
|
+
4,
|
|
159
|
+
{
|
|
160
|
+
"CallExpression": {
|
|
161
|
+
"arguments": "first"
|
|
162
|
+
},
|
|
163
|
+
"FunctionDeclaration": {
|
|
164
|
+
"parameters": "first"
|
|
165
|
+
},
|
|
166
|
+
"FunctionExpression": {
|
|
167
|
+
"parameters": "first"
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"no-debugger": "error",
|
|
172
|
+
"no-eval": "error",
|
|
173
|
+
"no-extra-semi": "error",
|
|
174
|
+
"no-throw-literal": "error",
|
|
175
|
+
"no-fallthrough": "error",
|
|
176
|
+
"comma-dangle": [
|
|
177
|
+
"error",
|
|
178
|
+
"never"
|
|
179
|
+
],
|
|
180
|
+
"no-trailing-spaces": "error",
|
|
181
|
+
"@typescript-eslint/no-unused-expressions": "error",
|
|
182
|
+
"@typescript-eslint/no-var-requires": "error",
|
|
183
|
+
"one-var": [
|
|
184
|
+
"error",
|
|
185
|
+
"never"
|
|
186
|
+
],
|
|
187
|
+
"@typescript-eslint/no-explicit-any": "error",
|
|
188
|
+
"no-cond-assign": [
|
|
189
|
+
"error",
|
|
190
|
+
"always"
|
|
191
|
+
],
|
|
192
|
+
"@typescript-eslint/consistent-type-assertions": "off",
|
|
193
|
+
"jsdoc/check-alignment": "error",
|
|
194
|
+
"no-empty": "error",
|
|
195
|
+
"quotes": [
|
|
196
|
+
"error",
|
|
197
|
+
"single"
|
|
198
|
+
],
|
|
199
|
+
"semi": [
|
|
200
|
+
"error",
|
|
201
|
+
"always"
|
|
202
|
+
],
|
|
203
|
+
"eqeqeq": [
|
|
204
|
+
"error",
|
|
205
|
+
"smart"
|
|
206
|
+
],
|
|
207
|
+
"valid-typeof": [
|
|
208
|
+
"error",
|
|
209
|
+
{
|
|
210
|
+
"requireStringLiterals": true
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
"camelcase": [
|
|
214
|
+
"error",
|
|
215
|
+
{
|
|
216
|
+
"properties": "always",
|
|
217
|
+
"ignoreDestructuring": true,
|
|
218
|
+
"ignoreImports": true
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"no-irregular-whitespace": [
|
|
222
|
+
"error",
|
|
223
|
+
{
|
|
224
|
+
"skipStrings": true,
|
|
225
|
+
"skipComments": true,
|
|
226
|
+
"skipRegExps": true,
|
|
227
|
+
"skipTemplates": true
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"valid-jsdoc": [
|
|
231
|
+
"error",
|
|
232
|
+
{
|
|
233
|
+
"prefer": {
|
|
234
|
+
"arg": "param",
|
|
235
|
+
"argument": "param",
|
|
236
|
+
"class": "constructor",
|
|
237
|
+
"return": "returns",
|
|
238
|
+
"virtual": "abstract"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"no-var": "error",
|
|
243
|
+
"radix": "error"
|
|
244
|
+
},
|
|
245
|
+
"reportUnusedDisableDirectives": true,
|
|
246
|
+
"overrides": [
|
|
247
|
+
{
|
|
248
|
+
"files": [
|
|
249
|
+
"node_modules",
|
|
250
|
+
"dist",
|
|
251
|
+
"public",
|
|
252
|
+
"coverage",
|
|
253
|
+
"test-report"
|
|
254
|
+
],
|
|
255
|
+
"rules": {
|
|
256
|
+
"no-unused-expressions": "off"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
]
|
|
260
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,86 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### MultiSelect
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I483661` - Fixed the issue where the selected value was not displayed correctly when using a character inside the datasource.
|
|
10
|
-
|
|
11
|
-
## 22.2.11 (2023-08-29)
|
|
12
|
-
|
|
13
|
-
### Dropdown Tree
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- `#I492834` - An issue with the `noRecordsTemplate` property of the React Dropdown Tree component has been resolved.
|
|
18
|
-
|
|
19
|
-
## 22.2.10 (2023-08-22)
|
|
20
|
-
|
|
21
|
-
### DropDown List
|
|
22
|
-
|
|
23
|
-
#### Bug Fixes
|
|
24
|
-
|
|
25
|
-
- `#I490309` - The issue with the `aria-owns` attribute not having the correct `ID` of its popup list element has been fixed.
|
|
26
|
-
- `#I481443` - Resolved the issue where the "no records" template was not being displayed and a console error occurred.
|
|
27
|
-
|
|
28
|
-
### MultiSelect
|
|
29
|
-
|
|
30
|
-
#### Bug Fixes
|
|
31
|
-
|
|
32
|
-
- `#I479749` - Resolved the issue of "Unable to retrieve preselected variable values that are not present in the data source".
|
|
33
|
-
|
|
34
|
-
### Dropdown Tree
|
|
35
|
-
|
|
36
|
-
#### Bug Fixes
|
|
37
|
-
|
|
38
|
-
- `#F183599` - The issue duplicate child was rendered when using `expanded` field in Dropdown Tree component with Web API adaptor has been resolved.
|
|
39
|
-
|
|
40
|
-
## 22.2.9 (2023-08-15)
|
|
41
|
-
|
|
42
|
-
### ComboBox
|
|
43
|
-
|
|
44
|
-
#### Bug Fixes
|
|
45
|
-
|
|
46
|
-
- `#483288` - Fixed a script error that occurred when opening the combobox popup in the Internet Explorer browser.
|
|
47
|
-
|
|
48
|
-
### DropDown List
|
|
49
|
-
|
|
50
|
-
#### Bug Fixes
|
|
51
|
-
|
|
52
|
-
- `#I477135` - Fixed a memory leak issue in the Dropdownlist Component.
|
|
53
|
-
|
|
54
|
-
- `#I486973` - Fixed an issue where the last selected item in the DropDownList would be retained in the list of items when the data source was changed.
|
|
55
|
-
|
|
56
|
-
## 22.2.8 (2023-08-08)
|
|
57
|
-
|
|
58
|
-
### DropDown List
|
|
59
|
-
|
|
60
|
-
#### Bug Fixes
|
|
61
|
-
|
|
62
|
-
- `#I474541` - Fixed an issue where the position of the popup was incorrect when enabling RTL mode.
|
|
63
|
-
|
|
64
5
|
### ListBox
|
|
65
6
|
|
|
66
7
|
#### Bug Fixes
|
|
67
8
|
|
|
68
|
-
- `#
|
|
69
|
-
|
|
70
|
-
## 22.2.5 (2023-07-27)
|
|
71
|
-
|
|
72
|
-
### Dropdown Tree
|
|
73
|
-
|
|
74
|
-
#### Bug Fixes
|
|
75
|
-
|
|
76
|
-
- `#I481958` - The issue with "Child nodes are not rendering while mapping id with object value" has been resolved.
|
|
9
|
+
- `#I493841` - Issue with "Scrollbar in ListBox while using inside a splitter" has been resolved.
|
|
77
10
|
|
|
78
|
-
##
|
|
11
|
+
## 23.1.36 (2023-09-15)
|
|
79
12
|
|
|
80
13
|
### ListBox
|
|
81
14
|
|
|
82
15
|
#### Bug Fixes
|
|
83
16
|
|
|
84
|
-
- `#
|
|
17
|
+
- `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form" has been resolved.
|
|
85
18
|
|
|
86
19
|
### MultiSelect
|
|
87
20
|
|
|
@@ -89,66 +22,17 @@
|
|
|
89
22
|
|
|
90
23
|
- `#I480443` - Fixed console error that occurred when opening the multiselect in mobile mode
|
|
91
24
|
|
|
92
|
-
## 22.1.37 (2023-07-04)
|
|
93
|
-
|
|
94
25
|
### DropdownList
|
|
95
26
|
|
|
96
27
|
#### Bug Fixes
|
|
97
28
|
|
|
98
29
|
- `#I472623` - Resolved an issue when the window is resizing the popup position is misaligned
|
|
99
30
|
|
|
100
|
-
- `#I467885` - Resolved an issue where the change event was not triggered for dynamically created TextBox after dropdown component was destroyed.
|
|
101
|
-
|
|
102
|
-
## 22.1.36 (2023-06-28)
|
|
103
|
-
|
|
104
|
-
### ListBox
|
|
105
|
-
|
|
106
|
-
#### Bug Fixes
|
|
107
|
-
|
|
108
|
-
- `#I473804` - Issue with "Scroll goes down while dragging the list item when we placed the listbox within popup" has been resolved.
|
|
109
|
-
|
|
110
|
-
## 21.2.10 (2023-06-13)
|
|
111
|
-
|
|
112
|
-
### ListBox
|
|
113
|
-
|
|
114
|
-
#### Bug Fixes
|
|
115
|
-
|
|
116
|
-
- `#I467539` - Issue with "AddItems method not working when we use itemTemplate(element type) in listbox" has been resolved.
|
|
117
|
-
|
|
118
|
-
### MultiSelect
|
|
119
|
-
|
|
120
|
-
#### Bug Fixes
|
|
121
|
-
|
|
122
|
-
- `#I467953` - Issue with "Query construct incorrectly when preselect the value second time beyond the data source value" has been resolved.
|
|
123
|
-
|
|
124
|
-
### DropDownList
|
|
125
|
-
|
|
126
|
-
#### Bug Fixes
|
|
127
|
-
|
|
128
|
-
- `I469452` - Issue with "A console error is thrown when the datasource value field has a null value in the dropdown list" has been resolved.
|
|
129
|
-
|
|
130
31
|
### ListBox
|
|
131
32
|
|
|
132
33
|
#### Bug Fixes
|
|
133
34
|
|
|
134
35
|
- `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
|
|
135
|
-
- `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
|
|
136
|
-
|
|
137
|
-
## 21.2.8 (2023-05-30)
|
|
138
|
-
|
|
139
|
-
### ListBox
|
|
140
|
-
|
|
141
|
-
#### Bug Fixes
|
|
142
|
-
|
|
143
|
-
- `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
|
|
144
|
-
|
|
145
|
-
### AutoComplete
|
|
146
|
-
|
|
147
|
-
#### Bug Fixes
|
|
148
|
-
|
|
149
|
-
- `#I460876` - Issue with "The header and footer template are not working" has been resolved.
|
|
150
|
-
|
|
151
|
-
## 21.2.6 (2023-05-23)
|
|
152
36
|
|
|
153
37
|
### MultiSelect
|
|
154
38
|
|
|
@@ -156,103 +40,20 @@
|
|
|
156
40
|
|
|
157
41
|
- `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
|
|
158
42
|
|
|
159
|
-
### DropDownList
|
|
160
|
-
|
|
161
|
-
#### Bug Fixes
|
|
162
|
-
|
|
163
|
-
- `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
|
|
164
|
-
|
|
165
43
|
## 21.2.5 (2023-05-16)
|
|
166
44
|
|
|
167
45
|
### ListBox
|
|
168
46
|
|
|
169
47
|
#### Bug Fixes
|
|
170
48
|
|
|
171
|
-
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
|
|
172
|
-
|
|
173
|
-
### ComboBox
|
|
174
|
-
|
|
175
|
-
#### Bug Fixes
|
|
176
|
-
|
|
177
|
-
- `#I452948` - "The memory leak issue detected in the combobox component within the detach element tab of the Edge browser" has been resolved.
|
|
178
|
-
|
|
179
|
-
## 21.2.4 (2023-05-09)
|
|
180
|
-
|
|
181
|
-
### ListBox
|
|
182
|
-
|
|
183
|
-
#### Bug Fixes
|
|
184
|
-
|
|
185
|
-
- `#I453746` - Issue with "Selected items not focusing properly in listbox while using selectItems method" has been resolved.
|
|
186
|
-
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
|
|
187
|
-
|
|
188
|
-
## 21.2.3 (2023-05-03)
|
|
189
|
-
|
|
190
|
-
### ListBox
|
|
191
|
-
|
|
192
|
-
#### Bug Fixes
|
|
193
|
-
|
|
194
|
-
- `#I453746` - Issue with "selectItems doesn't remove the existing selections in the listbox" has been resolved.
|
|
195
|
-
|
|
196
|
-
## 21.1.41 (2023-04-18)
|
|
197
|
-
|
|
198
|
-
### ListBox
|
|
199
|
-
|
|
200
|
-
#### Bug Fixes
|
|
201
|
-
|
|
202
49
|
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
|
|
203
|
-
|
|
204
|
-
### Dropdown Tree
|
|
205
|
-
|
|
206
|
-
#### Bug Fixes
|
|
207
|
-
|
|
208
|
-
- `#I451965` - While performing filtering multiple times, the checked node state is cleared in the Dropdown Tree component has been resolved.
|
|
209
|
-
|
|
210
|
-
## 21.1.39 (2023-04-11)
|
|
211
|
-
|
|
212
|
-
### ListBox
|
|
213
|
-
|
|
214
|
-
#### Bug Fixes
|
|
215
|
-
|
|
216
50
|
- `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
|
|
217
51
|
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template" has been resolved.
|
|
218
|
-
|
|
219
|
-
## 21.1.38 (2023-04-04)
|
|
220
|
-
|
|
221
|
-
### Dropdown Tree
|
|
222
|
-
|
|
223
|
-
#### Bug Fixes
|
|
224
|
-
|
|
225
|
-
- `#I450984` - Resolved issue, when manually select the all items then `SelectAll` state not updated for the Dropdown Tree component.
|
|
226
|
-
|
|
227
|
-
## 21.1.37 (2023-03-29)
|
|
228
|
-
|
|
229
|
-
### Mention
|
|
230
|
-
|
|
231
|
-
#### Bug Fixes
|
|
232
|
-
|
|
233
|
-
- `#I449973` - Resolved issue where the Mention character would still display after selecting a name from the suggestion list.
|
|
234
|
-
|
|
235
|
-
### ListBox
|
|
236
|
-
|
|
237
|
-
#### Bug Fixes
|
|
238
|
-
|
|
239
|
-
- `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
|
|
240
52
|
- `#I445397` - Issue with "Script error thrown when navigate the listbox item in grouping listbox through keyboard navigation" has been resolved.
|
|
241
|
-
|
|
242
|
-
## 21.1.35 (2023-03-23)
|
|
243
|
-
|
|
244
|
-
### ListBox
|
|
245
|
-
|
|
246
|
-
#### Bug Fixes
|
|
247
|
-
|
|
53
|
+
- `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
|
|
248
54
|
- `#F38636` - Issue with "`selectItems` function doesn't work in listbox when values contain backslashes" has been resolved.
|
|
249
55
|
- `#F424252` - Issue with "Data source not update properly when we filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
250
56
|
- `#I423072` - Issue with "`actionBegin` event argument not passes the filtered item properly while filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
251
|
-
|
|
252
|
-
### ListBox
|
|
253
|
-
|
|
254
|
-
#### Bug Fixes
|
|
255
|
-
|
|
256
57
|
- `#F37860` - Issue with "Command button not working properly for multiselect in ListBox in Mac" has been resolved.
|
|
257
58
|
|
|
258
59
|
### DropDownList
|
|
@@ -261,12 +62,6 @@
|
|
|
261
62
|
|
|
262
63
|
- `#I397894` - The issue "aria-label added on input element instead of wrapper element while adding the aria-label by using Html Attribute property" has been resolved.
|
|
263
64
|
|
|
264
|
-
### ListBox
|
|
265
|
-
|
|
266
|
-
#### Bug Fixes
|
|
267
|
-
|
|
268
|
-
- `#I409839` - Issue with "Script error thrown while drag and drop after removed the item from listbox using removeItem method" has been resolved.
|
|
269
|
-
|
|
270
65
|
## 20.3.47 (2022-09-29)
|
|
271
66
|
|
|
272
67
|
### Mention
|