@gx-design-vue/pro-layout 0.1.0-beta.93 → 0.1.0-beta.94

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.
@@ -1,3 +1,4 @@
1
+ import { type SlotsType } from 'vue';
1
2
  import type { CustomRender, WithFalse } from '@gx-design-vue/pro-utils';
2
3
  import { RightContentActions } from './props';
3
4
  declare const GlobalRightContent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -125,5 +126,10 @@ declare const GlobalRightContent: import("vue").DefineComponent<import("vue").Ex
125
126
  dropdownMenuRender: CustomRender;
126
127
  dropdownMenuExtraItemRender: CustomRender;
127
128
  dataSource: import("../..").AppRouteModule[];
128
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
129
+ }, SlotsType<{
130
+ default(): void;
131
+ actionsRender(classNames: string[]): void;
132
+ dropdownRender(): void;
133
+ dropdownMenuExtraItemRender(): void;
134
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
129
135
  export default GlobalRightContent;