@lwrjs/router 0.12.0-alpha.19 → 0.12.0-alpha.20

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
- "version": "0.12.0-alpha.19",
8
+ "version": "0.12.0-alpha.20",
9
9
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
10
10
  "repository": {
11
11
  "type": "git",
@@ -53,20 +53,20 @@
53
53
  "test:server": "jest --config ./jest.server.config.cjs"
54
54
  },
55
55
  "dependencies": {
56
- "@lwrjs/client-modules": "0.12.0-alpha.19",
57
- "@lwrjs/diagnostics": "0.12.0-alpha.19",
58
- "@lwrjs/shared-utils": "0.12.0-alpha.19",
56
+ "@lwrjs/client-modules": "0.12.0-alpha.20",
57
+ "@lwrjs/diagnostics": "0.12.0-alpha.20",
58
+ "@lwrjs/shared-utils": "0.12.0-alpha.20",
59
59
  "ajv": "6.12.6"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@lwc/jest-preset": "^14.3.0",
63
- "@lwrjs/fs-watch": "0.12.0-alpha.19",
63
+ "@lwrjs/fs-watch": "0.12.0-alpha.20",
64
64
  "@rollup/plugin-typescript": "^11.1.6",
65
65
  "jest": "^26.6.3",
66
66
  "rollup": "^2.78.0",
67
67
  "ts-jest": "^26.5.6",
68
68
  "typescript": "^4.9.5",
69
- "utam": "2.2.0-alpha1"
69
+ "utam": "3.0.0"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "lwc": ">= 2.x"
@@ -98,5 +98,5 @@
98
98
  "volta": {
99
99
  "extends": "../../../package.json"
100
100
  },
101
- "gitHead": "5e1cd0d97d8e90cbd8b43868e2d7b33df6f8fa82"
101
+ "gitHead": "ae1793e34eaf4e9b97996d7aea9031908b23a13a"
102
102
  }
@@ -0,0 +1,18 @@
1
+
2
+ import { Driver as _Driver, Element as _Element, Locator as _Locator, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core';
3
+
4
+ /**
5
+ * @lwrjs/router Outlet dynamically renders LWC view components.
6
+ * generated from JSON src/modules/lwr/outlet/__utam__/outlet.utam.json
7
+ * @version 0.10
8
+ * @author lwr-js
9
+ */
10
+ declare class Outlet extends _UtamBaseRootPageObject {
11
+ constructor(driver: _Driver, element?: _Element, locator?: _Locator);
12
+ /**
13
+ * Waits for the component inside the outlet to be available.
14
+ */
15
+ waitForOutletContent(): Promise<this>;
16
+ getContent<T extends _UtamBasePageObject>(ContainerCtor: _ContainerCtor<T>): Promise<T>;
17
+ }
18
+ export = Outlet;