@fkui/vue-labs 6.2.0 → 6.3.0
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/cjs/cypress.cjs.js +43 -0
- package/dist/cjs/cypress.cjs.js.map +7 -0
- package/dist/cjs/index.cjs.js +2 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +20 -0
- package/dist/esm/cypress.esm.js.map +7 -0
- package/dist/esm/index.esm.js +2 -2
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +30 -0
- package/dist/types/index.d.ts +3 -3
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +15 -12
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/cypress/index.ts
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
|
+
XDummyPageObject: () => XDummyPageObject
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(index_exports);
|
|
26
|
+
|
|
27
|
+
// src/cypress/XDummy.pageobject.ts
|
|
28
|
+
var XDummyPageObject = class {
|
|
29
|
+
/**
|
|
30
|
+
* @param selector - the root of the label, usually `<label class="label">...</label>`.
|
|
31
|
+
*/
|
|
32
|
+
constructor(selector) {
|
|
33
|
+
this.selector = selector;
|
|
34
|
+
this.el = () => cy.get(this.selector);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Heading
|
|
38
|
+
*/
|
|
39
|
+
heading() {
|
|
40
|
+
return cy.get(`${this.selector} h1`);
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=cypress.cjs.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/cypress/index.ts", "../../src/cypress/XDummy.pageobject.ts"],
|
|
4
|
+
"sourcesContent": ["export { XDummyPageObject } from \"./XDummy.pageobject\";\n", "import { type DefaultCypressChainable, type BasePageObject } from \"./common\";\n\n/**\n * @public\n */\nexport class XDummyPageObject implements BasePageObject {\n public selector: string;\n public el: () => DefaultCypressChainable;\n\n /**\n * @param selector - the root of the label, usually `<label class=\"label\">...</label>`.\n */\n public constructor(selector: string) {\n this.selector = selector;\n this.el = () => cy.get(this.selector);\n }\n\n /**\n * Heading\n */\n public heading(): DefaultCypressChainable {\n return cy.get(`${this.selector} h1`);\n }\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACKO,IAAM,mBAAN,MAAiD;AAAA;AAAA;AAAA;AAAA,EAO7C,YAAY,UAAkB;AACjC,SAAK,WAAW;AAChB,SAAK,KAAK,MAAM,GAAG,IAAI,KAAK,QAAQ;AAAA,EACxC;AAAA;AAAA;AAAA;AAAA,EAKO,UAAmC;AACtC,WAAO,GAAG,IAAI,GAAG,KAAK,QAAQ,KAAK;AAAA,EACvC;AACJ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -419,10 +419,10 @@ function requireSharedStore() {
|
|
|
419
419
|
var SHARED = "__core-js_shared__";
|
|
420
420
|
var store = sharedStore.exports = globalThis2[SHARED] || defineGlobalProperty2(SHARED, {});
|
|
421
421
|
(store.versions || (store.versions = [])).push({
|
|
422
|
-
version: "3.
|
|
422
|
+
version: "3.41.0",
|
|
423
423
|
mode: IS_PURE ? "pure" : "global",
|
|
424
424
|
copyright: "© 2014-2025 Denis Pushkarev (zloirock.ru)",
|
|
425
|
-
license: "https://github.com/zloirock/core-js/blob/v3.
|
|
425
|
+
license: "https://github.com/zloirock/core-js/blob/v3.41.0/LICENSE",
|
|
426
426
|
source: "https://github.com/zloirock/core-js"
|
|
427
427
|
});
|
|
428
428
|
return sharedStore.exports;
|