@syncfusion/ej2-navigations 29.2.5 → 29.2.8

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 +17 -3
  5. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es5.js +18 -3
  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 +12 -64
  12. package/src/common/menu-base.js +12 -2
  13. package/src/tab/tab.js +6 -1
  14. package/styles/bds-lite.css +15 -0
  15. package/styles/bds.css +15 -0
  16. package/styles/bootstrap-dark-lite.css +15 -0
  17. package/styles/bootstrap-dark.css +15 -0
  18. package/styles/bootstrap-lite.css +15 -0
  19. package/styles/bootstrap.css +17 -2
  20. package/styles/bootstrap4-lite.css +15 -0
  21. package/styles/bootstrap4.css +15 -0
  22. package/styles/bootstrap5-dark-lite.css +15 -0
  23. package/styles/bootstrap5-dark.css +15 -0
  24. package/styles/bootstrap5-lite.css +15 -0
  25. package/styles/bootstrap5.3-lite.css +15 -0
  26. package/styles/bootstrap5.3.css +15 -0
  27. package/styles/bootstrap5.css +15 -0
  28. package/styles/fabric-dark-lite.css +15 -0
  29. package/styles/fabric-dark.css +15 -0
  30. package/styles/fabric-lite.css +15 -0
  31. package/styles/fabric.css +15 -0
  32. package/styles/fluent-dark-lite.css +15 -0
  33. package/styles/fluent-dark.css +15 -0
  34. package/styles/fluent-lite.css +15 -0
  35. package/styles/fluent.css +15 -0
  36. package/styles/fluent2-lite.css +15 -0
  37. package/styles/fluent2.css +15 -0
  38. package/styles/highcontrast-light-lite.css +15 -0
  39. package/styles/highcontrast-light.css +15 -0
  40. package/styles/highcontrast-lite.css +17 -2
  41. package/styles/highcontrast.css +17 -2
  42. package/styles/material-dark-lite.css +15 -0
  43. package/styles/material-dark.css +15 -0
  44. package/styles/material-lite.css +17 -2
  45. package/styles/material.css +17 -2
  46. package/styles/material3-dark-lite.css +15 -0
  47. package/styles/material3-dark.css +15 -0
  48. package/styles/material3-lite.css +15 -0
  49. package/styles/material3.css +15 -0
  50. package/styles/tailwind-dark-lite.css +15 -0
  51. package/styles/tailwind-dark.css +15 -0
  52. package/styles/tailwind-lite.css +15 -0
  53. package/styles/tailwind.css +15 -0
  54. package/styles/tailwind3-lite.css +15 -0
  55. package/styles/tailwind3.css +15 -0
  56. package/styles/toolbar/_bootstrap-definition.scss +1 -1
  57. package/styles/toolbar/_highcontrast-definition.scss +1 -1
  58. package/styles/toolbar/_layout.scss +21 -0
  59. package/styles/toolbar/_material-definition.scss +2 -2
  60. package/styles/toolbar/bds.css +15 -0
  61. package/styles/toolbar/bootstrap-dark.css +15 -0
  62. package/styles/toolbar/bootstrap.css +17 -2
  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 +17 -2
  74. package/styles/toolbar/material-dark.css +15 -0
  75. package/styles/toolbar/material.css +17 -2
  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
@@ -232,6 +232,9 @@
232
232
  min-width: 28px;
233
233
  padding: 4px;
234
234
  }
235
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
236
+ pointer-events: none;
237
+ }
235
238
  .e-toolbar .e-toolbar-item.e-separator {
236
239
  margin: 7px 4px;
237
240
  min-height: 24px;
@@ -247,6 +250,9 @@
247
250
  .e-toolbar .e-toolbar-item > * {
248
251
  text-overflow: ellipsis;
249
252
  }
253
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
254
+ pointer-events: auto;
255
+ }
250
256
  .e-toolbar .e-toolbar-item.e-hidden {
251
257
  display: none;
252
258
  }
@@ -409,6 +415,9 @@
409
415
  min-width: 100%;
410
416
  text-overflow: ellipsis;
411
417
  }
418
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
419
+ pointer-events: auto;
420
+ }
412
421
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
413
422
  min-width: 100%;
414
423
  }
@@ -522,6 +531,9 @@
522
531
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
523
532
  height: auto;
524
533
  }
534
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
535
+ pointer-events: auto;
536
+ }
525
537
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
526
538
  -ms-flex-item-align: center;
527
539
  align-self: center;
@@ -535,6 +547,9 @@
535
547
  display: -ms-inline-flexbox;
536
548
  display: inline-flex;
537
549
  }
550
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
551
+ pointer-events: auto;
552
+ }
538
553
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
539
554
  display: table;
540
555
  }
@@ -237,6 +237,9 @@
237
237
  min-width: 28px;
238
238
  padding: 8px 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: 12px 4px;
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
  }