@bigbinary/neeto-playwright-commons 1.9.18 → 1.9.20
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 +3 -0
- package/index.cjs.js.map +1 -1
- package/index.d.ts +10 -1
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2502,6 +2502,8 @@ declare const networkConditions: Record<"Slow 3G" | "Fast 3G" | "No Throttling",
|
|
|
2502
2502
|
* @endexample
|
|
2503
2503
|
* copyButton: Selector for the copy button.
|
|
2504
2504
|
*
|
|
2505
|
+
* resetButton: Selector for the reset button.
|
|
2506
|
+
*
|
|
2505
2507
|
* spinner: Selector for spinners.
|
|
2506
2508
|
*
|
|
2507
2509
|
* subheaderText: Selector to get the subheader text.
|
|
@@ -2638,6 +2640,7 @@ declare const COMMON_SELECTORS: {
|
|
|
2638
2640
|
pane: string;
|
|
2639
2641
|
sideBar: string;
|
|
2640
2642
|
copyButton: string;
|
|
2643
|
+
resetButton: string;
|
|
2641
2644
|
spinner: string;
|
|
2642
2645
|
subheaderText: string;
|
|
2643
2646
|
alertTitle: string;
|
|
@@ -2757,6 +2760,10 @@ declare const COMMON_SELECTORS: {
|
|
|
2757
2760
|
*
|
|
2758
2761
|
* submitLinkButton: Selector for the submit link button.
|
|
2759
2762
|
*
|
|
2763
|
+
* errorText: Selector for the error text.
|
|
2764
|
+
*
|
|
2765
|
+
* content: Selector for the editor content.
|
|
2766
|
+
*
|
|
2760
2767
|
*/
|
|
2761
2768
|
declare const NEETO_EDITOR_SELECTORS: {
|
|
2762
2769
|
boldOption: string;
|
|
@@ -2803,6 +2810,8 @@ declare const NEETO_EDITOR_SELECTORS: {
|
|
|
2803
2810
|
paragraphOption: string;
|
|
2804
2811
|
attachmentPreview: string;
|
|
2805
2812
|
imageUploadLinkButton: string;
|
|
2813
|
+
errorText: string;
|
|
2814
|
+
content: string;
|
|
2806
2815
|
};
|
|
2807
2816
|
declare const NEETO_TEXT_MODIFIER_SELECTORS: {
|
|
2808
2817
|
strikeOption: string;
|
|
@@ -4662,7 +4671,7 @@ interface Overrides {
|
|
|
4662
4671
|
projectOverrides?: Record<string, unknown>[];
|
|
4663
4672
|
currentsOverrides: CurrentsOverrides & Record<string, unknown>;
|
|
4664
4673
|
playdashStagingOverrides?: PlaydashOverrides & Record<string, unknown>;
|
|
4665
|
-
playdashProductionOverrides
|
|
4674
|
+
playdashProductionOverrides?: PlaydashOverrides & Record<string, unknown>;
|
|
4666
4675
|
}
|
|
4667
4676
|
/**
|
|
4668
4677
|
*
|
package/index.js
CHANGED
|
@@ -244,6 +244,7 @@ const COMMON_SELECTORS = {
|
|
|
244
244
|
pane: "pane-wrapper",
|
|
245
245
|
sideBar: "sidebar",
|
|
246
246
|
copyButton: "copy-button",
|
|
247
|
+
resetButton: "reset-button",
|
|
247
248
|
spinner: ".neeto-ui-spinner",
|
|
248
249
|
subheaderText: "subheader-left",
|
|
249
250
|
alertTitle: "alert-title",
|
|
@@ -14428,6 +14429,8 @@ const NEETO_EDITOR_SELECTORS = {
|
|
|
14428
14429
|
paragraphOption: "neeto-editor-fixed-menu-font-size-option-body2",
|
|
14429
14430
|
attachmentPreview: "ne-attachments-wrapper",
|
|
14430
14431
|
imageUploadLinkButton: "neeto-editor-media-uploader-link-tab",
|
|
14432
|
+
errorText: "neeto-editor-error-text",
|
|
14433
|
+
content: "editor-content",
|
|
14431
14434
|
};
|
|
14432
14435
|
const NEETO_TEXT_MODIFIER_SELECTORS = {
|
|
14433
14436
|
strikeOption: "neeto-editor-fixed-menu-strike-option",
|