pw-element-interactions 0.0.2 → 0.0.3

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/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export { ElementInteractions } from './ElementInteractions';
2
- export { Steps } from '../src/steps/CommonSteps';
2
+ export { Steps } from './steps/CommonSteps';
package/dist/index.js CHANGED
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Steps = exports.ElementInteractions = void 0;
4
4
  var ElementInteractions_1 = require("./ElementInteractions");
5
5
  Object.defineProperty(exports, "ElementInteractions", { enumerable: true, get: function () { return ElementInteractions_1.ElementInteractions; } });
6
- var CommonSteps_1 = require("../src/steps/CommonSteps");
6
+ var CommonSteps_1 = require("./steps/CommonSteps");
7
7
  Object.defineProperty(exports, "Steps", { enumerable: true, get: function () { return CommonSteps_1.Steps; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pw-element-interactions",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A robust, readable interaction and assertion Facade for Playwright. Abstract away boilerplate into semantic, English-like methods, making your test automation framework cleaner, easier to maintain, and accessible to non-developers.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",