@gx-design-vue/pro-layout 0.1.0-beta.75 → 0.1.0-beta.76

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/dist/props.d.ts CHANGED
@@ -24,6 +24,10 @@ export declare const darkThemeProps: {
24
24
  'onUpdate:dark': PropType<(value?: boolean | "system") => void>;
25
25
  };
26
26
  export declare const basicLayoutProps: {
27
+ contentWidth: {
28
+ type: PropType<import("@gx-design-vue/pro-provider/dist").ProLayoutConfig["contentWidth"]>;
29
+ default: () => undefined;
30
+ };
27
31
  pageContainerProps: {
28
32
  type: PropType<PageContainerPropsType>;
29
33
  };
@@ -57,7 +61,6 @@ export declare const basicLayoutProps: {
57
61
  default: () => null;
58
62
  };
59
63
  breadcrumb: PropType<BreadcrumbProps>;
60
- disableContentMargin: import("vue-types").VueTypeValidableDef<boolean>;
61
64
  isChildrenLayout: import("vue-types").VueTypeValidableDef<boolean>;
62
65
  loading: import("vue-types").VueTypeValidableDef<boolean>;
63
66
  footerLinks: {
@@ -110,7 +113,7 @@ export declare const basicLayoutProps: {
110
113
  autoHideHeader: PropType<boolean>;
111
114
  isMobile: PropType<boolean>;
112
115
  headerMainWidth: {
113
- type: PropType<number>;
116
+ type: PropType<number | string>;
114
117
  default: undefined;
115
118
  };
116
119
  headerRender: {
@@ -210,7 +213,7 @@ export declare const basicLayoutProps: {
210
213
  };
211
214
  wideWidth: {
212
215
  type: PropType<import("@gx-design-vue/pro-provider/dist").ProLayoutConfig["wideWidth"]>;
213
- default: number | undefined;
216
+ default: string | number | undefined;
214
217
  };
215
218
  splitMenus: {
216
219
  type: PropType<import("@gx-design-vue/pro-provider/dist").ProLayoutConfig["splitMenus"]>;
@@ -14,7 +14,8 @@ export declare function handleThemeConfig(config: ProLayoutConfig): {
14
14
  fixedTabsBar: boolean;
15
15
  storageTabsBar: boolean;
16
16
  headerHeight?: number;
17
- wideWidth?: number;
17
+ wideWidth?: number | string;
18
+ contentWidth?: number | string;
18
19
  colorWeak?: boolean;
19
20
  iconfontUrl?: string;
20
21
  animate?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gx-design-vue/pro-layout",
3
- "version": "0.1.0-beta.75",
3
+ "version": "0.1.0-beta.76",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "vite build",
@@ -28,7 +28,7 @@
28
28
  "@gx-design-vue/pro-app": "^0.1.0-beta.17",
29
29
  "@gx-design-vue/pro-utils": "^0.2.0-beta.42",
30
30
  "@gx-design-vue/pro-hooks": "^0.2.0-beta.32",
31
- "@gx-design-vue/pro-provider": "^0.1.0-beta.85",
31
+ "@gx-design-vue/pro-provider": "^0.1.0-beta.91",
32
32
  "@gx-design-vue/pro-watermark": "^0.2.0-beta.9",
33
33
  "@gx-design-vue/scrollbar": "^0.2.0-beta.17",
34
34
  "@gx-design-vue/color-picker": "^0.2.0-beta.24",