@syncfusion/ej2-navigations 29.2.4 → 29.2.7

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 (80) hide show
  1. package/dist/ej2-navigations.min.js +2 -2
  2. package/dist/ej2-navigations.umd.min.js +2 -2
  3. package/dist/ej2-navigations.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-navigations.es2015.js +44 -6
  5. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es5.js +45 -6
  7. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  8. package/dist/global/ej2-navigations.min.js +2 -2
  9. package/dist/global/ej2-navigations.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +8 -8
  12. package/src/common/menu-base.js +13 -3
  13. package/src/tab/tab.js +5 -1
  14. package/src/treeview/treeview-model.d.ts +7 -0
  15. package/src/treeview/treeview.d.ts +7 -0
  16. package/src/treeview/treeview.js +27 -2
  17. package/styles/bds-lite.css +15 -0
  18. package/styles/bds.css +15 -0
  19. package/styles/bootstrap-dark-lite.css +15 -0
  20. package/styles/bootstrap-dark.css +15 -0
  21. package/styles/bootstrap-lite.css +15 -0
  22. package/styles/bootstrap.css +15 -0
  23. package/styles/bootstrap4-lite.css +15 -0
  24. package/styles/bootstrap4.css +15 -0
  25. package/styles/bootstrap5-dark-lite.css +15 -0
  26. package/styles/bootstrap5-dark.css +15 -0
  27. package/styles/bootstrap5-lite.css +15 -0
  28. package/styles/bootstrap5.3-lite.css +15 -0
  29. package/styles/bootstrap5.3.css +15 -0
  30. package/styles/bootstrap5.css +15 -0
  31. package/styles/fabric-dark-lite.css +15 -0
  32. package/styles/fabric-dark.css +15 -0
  33. package/styles/fabric-lite.css +15 -0
  34. package/styles/fabric.css +15 -0
  35. package/styles/fluent-dark-lite.css +15 -0
  36. package/styles/fluent-dark.css +15 -0
  37. package/styles/fluent-lite.css +15 -0
  38. package/styles/fluent.css +15 -0
  39. package/styles/fluent2-lite.css +15 -0
  40. package/styles/fluent2.css +15 -0
  41. package/styles/highcontrast-light-lite.css +15 -0
  42. package/styles/highcontrast-light.css +15 -0
  43. package/styles/highcontrast-lite.css +15 -0
  44. package/styles/highcontrast.css +15 -0
  45. package/styles/material-dark-lite.css +15 -0
  46. package/styles/material-dark.css +15 -0
  47. package/styles/material-lite.css +15 -0
  48. package/styles/material.css +15 -0
  49. package/styles/material3-dark-lite.css +15 -0
  50. package/styles/material3-dark.css +15 -0
  51. package/styles/material3-lite.css +15 -0
  52. package/styles/material3.css +15 -0
  53. package/styles/tailwind-dark-lite.css +15 -0
  54. package/styles/tailwind-dark.css +15 -0
  55. package/styles/tailwind-lite.css +15 -0
  56. package/styles/tailwind.css +15 -0
  57. package/styles/tailwind3-lite.css +15 -0
  58. package/styles/tailwind3.css +15 -0
  59. package/styles/toolbar/_layout.scss +21 -0
  60. package/styles/toolbar/bds.css +15 -0
  61. package/styles/toolbar/bootstrap-dark.css +15 -0
  62. package/styles/toolbar/bootstrap.css +15 -0
  63. package/styles/toolbar/bootstrap4.css +15 -0
  64. package/styles/toolbar/bootstrap5-dark.css +15 -0
  65. package/styles/toolbar/bootstrap5.3.css +15 -0
  66. package/styles/toolbar/bootstrap5.css +15 -0
  67. package/styles/toolbar/fabric-dark.css +15 -0
  68. package/styles/toolbar/fabric.css +15 -0
  69. package/styles/toolbar/fluent-dark.css +15 -0
  70. package/styles/toolbar/fluent.css +15 -0
  71. package/styles/toolbar/fluent2.css +15 -0
  72. package/styles/toolbar/highcontrast-light.css +15 -0
  73. package/styles/toolbar/highcontrast.css +15 -0
  74. package/styles/toolbar/material-dark.css +15 -0
  75. package/styles/toolbar/material.css +15 -0
  76. package/styles/toolbar/material3-dark.css +15 -0
  77. package/styles/toolbar/material3.css +15 -0
  78. package/styles/toolbar/tailwind-dark.css +15 -0
  79. package/styles/toolbar/tailwind.css +15 -0
  80. package/styles/toolbar/tailwind3.css +15 -0
@@ -1643,6 +1643,9 @@
1643
1643
  min-width: 28px;
1644
1644
  padding: 4px;
1645
1645
  }
1646
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
1647
+ pointer-events: none;
1648
+ }
1646
1649
  .e-toolbar .e-toolbar-item.e-separator {
1647
1650
  margin: 7px 4px;
1648
1651
  min-height: 24px;
@@ -1658,6 +1661,9 @@
1658
1661
  .e-toolbar .e-toolbar-item > * {
1659
1662
  text-overflow: ellipsis;
1660
1663
  }
1664
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
1665
+ pointer-events: auto;
1666
+ }
1661
1667
  .e-toolbar .e-toolbar-item.e-hidden {
1662
1668
  display: none;
1663
1669
  }
@@ -1820,6 +1826,9 @@
1820
1826
  min-width: 100%;
1821
1827
  text-overflow: ellipsis;
1822
1828
  }
1829
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1830
+ pointer-events: auto;
1831
+ }
1823
1832
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
1824
1833
  min-width: 100%;
1825
1834
  }
@@ -1933,6 +1942,9 @@
1933
1942
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
1934
1943
  height: auto;
1935
1944
  }
1945
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1946
+ pointer-events: auto;
1947
+ }
1936
1948
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
1937
1949
  -ms-flex-item-align: center;
1938
1950
  align-self: center;
@@ -1946,6 +1958,9 @@
1946
1958
  display: -ms-inline-flexbox;
1947
1959
  display: inline-flex;
1948
1960
  }
1961
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
1962
+ pointer-events: auto;
1963
+ }
1949
1964
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
1950
1965
  display: table;
1951
1966
  }
@@ -1326,6 +1326,9 @@
1326
1326
  min-width: 28px;
1327
1327
  padding: 4px;
1328
1328
  }
1329
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
1330
+ pointer-events: none;
1331
+ }
1329
1332
  .e-toolbar .e-toolbar-item.e-separator {
1330
1333
  margin: 7px 4px;
1331
1334
  min-height: 24px;
@@ -1341,6 +1344,9 @@
1341
1344
  .e-toolbar .e-toolbar-item > * {
1342
1345
  text-overflow: ellipsis;
1343
1346
  }
1347
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
1348
+ pointer-events: auto;
1349
+ }
1344
1350
  .e-toolbar .e-toolbar-item.e-hidden {
1345
1351
  display: none;
1346
1352
  }
@@ -1503,6 +1509,9 @@
1503
1509
  min-width: 100%;
1504
1510
  text-overflow: ellipsis;
1505
1511
  }
1512
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1513
+ pointer-events: auto;
1514
+ }
1506
1515
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
1507
1516
  min-width: 100%;
1508
1517
  }
@@ -1616,6 +1625,9 @@
1616
1625
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
1617
1626
  height: auto;
1618
1627
  }
1628
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1629
+ pointer-events: auto;
1630
+ }
1619
1631
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
1620
1632
  -ms-flex-item-align: center;
1621
1633
  align-self: center;
@@ -1629,6 +1641,9 @@
1629
1641
  display: -ms-inline-flexbox;
1630
1642
  display: inline-flex;
1631
1643
  }
1644
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
1645
+ pointer-events: auto;
1646
+ }
1632
1647
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
1633
1648
  display: table;
1634
1649
  }
@@ -1643,6 +1643,9 @@
1643
1643
  min-width: 28px;
1644
1644
  padding: 4px;
1645
1645
  }
1646
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
1647
+ pointer-events: none;
1648
+ }
1646
1649
  .e-toolbar .e-toolbar-item.e-separator {
1647
1650
  margin: 7px 4px;
1648
1651
  min-height: 24px;
@@ -1658,6 +1661,9 @@
1658
1661
  .e-toolbar .e-toolbar-item > * {
1659
1662
  text-overflow: ellipsis;
1660
1663
  }
1664
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
1665
+ pointer-events: auto;
1666
+ }
1661
1667
  .e-toolbar .e-toolbar-item.e-hidden {
1662
1668
  display: none;
1663
1669
  }
@@ -1820,6 +1826,9 @@
1820
1826
  min-width: 100%;
1821
1827
  text-overflow: ellipsis;
1822
1828
  }
1829
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1830
+ pointer-events: auto;
1831
+ }
1823
1832
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
1824
1833
  min-width: 100%;
1825
1834
  }
@@ -1933,6 +1942,9 @@
1933
1942
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
1934
1943
  height: auto;
1935
1944
  }
1945
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1946
+ pointer-events: auto;
1947
+ }
1936
1948
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
1937
1949
  -ms-flex-item-align: center;
1938
1950
  align-self: center;
@@ -1946,6 +1958,9 @@
1946
1958
  display: -ms-inline-flexbox;
1947
1959
  display: inline-flex;
1948
1960
  }
1961
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
1962
+ pointer-events: auto;
1963
+ }
1949
1964
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
1950
1965
  display: table;
1951
1966
  }
@@ -1290,6 +1290,9 @@
1290
1290
  min-width: 28px;
1291
1291
  padding: 8px 4px;
1292
1292
  }
1293
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
1294
+ pointer-events: none;
1295
+ }
1293
1296
  .e-toolbar .e-toolbar-item.e-separator {
1294
1297
  margin: 12px 4px;
1295
1298
  min-height: 24px;
@@ -1305,6 +1308,9 @@
1305
1308
  .e-toolbar .e-toolbar-item > * {
1306
1309
  text-overflow: ellipsis;
1307
1310
  }
1311
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
1312
+ pointer-events: auto;
1313
+ }
1308
1314
  .e-toolbar .e-toolbar-item.e-hidden {
1309
1315
  display: none;
1310
1316
  }
@@ -1467,6 +1473,9 @@
1467
1473
  min-width: 100%;
1468
1474
  text-overflow: ellipsis;
1469
1475
  }
1476
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1477
+ pointer-events: auto;
1478
+ }
1470
1479
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
1471
1480
  min-width: 100%;
1472
1481
  }
@@ -1580,6 +1589,9 @@
1580
1589
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
1581
1590
  height: auto;
1582
1591
  }
1592
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1593
+ pointer-events: auto;
1594
+ }
1583
1595
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
1584
1596
  -ms-flex-item-align: center;
1585
1597
  align-self: center;
@@ -1593,6 +1605,9 @@
1593
1605
  display: -ms-inline-flexbox;
1594
1606
  display: inline-flex;
1595
1607
  }
1608
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
1609
+ pointer-events: auto;
1610
+ }
1596
1611
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
1597
1612
  display: table;
1598
1613
  }
@@ -1608,6 +1608,9 @@
1608
1608
  min-width: 28px;
1609
1609
  padding: 8px 4px;
1610
1610
  }
1611
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
1612
+ pointer-events: none;
1613
+ }
1611
1614
  .e-toolbar .e-toolbar-item.e-separator {
1612
1615
  margin: 12px 4px;
1613
1616
  min-height: 24px;
@@ -1623,6 +1626,9 @@
1623
1626
  .e-toolbar .e-toolbar-item > * {
1624
1627
  text-overflow: ellipsis;
1625
1628
  }
1629
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
1630
+ pointer-events: auto;
1631
+ }
1626
1632
  .e-toolbar .e-toolbar-item.e-hidden {
1627
1633
  display: none;
1628
1634
  }
@@ -1785,6 +1791,9 @@
1785
1791
  min-width: 100%;
1786
1792
  text-overflow: ellipsis;
1787
1793
  }
1794
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1795
+ pointer-events: auto;
1796
+ }
1788
1797
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
1789
1798
  min-width: 100%;
1790
1799
  }
@@ -1898,6 +1907,9 @@
1898
1907
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
1899
1908
  height: auto;
1900
1909
  }
1910
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
1911
+ pointer-events: auto;
1912
+ }
1901
1913
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
1902
1914
  -ms-flex-item-align: center;
1903
1915
  align-self: center;
@@ -1911,6 +1923,9 @@
1911
1923
  display: -ms-inline-flexbox;
1912
1924
  display: inline-flex;
1913
1925
  }
1926
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
1927
+ pointer-events: auto;
1928
+ }
1914
1929
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
1915
1930
  display: table;
1916
1931
  }
@@ -235,6 +235,11 @@
235
235
  padding: $tbar-item-nrml-padding;
236
236
  }
237
237
 
238
+ &:not(.e-separator):not(.e-spacer),
239
+ &.e-overlay > * {
240
+ pointer-events: none;
241
+ }
242
+
238
243
  &.e-separator {
239
244
  margin: $tbar-separator-nrml-mrgn;
240
245
  min-height: $tbar-separator-nrml-minheight;
@@ -262,6 +267,10 @@
262
267
  text-overflow: ellipsis;
263
268
  }
264
269
 
270
+ &:not(.e-overlay) > * {
271
+ pointer-events: auto;
272
+ }
273
+
265
274
  &.e-hidden {
266
275
  display: none;
267
276
  }
@@ -451,6 +460,10 @@
451
460
  text-overflow: ellipsis;
452
461
  }
453
462
 
463
+ &:not(.e-overlay) > * {
464
+ pointer-events: auto;
465
+ }
466
+
454
467
  &.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
455
468
  min-width: 100%;
456
469
  }
@@ -576,6 +589,10 @@
576
589
  &:not(.e-separator) {
577
590
  height: auto;
578
591
  }
592
+
593
+ &:not(.e-overlay) > * {
594
+ pointer-events: auto;
595
+ }
579
596
  }
580
597
 
581
598
  .e-toolbar-item > * {
@@ -596,6 +613,10 @@
596
613
  &.e-separator:last-of-type {
597
614
  display: inline-flex;
598
615
  }
616
+
617
+ &:not(.e-overlay) > * {
618
+ pointer-events: auto;
619
+ }
599
620
  }
600
621
  }
601
622
 
@@ -295,6 +295,9 @@
295
295
  min-width: 28px;
296
296
  padding: 8px 4px;
297
297
  }
298
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
299
+ pointer-events: none;
300
+ }
298
301
  .e-toolbar .e-toolbar-item.e-separator {
299
302
  margin: 7px 4px;
300
303
  min-height: 24px;
@@ -310,6 +313,9 @@
310
313
  .e-toolbar .e-toolbar-item > * {
311
314
  text-overflow: ellipsis;
312
315
  }
316
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
317
+ pointer-events: auto;
318
+ }
313
319
  .e-toolbar .e-toolbar-item.e-hidden {
314
320
  display: none;
315
321
  }
@@ -472,6 +478,9 @@
472
478
  min-width: 100%;
473
479
  text-overflow: ellipsis;
474
480
  }
481
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
482
+ pointer-events: auto;
483
+ }
475
484
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
476
485
  min-width: 100%;
477
486
  }
@@ -585,6 +594,9 @@
585
594
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
586
595
  height: auto;
587
596
  }
597
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
598
+ pointer-events: auto;
599
+ }
588
600
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
589
601
  -ms-flex-item-align: center;
590
602
  align-self: center;
@@ -598,6 +610,9 @@
598
610
  display: -ms-inline-flexbox;
599
611
  display: inline-flex;
600
612
  }
613
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
614
+ pointer-events: auto;
615
+ }
601
616
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
602
617
  display: table;
603
618
  }
@@ -207,6 +207,9 @@
207
207
  min-width: 30px;
208
208
  padding: 4px 2.5px;
209
209
  }
210
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
211
+ pointer-events: none;
212
+ }
210
213
  .e-toolbar .e-toolbar-item.e-separator {
211
214
  margin: 5.5px 6px;
212
215
  min-height: 27px;
@@ -222,6 +225,9 @@
222
225
  .e-toolbar .e-toolbar-item > * {
223
226
  text-overflow: ellipsis;
224
227
  }
228
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
229
+ pointer-events: auto;
230
+ }
225
231
  .e-toolbar .e-toolbar-item.e-hidden {
226
232
  display: none;
227
233
  }
@@ -384,6 +390,9 @@
384
390
  min-width: 100%;
385
391
  text-overflow: ellipsis;
386
392
  }
393
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
394
+ pointer-events: auto;
395
+ }
387
396
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
388
397
  min-width: 100%;
389
398
  }
@@ -497,6 +506,9 @@
497
506
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
498
507
  height: auto;
499
508
  }
509
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
510
+ pointer-events: auto;
511
+ }
500
512
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
501
513
  -ms-flex-item-align: center;
502
514
  align-self: center;
@@ -510,6 +522,9 @@
510
522
  display: -ms-inline-flexbox;
511
523
  display: inline-flex;
512
524
  }
525
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
526
+ pointer-events: auto;
527
+ }
513
528
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
514
529
  display: table;
515
530
  }
@@ -209,6 +209,9 @@
209
209
  min-width: 30px;
210
210
  padding: 4px 2.5px;
211
211
  }
212
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
213
+ pointer-events: none;
214
+ }
212
215
  .e-toolbar .e-toolbar-item.e-separator {
213
216
  margin: 5.5px 6px;
214
217
  min-height: 27px;
@@ -224,6 +227,9 @@
224
227
  .e-toolbar .e-toolbar-item > * {
225
228
  text-overflow: ellipsis;
226
229
  }
230
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
231
+ pointer-events: auto;
232
+ }
227
233
  .e-toolbar .e-toolbar-item.e-hidden {
228
234
  display: none;
229
235
  }
@@ -386,6 +392,9 @@
386
392
  min-width: 100%;
387
393
  text-overflow: ellipsis;
388
394
  }
395
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
396
+ pointer-events: auto;
397
+ }
389
398
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
390
399
  min-width: 100%;
391
400
  }
@@ -499,6 +508,9 @@
499
508
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
500
509
  height: auto;
501
510
  }
511
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
512
+ pointer-events: auto;
513
+ }
502
514
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
503
515
  -ms-flex-item-align: center;
504
516
  align-self: center;
@@ -512,6 +524,9 @@
512
524
  display: -ms-inline-flexbox;
513
525
  display: inline-flex;
514
526
  }
527
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
528
+ pointer-events: auto;
529
+ }
515
530
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
516
531
  display: table;
517
532
  }
@@ -209,6 +209,9 @@
209
209
  min-width: 30px;
210
210
  padding: 3px 4px;
211
211
  }
212
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
213
+ pointer-events: none;
214
+ }
212
215
  .e-toolbar .e-toolbar-item.e-separator {
213
216
  margin: 5.5px 6px;
214
217
  min-height: 27px;
@@ -224,6 +227,9 @@
224
227
  .e-toolbar .e-toolbar-item > * {
225
228
  text-overflow: ellipsis;
226
229
  }
230
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
231
+ pointer-events: auto;
232
+ }
227
233
  .e-toolbar .e-toolbar-item.e-hidden {
228
234
  display: none;
229
235
  }
@@ -386,6 +392,9 @@
386
392
  min-width: 100%;
387
393
  text-overflow: ellipsis;
388
394
  }
395
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
396
+ pointer-events: auto;
397
+ }
389
398
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
390
399
  min-width: 100%;
391
400
  }
@@ -499,6 +508,9 @@
499
508
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
500
509
  height: auto;
501
510
  }
511
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
512
+ pointer-events: auto;
513
+ }
502
514
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
503
515
  -ms-flex-item-align: center;
504
516
  align-self: center;
@@ -512,6 +524,9 @@
512
524
  display: -ms-inline-flexbox;
513
525
  display: inline-flex;
514
526
  }
527
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
528
+ pointer-events: auto;
529
+ }
515
530
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
516
531
  display: table;
517
532
  }
@@ -233,6 +233,9 @@
233
233
  min-width: 28px;
234
234
  padding: 4px;
235
235
  }
236
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
237
+ pointer-events: none;
238
+ }
236
239
  .e-toolbar .e-toolbar-item.e-separator {
237
240
  margin: 5px 10px;
238
241
  min-height: 24px;
@@ -248,6 +251,9 @@
248
251
  .e-toolbar .e-toolbar-item > * {
249
252
  text-overflow: ellipsis;
250
253
  }
254
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
255
+ pointer-events: auto;
256
+ }
251
257
  .e-toolbar .e-toolbar-item.e-hidden {
252
258
  display: none;
253
259
  }
@@ -410,6 +416,9 @@
410
416
  min-width: 100%;
411
417
  text-overflow: ellipsis;
412
418
  }
419
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
420
+ pointer-events: auto;
421
+ }
413
422
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
414
423
  min-width: 100%;
415
424
  }
@@ -523,6 +532,9 @@
523
532
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
524
533
  height: auto;
525
534
  }
535
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
536
+ pointer-events: auto;
537
+ }
526
538
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
527
539
  -ms-flex-item-align: center;
528
540
  align-self: center;
@@ -536,6 +548,9 @@
536
548
  display: -ms-inline-flexbox;
537
549
  display: inline-flex;
538
550
  }
551
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
552
+ pointer-events: auto;
553
+ }
539
554
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
540
555
  display: table;
541
556
  }
@@ -237,6 +237,9 @@
237
237
  min-width: 28px;
238
238
  padding: 4px;
239
239
  }
240
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
241
+ pointer-events: none;
242
+ }
240
243
  .e-toolbar .e-toolbar-item.e-separator {
241
244
  margin: 5px 10px;
242
245
  min-height: 24px;
@@ -252,6 +255,9 @@
252
255
  .e-toolbar .e-toolbar-item > * {
253
256
  text-overflow: ellipsis;
254
257
  }
258
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
259
+ pointer-events: auto;
260
+ }
255
261
  .e-toolbar .e-toolbar-item.e-hidden {
256
262
  display: none;
257
263
  }
@@ -414,6 +420,9 @@
414
420
  min-width: 100%;
415
421
  text-overflow: ellipsis;
416
422
  }
423
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
424
+ pointer-events: auto;
425
+ }
417
426
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
418
427
  min-width: 100%;
419
428
  }
@@ -527,6 +536,9 @@
527
536
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
528
537
  height: auto;
529
538
  }
539
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
540
+ pointer-events: auto;
541
+ }
530
542
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
531
543
  -ms-flex-item-align: center;
532
544
  align-self: center;
@@ -540,6 +552,9 @@
540
552
  display: -ms-inline-flexbox;
541
553
  display: inline-flex;
542
554
  }
555
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
556
+ pointer-events: auto;
557
+ }
543
558
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
544
559
  display: table;
545
560
  }
@@ -233,6 +233,9 @@
233
233
  min-width: 28px;
234
234
  padding: 4px;
235
235
  }
236
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
237
+ pointer-events: none;
238
+ }
236
239
  .e-toolbar .e-toolbar-item.e-separator {
237
240
  margin: 5px 10px;
238
241
  min-height: 24px;
@@ -248,6 +251,9 @@
248
251
  .e-toolbar .e-toolbar-item > * {
249
252
  text-overflow: ellipsis;
250
253
  }
254
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
255
+ pointer-events: auto;
256
+ }
251
257
  .e-toolbar .e-toolbar-item.e-hidden {
252
258
  display: none;
253
259
  }
@@ -410,6 +416,9 @@
410
416
  min-width: 100%;
411
417
  text-overflow: ellipsis;
412
418
  }
419
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
420
+ pointer-events: auto;
421
+ }
413
422
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
414
423
  min-width: 100%;
415
424
  }
@@ -523,6 +532,9 @@
523
532
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
524
533
  height: auto;
525
534
  }
535
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
536
+ pointer-events: auto;
537
+ }
526
538
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
527
539
  -ms-flex-item-align: center;
528
540
  align-self: center;
@@ -536,6 +548,9 @@
536
548
  display: -ms-inline-flexbox;
537
549
  display: inline-flex;
538
550
  }
551
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
552
+ pointer-events: auto;
553
+ }
539
554
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
540
555
  display: table;
541
556
  }
@@ -207,6 +207,9 @@
207
207
  min-width: 34px;
208
208
  padding: 0 1px;
209
209
  }
210
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
211
+ pointer-events: none;
212
+ }
210
213
  .e-toolbar .e-toolbar-item.e-separator {
211
214
  margin: 7.5px 3px;
212
215
  min-height: 27px;
@@ -222,6 +225,9 @@
222
225
  .e-toolbar .e-toolbar-item > * {
223
226
  text-overflow: ellipsis;
224
227
  }
228
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
229
+ pointer-events: auto;
230
+ }
225
231
  .e-toolbar .e-toolbar-item.e-hidden {
226
232
  display: none;
227
233
  }
@@ -384,6 +390,9 @@
384
390
  min-width: 100%;
385
391
  text-overflow: ellipsis;
386
392
  }
393
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
394
+ pointer-events: auto;
395
+ }
387
396
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
388
397
  min-width: 100%;
389
398
  }
@@ -497,6 +506,9 @@
497
506
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
498
507
  height: auto;
499
508
  }
509
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
510
+ pointer-events: auto;
511
+ }
500
512
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
501
513
  -ms-flex-item-align: center;
502
514
  align-self: center;
@@ -510,6 +522,9 @@
510
522
  display: -ms-inline-flexbox;
511
523
  display: inline-flex;
512
524
  }
525
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
526
+ pointer-events: auto;
527
+ }
513
528
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
514
529
  display: table;
515
530
  }