@bigbinary/neeto-playwright-commons 1.11.0 → 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 -4
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2795,6 +2795,8 @@ declare const networkConditions: Record<"Slow 3G" | "Fast 3G" | "No Throttling",
|
|
|
2795
2795
|
*
|
|
2796
2796
|
* spinner: Selector for spinners.
|
|
2797
2797
|
*
|
|
2798
|
+
* uiSpinner: Selector for spinners.
|
|
2799
|
+
*
|
|
2798
2800
|
* subheaderText: Selector to get the subheader text.
|
|
2799
2801
|
*
|
|
2800
2802
|
* alertTitle: Selector for alert titles.
|
|
@@ -2945,6 +2947,14 @@ declare const networkConditions: Record<"Slow 3G" | "Fast 3G" | "No Throttling",
|
|
|
2945
2947
|
*
|
|
2946
2948
|
* navigationHeaderLeftBlock: Selector for navigation header left block.
|
|
2947
2949
|
*
|
|
2950
|
+
* modalBody: Selector for modal body.
|
|
2951
|
+
*
|
|
2952
|
+
* modalFooter: Selector for modal footer.
|
|
2953
|
+
*
|
|
2954
|
+
* navigationHeader: Selector for navigation header,
|
|
2955
|
+
*
|
|
2956
|
+
* buttonSpinner: Selector for button spinner,
|
|
2957
|
+
*
|
|
2948
2958
|
*/
|
|
2949
2959
|
declare const COMMON_SELECTORS: {
|
|
2950
2960
|
emailInputError: string;
|
|
@@ -2953,6 +2963,7 @@ declare const COMMON_SELECTORS: {
|
|
|
2953
2963
|
copyButton: string;
|
|
2954
2964
|
resetButton: string;
|
|
2955
2965
|
spinner: string;
|
|
2966
|
+
uiSpinner: string;
|
|
2956
2967
|
subheaderText: string;
|
|
2957
2968
|
alertTitle: string;
|
|
2958
2969
|
alertModalMessage: string;
|
|
@@ -3029,6 +3040,10 @@ declare const COMMON_SELECTORS: {
|
|
|
3029
3040
|
tableRow: string;
|
|
3030
3041
|
navigationHeaderLeftBlock: string;
|
|
3031
3042
|
fileUploadBody: string;
|
|
3043
|
+
modalBody: string;
|
|
3044
|
+
modalForever: string;
|
|
3045
|
+
navigationHeader: string;
|
|
3046
|
+
buttonSpinner: string;
|
|
3032
3047
|
};
|
|
3033
3048
|
/**
|
|
3034
3049
|
*
|
|
@@ -5029,9 +5044,6 @@ declare const currencyUtils: {
|
|
|
5029
5044
|
withSymbolAndCode: (amount: number, currency: string, options: Record<string, unknown>) => string;
|
|
5030
5045
|
};
|
|
5031
5046
|
};
|
|
5032
|
-
interface CurrentsOverrides {
|
|
5033
|
-
projectId: string;
|
|
5034
|
-
}
|
|
5035
5047
|
interface PlaydashOverrides {
|
|
5036
5048
|
projectKey: string;
|
|
5037
5049
|
}
|
|
@@ -5040,7 +5052,6 @@ interface Overrides {
|
|
|
5040
5052
|
useOverrides?: Record<string, unknown>;
|
|
5041
5053
|
useCustomProjects?: boolean;
|
|
5042
5054
|
projectOverrides?: Record<string, unknown>[];
|
|
5043
|
-
currentsOverrides: CurrentsOverrides & Record<string, unknown>;
|
|
5044
5055
|
playdashStagingOverrides?: PlaydashOverrides & Record<string, unknown>;
|
|
5045
5056
|
playdashProductionOverrides?: PlaydashOverrides & Record<string, unknown>;
|
|
5046
5057
|
}
|
package/index.js
CHANGED
|
@@ -256,6 +256,7 @@ const COMMON_SELECTORS = {
|
|
|
256
256
|
copyButton: "copy-button",
|
|
257
257
|
resetButton: "reset-button",
|
|
258
258
|
spinner: ".neeto-ui-spinner",
|
|
259
|
+
uiSpinner: "neeto-ui-spinner",
|
|
259
260
|
subheaderText: "subheader-left",
|
|
260
261
|
alertTitle: "alert-title",
|
|
261
262
|
alertModalMessage: "alert-message",
|
|
@@ -332,6 +333,10 @@ const COMMON_SELECTORS = {
|
|
|
332
333
|
tableRow: ".ant-table-row",
|
|
333
334
|
navigationHeaderLeftBlock: "navigation-header-left-block",
|
|
334
335
|
fileUploadBody: "file-upload-body",
|
|
336
|
+
modalBody: "modal-body",
|
|
337
|
+
modalForever: "modal-footer",
|
|
338
|
+
navigationHeader: "navigation-header",
|
|
339
|
+
buttonSpinner: ".neeto-ui-btn__spinner",
|
|
335
340
|
};
|
|
336
341
|
|
|
337
342
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|