bkui-vue 2.0.1-beta.73 → 2.0.1-beta.74

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/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.73";
7
+ export const version = "2.0.1-beta.74";
8
8
  window.__bkui_vue_version__ = version;
@@ -147,7 +147,7 @@ var useContentResize = function useContentResize(root, resizeTarget, props) {
147
147
  isContentScroll.value = windowInnerHeight < headerHeight + contentHeight + footerHeight + footerMarginTop;
148
148
  if (isContentScroll.value || props.fullscreen) {
149
149
  contentStyles.value = {
150
- height: "".concat(windowInnerHeight - headerHeight - footerHeight, "px"),
150
+ height: "".concat(windowInnerHeight - headerHeight - 48, "px"),
151
151
  overflow: 'auto',
152
152
  'scrollbar-gutter': 'stable'
153
153
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.73",
3
+ "version": "2.0.1-beta.74",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",