@fkui/vue-labs 6.2.0 → 6.3.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/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 +6 -6
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +15 -12
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// src/cypress/XDummy.pageobject.ts
|
|
2
|
+
var XDummyPageObject = class {
|
|
3
|
+
/**
|
|
4
|
+
* @param selector - the root of the label, usually `<label class="label">...</label>`.
|
|
5
|
+
*/
|
|
6
|
+
constructor(selector) {
|
|
7
|
+
this.selector = selector;
|
|
8
|
+
this.el = () => cy.get(this.selector);
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Heading
|
|
12
|
+
*/
|
|
13
|
+
heading() {
|
|
14
|
+
return cy.get(`${this.selector} h1`);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
XDummyPageObject
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=cypress.esm.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/cypress/XDummy.pageobject.ts"],
|
|
4
|
+
"sourcesContent": ["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": ";AAKO,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/esm/index.esm.js
CHANGED
|
@@ -417,10 +417,10 @@ function requireSharedStore() {
|
|
|
417
417
|
var SHARED = "__core-js_shared__";
|
|
418
418
|
var store = sharedStore.exports = globalThis2[SHARED] || defineGlobalProperty2(SHARED, {});
|
|
419
419
|
(store.versions || (store.versions = [])).push({
|
|
420
|
-
version: "3.
|
|
420
|
+
version: "3.41.0",
|
|
421
421
|
mode: IS_PURE ? "pure" : "global",
|
|
422
422
|
copyright: "© 2014-2025 Denis Pushkarev (zloirock.ru)",
|
|
423
|
-
license: "https://github.com/zloirock/core-js/blob/v3.
|
|
423
|
+
license: "https://github.com/zloirock/core-js/blob/v3.41.0/LICENSE",
|
|
424
424
|
source: "https://github.com/zloirock/core-js"
|
|
425
425
|
});
|
|
426
426
|
return sharedStore.exports;
|