@bigbinary/neeto-playwright-commons 1.11.1 → 1.11.2
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/index.cjs.js +5 -0
- package/index.cjs.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -303,6 +303,7 @@ const COMMON_SELECTORS = {
|
|
|
303
303
|
copyButton: "copy-button",
|
|
304
304
|
resetButton: "reset-button",
|
|
305
305
|
spinner: ".neeto-ui-spinner",
|
|
306
|
+
uiSpinner: "neeto-ui-spinner",
|
|
306
307
|
subheaderText: "subheader-left",
|
|
307
308
|
alertTitle: "alert-title",
|
|
308
309
|
alertModalMessage: "alert-message",
|
|
@@ -379,6 +380,10 @@ const COMMON_SELECTORS = {
|
|
|
379
380
|
tableRow: ".ant-table-row",
|
|
380
381
|
navigationHeaderLeftBlock: "navigation-header-left-block",
|
|
381
382
|
fileUploadBody: "file-upload-body",
|
|
383
|
+
modalBody: "modal-body",
|
|
384
|
+
modalForever: "modal-footer",
|
|
385
|
+
navigationHeader: "navigation-header",
|
|
386
|
+
buttonSpinner: ".neeto-ui-btn__spinner",
|
|
382
387
|
};
|
|
383
388
|
|
|
384
389
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|