@gx-design-vue/pro-layout 0.1.0-beta.152 → 0.1.0-beta.154

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.
@@ -435,6 +435,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
435
435
  onSelect?: ((_value: string[]) => any) | undefined;
436
436
  onReloadPage?: (() => any) | undefined;
437
437
  onCollapse?: ((_value: boolean) => any) | undefined;
438
+ "onUpdate:theme"?: ((_value: ThemeValue | undefined) => any) | undefined;
438
439
  "onUpdate:collapsed"?: ((_value: boolean) => any) | undefined;
439
440
  "onUpdate:selected-keys"?: ((_value: string[]) => any) | undefined;
440
441
  "onUpdate:open-keys"?: ((_value: string[]) => any) | undefined;
@@ -443,7 +444,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
443
444
  "onUpdate:tabs"?: ((tabs: AppRouteModule[]) => any) | undefined;
444
445
  onThemeChange?: ((_value: ThemeValue | undefined) => any) | undefined;
445
446
  onDarkChange?: ((_value: boolean) => any) | undefined;
446
- "onUpdate:theme"?: ((_value: ThemeValue | undefined) => any) | undefined;
447
447
  onContentFullScreenChange?: ((_value: boolean) => any) | undefined;
448
448
  }>, {
449
449
  logo: CustomRender;
@@ -19,10 +19,13 @@ declare const ThemeProvider: import("vue").DefineComponent<import("vue").Extract
19
19
  onChange: {
20
20
  type: PropType<(theme: ThemeValue) => void>;
21
21
  };
22
+ 'onUpdate:theme': {
23
+ type: PropType<(theme: ThemeValue) => void>;
24
+ };
22
25
  onChangeBase: {
23
26
  type: PropType<(theme: BaseTheme) => void>;
24
27
  };
25
- }>, () => void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "changeBase")[], "change" | "changeBase", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ }>, () => void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "changeBase" | "update:theme")[], "change" | "changeBase" | "update:theme", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
26
29
  theme: {
27
30
  type: PropType<ThemeValue>;
28
31
  };
@@ -33,11 +36,15 @@ declare const ThemeProvider: import("vue").DefineComponent<import("vue").Extract
33
36
  onChange: {
34
37
  type: PropType<(theme: ThemeValue) => void>;
35
38
  };
39
+ 'onUpdate:theme': {
40
+ type: PropType<(theme: ThemeValue) => void>;
41
+ };
36
42
  onChangeBase: {
37
43
  type: PropType<(theme: BaseTheme) => void>;
38
44
  };
39
45
  }>> & Readonly<{
40
46
  onChange?: ((...args: any[]) => any) | undefined;
47
+ "onUpdate:theme"?: ((...args: any[]) => any) | undefined;
41
48
  onChangeBase?: ((...args: any[]) => any) | undefined;
42
49
  }>, {
43
50
  defaultTheme: ThemeValue;