@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.
- package/README.md +1 -1
- package/css/push-menu.scss +1 -0
- package/css/style.css +1 -2
- package/css/style.min.css +1 -1
- package/js/bottom-sheet.d.ts +37 -0
- package/js/calendar.d.ts +115 -0
- package/js/carousel.d.ts +34 -0
- package/js/chart.d.ts +73 -0
- package/js/code-viewer.d.ts +16 -0
- package/js/context-menu.d.ts +31 -0
- package/js/datepicker.d.ts +55 -0
- package/js/datepicker.js +3 -1
- package/js/datepicker.ts +3 -1
- package/js/dropdown.d.ts +30 -0
- package/js/editor.d.ts +41 -0
- package/js/file-uploader.d.ts +48 -0
- package/js/flyout-menu.d.ts +37 -0
- package/js/gallery.d.ts +35 -0
- package/js/group-picker.d.ts +59 -0
- package/js/lightbox.d.ts +46 -0
- package/js/lightbox.js +7 -5
- package/js/lightbox.ts +7 -5
- package/js/modal.d.ts +28 -0
- package/js/modal.js +3 -1
- package/js/modal.ts +3 -1
- package/js/popover.d.ts +46 -0
- package/js/position.d.ts +31 -0
- package/js/push-menu.d.ts +31 -0
- package/js/range-slider.d.ts +9 -0
- package/js/scroll.d.ts +15 -0
- package/js/scrollbar.d.ts +48 -0
- package/js/select.d.ts +16 -0
- package/js/sidebar-nav.d.ts +22 -0
- package/js/stepper.d.ts +26 -0
- package/js/table.d.ts +98 -0
- package/js/tabs.d.ts +57 -0
- package/js/tabs.js +2 -2
- package/js/tabs.ts +2 -2
- package/js/theme.d.ts +65 -0
- package/js/timepicker.d.ts +37 -0
- package/js/toast.d.ts +26 -0
- package/js/tooltip.d.ts +34 -0
- package/js/tooltip.js +1 -1
- package/js/tooltip.ts +1 -2
- package/js/tree.d.ts +40 -0
- package/js/tsconfig.json +1 -0
- package/js/utils.d.ts +24 -0
- package/js/virtual-dropdown.d.ts +55 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Basix 1.2.
|
|
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.
|
package/css/push-menu.scss
CHANGED
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 */
|