base6-ui 2.0.23 → 2.0.25

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.
Files changed (31) hide show
  1. package/dist/components/platform-navigation/index.d.ts +1 -1
  2. package/dist/components/platform-navigation/index.vue.d.ts +3 -1
  3. package/dist/components/platform-navigation/interface.d.ts +3 -1
  4. package/dist/index.css +1 -1
  5. package/dist/index.umd.js +3 -3
  6. package/es/components/global-header/index.vue.mjs +1 -1
  7. package/es/components/layout/components/{WrapHeader.vue.mjs → WrapHeader.vue2.mjs} +1 -1
  8. package/es/components/layout/index.vue2.mjs +1 -1
  9. package/es/components/platform-navigation/index.d.ts +1 -1
  10. package/es/components/platform-navigation/index.vue.d.ts +3 -1
  11. package/es/components/platform-navigation/index.vue.mjs +1 -1
  12. package/es/components/platform-navigation/index.vue2.mjs +75 -71
  13. package/es/components/platform-navigation/interface.d.ts +3 -1
  14. package/es/components/platform-navigation/interface.mjs +1 -1
  15. package/es/index.css +1 -1
  16. package/es/locale/lang/en-us.mjs +4 -4
  17. package/es/locale/lang/zh-cn.mjs +4 -4
  18. package/lib/components/global-header/index.vue.js +1 -1
  19. package/lib/components/layout/components/WrapHeader.vue2.js +1 -0
  20. package/lib/components/layout/index.vue2.js +1 -1
  21. package/lib/components/platform-navigation/index.d.ts +1 -1
  22. package/lib/components/platform-navigation/index.vue.d.ts +3 -1
  23. package/lib/components/platform-navigation/index.vue.js +1 -1
  24. package/lib/components/platform-navigation/index.vue2.js +1 -1
  25. package/lib/components/platform-navigation/interface.d.ts +3 -1
  26. package/lib/components/platform-navigation/interface.js +1 -1
  27. package/lib/index.css +1 -1
  28. package/lib/locale/lang/en-us.js +2 -2
  29. package/lib/locale/lang/zh-cn.js +2 -2
  30. package/package.json +1 -1
  31. package/lib/components/layout/components/WrapHeader.vue.js +0 -1
@@ -1,2 +1,2 @@
1
1
  export { default as BodenPlatformNavigation } from './index.vue';
2
- export { type BodenPlatformNavigationProps, BODEN_PLATFORM_ENUM, BODEN_PLATFORM_NAME_ENUM } from './interface';
2
+ export { type BodenPlatformNavigationProps, type BodenPlatformNavigationInstance, BODEN_PLATFORM_ENUM, BODEN_PLATFORM_NAME_ENUM } from './interface';
@@ -1,5 +1,7 @@
1
1
  import { BodenPlatformNavigationProps, BODEN_PLATFORM_ENUM } from './interface';
2
- declare const _default: import('vue').DefineComponent<BodenPlatformNavigationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ declare const _default: import('vue').DefineComponent<BodenPlatformNavigationProps, {
3
+ updateShow: (value: boolean) => void;
4
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
5
  togglePlatform: (...args: any[]) => void;
4
6
  }, string, import('vue').PublicProps, Readonly<BodenPlatformNavigationProps> & Readonly<{
5
7
  onTogglePlatform?: ((...args: any[]) => any) | undefined;
@@ -7,7 +7,6 @@ export declare const enum BODEN_PLATFORM_ENUM {
7
7
  PS = 5
8
8
  }
9
9
  export declare const enum BODEN_PLATFORM_NAME_ENUM {
10
- BASE = "BASE",// 标注
11
10
  ADS = "ADS",
12
11
  STUDIO = "STUDIO",
13
12
  OMNI = "OMNI",
@@ -38,3 +37,6 @@ export type PlatformItem = {
38
37
  href?: string;
39
38
  children?: Array<SubPlatformItem>;
40
39
  };
40
+ export type BodenPlatformNavigationInstance = {
41
+ updateShow: (value: boolean) => void;
42
+ };