@dodlhuat/basix 1.2.6 → 1.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 (49) hide show
  1. package/README.md +1 -1
  2. package/css/push-menu.scss +1 -0
  3. package/css/style.css +1 -2
  4. package/css/style.min.css +1 -1
  5. package/js/bottom-sheet.d.ts +37 -0
  6. package/js/calendar.d.ts +115 -0
  7. package/js/carousel.d.ts +34 -0
  8. package/js/chart.d.ts +73 -0
  9. package/js/code-viewer.d.ts +16 -0
  10. package/js/context-menu.d.ts +31 -0
  11. package/js/datepicker.d.ts +55 -0
  12. package/js/datepicker.js +3 -1
  13. package/js/datepicker.ts +3 -1
  14. package/js/dropdown.d.ts +30 -0
  15. package/js/editor.d.ts +41 -0
  16. package/js/file-uploader.d.ts +48 -0
  17. package/js/flyout-menu.d.ts +37 -0
  18. package/js/gallery.d.ts +35 -0
  19. package/js/group-picker.d.ts +59 -0
  20. package/js/lightbox.d.ts +46 -0
  21. package/js/lightbox.js +7 -5
  22. package/js/lightbox.ts +7 -5
  23. package/js/modal.d.ts +28 -0
  24. package/js/modal.js +3 -1
  25. package/js/modal.ts +3 -1
  26. package/js/popover.d.ts +46 -0
  27. package/js/position.d.ts +31 -0
  28. package/js/push-menu.d.ts +31 -0
  29. package/js/range-slider.d.ts +9 -0
  30. package/js/scroll.d.ts +15 -0
  31. package/js/scrollbar.d.ts +48 -0
  32. package/js/select.d.ts +16 -0
  33. package/js/sidebar-nav.d.ts +22 -0
  34. package/js/stepper.d.ts +26 -0
  35. package/js/table.d.ts +98 -0
  36. package/js/tabs.d.ts +57 -0
  37. package/js/tabs.js +2 -2
  38. package/js/tabs.ts +2 -2
  39. package/js/theme.d.ts +65 -0
  40. package/js/timepicker.d.ts +37 -0
  41. package/js/toast.d.ts +26 -0
  42. package/js/tooltip.d.ts +34 -0
  43. package/js/tooltip.js +1 -1
  44. package/js/tooltip.ts +1 -2
  45. package/js/tree.d.ts +40 -0
  46. package/js/tsconfig.json +1 -0
  47. package/js/utils.d.ts +24 -0
  48. package/js/virtual-dropdown.d.ts +55 -0
  49. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Basix 1.2.6
1
+ # Basix 1.2.9
2
2
 
3
3
  Basix is intended as a starter for the rapid development of a design. Each design element can be added individually to
4
4
  include only the data required. It is using plain javascript / typescript and therefore is not dependent on any plugin.
@@ -48,6 +48,7 @@ nav.push-menu {
48
48
  transition: transform $menu-duration $menu-easing;
49
49
  overflow-y: auto;
50
50
  overflow-x: hidden;
51
+ overscroll-behavior: contain;
51
52
  -webkit-overflow-scrolling: touch;
52
53
  will-change: transform;
53
54
 
package/css/style.css CHANGED
@@ -2684,6 +2684,7 @@ nav.push-menu.pushed {
2684
2684
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
2685
2685
  overflow-y: auto;
2686
2686
  overflow-x: hidden;
2687
+ overscroll-behavior: contain;
2687
2688
  -webkit-overflow-scrolling: touch;
2688
2689
  will-change: transform;
2689
2690
  }
@@ -9016,5 +9017,3 @@ body {
9016
9017
  display: flex;
9017
9018
  gap: 1.25rem;
9018
9019
  }
9019
-
9020
- /*# sourceMappingURL=style.css.map */