@gx-design-vue/pro-layout 0.1.0-beta.85 → 0.1.0-beta.86

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/Context.d.ts CHANGED
@@ -19,6 +19,7 @@ export type ProLayoutContextProps = {
19
19
  layout: Ref<ProLayoutType>;
20
20
  theme: Ref<BaseMenuTheme>;
21
21
  dark: Ref<BasicLayoutProps['dark']>;
22
+ contentStyle: ComputedRef<BasicLayoutProps['contentStyle']>;
22
23
  collapsed: Ref<boolean>;
23
24
  wideWidth: Ref<string | number>;
24
25
  contentWidth: Ref<string | number>;
@@ -12,8 +12,14 @@ declare const ProAppPage: import("vue").DefineComponent<import("vue").ExtractPro
12
12
  iconStyle?: CSSProperties;
13
13
  iconClass?: string;
14
14
  }>;
15
- emptyText: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
16
- indicator: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
15
+ emptyText: {
16
+ type: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
17
+ default: undefined;
18
+ };
19
+ indicator: {
20
+ type: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
21
+ default: undefined;
22
+ };
17
23
  }>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
18
24
  spinning: PropType<boolean>;
19
25
  spinningBlur: {
@@ -26,10 +32,18 @@ declare const ProAppPage: import("vue").DefineComponent<import("vue").ExtractPro
26
32
  iconStyle?: CSSProperties;
27
33
  iconClass?: string;
28
34
  }>;
29
- emptyText: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
30
- indicator: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
35
+ emptyText: {
36
+ type: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
37
+ default: undefined;
38
+ };
39
+ indicator: {
40
+ type: PropType<import("@gx-design-vue/pro-utils/dist").WithFalse<import("@gx-design-vue/pro-utils/dist").CustomRender>>;
41
+ default: undefined;
42
+ };
31
43
  }>> & Readonly<{}>, {
44
+ indicator: import("@gx-design-vue/pro-utils/dist").CustomRender;
32
45
  spinningBlur: boolean;
46
+ emptyText: import("@gx-design-vue/pro-utils/dist").CustomRender;
33
47
  }, SlotsType<{
34
48
  default(): void;
35
49
  emptyText(): void;
@@ -47,6 +47,11 @@ declare const PageContainer: import("vue").DefineComponent<ExtractPropTypes<{
47
47
  } & {
48
48
  default: boolean;
49
49
  };
50
+ loadingBlur: import("vue-types").VueTypeValidableDef<boolean> & {
51
+ default: boolean;
52
+ } & {
53
+ default: boolean;
54
+ };
50
55
  }>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
51
56
  usePageCard: {
52
57
  type: import("vue").PropType<boolean>;
@@ -91,6 +96,11 @@ declare const PageContainer: import("vue").DefineComponent<ExtractPropTypes<{
91
96
  } & {
92
97
  default: boolean;
93
98
  };
99
+ loadingBlur: import("vue-types").VueTypeValidableDef<boolean> & {
100
+ default: boolean;
101
+ } & {
102
+ default: boolean;
103
+ };
94
104
  }>> & Readonly<{}>, {
95
105
  loading: boolean;
96
106
  contentWidth: string | number | undefined;
@@ -100,6 +110,7 @@ declare const PageContainer: import("vue").DefineComponent<ExtractPropTypes<{
100
110
  waterMark: boolean;
101
111
  pageChildrenExtraRender: import("../../SlotsTypings").DefaultRender;
102
112
  contentRender: import("../../SlotsTypings").DefaultRender;
113
+ loadingBlur: boolean;
103
114
  }, SlotsType<{
104
115
  default(): void;
105
116
  contentRender(): void;
@@ -71,4 +71,9 @@ export declare const pageContainerProps: {
71
71
  } & {
72
72
  default: boolean;
73
73
  };
74
+ loadingBlur: import("vue-types").VueTypeValidableDef<boolean> & {
75
+ default: boolean;
76
+ } & {
77
+ default: boolean;
78
+ };
74
79
  };