@syncfusion/ej2-angular-base 25.2.4 → 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.
Files changed (44) hide show
  1. package/.eslintrc.json +261 -0
  2. package/dist/ej2-angular-base.umd.min.js +2 -2
  3. package/dist/ej2-angular-base.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-angular-base.es2015.js +234 -214
  5. package/dist/es6/ej2-angular-base.es2015.js.map +1 -1
  6. package/dist/es6/ej2-angular-base.es5.js +158 -138
  7. package/dist/es6/ej2-angular-base.es5.js.map +1 -1
  8. package/dist/global/ej2-angular-base.min.js +2 -2
  9. package/dist/global/ej2-angular-base.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +24 -9
  12. package/schematics/generators/component-builder.d.ts +3 -0
  13. package/schematics/generators/component-builder.js +23 -22
  14. package/schematics/generators/index.js +1 -0
  15. package/schematics/index.d.ts +0 -4
  16. package/schematics/index.js +21 -9
  17. package/schematics/ng-add/index.d.ts +3 -0
  18. package/schematics/ng-add/index.js +14 -12
  19. package/schematics/ng-add/theme.d.ts +3 -0
  20. package/schematics/ng-add/theme.js +10 -8
  21. package/schematics/utils/ast.d.ts +3 -2
  22. package/schematics/utils/ast.js +8 -8
  23. package/schematics/utils/get-project.d.ts +4 -2
  24. package/schematics/utils/get-project.js +3 -2
  25. package/schematics/utils/helpers/helpers.js +19 -18
  26. package/schematics/utils/package.js +1 -0
  27. package/schematics/utils/project-style-file.d.ts +5 -3
  28. package/schematics/utils/project-style-file.js +4 -3
  29. package/src/complex-array-base.d.ts +1 -0
  30. package/src/complex-array-base.js +31 -28
  31. package/src/component-base.d.ts +1 -0
  32. package/src/component-base.js +39 -53
  33. package/src/form-base.d.ts +3 -3
  34. package/src/form-base.js +0 -4
  35. package/src/template.d.ts +8 -1
  36. package/src/template.js +23 -5
  37. package/src/util.d.ts +26 -3
  38. package/src/util.js +51 -28
  39. package/styles/fluent2.css +1033 -0
  40. package/styles/fluent2.scss +1 -0
  41. package/styles/material3-dark.css +1 -1
  42. package/styles/material3.css +1 -1
  43. package/tslint.json +111 -0
  44. package/CHANGELOG.md +0 -702
package/CHANGELOG.md DELETED
@@ -1,702 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### common
6
-
7
- #### Bug Fixes
8
-
9
- - `#I573637` - Resolved `ng for` data binding not working properly in Array Directives.
10
-
11
- ## 25.1.37 (2024-03-26)
12
-
13
- ### Common
14
-
15
- #### Bug Fixes
16
-
17
- - `#I558315` - Resolved the `chart` directives property changes not working.
18
- - `#I561506` - Resolved the `grid` with `column` pipe translate not working properly.
19
-
20
- ## 24.1.41 (2023-12-18)
21
-
22
- ### Common
23
-
24
- #### Bug Fixes
25
-
26
- - The Angular package size is minimised by removing redundant styles.
27
-
28
- ## 23.2.5 (2023-11-23)
29
-
30
- ### Common
31
-
32
- #### Bug Fixes
33
-
34
- - Resolved component's compilation issue.
35
-
36
- ## 23.1.43 (2023-10-31)
37
-
38
- ### Common
39
-
40
- #### Bug Fixes
41
-
42
- - `#I507537`, `#I508879`, `#I505342` - Resolved `chart` loading delays to enhance overall performance.
43
-
44
- ## 23.1.38 (2023-09-26)
45
-
46
- ### Common
47
-
48
- #### Bug Fixes
49
-
50
- - `#I488912` - Resolved the `ngModel` data binding not working properly in Form Base.
51
-
52
- ## 23.1.36 (2023-09-15)
53
-
54
- ### Common
55
-
56
- #### Bug Fixes
57
-
58
- - `#I486549` - Provided `clearTemplates` support for `Accordion` Component.
59
- - `#F45098`, `#I497414` - Resolved the `Complex Directives` property changes not being applied properly.
60
- - `#I496453` - Resolved the `Template` binding not working properly in Form Base.
61
- - `#I473932` - Resolved the `Angular Form` states not working properly for the `OnPush` strategy.
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 Angular components.
70
-
71
- ## 21.1.41 (2023-04-18)
72
-
73
- ### Common
74
-
75
- #### Bug Fixes
76
-
77
- - `#I454892` - The issue with the `ng-template` not working properly has been resolved.
78
- - `#I444984` - Resolved the script error while rendering Rich text editor component in the `NgbModel`.
79
-
80
- ## 21.1.38 (2023-04-04)
81
-
82
- ### Common
83
-
84
- #### Bug Fixes
85
-
86
- - `#I444984` - Resolved Form base components `Set` and `Reset` not working properly.
87
- - `#F180294` - Improved the component rendering delay in the `ngAfterViewInit` hook.
88
-
89
- ## 20.4.40 (2022-12-28)
90
-
91
- ### Common
92
-
93
- #### Bug Fixes
94
-
95
- - `#I426526`, `#I421906` - The issue with the delay rendering of controls in the `ngAfterViewInit` hook has been resolved.
96
-
97
- ## 20.4.38 (2022-12-21)
98
-
99
- ### Common
100
-
101
- #### New Features
102
-
103
- - Provided the Angular version 15 compatible support for the Angular components.
104
- - The new `Rating` component has been added to Angular.
105
- - 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.
106
-
107
- #### Breaking Changes
108
-
109
- - If you are using Syncfusion's Angular 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 Angular components without interruption.
110
-
111
- ## 20.3.47 (2022-09-29)
112
-
113
- ### Common
114
-
115
- #### New Features
116
-
117
- - Provided the schematic ng add support for Syncfusion Angular IVY packages.
118
-
119
- #### Bug Fixes
120
-
121
- - `#I358566` - The issue with the `ng-template` not working in the Karma unit test has been resolved.
122
- - `#I392021` - The issue with the "Gantt header template image is not shown in the stack blitz sample" has been resolved.
123
-
124
- ## 20.2.36 (2022-06-30)
125
-
126
- ### Common
127
-
128
- #### Breaking Changes
129
-
130
- - From this release, Syncfusion provided the Ivy-compatible support for the Angular packages. Ivy Angular packages support Angular versions 12 and above. While using the latest Angular packages in the Angular 11 and below version application, components will not work. To provide the latest features and fixes for Angular versions 11 and below, Syncfusion will maintain the Angular packages tagged with `ngcc`. To install Angular packages that are compatible with `ngcc` for the Angular versions 11 and below application, run the `npm install @syncfusion/ej2-angular-grids@ngcc` command.
131
-
132
- #### New Features
133
-
134
- - Syncfusion components are now compatible with Angular 14 version.
135
- - Provided the Ivy-compatible support for the Angular packages. Ivy Angular packages support Angular versions 12 and above.
136
- - Provided the TypeScript 4.7 compatible support for the Angular components.
137
- - Provided the option to register the license key by using the `npx` command. Follow these steps to register the license using the `npx` command:
138
-
139
- | The `npx` command |
140
- |---|
141
- | Install the Syncfusion packages from `npm`. |
142
- | Add the license key either in the environment variable `SYNCFUSION_LICENSE` or in the `syncfusion-license.txt` text file. |
143
- | Run the command `npx syncfusion-license activate` to automatically register the license. |
144
-
145
- ## 19.1.56 (2021-04-13)
146
-
147
- ### Common
148
-
149
- #### Bug Fixes
150
-
151
- - `I313360` - Resolved `NgFor dynamic proprty` change not working for `tab` component.
152
-
153
- ## 19.1.54 (2021-03-30)
154
-
155
- ### Common
156
-
157
- #### Bug Fixes
158
-
159
- - `I306436,I313360` - Resolved `dynamic property` change not working for `Tab` component.
160
- - Resolved script error while using `clearTemplate` method.
161
-
162
- ## 18.4.48 (2021-03-23)
163
-
164
- ### Common
165
-
166
- #### Bug Fixes
167
-
168
- - `I312916,I316685` - Resolved script error When resetting form controls to non-null values, if the elements are no longer in the DOM.
169
-
170
- ## 18.4.46 (2021-03-02)
171
-
172
- ### Common
173
-
174
- #### Bug Fixes
175
-
176
- - `I306436` - Resolved `dynamic property` change not working for complex directives.
177
-
178
- ## 18.4.44 (2021-02-23)
179
-
180
- ### Common
181
-
182
- #### Bug Fixes
183
-
184
- - Resolved script error when set to null value to form group.
185
-
186
- ## 18.4.43 (2021-02-16)
187
-
188
- ### Common
189
-
190
- #### Bug Fixes
191
-
192
- - `I307728` - Provided performance improvement on complex directives.
193
- - `I312275` - Resolved Script error while unsubscribing events on `OnDestroy` hook.
194
-
195
- ## 18.4.41 (2021-02-02)
196
-
197
- ### Common
198
-
199
- #### Bug Fixes
200
-
201
- - `I313011` - Increased `peerDependencies` version from `10.1.0` to `11.1.1`.
202
-
203
- ## 18.4.34 (2021-01-12)
204
-
205
- ### Common
206
-
207
- #### Bug Fixes
208
-
209
- - Fixed ngFor databinding items have property losses if `directives` have child content template property.
210
-
211
- ## 18.4.30 (2020-12-17)
212
-
213
- ### Common
214
-
215
- #### Bug Fixes
216
-
217
- - Resolved `Dirty & Pristine` value is not updated properly when resetting the form.
218
-
219
- ## 18.2.56 (2020-09-01)
220
-
221
- ### Common
222
-
223
- #### Bug Fixes
224
-
225
- - `I283512` - Resolved `Dynamic value` binding not working for component base components.
226
-
227
- ## 18.2.48 (2020-08-04)
228
-
229
- ### Common
230
-
231
- #### Bug Fixes
232
-
233
- - `I283512` - Resolved `Dynamic value` binding not working for component base components.
234
-
235
- ## 18.2.44 (2020-07-07)
236
-
237
- ### Common
238
-
239
- #### Bug Fixes
240
-
241
- - `I275509,I274538,I278435` - Fixed ngFor databinding not worked while dynamically add items.
242
-
243
- ## 18.1.42 (2020-04-01)
244
-
245
- ### Common
246
-
247
- #### Bug Fixes
248
-
249
- - Resolved components not get rendered when we disable IVY in angular 9.
250
-
251
- ## 18.1.36-beta (2020-03-19)
252
-
253
- ### Common
254
-
255
- #### Bug Fixes
256
-
257
- - `I261475` - Angular 9 compatibility support.
258
-
259
- ### Common
260
-
261
- #### Bug Fixes
262
-
263
- - `I257439` - Increased `peerDependencies` version from `8.2.12` to `8.2.14`.
264
-
265
- ## 17.3.17 (2019-10-15)
266
-
267
- ### Common
268
-
269
- #### Bug Fixes
270
-
271
- - `I251162` - Increased `peerDependencies` version from `8.2.6` to `8.2.10`.
272
-
273
- ## 17.3.16 (2019-10-09)
274
-
275
- ### Common
276
-
277
- #### Bug Fixes
278
-
279
- - `I243740` - Fixed When using container support, the controls inside the `Tab` rendering getting delayed.
280
-
281
- ## 17.3.9-beta (2019-09-20)
282
-
283
- ### Common
284
-
285
- #### Bug Fixes
286
-
287
- - `F147411,I248565` - Cleared `peerDependencies` warning.
288
-
289
- ## 17.2.49 (2019-09-04)
290
-
291
- ### Common
292
-
293
- #### Bug Fixes
294
-
295
- - Fixed `Dynamic datasource` with `ngFor` does not re-render.
296
-
297
- ## 17.2.39 (2019-07-30)
298
-
299
- ### Common
300
-
301
- #### Bug Fixes
302
-
303
- - `#242999` - Fixed `ng-valid` and `ng-invalid` classes are not getting added properly in Angular reactive forms issue.
304
-
305
- ## 17.2.35 (2019-07-17)
306
-
307
- ### Common
308
-
309
- #### Bug Fixes
310
-
311
- - Fixed `CheckBox` not disabling issue.
312
- - Fixed binding not working properly while using `ngx-tanslate` pipe.
313
-
314
- ## 17.2.28-beta (2019-06-27)
315
-
316
- ### Common
317
-
318
- #### Bug Fixes
319
-
320
- - Fixed `CheckBox` not disabling issue.
321
- - Fixed binding not working properly while using `ngx-tanslate` pipe.
322
-
323
- ## 17.1.53 (2019-06-25)
324
-
325
- ### Common
326
-
327
- - No Changes for this product in this version.
328
-
329
- ## 17.1.50 (2019-06-04)
330
-
331
- ### Common
332
-
333
- #### New Features
334
-
335
- - Provided Angular 8 compatibility support.
336
-
337
- ## 17.1.49 (2019-05-29)
338
-
339
- ### Common
340
-
341
- #### Bug Fixes
342
-
343
- - #2352892 - Fixed `Form base` components delay rendering issue.
344
-
345
- ## 17.1.47 (2019-05-14)
346
-
347
- ### Common
348
-
349
- #### Bug Fixes
350
-
351
- - #227272, #227958 - Fixed binding not working properly while using `ngx-tanslate` pipe.
352
-
353
- ## 17.1.43 (2019-04-30)
354
-
355
- ### Common
356
-
357
- #### Bug Fixes
358
-
359
- - #227272, #227958 - Fixed binding not working properly while using `ngx-tanslate` pipe.
360
-
361
- ## 17.1.42 (2019-04-23)
362
-
363
- ### Common
364
-
365
- #### Bug Fixes
366
-
367
- - #232746, #232286, #233615 , #233849, #233946 - Fixed `template` properties are not working in `production mode` issue.
368
-
369
- ## 17.1.38 (2019-03-29)
370
-
371
- ### Common
372
-
373
- #### Bug Fixes
374
-
375
- - Fixed `CheckBox` not disabling issue.
376
- - Fixed binding not working properly while using `ngx-tanslate` pipe.
377
-
378
- ## 17.1.32-beta (2019-03-13)
379
-
380
- ### Common
381
-
382
- #### Bug Fixes
383
-
384
- - Fixed `CheckBox` not disabling issue.
385
-
386
- ## 17.1.1-beta (2019-01-29)
387
-
388
- ### Common
389
-
390
- #### Bug Fixes
391
-
392
- - Fixed ng-dirty class adding issue when patching object value to control.
393
-
394
- ## 16.4.45 (2019-01-02)
395
-
396
- ### Common
397
-
398
- #### Bug Fixes
399
-
400
- - Fixed `CustomPlacement` typing issue.
401
-
402
- ## 16.3.32 (2018-11-13)
403
-
404
- ### Common
405
-
406
- #### New Features
407
-
408
- - Provided support for Angular version 7.
409
-
410
- ## 16.3.17 (2018-09-12)
411
-
412
- ### Common
413
-
414
- #### New Features
415
-
416
- - Provided Angular [Schematics](https://blog.angular.io/schematics-an-introduction-dc1dfbc2a2b2) support for our Essential JS 2 Angular suite, which performs the below,
417
- - Installs the specific package.
418
- - Import the required modules in `app.module.ts`.
419
-
420
- ## 16.2.49 (2018-08-21)
421
-
422
- ### Common
423
-
424
- #### Bug Fixes
425
-
426
- - Provided renderer support.
427
-
428
- ## 16.2.48 (2018-08-14)
429
-
430
- ### Common
431
-
432
- #### Bug Fixes
433
-
434
- - Fixed Angular `attribute` issue.
435
-
436
- ## 16.2.47 (2018-08-09)
437
-
438
- ### Common
439
-
440
- #### Bug Fixes
441
-
442
- - Provided renderer support.
443
- - Fixed Form component's reset issue.
444
-
445
- ## 16.2.46 (2018-07-30)
446
-
447
- ### Common
448
-
449
- #### Bug Fixes
450
-
451
- - Resolved view encapsulation issue.
452
- - Resolved `onpropertychange` not triggered issue.
453
- - Resolved issue in `EventArgs` passing.
454
-
455
- ## 16.2.45 (2018-07-17)
456
-
457
- ### Common
458
-
459
- #### New Features
460
-
461
- - Provided React 16.4.1 compatibility support
462
-
463
- ## 16.2.43 (2018-07-03)
464
-
465
- ### Common
466
-
467
- #### Bug Fixes
468
-
469
- - Cleared `peerDependencies` warning.
470
-
471
- ## 16.2.41 (2018-06-25)
472
-
473
- ### common
474
-
475
- #### New Features
476
-
477
- - Provided Angular 6 compatibility support
478
-
479
- #### Bug Fixes
480
-
481
- - Cleared `peerDependencies` warning.
482
-
483
- #### Breaking Changes
484
-
485
- - The split buttons package used by the component Colour Picker, so the split buttons package is a dependency for the inputs package.
486
-
487
- ## 16.1.41 (2018-05-09)
488
-
489
- ### common
490
-
491
- #### Bug Fixes
492
-
493
- - Propagate touch on `blur` issue is fixed.
494
-
495
- ## 16.1.38 (2018-05-02)
496
-
497
- ### Common
498
-
499
- #### Bug Fixes
500
-
501
- - Now, Date parser will return the `null` value while parsing invalid date string.
502
- - ng base destroy issue is fixed.
503
-
504
- ## 16.1.37 (2018-04-24)
505
-
506
- ### Common
507
-
508
- #### Bug Fixes
509
-
510
- - Performance related issue, when loading more number of chart in angular has been fixed.
511
-
512
- ## 16.1.35 (2018-04-17)
513
-
514
- ### Common
515
-
516
- #### Bug Fixes
517
-
518
- - Adding `annotation` dynamically to the chart is now working.
519
-
520
- ## 16.1.34 (2018-04-10)
521
-
522
- ### Common
523
-
524
- #### Bug Fixes
525
-
526
- - Issue with Calendar date generation in `UTC+00:00` time zone has been fixed.
527
-
528
- ## 16.1.33 (2018-04-03)
529
-
530
- ### Common
531
-
532
- #### Bug Fixes
533
-
534
- - Rendering issue on going with `UTC+00:00` time zone has been fixed.
535
-
536
- ## 16.1.32 (2018-03-29)
537
-
538
- ### Common
539
-
540
- #### Bug Fixes
541
-
542
- - Fixed C# number formatting issue.
543
-
544
- #### New Features
545
-
546
- - Generating page based unique id for components.
547
-
548
- ## 16.1.30 (2018-03-20)
549
-
550
- ### Common
551
-
552
- #### Bug Fixes
553
-
554
- - Fixed content security policy issue.
555
-
556
- ## 16.1.29 (2018-03-13)
557
-
558
- ### Common
559
-
560
- #### Bug Fixes
561
-
562
- - `Width` property with string type value issue has been fixed.
563
-
564
- ## 16.1.28 (2018-03-09)
565
-
566
- ### Common
567
-
568
- #### Bug Fixes
569
-
570
- - `boolean` data is not supported in list generation issue has been fixed.
571
-
572
- ## 16.1.24
573
-
574
- ### Common
575
-
576
- #### Breaking Changes
577
-
578
- - Changed the Angular component directive prefix as `ejs-[ComponentName]`.
579
-
580
- #### New Features
581
-
582
- - High contrast theme support.
583
-
584
- ## 16.1.24 (2018-02-22)
585
-
586
- ### common
587
-
588
- #### New Features
589
-
590
- - Angular Universal support added
591
- - Added support for SVG and PDF export.
592
-
593
- #### Bug Fixes
594
-
595
- - Resolved `clearTemplate` issue.
596
-
597
- #### Breaking Changes
598
-
599
- - Tag prefix for Angular components is changed from `ej` to `ejs`. For example, `ej-grid` is changed to `ejs-grid`.
600
-
601
- ## 15.4.30-preview (2018-02-14)
602
-
603
- ### common
604
-
605
- #### Bug Fixes
606
-
607
- - Fixed Form component's expression changed on template issue.
608
-
609
- ## 15.4.27-preview (2018-01-30)
610
-
611
- ### common
612
-
613
- #### Bug Fixes
614
-
615
- - Fixed Form component's disabling issue.
616
-
617
- ## 15.4.26-preview (2018-01-23)
618
-
619
- ### common
620
-
621
- #### Bug Fixes
622
-
623
- - Resolved `reactive form reset` issue.
624
-
625
- ## 15.4.24-preview (2018-01-10)
626
-
627
- ### Common
628
-
629
- #### Bug Fixes
630
-
631
- - `data-value` not updated properly for array of string or number inputs bug fixed.
632
-
633
- ## 15.4.23-preview (2017-12-27)
634
-
635
- ### common
636
-
637
- #### Bug Fixes
638
-
639
- - Resolved `this.propagateTouch is not a function` console error.
640
-
641
- #### Breaking Changes
642
-
643
- - Modified the module bundle file name for ES6 bundling.
644
-
645
- #### New Features
646
-
647
- - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
648
-
649
- ## 15.4.22-preview (2017-12-14)
650
-
651
- ### common
652
-
653
- #### Bug Fixes
654
-
655
- - Grouped radio button `ngModel` binding.
656
- - `ngFor` directive not working for component child directive.
657
-
658
- #### New Features
659
-
660
- - Upgraded TypeScript version to 2.6.2
661
-
662
- ## 15.4.21-preview (2017-12-08)
663
-
664
- ### common
665
-
666
- #### Bug Fixes
667
-
668
- - Form component, form option `updateOn` blur.
669
- - Fixed enable persistence issue in angular
670
-
671
- ## 15.4.20-preview (2017-12-01)
672
-
673
- ### Common
674
-
675
- #### New Features
676
-
677
- - Upgraded TypeScript version to 2.6.2
678
-
679
- ## 15.4.19-preview (2017-11-23)
680
-
681
- ### Common
682
-
683
- #### Bug Fixes
684
-
685
- - Fixed script error for invalid culture input in L10 library.
686
-
687
- ## 15.4.18-preview (2017-11-16)
688
-
689
- ### Common
690
-
691
- #### Bug Fixes
692
-
693
- - Removed duplicate injected modules on component refresh.
694
-
695
- ## 15.4.17-preview (2017-11-13)
696
-
697
- Base library provide options to enable following Angular functionalities in Essential JS 2 components.
698
-
699
- - Input and Output Binding
700
- - Angular Templating
701
- - Ahead-Of-Time (AOT) Compilation
702
- - Defining Injectable Modules