@serenity-js/web 3.10.0 → 3.10.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.10.1](https://github.com/serenity-js/serenity-js/compare/v3.10.0...v3.10.1) (2023-09-01)
7
+
8
+ **Note:** Version bump only for package @serenity-js/web
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.10.0](https://github.com/serenity-js/serenity-js/compare/v3.9.1...v3.10.0) (2023-08-23)
7
15
 
8
16
 
@@ -4,7 +4,7 @@ import type { Locator } from './Locator';
4
4
  import type { PageElement } from './PageElement';
5
5
  import type { Selector } from './selectors';
6
6
  /**
7
- * @package
7
+ * @group Models
8
8
  */
9
9
  export declare class PageElementsLocator<Native_Element_Type = any> extends Question<Promise<Array<PageElement<Native_Element_Type>>>> implements ChainableMetaQuestion<PageElement<Native_Element_Type>, Question<Promise<Array<PageElement<Native_Element_Type>>>>> {
10
10
  private readonly locator;
@@ -4,7 +4,7 @@ exports.PageElementsLocator = void 0;
4
4
  const core_1 = require("@serenity-js/core");
5
5
  const abilities_1 = require("../abilities");
6
6
  /**
7
- * @package
7
+ * @group Models
8
8
  */
9
9
  class PageElementsLocator extends core_1.Question {
10
10
  static fromDocumentRoot(selector) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/web",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "Serenity/JS Screenplay Pattern APIs for the Web",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -44,8 +44,8 @@
44
44
  "node": "^16.13 || ^18.12 || ^20"
45
45
  },
46
46
  "dependencies": {
47
- "@serenity-js/assertions": "3.10.0",
48
- "@serenity-js/core": "3.10.0",
47
+ "@serenity-js/assertions": "3.10.1",
48
+ "@serenity-js/core": "3.10.1",
49
49
  "tiny-types": "^1.20.0"
50
50
  },
51
51
  "devDependencies": {
@@ -56,7 +56,7 @@
56
56
  "mocha": "^10.2.0",
57
57
  "mocha-multi": "^1.1.7",
58
58
  "ts-node": "^10.9.1",
59
- "typescript": "^5.1.6"
59
+ "typescript": "5.1.6"
60
60
  },
61
- "gitHead": "06ae5d8a702be0be2890e989c120715c32f6578a"
61
+ "gitHead": "7ab90f30b17ed745cad713363a27edfd7cdce08a"
62
62
  }
@@ -7,7 +7,7 @@ import type { PageElement } from './PageElement';
7
7
  import type { Selector } from './selectors';
8
8
 
9
9
  /**
10
- * @package
10
+ * @group Models
11
11
  */
12
12
  export class PageElementsLocator<Native_Element_Type = any>
13
13
  extends Question<Promise<Array<PageElement<Native_Element_Type>>>>