@syncfusion/ej2-vue-base 25.2.3 → 26.1.35
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 +261 -0
- package/dist/ej2-vue-base.umd.min.js +2 -2
- package/dist/ej2-vue-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-base.es2015.js +255 -143
- package/dist/es6/ej2-vue-base.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-base.es5.js +194 -80
- package/dist/es6/ej2-vue-base.es5.js.map +1 -1
- package/dist/global/ej2-vue-base.min.js +2 -2
- package/dist/global/ej2-vue-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -8
- package/src/component-base.d.ts +12 -4
- package/src/component-base.js +89 -47
- package/src/template.d.ts +7 -0
- package/src/template.js +110 -28
- package/tslint.json +111 -0
- package/CHANGELOG.md +0 -348
package/tslint.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
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
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,348 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [Unreleased]
|
|
4
|
-
|
|
5
|
-
## 25.1.35 (2024-03-15)
|
|
6
|
-
|
|
7
|
-
### Common
|
|
8
|
-
|
|
9
|
-
#### Bug Fixes
|
|
10
|
-
|
|
11
|
-
- `#I552563` - The issue with "the TypeScript intellisense is not shown in the Vue components" has been resolved.
|
|
12
|
-
|
|
13
|
-
## 24.1.41 (2023-12-18)
|
|
14
|
-
|
|
15
|
-
### Common
|
|
16
|
-
|
|
17
|
-
#### Bug Fixes
|
|
18
|
-
|
|
19
|
-
- The Vue package size is minimised by removing redundant styles.
|
|
20
|
-
|
|
21
|
-
## 23.2.7 (2023-12-05)
|
|
22
|
-
|
|
23
|
-
### Common
|
|
24
|
-
|
|
25
|
-
#### Bug Fixes
|
|
26
|
-
|
|
27
|
-
- `#I513639` - The issue with "the pager template renders multiple times in the Grid component" has been resolved.
|
|
28
|
-
|
|
29
|
-
## 23.2.5 (2023-11-23)
|
|
30
|
-
|
|
31
|
-
### Common
|
|
32
|
-
|
|
33
|
-
#### Bug Fixes
|
|
34
|
-
|
|
35
|
-
- Resolved component's compilation issue.
|
|
36
|
-
|
|
37
|
-
## 23.2.4 (2023-11-20)
|
|
38
|
-
|
|
39
|
-
### Common
|
|
40
|
-
|
|
41
|
-
#### Bug Fixes
|
|
42
|
-
|
|
43
|
-
- `#I508468` - The issue with "unable to access the template data in production mode for Vue components" has been resolved.
|
|
44
|
-
|
|
45
|
-
## 23.1.36 (2023-09-15)
|
|
46
|
-
|
|
47
|
-
### Common
|
|
48
|
-
|
|
49
|
-
#### New Features
|
|
50
|
-
|
|
51
|
-
- The Vue sample browser has been upgraded to the Vue 3 version.
|
|
52
|
-
- Added the StackBlitz option to the Vue sample browser.
|
|
53
|
-
- `#I469488`, `#I490441`, `#I491649` - Provided Intellisense support for Vue 3 components using the Volar extension within Visual Studio Code.
|
|
54
|
-
|
|
55
|
-
## 22.2.5 (2023-07-27)
|
|
56
|
-
|
|
57
|
-
### Common
|
|
58
|
-
|
|
59
|
-
#### Bug Fixes
|
|
60
|
-
|
|
61
|
-
- `#I460439` - The issue with "the Vue components create multiple app instances when using templates" has been resolved.
|
|
62
|
-
|
|
63
|
-
## 22.1.34 (2023-06-21)
|
|
64
|
-
|
|
65
|
-
### Common
|
|
66
|
-
|
|
67
|
-
#### New Features
|
|
68
|
-
|
|
69
|
-
- Provided the TypeScript 5 compatible support for the Vue components.
|
|
70
|
-
|
|
71
|
-
## 21.2.9 (2023-06-06)
|
|
72
|
-
|
|
73
|
-
### Common
|
|
74
|
-
|
|
75
|
-
#### Bug Fixes
|
|
76
|
-
|
|
77
|
-
- `#I457123` - The issue with "Unable to render Grid component using v-for and a slot template in Vue 3" has been resolved.
|
|
78
|
-
- `#I468694` - The issue with "Unable to access the global directives in Vue 3 slot templates" has been resolved.
|
|
79
|
-
|
|
80
|
-
## 21.2.6 (2023-05-23)
|
|
81
|
-
|
|
82
|
-
### Common
|
|
83
|
-
|
|
84
|
-
#### Bug Fixes
|
|
85
|
-
|
|
86
|
-
- `#I453141` - The issue with "Unable to access the template data inside the external template while using Composition API" has been resolved.
|
|
87
|
-
|
|
88
|
-
## 21.1.41 (2023-04-18)
|
|
89
|
-
|
|
90
|
-
### Common
|
|
91
|
-
|
|
92
|
-
#### Bug Fixes
|
|
93
|
-
|
|
94
|
-
- `#I450987`, `#I446640`, `#I181430`, `#FB42508` - The issue with "DocumentEditor performance lag in Vue 3 applications" has been resolved.
|
|
95
|
-
- `#I445940` - The issue with "Can't initialize data with a prop value in the Vue 3 template" has been resolved.
|
|
96
|
-
|
|
97
|
-
## 21.1.38 (2023-04-04)
|
|
98
|
-
|
|
99
|
-
### Common
|
|
100
|
-
|
|
101
|
-
#### Bug Fixes
|
|
102
|
-
|
|
103
|
-
- `#I440657` - The issue with "Unwanted element is added in Vue 3 template element" has been resolved.
|
|
104
|
-
- `#I452080` - The issue with "Script error occurred in a Vue + Vitest testing sample" has been resolved.
|
|
105
|
-
|
|
106
|
-
## 21.1.37 (2023-03-29)
|
|
107
|
-
|
|
108
|
-
### Common
|
|
109
|
-
|
|
110
|
-
#### Bug Fixes
|
|
111
|
-
|
|
112
|
-
- `#I443747` - The issue with "Grid static columns are not rendered in Vue 3" has been resolved.
|
|
113
|
-
- `#I450995` - The issue with "Vite with Vue 2.7 sample is not working" has been resolved.
|
|
114
|
-
- `#I451413` - The issue with "Script error is occurred while changing the reactive variable value" has been resolved.
|
|
115
|
-
|
|
116
|
-
## 21.1.35 (2023-03-23)
|
|
117
|
-
|
|
118
|
-
### Common
|
|
119
|
-
|
|
120
|
-
#### New Features
|
|
121
|
-
|
|
122
|
-
- `#I396062`, `#F166897`, `#I412247` - Provided the provide/inject support for Vue template components.
|
|
123
|
-
- `#FB38812` - Provided the `Nuxt 3` framework compatible support for the Vue components.
|
|
124
|
-
- `#F178140` - Provided the `pnpm` framework compatible support for the Vue components.
|
|
125
|
-
- `#F176652` - Provided the `Vitest` testing framework compatible support for the Vue components.
|
|
126
|
-
- `#FB38517` - Provided the support to use the Vue components in Vue applications without requiring the `vue-class-component` package.
|
|
127
|
-
|
|
128
|
-
## 20.4.51 (2023-02-21)
|
|
129
|
-
|
|
130
|
-
### Common
|
|
131
|
-
|
|
132
|
-
#### Bug Fixes
|
|
133
|
-
|
|
134
|
-
- `#I431571` - The issue with "Vue 3 components are not destroyed while routing" has been resolved.
|
|
135
|
-
|
|
136
|
-
## 20.4.38 (2022-12-21)
|
|
137
|
-
|
|
138
|
-
### Common
|
|
139
|
-
|
|
140
|
-
#### Bug Fixes
|
|
141
|
-
|
|
142
|
-
- `#I409205` - The issue with the "Signature plugin missing in the latest Vue 2 direct script" has been resolved.
|
|
143
|
-
- The issue with the "v-model support is not working for the textbox component in Vue 3" has been resolved.
|
|
144
|
-
|
|
145
|
-
#### New Features
|
|
146
|
-
|
|
147
|
-
- `#FB34897` - Provided Vue 3 direct script support for Syncfusion Vue components.
|
|
148
|
-
- The new `Rating` component has been added to Vue.
|
|
149
|
-
- The `AppBar`, `Floating Action Button (FAB)`, `Mention`, `Message` and `Speed Dial` components have been developed to meet industry standards and are now marked production-ready.
|
|
150
|
-
|
|
151
|
-
#### Breaking Changes
|
|
152
|
-
|
|
153
|
-
- If you are using Syncfusion's Vue components without first registering a license, a license dialog will appear after a certain limit of usage, preventing further interaction in the application. Please make sure to register a valid license in order to continue using the Syncfusion Vue components without interruption.
|
|
154
|
-
|
|
155
|
-
## 20.3.47 (2022-09-29)
|
|
156
|
-
|
|
157
|
-
### Common
|
|
158
|
-
|
|
159
|
-
#### New Features
|
|
160
|
-
|
|
161
|
-
- `#I404540`, `#I403034`, `#F176393` - Provided the Vue 2.7 compatible support for the Vue components.
|
|
162
|
-
|
|
163
|
-
## 20.2.36 (2022-06-30)
|
|
164
|
-
|
|
165
|
-
### Common
|
|
166
|
-
|
|
167
|
-
#### New Features
|
|
168
|
-
|
|
169
|
-
- Provided the TypeScript 4.7 compatible support for the Vue components.
|
|
170
|
-
- Provided the option to register the license key by using the `npx` command. Follow these steps to register the license using the `npx` command:
|
|
171
|
-
|
|
172
|
-
| The `npx` command |
|
|
173
|
-
|---|
|
|
174
|
-
| Install the Syncfusion packages from `npm`. |
|
|
175
|
-
| Add the license key either in the environment variable `SYNCFUSION_LICENSE` or in the `syncfusion-license.txt` text file. |
|
|
176
|
-
| Run the command `npx syncfusion-license activate` to automatically register the license. |
|
|
177
|
-
|
|
178
|
-
## 20.1.61 (2022-06-21)
|
|
179
|
-
|
|
180
|
-
### Common
|
|
181
|
-
|
|
182
|
-
#### Bug Fixes
|
|
183
|
-
|
|
184
|
-
- `#I343901`, `#I362728` - "The routing and i18n are not working within the Vue 3 template components" issue has been resolved.
|
|
185
|
-
|
|
186
|
-
## 20.1.57 (2022-05-24)
|
|
187
|
-
|
|
188
|
-
### Common
|
|
189
|
-
|
|
190
|
-
#### Bug Fixes
|
|
191
|
-
|
|
192
|
-
- `#I362337` - The issue with the "Row template in the Grid does not work properly in vue 3" has been resolved.
|
|
193
|
-
|
|
194
|
-
## 20.1.56 (2022-05-17)
|
|
195
|
-
|
|
196
|
-
### Common
|
|
197
|
-
|
|
198
|
-
#### Bug Fixes
|
|
199
|
-
|
|
200
|
-
- `#I377536` - The issue with "Facing an Warning error while running in development mode in Vue 3" has been resolved.
|
|
201
|
-
|
|
202
|
-
## 20.1.52 (2022-05-04)
|
|
203
|
-
|
|
204
|
-
### Common
|
|
205
|
-
|
|
206
|
-
#### Bug Fixes
|
|
207
|
-
|
|
208
|
-
- `#FB9750` - The issue with "Providers are not accessible for Vue component with typescript application environment" has been resolved.
|
|
209
|
-
|
|
210
|
-
## 20.1.51 (2022-04-26)
|
|
211
|
-
|
|
212
|
-
### Common
|
|
213
|
-
|
|
214
|
-
#### Bug Fixes
|
|
215
|
-
|
|
216
|
-
- `#I334904`, `#I347008` - The issue with "Script error in Vite + Vue application" has been resolved.
|
|
217
|
-
|
|
218
|
-
## 20.1.48 (2022-04-12)
|
|
219
|
-
|
|
220
|
-
### Common
|
|
221
|
-
|
|
222
|
-
- The "Header Rows in Schedule component not rendered in Vue" issue has been fixed.
|
|
223
|
-
|
|
224
|
-
## 20.1.47 (2022-04-04)
|
|
225
|
-
|
|
226
|
-
### Common
|
|
227
|
-
|
|
228
|
-
#### New Features
|
|
229
|
-
|
|
230
|
-
- `#F140652`, `#F138394`, `#F148391`, `#I309881`, `#F167735`, `#I228458` - Provided slot template support for the Vue components.
|
|
231
|
-
|
|
232
|
-
## 19.4.53 (2022-02-22)
|
|
233
|
-
|
|
234
|
-
### Common
|
|
235
|
-
|
|
236
|
-
#### Bug Fixes
|
|
237
|
-
|
|
238
|
-
- `#I364613` - Object property templates are not working in production mode issue has been resolved.
|
|
239
|
-
|
|
240
|
-
## 19.4.52 (2022-02-15)
|
|
241
|
-
|
|
242
|
-
### Common
|
|
243
|
-
|
|
244
|
-
#### Bug Fixes
|
|
245
|
-
|
|
246
|
-
- `#I362388` - Modules in provider section not works properly issue has been resolved.
|
|
247
|
-
|
|
248
|
-
## 19.4.47 (2022-01-25)
|
|
249
|
-
|
|
250
|
-
### Common
|
|
251
|
-
|
|
252
|
-
#### Bug Fixes
|
|
253
|
-
|
|
254
|
-
- `#F171693` - The issue with "Vue components are not rendered with node version 16" has been resolved.
|
|
255
|
-
|
|
256
|
-
## 19.4.40 (2021-12-28)
|
|
257
|
-
|
|
258
|
-
### Common
|
|
259
|
-
|
|
260
|
-
#### Bug Fixes
|
|
261
|
-
|
|
262
|
-
- `#I334904`, `#I347008` - Compatability support for Vue components in Vite js has been resolved.
|
|
263
|
-
|
|
264
|
-
## 19.4.38 (2021-12-17)
|
|
265
|
-
|
|
266
|
-
### Common
|
|
267
|
-
|
|
268
|
-
#### Bug Fixes
|
|
269
|
-
|
|
270
|
-
- `#I348114` - Peer dependencies issue has been resolved.
|
|
271
|
-
|
|
272
|
-
## 19.3.47 (2021-10-26)
|
|
273
|
-
|
|
274
|
-
### Common
|
|
275
|
-
|
|
276
|
-
#### Bug Fixes
|
|
277
|
-
|
|
278
|
-
- `#I345561` - Resolved the data loading issue in the external template.
|
|
279
|
-
|
|
280
|
-
## 17.4.47 (2020-02-05)
|
|
281
|
-
|
|
282
|
-
### Common
|
|
283
|
-
|
|
284
|
-
#### Bug Fixes
|
|
285
|
-
|
|
286
|
-
- `#I260681`, `#I261593` - Resolved the peer dependency warning issues.
|
|
287
|
-
|
|
288
|
-
## 17.4.41 (2020-01-07)
|
|
289
|
-
|
|
290
|
-
### Common
|
|
291
|
-
|
|
292
|
-
#### Bug Fixes
|
|
293
|
-
|
|
294
|
-
- `#I252331` - Issue with object reference not maintained in Vue has been fixed.
|
|
295
|
-
|
|
296
|
-
## 17.2.48-beta (2019-08-28)
|
|
297
|
-
|
|
298
|
-
### Common
|
|
299
|
-
|
|
300
|
-
#### New Features
|
|
301
|
-
|
|
302
|
-
- Provided .sync modifier support for Essential JS 2 for Vue components.
|
|
303
|
-
|
|
304
|
-
## 17.1.1-beta (2019-01-29)
|
|
305
|
-
|
|
306
|
-
### Common
|
|
307
|
-
|
|
308
|
-
#### Bug Fixes
|
|
309
|
-
|
|
310
|
-
- Moved vue from dependency to peer dependency for resolving duplicate dependency installation.
|
|
311
|
-
|
|
312
|
-
## 16.3.31 (2018-11-07)
|
|
313
|
-
|
|
314
|
-
### Common
|
|
315
|
-
|
|
316
|
-
#### Bug Fixes
|
|
317
|
-
|
|
318
|
-
- Fixed the comptability issues in the child directive elements on using with vuestic admin app.
|
|
319
|
-
|
|
320
|
-
## 16.3.25 (2018-10-15)
|
|
321
|
-
|
|
322
|
-
### Common
|
|
323
|
-
|
|
324
|
-
#### Bug Fixes
|
|
325
|
-
|
|
326
|
-
- Fixed the child directives property value not updated while specifying property name in kebab-case.
|
|
327
|
-
|
|
328
|
-
## 16.3.21 (2018-09-22)
|
|
329
|
-
|
|
330
|
-
### Common
|
|
331
|
-
|
|
332
|
-
#### Breaking Changes
|
|
333
|
-
|
|
334
|
-
- The individual npm package will no longer bundle dependent component's style. The online web tool [CRG](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component styles.
|
|
335
|
-
|
|
336
|
-
## 16.3.17 (2018-09-12)
|
|
337
|
-
|
|
338
|
-
### Common
|
|
339
|
-
|
|
340
|
-
Base library provide options to enable following Vue functionalities in Essential JS 2 components.
|
|
341
|
-
|
|
342
|
-
- Model Binding
|
|
343
|
-
- Dependency Injection
|
|
344
|
-
- Vue Templating
|
|
345
|
-
|
|
346
|
-
#### Breaking Changes
|
|
347
|
-
|
|
348
|
-
- The individual npm package will no longer bundle dependent component's style. The online web tool [CRG](https://crg.syncfusion.com/) can be used to combine specific set of component and its dependent component styles.
|