@syncfusion/ej2-base 24.2.7 → 25.1.35-579988
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 +2 -1
- package/CHANGELOG.md +641 -677
- package/{README.md → ReadMe.md} +100 -100
- package/dist/ej2-base.umd.min.js +1 -10
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +178 -1025
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +226 -934
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +1 -10
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/ajax.ts +236 -0
- package/dist/ts/animation.ts +544 -0
- package/dist/ts/base.ts +357 -0
- package/dist/ts/browser.ts +387 -0
- package/dist/ts/child-property.ts +192 -0
- package/dist/ts/component.ts +519 -0
- package/dist/ts/dom.ts +488 -0
- package/dist/ts/draggable.ts +1155 -0
- package/dist/ts/droppable.ts +172 -0
- package/dist/ts/event-handler.ts +169 -0
- package/dist/ts/internationalization.ts +369 -0
- package/dist/ts/intl/date-formatter.ts +317 -0
- package/dist/ts/intl/date-parser.ts +426 -0
- package/dist/ts/intl/intl-base.ts +1104 -0
- package/dist/ts/intl/number-formatter.ts +411 -0
- package/dist/ts/intl/number-parser.ts +158 -0
- package/dist/ts/intl/parser-base.ts +394 -0
- package/dist/ts/keyboard.ts +238 -0
- package/dist/ts/l10n.ts +94 -0
- package/dist/ts/module-loader.ts +149 -0
- package/dist/ts/notify-property-change.ts +726 -0
- package/dist/ts/observer.ts +236 -0
- package/dist/ts/sanitize-helper.ts +224 -0
- package/dist/ts/template-engine.ts +191 -0
- package/dist/ts/template.ts +329 -0
- package/dist/ts/touch.ts +544 -0
- package/dist/ts/util.ts +523 -0
- package/dist/ts/validate-lic.ts +0 -0
- package/e2e/crypto.js +16 -16
- package/e2e/m.protractor.config.js +286 -286
- package/e2e/modified-protractor/protractor.config.js +316 -316
- package/e2e/protractor.config.js +389 -332
- package/helpers/e2e/index.js +3 -3
- package/license +10 -10
- package/package.json +225 -174
- package/src/ajax.d.ts +1 -1
- package/src/ajax.js +3 -8
- package/src/animation-model.d.ts +41 -41
- package/src/animation.d.ts +6 -6
- package/src/animation.js +25 -25
- package/src/base.d.ts +2 -1
- package/src/base.js +9 -7
- package/src/component-model.d.ts +16 -16
- package/src/component.d.ts +9 -3
- package/src/component.js +50 -38
- package/src/draggable-model.d.ts +113 -113
- package/src/draggable.d.ts +2 -0
- package/src/draggable.js +45 -29
- package/src/droppable-model.d.ts +23 -23
- package/src/droppable.js +19 -19
- package/src/event-handler.js +2 -1
- package/src/index.d.ts +0 -3
- package/src/index.js +0 -3
- package/src/intl/date-formatter.js +2 -6
- package/src/intl/date-parser.js +1 -20
- package/src/intl/intl-base.js +1 -164
- package/src/intl/number-formatter.d.ts +3 -0
- package/src/intl/number-formatter.js +7 -7
- package/src/intl/number-parser.js +1 -0
- package/src/keyboard-model.d.ts +16 -16
- package/src/keyboard.js +19 -19
- package/src/module-loader.d.ts +12 -0
- package/src/module-loader.js +11 -0
- package/src/notify-property-change.js +3 -2
- package/src/observer.js +2 -0
- package/src/sanitize-helper.js +5 -0
- package/src/template-engine.js +1 -0
- package/src/template.js +3 -2
- package/src/touch-model.d.ts +39 -39
- package/src/touch.js +19 -19
- package/src/validate-lic.d.ts +0 -11
- package/src/validate-lic.js +1 -259
- package/styles/_all.scss +2 -2
- package/styles/_bds-dark-definition.scss +15 -0
- package/styles/_bds-definition.scss +15 -0
- package/styles/_bootstrap-dark-definition.scss +42 -42
- package/styles/_bootstrap-definition.scss +42 -42
- package/styles/_bootstrap4-definition.scss +11 -11
- package/styles/_bootstrap5-dark-definition.scss +9 -9
- package/styles/_bootstrap5-definition.scss +8 -8
- package/styles/_fabric-dark-definition.scss +42 -42
- package/styles/_fabric-definition.scss +42 -42
- package/styles/_fluent-dark-definition.scss +9 -9
- package/styles/_fluent-definition.scss +9 -9
- package/styles/_fluent2-definition.scss +9 -0
- package/styles/_fusionnew-dark-definition.scss +8 -8
- package/styles/_fusionnew-definition.scss +8 -8
- package/styles/_highcontrast-definition.scss +42 -42
- package/styles/_highcontrast-light-definition.scss +42 -42
- package/styles/_material-dark-definition.scss +48 -48
- package/styles/_material-definition.scss +49 -49
- package/styles/_material3-dark-definition.scss +14 -14
- package/styles/_material3-definition.scss +15 -15
- package/styles/_tailwind-dark-definition.scss +15 -15
- package/styles/_tailwind-definition.scss +15 -15
- package/styles/animation/_all.scss +560 -560
- package/styles/bootstrap-dark.css +10 -1
- package/styles/bootstrap.css +10 -1
- package/styles/bootstrap4.css +10 -1
- package/styles/bootstrap5-dark.css +10 -1
- package/styles/bootstrap5.css +10 -1
- package/styles/common/_all.scss +2 -2
- package/styles/common/_core.scss +117 -117
- package/styles/common/_mixin.scss +9 -9
- package/styles/definition/_bds-dark.scss +1179 -0
- package/styles/definition/_bds.scss +1474 -0
- package/styles/definition/_bootstrap-dark.scss +219 -219
- package/styles/definition/_bootstrap.scss +215 -215
- package/styles/definition/_bootstrap4.scss +167 -167
- package/styles/definition/_bootstrap5-dark.scss +493 -493
- package/styles/definition/_bootstrap5.scss +494 -494
- package/styles/definition/_fabric-dark.scss +200 -200
- package/styles/definition/_fabric.scss +198 -198
- package/styles/definition/_fluent-dark.scss +557 -557
- package/styles/definition/_fluent.scss +558 -558
- package/styles/definition/_fluent2.scss +2198 -0
- package/styles/definition/_fusionnew-dark.scss +362 -362
- package/styles/definition/_fusionnew.scss +363 -363
- package/styles/definition/_highcontrast-light.scss +193 -193
- package/styles/definition/_highcontrast.scss +195 -195
- package/styles/definition/_material-dark.scss +198 -198
- package/styles/definition/_material.scss +192 -192
- package/styles/definition/_material3-dark.scss +710 -710
- package/styles/definition/_material3.scss +792 -792
- package/styles/definition/_tailwind-dark.scss +488 -488
- package/styles/definition/_tailwind.scss +485 -485
- package/styles/fabric-dark.css +10 -1
- package/styles/fabric.css +10 -1
- package/styles/fluent-dark.css +10 -1
- package/styles/fluent.css +10 -1
- package/styles/highcontrast-light.css +10 -1
- package/styles/highcontrast.css +10 -1
- package/styles/material-dark.css +10 -1
- package/styles/material.css +10 -1
- package/styles/material3-dark.css +10 -1
- package/styles/material3.css +10 -1
- package/styles/offline-theme/material-dark.css +10 -1
- package/styles/offline-theme/material.css +10 -1
- package/styles/offline-theme/tailwind-dark.css +10 -1
- package/styles/offline-theme/tailwind.css +10 -1
- package/styles/tailwind-dark.css +10 -1
- package/styles/tailwind.css +10 -1
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -42
- package/bin/syncfusion-license.js +0 -2
- package/dist/ej2-base.min.js +0 -10
- package/e2e/index.d.ts +0 -27
- package/src/fetch.d.ts +0 -114
- package/src/fetch.js +0 -116
- package/src/hijri-parser.d.ts +0 -19
- package/src/hijri-parser.js +0 -204
package/helpers/e2e/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
define(["require", "exports", "./base"], function (require, exports, base_1) {
|
|
2
2
|
"use strict";
|
|
3
|
-
function __export(m) {
|
|
4
|
-
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
5
|
-
}
|
|
3
|
+
function __export(m) {
|
|
4
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
5
|
+
}
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
__export(base_1);
|
|
8
8
|
});
|
package/license
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
-
|
|
3
|
-
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
-
|
|
5
|
-
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
-
|
|
7
|
-
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
-
|
|
9
|
-
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
-
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
|
1
|
+
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
+
|
|
3
|
+
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
+
|
|
5
|
+
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
+
|
|
7
|
+
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
+
|
|
9
|
+
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
+
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
package/package.json
CHANGED
|
@@ -1,174 +1,225 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
1
|
+
{
|
|
2
|
+
"_from": "@syncfusion/ej2-base@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-base@18.92.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-duRt3JuBjQX0mQtd7LO8Q92GCEef3zrE9BF1cJlRRutTv15EdfhPMI72ND4cm6gMw9nMwDeAKA7pPbCcF+t4YQ==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-base",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-base@*",
|
|
12
|
+
"name": "@syncfusion/ej2-base",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-base",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/",
|
|
21
|
+
"/@syncfusion/ej2",
|
|
22
|
+
"/@syncfusion/ej2-angular-barcode-generator",
|
|
23
|
+
"/@syncfusion/ej2-angular-base",
|
|
24
|
+
"/@syncfusion/ej2-angular-buttons",
|
|
25
|
+
"/@syncfusion/ej2-angular-calendars",
|
|
26
|
+
"/@syncfusion/ej2-angular-charts",
|
|
27
|
+
"/@syncfusion/ej2-angular-circulargauge",
|
|
28
|
+
"/@syncfusion/ej2-angular-diagrams",
|
|
29
|
+
"/@syncfusion/ej2-angular-documenteditor",
|
|
30
|
+
"/@syncfusion/ej2-angular-dropdowns",
|
|
31
|
+
"/@syncfusion/ej2-angular-filemanager",
|
|
32
|
+
"/@syncfusion/ej2-angular-gantt",
|
|
33
|
+
"/@syncfusion/ej2-angular-grids",
|
|
34
|
+
"/@syncfusion/ej2-angular-heatmap",
|
|
35
|
+
"/@syncfusion/ej2-angular-image-editor",
|
|
36
|
+
"/@syncfusion/ej2-angular-inplace-editor",
|
|
37
|
+
"/@syncfusion/ej2-angular-inputs",
|
|
38
|
+
"/@syncfusion/ej2-angular-kanban",
|
|
39
|
+
"/@syncfusion/ej2-angular-layouts",
|
|
40
|
+
"/@syncfusion/ej2-angular-lineargauge",
|
|
41
|
+
"/@syncfusion/ej2-angular-lists",
|
|
42
|
+
"/@syncfusion/ej2-angular-maps",
|
|
43
|
+
"/@syncfusion/ej2-angular-navigations",
|
|
44
|
+
"/@syncfusion/ej2-angular-notifications",
|
|
45
|
+
"/@syncfusion/ej2-angular-pdfviewer",
|
|
46
|
+
"/@syncfusion/ej2-angular-pivotview",
|
|
47
|
+
"/@syncfusion/ej2-angular-popups",
|
|
48
|
+
"/@syncfusion/ej2-angular-progressbar",
|
|
49
|
+
"/@syncfusion/ej2-angular-querybuilder",
|
|
50
|
+
"/@syncfusion/ej2-angular-ribbon",
|
|
51
|
+
"/@syncfusion/ej2-angular-richtexteditor",
|
|
52
|
+
"/@syncfusion/ej2-angular-schedule",
|
|
53
|
+
"/@syncfusion/ej2-angular-splitbuttons",
|
|
54
|
+
"/@syncfusion/ej2-angular-spreadsheet",
|
|
55
|
+
"/@syncfusion/ej2-angular-treegrid",
|
|
56
|
+
"/@syncfusion/ej2-angular-treemap",
|
|
57
|
+
"/@syncfusion/ej2-barcode-generator",
|
|
58
|
+
"/@syncfusion/ej2-buttons",
|
|
59
|
+
"/@syncfusion/ej2-calendars",
|
|
60
|
+
"/@syncfusion/ej2-charts",
|
|
61
|
+
"/@syncfusion/ej2-circulargauge",
|
|
62
|
+
"/@syncfusion/ej2-data",
|
|
63
|
+
"/@syncfusion/ej2-diagrams",
|
|
64
|
+
"/@syncfusion/ej2-documenteditor",
|
|
65
|
+
"/@syncfusion/ej2-drawings",
|
|
66
|
+
"/@syncfusion/ej2-dropdowns",
|
|
67
|
+
"/@syncfusion/ej2-excel-export",
|
|
68
|
+
"/@syncfusion/ej2-filemanager",
|
|
69
|
+
"/@syncfusion/ej2-gantt",
|
|
70
|
+
"/@syncfusion/ej2-grids",
|
|
71
|
+
"/@syncfusion/ej2-heatmap",
|
|
72
|
+
"/@syncfusion/ej2-image-editor",
|
|
73
|
+
"/@syncfusion/ej2-inplace-editor",
|
|
74
|
+
"/@syncfusion/ej2-inputs",
|
|
75
|
+
"/@syncfusion/ej2-kanban",
|
|
76
|
+
"/@syncfusion/ej2-layouts",
|
|
77
|
+
"/@syncfusion/ej2-lineargauge",
|
|
78
|
+
"/@syncfusion/ej2-lists",
|
|
79
|
+
"/@syncfusion/ej2-maps",
|
|
80
|
+
"/@syncfusion/ej2-navigations",
|
|
81
|
+
"/@syncfusion/ej2-notifications",
|
|
82
|
+
"/@syncfusion/ej2-pdf",
|
|
83
|
+
"/@syncfusion/ej2-pdfviewer",
|
|
84
|
+
"/@syncfusion/ej2-pivotview",
|
|
85
|
+
"/@syncfusion/ej2-popups",
|
|
86
|
+
"/@syncfusion/ej2-progressbar",
|
|
87
|
+
"/@syncfusion/ej2-querybuilder",
|
|
88
|
+
"/@syncfusion/ej2-react-barcode-generator",
|
|
89
|
+
"/@syncfusion/ej2-react-base",
|
|
90
|
+
"/@syncfusion/ej2-react-buttons",
|
|
91
|
+
"/@syncfusion/ej2-react-calendars",
|
|
92
|
+
"/@syncfusion/ej2-react-charts",
|
|
93
|
+
"/@syncfusion/ej2-react-circulargauge",
|
|
94
|
+
"/@syncfusion/ej2-react-diagrams",
|
|
95
|
+
"/@syncfusion/ej2-react-documenteditor",
|
|
96
|
+
"/@syncfusion/ej2-react-dropdowns",
|
|
97
|
+
"/@syncfusion/ej2-react-filemanager",
|
|
98
|
+
"/@syncfusion/ej2-react-gantt",
|
|
99
|
+
"/@syncfusion/ej2-react-grids",
|
|
100
|
+
"/@syncfusion/ej2-react-heatmap",
|
|
101
|
+
"/@syncfusion/ej2-react-image-editor",
|
|
102
|
+
"/@syncfusion/ej2-react-inplace-editor",
|
|
103
|
+
"/@syncfusion/ej2-react-inputs",
|
|
104
|
+
"/@syncfusion/ej2-react-kanban",
|
|
105
|
+
"/@syncfusion/ej2-react-layouts",
|
|
106
|
+
"/@syncfusion/ej2-react-lineargauge",
|
|
107
|
+
"/@syncfusion/ej2-react-lists",
|
|
108
|
+
"/@syncfusion/ej2-react-maps",
|
|
109
|
+
"/@syncfusion/ej2-react-navigations",
|
|
110
|
+
"/@syncfusion/ej2-react-notifications",
|
|
111
|
+
"/@syncfusion/ej2-react-pdfviewer",
|
|
112
|
+
"/@syncfusion/ej2-react-pivotview",
|
|
113
|
+
"/@syncfusion/ej2-react-popups",
|
|
114
|
+
"/@syncfusion/ej2-react-progressbar",
|
|
115
|
+
"/@syncfusion/ej2-react-querybuilder",
|
|
116
|
+
"/@syncfusion/ej2-react-ribbon",
|
|
117
|
+
"/@syncfusion/ej2-react-richtexteditor",
|
|
118
|
+
"/@syncfusion/ej2-react-schedule",
|
|
119
|
+
"/@syncfusion/ej2-react-splitbuttons",
|
|
120
|
+
"/@syncfusion/ej2-react-spreadsheet",
|
|
121
|
+
"/@syncfusion/ej2-react-treegrid",
|
|
122
|
+
"/@syncfusion/ej2-react-treemap",
|
|
123
|
+
"/@syncfusion/ej2-ribbon",
|
|
124
|
+
"/@syncfusion/ej2-richtexteditor",
|
|
125
|
+
"/@syncfusion/ej2-schedule",
|
|
126
|
+
"/@syncfusion/ej2-splitbuttons",
|
|
127
|
+
"/@syncfusion/ej2-spreadsheet",
|
|
128
|
+
"/@syncfusion/ej2-svg-base",
|
|
129
|
+
"/@syncfusion/ej2-treegrid",
|
|
130
|
+
"/@syncfusion/ej2-treemap",
|
|
131
|
+
"/@syncfusion/ej2-vue-barcode-generator",
|
|
132
|
+
"/@syncfusion/ej2-vue-base",
|
|
133
|
+
"/@syncfusion/ej2-vue-buttons",
|
|
134
|
+
"/@syncfusion/ej2-vue-calendars",
|
|
135
|
+
"/@syncfusion/ej2-vue-charts",
|
|
136
|
+
"/@syncfusion/ej2-vue-circulargauge",
|
|
137
|
+
"/@syncfusion/ej2-vue-diagrams",
|
|
138
|
+
"/@syncfusion/ej2-vue-documenteditor",
|
|
139
|
+
"/@syncfusion/ej2-vue-dropdowns",
|
|
140
|
+
"/@syncfusion/ej2-vue-filemanager",
|
|
141
|
+
"/@syncfusion/ej2-vue-gantt",
|
|
142
|
+
"/@syncfusion/ej2-vue-grids",
|
|
143
|
+
"/@syncfusion/ej2-vue-heatmap",
|
|
144
|
+
"/@syncfusion/ej2-vue-image-editor",
|
|
145
|
+
"/@syncfusion/ej2-vue-inplace-editor",
|
|
146
|
+
"/@syncfusion/ej2-vue-inputs",
|
|
147
|
+
"/@syncfusion/ej2-vue-kanban",
|
|
148
|
+
"/@syncfusion/ej2-vue-layouts",
|
|
149
|
+
"/@syncfusion/ej2-vue-lineargauge",
|
|
150
|
+
"/@syncfusion/ej2-vue-lists",
|
|
151
|
+
"/@syncfusion/ej2-vue-maps",
|
|
152
|
+
"/@syncfusion/ej2-vue-navigations",
|
|
153
|
+
"/@syncfusion/ej2-vue-notifications",
|
|
154
|
+
"/@syncfusion/ej2-vue-pdfviewer",
|
|
155
|
+
"/@syncfusion/ej2-vue-pivotview",
|
|
156
|
+
"/@syncfusion/ej2-vue-popups",
|
|
157
|
+
"/@syncfusion/ej2-vue-progressbar",
|
|
158
|
+
"/@syncfusion/ej2-vue-querybuilder",
|
|
159
|
+
"/@syncfusion/ej2-vue-ribbon",
|
|
160
|
+
"/@syncfusion/ej2-vue-richtexteditor",
|
|
161
|
+
"/@syncfusion/ej2-vue-schedule",
|
|
162
|
+
"/@syncfusion/ej2-vue-splitbuttons",
|
|
163
|
+
"/@syncfusion/ej2-vue-spreadsheet",
|
|
164
|
+
"/@syncfusion/ej2-vue-treegrid",
|
|
165
|
+
"/@syncfusion/ej2-vue-treemap"
|
|
166
|
+
],
|
|
167
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-base/-/ej2-base-18.92.0.tgz",
|
|
168
|
+
"_shasum": "1c8e5f13a7a0f742a83daa98db9cb3e577fb9702",
|
|
169
|
+
"_spec": "@syncfusion/ej2-base@*",
|
|
170
|
+
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
171
|
+
"author": {
|
|
172
|
+
"name": "Syncfusion Inc."
|
|
173
|
+
},
|
|
174
|
+
"bin": {
|
|
175
|
+
"syncfusion-license": "bin/syncfusion-license.js"
|
|
176
|
+
},
|
|
177
|
+
"bugs": {
|
|
178
|
+
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
|
|
179
|
+
},
|
|
180
|
+
"bundleDependencies": false,
|
|
181
|
+
"dependencies": {
|
|
182
|
+
"@syncfusion/ej2-icons": "~25.1.35"
|
|
183
|
+
},
|
|
184
|
+
"deprecated": false,
|
|
185
|
+
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
|
|
186
|
+
"devDependencies": {},
|
|
187
|
+
"es2015": "./dist/es6/ej2-base.es5.js",
|
|
188
|
+
"homepage": "https://www.syncfusion.com/javascript-ui-controls",
|
|
189
|
+
"keywords": [
|
|
190
|
+
"ej2",
|
|
191
|
+
"syncfusion",
|
|
192
|
+
"ej2-base",
|
|
193
|
+
"web-components",
|
|
194
|
+
"typescript",
|
|
195
|
+
"base",
|
|
196
|
+
"common",
|
|
197
|
+
"core",
|
|
198
|
+
"library",
|
|
199
|
+
"ajax",
|
|
200
|
+
"animation",
|
|
201
|
+
"internationalization",
|
|
202
|
+
"drag",
|
|
203
|
+
"drop",
|
|
204
|
+
"drag-drop",
|
|
205
|
+
"template",
|
|
206
|
+
"template-engine",
|
|
207
|
+
"rtl",
|
|
208
|
+
"right-to-left",
|
|
209
|
+
"persistence",
|
|
210
|
+
"state-persistence",
|
|
211
|
+
"theme",
|
|
212
|
+
"styles"
|
|
213
|
+
],
|
|
214
|
+
"license": "SEE LICENSE IN license",
|
|
215
|
+
"main": "./dist/ej2-base.umd.min.js",
|
|
216
|
+
"module": "./index.js",
|
|
217
|
+
"name": "@syncfusion/ej2-base",
|
|
218
|
+
"repository": {
|
|
219
|
+
"type": "git",
|
|
220
|
+
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
221
|
+
},
|
|
222
|
+
"typings": "index.d.ts",
|
|
223
|
+
"version": "25.1.35-579988",
|
|
224
|
+
"sideEffects": true
|
|
225
|
+
}
|
package/src/ajax.d.ts
CHANGED
package/src/ajax.js
CHANGED
|
@@ -55,7 +55,7 @@ var Ajax = /** @class */ (function () {
|
|
|
55
55
|
* Send the request to server.
|
|
56
56
|
*
|
|
57
57
|
* @param {any} data - To send the user data
|
|
58
|
-
* @
|
|
58
|
+
* @returns {Promise} ?
|
|
59
59
|
*/
|
|
60
60
|
Ajax.prototype.send = function (data) {
|
|
61
61
|
var _this = this;
|
|
@@ -86,7 +86,6 @@ var Ajax = /** @class */ (function () {
|
|
|
86
86
|
if (!isNullOrUndefined(_this.onUploadProgress)) {
|
|
87
87
|
_this.httpRequest.upload.onprogress = _this.onUploadProgress;
|
|
88
88
|
}
|
|
89
|
-
// eslint-disable-next-line
|
|
90
89
|
_this.httpRequest.open(_this.type, _this.url, _this.mode);
|
|
91
90
|
// Set default headers
|
|
92
91
|
if (!isNullOrUndefined(_this.data) && _this.contentType !== null) {
|
|
@@ -151,17 +150,13 @@ var Ajax = /** @class */ (function () {
|
|
|
151
150
|
* @returns {string} ?
|
|
152
151
|
*/
|
|
153
152
|
Ajax.prototype.getResponseHeader = function (key) {
|
|
154
|
-
var responseHeaders;
|
|
155
|
-
var header;
|
|
156
|
-
// eslint-disable-next-line
|
|
157
|
-
responseHeaders = {};
|
|
153
|
+
var responseHeaders = {};
|
|
158
154
|
var headers = headerRegex.exec(this.httpRequest.getAllResponseHeaders());
|
|
159
155
|
while (headers) {
|
|
160
156
|
responseHeaders[headers[1].toLowerCase()] = headers[2];
|
|
161
157
|
headers = headerRegex.exec(this.httpRequest.getAllResponseHeaders());
|
|
162
158
|
}
|
|
163
|
-
|
|
164
|
-
header = responseHeaders[key.toLowerCase()];
|
|
159
|
+
var header = responseHeaders[key.toLowerCase()];
|
|
165
160
|
return isNullOrUndefined(header) ? null : header;
|
|
166
161
|
};
|
|
167
162
|
return Ajax;
|
package/src/animation-model.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createElement, selectAll, closest } from './dom';
|
|
1
|
+
import { createElement, selectAll, closest } from './dom';
|
|
2
2
|
import {Effect,AnimationOptions} from "./animation";
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -7,59 +7,59 @@ import {Effect,AnimationOptions} from "./animation";
|
|
|
7
7
|
export interface AnimationModel {
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* Specify the type of animation
|
|
11
|
-
*
|
|
12
|
-
* @default : 'FadeIn';
|
|
13
|
-
*/
|
|
14
|
-
name?: Effect;
|
|
10
|
+
* Specify the type of animation
|
|
11
|
+
*
|
|
12
|
+
* @default : 'FadeIn';
|
|
13
|
+
*/
|
|
14
|
+
name?: Effect;
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* Specify the duration to animate
|
|
18
|
-
*
|
|
19
|
-
* @default : 400;
|
|
20
|
-
*/
|
|
21
|
-
duration?: number;
|
|
17
|
+
* Specify the duration to animate
|
|
18
|
+
*
|
|
19
|
+
* @default : 400;
|
|
20
|
+
*/
|
|
21
|
+
duration?: number;
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
|
-
* Specify the animation timing function
|
|
25
|
-
*
|
|
26
|
-
* @default : 'ease';
|
|
27
|
-
*/
|
|
28
|
-
timingFunction?: string;
|
|
24
|
+
* Specify the animation timing function
|
|
25
|
+
*
|
|
26
|
+
* @default : 'ease';
|
|
27
|
+
*/
|
|
28
|
+
timingFunction?: string;
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
|
-
* Specify the delay to start animation
|
|
32
|
-
*
|
|
33
|
-
* @default : 0;
|
|
34
|
-
*/
|
|
35
|
-
delay?: number;
|
|
31
|
+
* Specify the delay to start animation
|
|
32
|
+
*
|
|
33
|
+
* @default : 0;
|
|
34
|
+
*/
|
|
35
|
+
delay?: number;
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
|
-
* Triggers when animation is in-progress
|
|
39
|
-
*
|
|
40
|
-
* @event progress
|
|
41
|
-
*/
|
|
42
|
-
progress?: EmitType<AnimationOptions>;
|
|
38
|
+
* Triggers when animation is in-progress
|
|
39
|
+
*
|
|
40
|
+
* @event progress
|
|
41
|
+
*/
|
|
42
|
+
progress?: EmitType<AnimationOptions>;
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
|
-
* Triggers when the animation is started
|
|
46
|
-
*
|
|
47
|
-
* @event begin
|
|
48
|
-
*/
|
|
49
|
-
begin?: EmitType<AnimationOptions>;
|
|
45
|
+
* Triggers when the animation is started
|
|
46
|
+
*
|
|
47
|
+
* @event begin
|
|
48
|
+
*/
|
|
49
|
+
begin?: EmitType<AnimationOptions>;
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* Triggers when animation is completed
|
|
53
|
-
*
|
|
54
|
-
* @event end
|
|
55
|
-
*/
|
|
56
|
-
end?: EmitType<AnimationOptions>;
|
|
52
|
+
* Triggers when animation is completed
|
|
53
|
+
*
|
|
54
|
+
* @event end
|
|
55
|
+
*/
|
|
56
|
+
end?: EmitType<AnimationOptions>;
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
|
-
* Triggers when animation is failed due to any scripts
|
|
60
|
-
*
|
|
61
|
-
* @event fail
|
|
62
|
-
*/
|
|
63
|
-
fail?: EmitType<AnimationOptions>;
|
|
59
|
+
* Triggers when animation is failed due to any scripts
|
|
60
|
+
*
|
|
61
|
+
* @event fail
|
|
62
|
+
*/
|
|
63
|
+
fail?: EmitType<AnimationOptions>;
|
|
64
64
|
|
|
65
65
|
}
|
package/src/animation.d.ts
CHANGED
|
@@ -212,15 +212,15 @@ export declare function setGlobalAnimation(value: string | GlobalAnimationMode):
|
|
|
212
212
|
*/
|
|
213
213
|
export declare enum GlobalAnimationMode {
|
|
214
214
|
/**
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
* Defines the global animation mode as Default. Animation is enabled or disabled based on the component's animation settings.
|
|
216
|
+
*/
|
|
217
217
|
Default = "Default",
|
|
218
218
|
/**
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
* Defines the global animation mode as Enable. Enables the animation for all components, regardless of the individual component's animation settings.
|
|
220
|
+
*/
|
|
221
221
|
Enable = "Enable",
|
|
222
222
|
/**
|
|
223
|
-
|
|
224
|
-
|
|
223
|
+
* Defines the global animation mode as Disable. Disables the animation for all components, regardless of the individual component's animation settings.
|
|
224
|
+
*/
|
|
225
225
|
Disable = "Disable"
|
|
226
226
|
}
|