@vue/devtools-ui 7.1.0 → 7.1.1

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.
@@ -3,7 +3,7 @@ import { OverlayProps } from "./Overlay";
3
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
4
  modelValue: boolean;
5
5
  mountTo?: string | HTMLElement | undefined;
6
- placement?: "left" | "right" | "top" | "bottom" | undefined;
6
+ placement?: "top" | "bottom" | "right" | "left" | undefined;
7
7
  closeOutside?: boolean | undefined;
8
8
  closable?: boolean | undefined;
9
9
  contentClass?: string | undefined;
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
23
23
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
24
24
  modelValue: boolean;
25
25
  mountTo?: string | HTMLElement | undefined;
26
- placement?: "left" | "right" | "top" | "bottom" | undefined;
26
+ placement?: "top" | "bottom" | "right" | "left" | undefined;
27
27
  closeOutside?: boolean | undefined;
28
28
  closable?: boolean | undefined;
29
29
  contentClass?: string | undefined;
@@ -43,7 +43,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
43
43
  }, {
44
44
  closable: boolean;
45
45
  mountTo: string | HTMLElement;
46
- placement: "left" | "right" | "top" | "bottom";
46
+ placement: "top" | "bottom" | "right" | "left";
47
47
  closeOutside: boolean;
48
48
  permanent: boolean;
49
49
  contentBlur: boolean;
@@ -23,9 +23,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
23
23
  }>>> & {
24
24
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
25
25
  }, {
26
+ message: string;
26
27
  status: 'normal' | 'danger' | 'success' | 'warning';
27
28
  showMessage: boolean;
28
- message: string;
29
29
  }, {}>;
30
30
  export default _default;
31
31
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,2 +1,3 @@
1
1
  export * from './notification';
2
2
  export type * from './notification';
3
+ export * from './theme';
@@ -0,0 +1,7 @@
1
+ import { UseColorModeOptions } from '@vueuse/core';
2
+
3
+ export declare const THEME_KEY = "__vue-devtools-theme__";
4
+ export declare function useDevToolsColorMode(options?: Omit<UseColorModeOptions, 'storageKey'>): {
5
+ colorMode: import('@vueuse/core').UseColorModeReturn<import('@vueuse/core').BasicColorMode>;
6
+ isDark: import('vue').ComputedRef<boolean>;
7
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue/devtools-ui",
3
3
  "type": "module",
4
- "version": "7.1.0",
4
+ "version": "7.1.1",
5
5
  "author": "webfansplz",
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -35,7 +35,7 @@
35
35
  "@vueuse/integrations": "^10.9.0",
36
36
  "colord": "^2.9.3",
37
37
  "focus-trap": "^7.5.4",
38
- "@vue/devtools-shared": "7.1.0"
38
+ "@vue/devtools-shared": "7.1.1"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@histoire/plugin-vue": "^0.17.17",