@jobber/hooks 1.8.0 → 1.9.2-pre.27

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.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,25 @@ menu: Changelog
8
8
  All notable changes to this project will be documented in this file.
9
9
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
10
10
 
11
+ ## [1.9.1](https://github.com/GetJobber/atlantis/compare/@jobber/hooks@1.9.0...@jobber/hooks@1.9.1) (2021-12-15)
12
+
13
+ **Note:** Version bump only for package @jobber/hooks
14
+
15
+
16
+
17
+
18
+
19
+ # [1.9.0](https://github.com/GetJobber/atlantis/compare/@jobber/hooks@1.8.0...@jobber/hooks@1.9.0) (2021-10-29)
20
+
21
+
22
+ ### Features
23
+
24
+ * **components:** Add description to base FormField component ([#714](https://github.com/GetJobber/atlantis/issues/714)) ([3fae72e](https://github.com/GetJobber/atlantis/commit/3fae72e9f483ece23263c9b2c981060248223db5))
25
+
26
+
27
+
28
+
29
+
11
30
  # [1.8.0](https://github.com/GetJobber/atlantis/compare/@jobber/hooks@1.7.2...@jobber/hooks@1.8.0) (2021-10-13)
12
31
 
13
32
 
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  var react_testing_1 = require("@apollo/react-testing");
7
7
  var react_1 = __importDefault(require("react"));
8
- var uuid_1 = __importDefault(require("uuid"));
8
+ var uuid_1 = require("uuid");
9
9
  var queries_1 = require("./queries");
10
10
  function wrapper(mocks) {
11
11
  function ApolloMockedProvider(_a) {
@@ -28,14 +28,14 @@ exports.listQueryResponseMock = jest.fn(function (id) {
28
28
  __typename: "SMSMessageEdge",
29
29
  node: {
30
30
  __typename: "SMSMessage",
31
- id: id || uuid_1.default.v1(),
31
+ id: id || uuid_1.v1(),
32
32
  },
33
33
  },
34
34
  ],
35
35
  nodes: [
36
36
  {
37
37
  __typename: "SMSMessage",
38
- id: id || uuid_1.default.v1(),
38
+ id: id || uuid_1.v1(),
39
39
  },
40
40
  ],
41
41
  pageInfo: {
@@ -7,7 +7,7 @@ interface UseCollectionQueryArguments<TQuery, TSubscription> {
7
7
  */
8
8
  query: DocumentNode;
9
9
  /**
10
- * A list of options for us to pass into the apollo `useQuery` hook
10
+ * A list of options for us to pass into the apollo `useQuery` hook.
11
11
  */
12
12
  queryOptions?: QueryHookOptions<TQuery>;
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/hooks",
3
- "version": "1.8.0",
3
+ "version": "1.9.2-pre.27+cd7c431",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -18,15 +18,14 @@
18
18
  "@jobber/formatters": "^0.2.0",
19
19
  "@testing-library/react": "^10.2.1",
20
20
  "@testing-library/react-hooks": "^7.0.0",
21
- "@types/jest": "^26.0.23",
22
21
  "@types/lodash": "4.14.136",
23
22
  "@types/react": "16.14.2",
24
23
  "@types/react-dom": "16.9.10",
25
- "@types/uuid": "^3.4.5",
24
+ "@types/uuid": "^8.3.3",
26
25
  "@types/zxcvbn": "^4.4.1",
27
26
  "graphql": "^14.6.0",
28
27
  "typescript": "^3.8.3",
29
- "uuid": "^3.3.2"
28
+ "uuid": "^8.3.2"
30
29
  },
31
30
  "dependencies": {
32
31
  "@use-it/event-listener": "^0.1.6",
@@ -40,5 +39,5 @@
40
39
  "@apollo/client": "^3.3.16",
41
40
  "react": "^16.8.6"
42
41
  },
43
- "gitHead": "7a31394c137a958cb4b6de636dcc6c47c70f3403"
42
+ "gitHead": "cd7c4312ede267e252665d872d0607f9e24a4762"
44
43
  }