@syncfusion/ej2-angular-layouts 34.2.6-ngcc → 34.2.6

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 (48) hide show
  1. package/CHANGELOG.md +614 -0
  2. package/README.md +11 -0
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +23 -0
  5. package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +64 -0
  6. package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +34 -0
  7. package/esm2020/src/dashboard-layout/panels.directive.mjs +72 -0
  8. package/esm2020/src/index.mjs +14 -0
  9. package/esm2020/src/splitter/panesettings.directive.mjs +66 -0
  10. package/esm2020/src/splitter/splitter-all.module.mjs +23 -0
  11. package/esm2020/src/splitter/splitter.component.mjs +64 -0
  12. package/esm2020/src/splitter/splitter.module.mjs +34 -0
  13. package/esm2020/src/timeline/items.directive.mjs +58 -0
  14. package/esm2020/src/timeline/timeline-all.module.mjs +23 -0
  15. package/esm2020/src/timeline/timeline.component.mjs +83 -0
  16. package/esm2020/src/timeline/timeline.module.mjs +34 -0
  17. package/esm2020/syncfusion-ej2-angular-layouts.mjs +5 -0
  18. package/fesm2015/syncfusion-ej2-angular-layouts.mjs +530 -0
  19. package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +1 -0
  20. package/fesm2020/syncfusion-ej2-angular-layouts.mjs +530 -0
  21. package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +1 -0
  22. package/package.json +20 -7
  23. package/public_api.d.ts +1 -1
  24. package/src/dashboard-layout/dashboardlayout-all.module.d.ts +11 -5
  25. package/src/dashboard-layout/dashboardlayout.component.d.ts +42 -39
  26. package/src/dashboard-layout/dashboardlayout.module.d.ts +12 -5
  27. package/src/dashboard-layout/panels.directive.d.ts +107 -102
  28. package/src/index.d.ts +13 -13
  29. package/src/splitter/panesettings.directive.d.ts +82 -77
  30. package/src/splitter/splitter-all.module.d.ts +11 -5
  31. package/src/splitter/splitter.component.d.ts +42 -39
  32. package/src/splitter/splitter.module.d.ts +12 -5
  33. package/src/timeline/items.directive.d.ts +64 -59
  34. package/src/timeline/timeline-all.module.d.ts +11 -5
  35. package/src/timeline/timeline.component.d.ts +49 -46
  36. package/src/timeline/timeline.module.d.ts +12 -5
  37. package/syncfusion-ej2-angular-layouts.d.ts +5 -0
  38. package/@syncfusion/ej2-angular-layouts.es5.js +0 -726
  39. package/@syncfusion/ej2-angular-layouts.es5.js.map +0 -1
  40. package/@syncfusion/ej2-angular-layouts.js +0 -663
  41. package/@syncfusion/ej2-angular-layouts.js.map +0 -1
  42. package/LICENSE +0 -10
  43. package/dist/ej2-angular-layouts.umd.js +0 -763
  44. package/dist/ej2-angular-layouts.umd.js.map +0 -1
  45. package/dist/ej2-angular-layouts.umd.min.js +0 -11
  46. package/dist/ej2-angular-layouts.umd.min.js.map +0 -1
  47. package/ej2-angular-layouts.d.ts +0 -7
  48. package/ej2-angular-layouts.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,614 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 34.2.3 (2026-08-11)
6
+
7
+ ### Dashboard Layout
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#I851020` - Resolved the `accessibility` related issue in Dashboard Layout.
12
+
13
+ ## 25.1.35 (2024-03-15)
14
+
15
+ ### Timeline
16
+
17
+ The Timeline control enables users to display a series of data in chronological order, providing a visually compelling and user-friendly experience. This showcases user activities, tracking progress, narrating historical timelines, and more.
18
+
19
+ The Timeline component enables users to display a series of data in chronological order, providing a visually compelling and user-friendly experience. This showcases user activities, tracking progress, narrating historical timelines, and more.
20
+
21
+ #### Key features
22
+
23
+ - **Orientation** - Display items in a horizontal or vertical orientation.
24
+
25
+ - **Opposite content** - Display additional information opposite to the item content.
26
+
27
+ - **Items alignment** - Items' content and opposite content can be aligned - before, after, alternate, or alternate reverse.
28
+
29
+ - **Reverse timeline** - Shows the timeline items in the reverse order.
30
+
31
+ - **Templates** - Customize the default appearance, including styling the dot item, templated content, and more.
32
+
33
+ ## 20.4.48 (2023-02-01)
34
+
35
+ ### Splitter
36
+
37
+ #### Bug Fixes
38
+
39
+ - `#I425916` - Fixed issue with Expand and Collapse event triggering in splitter.
40
+
41
+ ## 20.4.38 (2022-12-21)
42
+
43
+ ### Dashboard Layout
44
+
45
+ #### Bug Fixes
46
+
47
+ - `#I395833` - The issue with the "Facing accessibility testing failure in the Dashboard Layout component" has been resolved.
48
+
49
+ ## 20.2.46 (2022-08-30)
50
+
51
+ ### Dashboard Layout
52
+
53
+ #### Bug Fixes
54
+
55
+ - `#I396820` - The issue with "minSizeX and minSizeY properties not working while using cellSpacing in Dashboard Layout component" has been resolved.
56
+
57
+ ## 20.2.39 (2022-07-19)
58
+
59
+ ### Dashboard Layout
60
+
61
+ #### Bug Fixes
62
+
63
+ - `#F171906` - The issue with "Adding dynamic panels after drag causes error in Dashboard Layout" has been resolved.
64
+
65
+ ## 20.2.38 (2022-07-12)
66
+
67
+ ### Splitter
68
+
69
+ #### Bug Fixes
70
+
71
+ - `#F385792` - The issues with the Splitter's first pane resizing to the right and the pane resizing not working properly has been resolved.
72
+
73
+ ## 20.1.61 (2022-06-21)
74
+
75
+ ### Dashboard Layout
76
+
77
+ #### Bug Fixes
78
+
79
+ - `#I382649` - The issue with "When resizing the page to less than `mediaQuery` value then the height was not proper for the Dashboard Layout component" has been resolved.
80
+
81
+ ## 20.1.58 (2022-05-31)
82
+
83
+ ### Splitter
84
+
85
+ #### Bug Fixes
86
+
87
+ - `#F174876` - Now, collapsing the splitter pane after resizing the pane and when the `enablePersistance` API is set to true works properly.
88
+
89
+ ## 19.3.43 (2021-09-30)
90
+
91
+ ### Splitter
92
+
93
+ #### Bug Fixes
94
+
95
+ - `#I341650` - The issue with "Resize event handler is not properly un-wired, when destroying the splitter component" has been resolved.
96
+
97
+ ## 19.2.48 (2021-07-20)
98
+
99
+ ### Splitter
100
+
101
+ #### Bug Fixes
102
+
103
+ - `#I334749` - Resolved the exception raised, when resizing the window with splitter rendered in the page.
104
+
105
+ ## 19.1.63 (2021-05-13)
106
+
107
+ ### Splitter
108
+
109
+ - Provided `enablePersistence` property to persists the component's state between page reloads.
110
+
111
+ - Provided `enableReversePanes` property to reorder the splitter panes.
112
+
113
+ ## 19.1.58 (2021-04-27)
114
+
115
+ ### Splitter
116
+
117
+ #### Bug Fixes
118
+
119
+ - `#F163365` - The issue with "When the first pane is collapsed, the size of the second pane is not properly set" has been resolved.
120
+
121
+ ## 19.1.55 (2021-04-06)
122
+
123
+ ### Splitter
124
+
125
+ #### Bug Fixes
126
+
127
+ - `#320479` - The issue with "`addPane` public method does not work when rendered with the nested splitter" has been resolved.
128
+
129
+ ## 19.1.54 (2021-03-30)
130
+
131
+ ### Dashboard Layout
132
+
133
+ #### Bug Fixes
134
+
135
+ - `#312164` - The issue with "Newly added dashboard panels hide while switch between mobile mode to normal mode" has been resolved.
136
+
137
+ - `#310199` - The issue "Unable to resize when rendering multiple panels" has been resolved.
138
+
139
+ ### Splitter
140
+
141
+ #### Bug Fixes
142
+
143
+ - `#315820, #313937, #316711` - The issue with "Console error occurs on resizing when the splitter is rendered" has been resolved.
144
+
145
+ - `#F163365` - The issue with "When the first pane is collapsed, the size of the second pane is not properly set" has been resolved.
146
+
147
+ - `#315820, #313937, #316711` - The issue with "Console error occurs on resizing when the splitter is rendered" has been resolved.
148
+
149
+ ## 18.4.30 (2020-12-17)
150
+
151
+ ### Dashboard Layout
152
+
153
+ #### Bug Fixes
154
+
155
+ - `F159402` - The issue with "The Syncfusion components are not rendered inside the Dashboard Layout while using the selector template" has been resolved.
156
+
157
+ - `F159797` - Now, the Dashboard Layout component is also available in the Theme studio.
158
+
159
+ ## 18.3.53 (2020-12-08)
160
+
161
+ ### Dashboard Layout
162
+
163
+ #### Bug Fixes
164
+
165
+ - `#303968` - The issue with "Script error occur in DashboardLayout, when updating its parent props using setState method in React platform" has been fixed.
166
+
167
+ ## 18.3.48 (2020-11-11)
168
+
169
+ ### Dashboard Layout
170
+
171
+ #### Bug Fixes
172
+
173
+ - `#F159413` - The issue with "Script error occurs when dynamically updating the panels using V-for" has been fixed.
174
+
175
+ ## 18.3.44 (2020-10-27)
176
+
177
+ ### Dashboard Layout
178
+
179
+ #### Bug Fixes
180
+
181
+ - `#292627` - The issue "Panels are overlapped with each other during window resize" has been fixed.
182
+
183
+ ## 18.3.40 (2020-10-13)
184
+
185
+ ### Dashboard Layout
186
+
187
+ #### Bug Fixes
188
+
189
+ - `#271335` - The support for rendering panels with their respective column size in the mobile view has been provided.
190
+
191
+ ## 18.3.35 (2020-10-01)
192
+
193
+ ### Dashboard Layout
194
+
195
+ #### Bug Fixes
196
+
197
+ - `#284795, #286988, #291408, #291630` - The issue with rendering panels when using angular template has been fixed.
198
+
199
+ - `#282904` - The issue with the empty space while setting allowFloating as true has been resolved.
200
+
201
+ - `#271335` - The support for rendering panels with their respective column size in the mobile view has been provided.
202
+
203
+ ## 18.2.58 (2020-09-15)
204
+
205
+ ### Splitter
206
+
207
+ #### Bug Fixes
208
+
209
+ - `#I288982` - The issue with "Resizing feature is not working properly when the splitter’s height is more than the window" has been resolved.
210
+
211
+ ## 18.2.46 (2020-07-21)
212
+
213
+ ### Dashboard Layout
214
+
215
+ #### Bug Fixes
216
+
217
+ - `#278405` - Issue with Dashboard element dimensions not updated properly based on the parent element dimensions has been resolved.
218
+
219
+ ## 18.2.44 (2020-07-07)
220
+
221
+ ### Dashboard Layout
222
+
223
+ #### Bug Fixes
224
+
225
+ - `#276817` - Panel content will now get persisted on page reload with persistence enabled.
226
+
227
+ ## 18.1.52 (2020-05-13)
228
+
229
+ ### Dashboard Layout
230
+
231
+ #### New Features
232
+
233
+ - `#269881` - Provided support to restrict the dragging functionality of an individual panel by adding `e-drag-restrict` cssClass to the panel.
234
+
235
+ ### Splitter
236
+
237
+ #### Bug Fixes
238
+
239
+ - `#273127` - Resolved the issue "Splitter resizing does not work as expected in the internet explorer browser".
240
+
241
+ - `F153749` - Issue with "Splitter expand and collapse action doesn't work as expected after the pane resize" has been resolved.
242
+
243
+ ## 18.1.48 (2020-05-05)
244
+
245
+ ### Dashboard Layout
246
+
247
+ #### Bug Fixes
248
+
249
+ - `#275109` - Issue with floating the panels in inline rendering has been resolved.
250
+
251
+ ## 18.1.46 (2020-04-28)
252
+
253
+ ### Splitter
254
+
255
+ #### Bug Fixes
256
+
257
+ - `#272732` -The issue with Splitter pane size decreased by resize of window has been resolved.
258
+
259
+ ## 18.1.45 (2020-04-21)
260
+
261
+ ### Splitter
262
+
263
+ #### Bug Fixes
264
+
265
+ -`#272515`, `#F153399` - Resolved the issue with nested splitter resizing is not working properly.
266
+
267
+ - Resolved the alignment issue with expand and collapse icons in the internet explorer browser.
268
+
269
+ ## 18.1.44 (2020-04-14)
270
+
271
+ ### Splitter
272
+
273
+ #### Bug Fixes
274
+
275
+ - `#269482` - Resolved the expand and collapse icons hidden issue when panes are expanded or collapsed.
276
+
277
+ ### Dashboard Layout
278
+
279
+ #### Bug Fixes
280
+
281
+ - `#271938` - The issue with `The Dashboard layout resize icon style overrides the RTE component image style` has been resolved.
282
+
283
+ ## 17.4.51 (2020-02-25)
284
+
285
+ ### Splitter
286
+
287
+ #### Bug Fixes
288
+
289
+ - `F11801` - Resolved the script errors thrown when performing keyboard action in single pane.
290
+
291
+ ### Dashboard Layout
292
+
293
+ #### Bug Fixes
294
+
295
+ - `#263850` - The issue with the invalid cursor that is displayed in panel content or header, which is not in draggable element has been resolved.
296
+
297
+ ## 17.4.50 (2020-02-18)
298
+
299
+ ### Splitter
300
+
301
+ #### Bug Fixes
302
+
303
+ - `#263496` - Resolved the issue with the splitter paneSettings `collapsed` property that is not updated properly when the panes are expanded or collapsed.
304
+
305
+ ### Dashboard Layout
306
+
307
+ #### New Features
308
+
309
+ - `#262900` - The `change` event now triggers when a panel is resized and then the adjacent panel position changes.
310
+
311
+ ## 17.4.47 (2020-02-05)
312
+
313
+ ### Splitter
314
+
315
+ #### Bug Fixes
316
+
317
+ - `#261892` - Issue with removePane public method does not update the value of the paneSettings property.
318
+
319
+ ### Dashboard Layout
320
+
321
+ #### Bug Fixes
322
+
323
+ - `#262675` - Provided the support to prevent the XSS attacks using the `enableHtmlSanitizer` property.
324
+
325
+ ## 17.4.46 (2020-01-30)
326
+
327
+ ### Dashboard Layout
328
+
329
+ #### Bug Fixes
330
+
331
+ - `#F150686` - The issue "Panels overlapping when you drag from top to bottom" has been resolved.
332
+
333
+ ### Splitter
334
+
335
+ #### Bug Fixes
336
+
337
+ - `#261757` - The issue, "cssClass not set into pane when you add the pane using the addPane method" has been resolved.
338
+
339
+ - `#261829` - Keyboard interaction issue with input components has been resolved.
340
+
341
+ ## 17.4.44 (2021-01-21)
342
+
343
+ ### Dashboard Layout
344
+
345
+ #### Bug Fixes
346
+
347
+ - Resolved the script error while destroying the dashboard layout component in IE11 browser.
348
+
349
+ ### Splitter
350
+
351
+ #### Bug Fixes
352
+
353
+ - `#I261044` - Issue with expand and collapse icons button type has been resolved.
354
+
355
+ ## 17.4.43 (2020-01-14)
356
+
357
+ ### Splitter
358
+
359
+ #### Bug Fixes
360
+
361
+ - `#255853` - Resolved the issue "Splitter resizing does not work as expected if it has an iframe element".
362
+
363
+ - `#259892` - Resolved the issue "Splitter pane is not properly resized when it has percentage pane size".
364
+
365
+ - `#258254` - Resolved the issue with the public method `addPane` that does not work when rendered a single pane.
366
+
367
+ ## 17.4.41 (2020-01-07)
368
+
369
+ ### Dashboard Layout
370
+
371
+ #### Bug Fixes
372
+
373
+ - `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
374
+
375
+ ### Splitter
376
+
377
+ #### Bug Fixes
378
+
379
+ - `#254606` - Web accessibility issues resolved.
380
+
381
+ #### New Features
382
+
383
+ - Provided `Keyboard navigation support` for splitter. The available keyboard shortcuts are,
384
+
385
+ - `Up Arrow` - will move separator towards up in vertical splitter.
386
+ - `Down Arrow` - will move separator towards down in vertical splitter.
387
+ - `Right Arrow` - will move separator towards right in horizontal splitter.
388
+ - `Left Arrow` - will move separator towards left in horizontal splitter.
389
+ - `Enter key` - will toggle nearest collapsible pane of focused separator.
390
+
391
+ ## 17.4.40 (2019-12-24)
392
+
393
+ ### Dashboard Layout
394
+
395
+ #### Bug Fixes
396
+
397
+ - Panels overlapping issue "while dragging the panels in bootstrap theme" has been resolved.
398
+
399
+ ## 17.4.39 (2019-12-17)
400
+
401
+ ### Splitter
402
+
403
+ #### New Features
404
+
405
+ - `#255003` - Provided the cssClass property to individual panes also to customize it in the Splitter.
406
+
407
+ ## 17.3.29 (2019-11-26)
408
+
409
+ ### Dashboard Layout
410
+
411
+ #### Bug Fixes
412
+
413
+ - `#256123` - Issue with removing `e-dragging` class after panel resize has been resolved.
414
+
415
+ ### Splitter
416
+
417
+ #### Bug Fixes
418
+
419
+ - `#I255141` -Resolved the issue with separator's visible state when collapsible the last pane .
420
+
421
+ - `#252195` - The alignment issue with expand and collapse icons in the internet explorer browser has been resolved.
422
+
423
+ ## 17.3.28 (2019-11-19)
424
+
425
+ ### Dashboard Layout
426
+
427
+ #### Bug Fixes
428
+
429
+ - `#F149164` - Resolved the issue with panel resizing when more than one Dashboard Layout component is used in a page.
430
+
431
+ ### Splitter
432
+
433
+ #### New Features
434
+
435
+ - `#251791` - Provided the support to use DOM element as pane content by configuring the selector to the content of `paneSettings` property.
436
+
437
+ ## 17.3.27 (2019-11-12)
438
+
439
+ ### Splitter
440
+
441
+ #### Bug Fixes
442
+
443
+ - `#253345` - The Console error thrown when navigating from splitter component to another page has been resolved.
444
+
445
+ - `#252410` - Resolved the issue with collapsing panes when set `collapsed` property as true in Splitter.
446
+
447
+ - `#252410` - Issue with `Expand` public method not working in the splitter has been resolved.
448
+
449
+ - `#252410` - Resolved the interaction issue with expand and collapse pane.
450
+
451
+ ## 17.2.48-beta (2019-08-28)
452
+
453
+ ### Splitter
454
+
455
+ #### Bug Fixes
456
+
457
+ - `#241183` - Issue with "show the expand and collapse arrow on hovering middle of split bar" has been resolved.
458
+
459
+ - `#242579` - Resolved the issue with "Split-bar rendering while change orientation dynamically"
460
+
461
+ - `#243003` - Resolved the issue with enabling expand and collapse arrow based on collapsible property.
462
+
463
+ - `#243007` - The issue "Collapsing and expanding splitter control does not return to original state" has been resolved.
464
+
465
+ - `#244847` - The issue "Split panes are not resized properly on window resizing" has been resolved.
466
+
467
+ ## 17.1.51 (2019-06-11)
468
+
469
+ ### Dashboard Layout
470
+
471
+ #### Bug Fixes
472
+
473
+ - #237417 - Click event of button is not triggering when it is placed inside the panel element of DashboardLayout.
474
+
475
+ ## 17.1.49 (2019-05-29)
476
+
477
+ ### Dashboard Layout
478
+
479
+ #### New Features
480
+
481
+ - #236095 - Support for refresh method has been provided, which allows to refresh the panels.
482
+
483
+ ## 17.1.48 (2019-05-21)
484
+
485
+ ### Dashboard Layout
486
+
487
+ #### Bug Fixes
488
+
489
+ - #144602 - Issue on panel resizing after adding a new panel dynamically has been fixed.
490
+
491
+ ## 17.1.43 (2019-04-30)
492
+
493
+ ### Dashboard Layout
494
+
495
+ #### Bug Fixes
496
+
497
+ - #234604 - Issue with draggable cursor appears on hovering over the panels when dragging is disabled has been fixed.
498
+
499
+ ## 17.1.40 (2019-04-09)
500
+
501
+ ### Dashboard Layout
502
+
503
+ #### Breaking Changes
504
+
505
+ - Renamed the folder within the package from `dashboardlayout` to `dashboard-layout`.
506
+
507
+ ## 17.1.32-beta (2019-03-13)
508
+
509
+ ### Splitter
510
+
511
+ #### Bug Fixes
512
+
513
+ - The issue with not able to set null value value for `cssClass` API has been fixed
514
+
515
+ #### New Features
516
+
517
+ - **Expand and Collapse**: This feature allows you configure and interact with the expand and collapse functionality of splitter.
518
+
519
+ ## 16.4.55 (2019-02-27)
520
+
521
+ ### Splitter
522
+
523
+ #### Bug Fixes
524
+
525
+ - The issue with dynamic update of `paneSettings` has been fixed.
526
+
527
+ ## 16.4.54 (2019-02-19)
528
+
529
+ ### Splitter
530
+
531
+ #### Bug Fixes
532
+
533
+ - Issue with dynamic update of pane content has been fixed
534
+
535
+ ## 16.4.53 (2019-02-13)
536
+
537
+ ### Card
538
+
539
+ #### Bug Fixes
540
+
541
+ - The issue with white background for the Card control has been fixed in Material theme.
542
+
543
+ ## 17.1.1-beta (2019-01-29)
544
+
545
+ ### DashboardLayout
546
+
547
+ The DashboardLayout is a grid structured layout control that helps create a dashboard with panels. Panels hold the UI components and allow resize, reorder, drag-n-drop, remove and add options. This allows users to easily place the components at the desired position within the grid layout.
548
+
549
+ - **Drag and Drop**: Allows drag and drop of panels at the desired location within the dashboard.
550
+ - **Resizing**: Support to resize the panels in any direction as per the requirement.
551
+ - **Floating**: Floats the panels upward when the dragging option is enabled.
552
+ - **Media Query**: Allows the panels to be stacked when the specified resolution is met.
553
+
554
+ ## 16.4.47 (2019-01-16)
555
+
556
+ ### Splitter
557
+
558
+ #### Bug Fixes
559
+
560
+ - The issue with dynamically updating the pane size has been fixed.
561
+
562
+ ## 16.4.44 (2018-12-24)
563
+
564
+ ### Splitter
565
+
566
+ #### New Features
567
+
568
+ - Provided option to configure the splitter and its pane properties such as size, min, max, resizable through data attributes (`data-`).
569
+
570
+ - Included the public methods for add and remove splitter panes.
571
+
572
+ ## 16.4.40-beta (2018-12-10)
573
+
574
+ ### Splitter
575
+
576
+ The Splitter is the layout user interface (UI) which contains multiple resizable panes and separator bar.
577
+
578
+ - **Resizable**: By default, all the panes configured with resizable.
579
+ - **Orientation**: The panes can be oriented horizontally and vertically.
580
+ - **Nested**: Integrate splitter controls inside split pane to create nested layout.
581
+ - **Separator**: Divide the pane with horizontal or vertical line with customizable dimension.
582
+
583
+ ## 16.2.41 (2018-06-25)
584
+
585
+ ### Avatar
586
+
587
+ Avatars are icons or figures representing a particular person, used in popular media formats like images, SVG, font icons, and letters.
588
+
589
+ - **Types** - Provided 2 types of Avatar.
590
+
591
+ - **Sizes** - Supports different sizes to adapt the various application scenario.
592
+
593
+ ### Card
594
+
595
+ The Card is a small container in which user can show defined content in specific structure and it is a flexible and extensible. Card is a pure CSS component built with markup and style.
596
+
597
+ The available key features are
598
+
599
+ - **Header**: Header supports to include title, subtitle along with image.
600
+
601
+ - **Images and Title**: Support to include images with customizable caption positions in it.
602
+
603
+ - **Action Buttons**: Supports to add buttons within the card either in vertical or horizontal alignment.
604
+
605
+ - **Horizontal Card**: Allows to align card elements horizontally and also allows to stack the content vertically within horizontal alignment.## 17.2.28-beta (2019-06-27)
606
+
607
+ ### DashboardLayout
608
+
609
+ The DashboardLayout is a grid structured layout control that helps create a dashboard with panels. Panels hold the UI components and allow resize, reorder, drag-n-drop, remove and add options. This allows users to easily place the components at the desired position within the grid layout.
610
+
611
+ - **Drag and Drop**: Allows drag and drop of panels at the desired location within the dashboard.
612
+ - **Resizing**: Support to resize the panels in any direction as per the requirement.
613
+ - **Floating**: Floats the panels upward when the dragging option is enabled.
614
+ - **Media Query**: Allows the panels to be stacked when the specified resolution is met.
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # ej2-angular-layouts
2
2
 
3
+ > **Using this package with an AI coding agent**
4
+ >
5
+ > Before generating Syncfusion® code, ask your AI coding agent to run the Syncfusion® setup using the following prompt:
6
+ >
7
+ > ```text
8
+ > Set up this project for Syncfusion® before generating code. Fetch and follow the official instructions at https://ai.syncfusion.com/agent-setup/prompt.md, then report the detected platform, installed skill pack, MCP status, and any required licensing action.
9
+ > ```
10
+ > The setup detects your project’s platform and loads the appropriate Syncfusion® skill pack. No Syncfusion® account or MCP key is required to install or read Syncfusion® agent skills.
11
+ >
12
+ > **Platform reference:** [https://ai.syncfusion.com/angular/llms.txt](https://ai.syncfusion.com/angular/llms.txt)
13
+
3
14
  The layout package contains cards, avatars, splitter, timeline and Dashboard Layout components.
4
15
 
5
16
  * The `card` is a small container in which user can show defined content in specific structure.
@@ -0,0 +1,2 @@
1
+ export * from './src/index';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
@@ -0,0 +1,23 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { DashboardLayoutModule } from './dashboardlayout.module';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * NgModule definition for the DashboardLayout component with providers.
7
+ */
8
+ export class DashboardLayoutAllModule {
9
+ }
10
+ DashboardLayoutAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ DashboardLayoutAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, imports: [CommonModule, DashboardLayoutModule], exports: [DashboardLayoutModule] });
12
+ DashboardLayoutAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, providers: [], imports: [[CommonModule, DashboardLayoutModule], DashboardLayoutModule] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, decorators: [{
14
+ type: NgModule,
15
+ args: [{
16
+ imports: [CommonModule, DashboardLayoutModule],
17
+ exports: [
18
+ DashboardLayoutModule
19
+ ],
20
+ providers: []
21
+ }]
22
+ }] });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGFzaGJvYXJkbGF5b3V0LWFsbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZGFzaGJvYXJkLWxheW91dC9kYXNoYm9hcmRsYXlvdXQtYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFHL0MsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBTWpFOztHQUVHO0FBVUgsTUFBTSxPQUFPLHdCQUF3Qjs7cUhBQXhCLHdCQUF3QjtzSEFBeEIsd0JBQXdCLFlBUnZCLFlBQVksRUFBRSxxQkFBcUIsYUFFekMscUJBQXFCO3NIQU1oQix3QkFBd0IsYUFKdkIsRUFFVCxZQU5RLENBQUMsWUFBWSxFQUFFLHFCQUFxQixDQUFDLEVBRTFDLHFCQUFxQjsyRkFNaEIsd0JBQXdCO2tCQVRwQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxxQkFBcUIsQ0FBQztvQkFDOUMsT0FBTyxFQUFFO3dCQUNMLHFCQUFxQjtxQkFDeEI7b0JBQ0QsU0FBUyxFQUFDLEVBRVQ7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFBhbmVsRGlyZWN0aXZlLCBQYW5lbHNEaXJlY3RpdmUgfSBmcm9tICcuL3BhbmVscy5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgRGFzaGJvYXJkTGF5b3V0Q29tcG9uZW50IH0gZnJvbSAnLi9kYXNoYm9hcmRsYXlvdXQuY29tcG9uZW50JztcbmltcG9ydCB7IERhc2hib2FyZExheW91dE1vZHVsZSB9IGZyb20gJy4vZGFzaGJvYXJkbGF5b3V0Lm1vZHVsZSc7XG5cblxuXG5cblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgRGFzaGJvYXJkTGF5b3V0IGNvbXBvbmVudCB3aXRoIHByb3ZpZGVycy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBEYXNoYm9hcmRMYXlvdXRNb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgRGFzaGJvYXJkTGF5b3V0TW9kdWxlXG4gICAgXSxcbiAgICBwcm92aWRlcnM6W1xuICAgICAgICBcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIERhc2hib2FyZExheW91dEFsbE1vZHVsZSB7IH0iXX0=