Skip to content

Commit 229d334

Browse files
committed
release: v1.0.0-beta.11
1 parent e6608db commit 229d334

File tree

6 files changed

+31
-34
lines changed

6 files changed

+31
-34
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [1.0.0-beta.11](https://github.com/pikax/vue-composable/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2020-10-11)
2+
3+
### Features
4+
5+
- add `useMouseDistanceFromElement` ([#578](https://github.com/pikax/vue-composable/issues/578)) ([a09cb69](https://github.com/pikax/vue-composable/commit/a09cb69d1b847f5824ad395309867c41205bd5b3))
6+
- **onMouseMove:** add `pageX` and `pageY` properties ([ed4788d](https://github.com/pikax/vue-composable/commit/ed4788d99376b550cd2e17578895ecb9637a5c91))
7+
- remove devtools code from production build ([916187e](https://github.com/pikax/vue-composable/commit/916187efc823032afb6bea31b0123b034b0b8ce5))
8+
19
# [1.0.0-beta.10](https://github.com/pikax/vue-composable/compare/v1.0.0-beta.8...v1.0.0-beta.10) (2020-09-15)
210

311
### Features

docs/api/axios.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import { AxiosInstance } from "axios";
77
import { AxiosRequestConfig } from "axios";
88
import { AxiosResponse } from "axios";
9-
import { ComputedRef } from "@vue/composition-api";
9+
import { ComputedRef } from "@vue/runtime-core";
1010
import { PromiseResultFactory } from "vue-composable";
11-
import { Ref } from "@vue/composition-api";
11+
import { Ref } from "@vue/runtime-core";
1212

1313
// Warning: (ae-forgotten-export) The symbol "MakeAxiosReturn" needs to be exported by the entry point index.d.ts
1414
//

docs/api/vue-composable.api.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@
33
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
44
55
```ts
6+
import { App } from "@vue/runtime-core";
67
import type { ComponentState } from "@vue/devtools-api";
7-
import { ComputedRef } from "@vue/composition-api";
8+
import { ComputedRef } from "@vue/runtime-core";
89
import { Context } from "vm";
910
import type { CustomInspectorNode } from "@vue/devtools-api";
1011
import type { CustomInspectorOptions } from "@vue/devtools-api";
1112
import type { CustomInspectorState } from "@vue/devtools-api";
13+
import { DeepReadonly } from "@vue/runtime-core";
1214
import { DevtoolsPluginApi } from "@vue/devtools-api";
13-
import { InjectionKey } from "@vue/composition-api";
15+
import { InjectionKey } from "@vue/runtime-core";
1416
import type { InspectedComponentData } from "@vue/devtools-api";
15-
import { PluginFunction } from "vue";
16-
import { provide } from "@vue/composition-api";
17-
import { Ref } from "@vue/composition-api";
17+
import { Plugin as Plugin_2 } from "@vue/runtime-core";
18+
import { provide } from "@vue/runtime-core";
19+
import { Ref } from "@vue/runtime-core";
1820
import { TimelineEvent } from "@vue/devtools-api";
19-
import { UnwrapRef } from "@vue/composition-api";
20-
import { VueConstructor } from "vue";
21+
import { UnwrapRef } from "@vue/runtime-core";
2122

2223
// @public (undocumented)
2324
export interface ArrayPaginationResult<T extends Array<any>>
@@ -463,8 +464,6 @@ export function getCssVariableFor(
463464
// @public
464465
export function getDevtools(): DevtoolsPluginApi | undefined;
465466

466-
// Warning: (ae-forgotten-export) The symbol "Plugin" needs to be exported by the entry point index.d.ts
467-
//
468467
// @public (undocumented)
469468
export const hydrationPlugin: Plugin_2;
470469

@@ -760,6 +759,10 @@ export interface MouseMoveResult {
760759
// (undocumented)
761760
mouseY: Ref<number>;
762761
// (undocumented)
762+
pageX: Ref<number>;
763+
// (undocumented)
764+
pageY: Ref<number>;
765+
// (undocumented)
763766
remove: RemoveEventFunction;
764767
}
765768

@@ -1059,7 +1062,7 @@ export function setCssVariableFor(
10591062
): void;
10601063

10611064
// @public
1062-
export function setDevtools(app: VueConstructor, api: DevtoolsPluginApi): void;
1065+
export function setDevtools(app: App, api: DevtoolsPluginApi): void;
10631066

10641067
// @public
10651068
export function setI18n<
@@ -1371,11 +1374,7 @@ export function useDebounce<T extends Procedure>(
13711374
): T;
13721375

13731376
// @public (undocumented)
1374-
export const UseDevtoolsApp: (
1375-
app: VueConstructor,
1376-
id?: string,
1377-
label?: string
1378-
) => void;
1377+
export const UseDevtoolsApp: (app: App, id?: string, label?: string) => void;
13791378

13801379
// @public (undocumented)
13811380
export function useDevtoolsComponentState(
@@ -2154,8 +2153,6 @@ export function useStorage<T>(
21542153
sync?: boolean
21552154
): LocalStorageReturn<T>;
21562155

2157-
// Warning: (ae-forgotten-export) The symbol "DeepReadonly" needs to be exported by the entry point index.d.ts
2158-
//
21592156
// @public (undocumented)
21602157
export function useTimeline<T>(
21612158
value: Ref<T>,
@@ -2243,7 +2240,7 @@ export const VUE_VERSION: "2" | "3";
22432240
// @public (undocumented)
22442241
export const VueComposableDevtools: {
22452242
install(
2246-
app: VueConstructor,
2243+
app: App,
22472244
options?: {
22482245
id: string;
22492246
label: string;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.10",
2+
"version": "1.0.0-beta.11",
33
"name": "vue-composable-monorepo",
44
"workspaces": [
55
"packages/*"

packages/axios/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-composable/axios",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "@vue-composable/axios",
55
"main": "index.js",
66
"module": "dist/axios.esm-bundler.js",
@@ -45,7 +45,7 @@
4545
"vue-composable-axios-fix": "./scripts/postinstall.js"
4646
},
4747
"dependencies": {
48-
"vue-composable": "^1.0.0-beta.10"
48+
"vue-composable": "^1.0.0-beta.11"
4949
},
5050
"peerDependencies2": {
5151
"@vue/composition-api": "^1.0.0-beta.14",
@@ -60,9 +60,5 @@
6060
"@types/node": "^14.11.8",
6161
"@vue/runtime-core": "^3.0.0",
6262
"typescript": "^4.0.3"
63-
},
64-
"peerDependencies": {
65-
"@vue/composition-api": "^1.0.0-beta.14",
66-
"axios": "^0.20.0"
6763
}
68-
}
64+
}

packages/vue-composable/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-composable",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "vue-composable",
55
"main": "index.js",
66
"module": "dist/vue-composable.esm-bundler.js",
@@ -52,9 +52,5 @@
5252
"peerDependencies2": {
5353
"@vue/composition-api": "^1.0.0-beta.14",
5454
"vue": "^2.6.10"
55-
},
56-
"peerDependencies": {
57-
"@vue/composition-api": "^1.0.0-beta.14",
58-
"vue": "^2.6.10"
5955
}
60-
}
56+
}

0 commit comments

Comments
 (0)