@bigbinary/neeto-playwright-commons 1.8.32 → 1.8.33
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 +4 -0
- package/index.cjs.js.map +1 -1
- package/index.d.ts +4 -0
- package/index.js +4 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -400,6 +400,10 @@ declare const NEETO_EDITOR_SELECTORS: {
|
|
|
400
400
|
redoOption: string;
|
|
401
401
|
imageWrapper: string;
|
|
402
402
|
contentField: string;
|
|
403
|
+
addLinkButton: string;
|
|
404
|
+
addLinkTextField: string;
|
|
405
|
+
addURLTextField: string;
|
|
406
|
+
submitLinkButton: string;
|
|
403
407
|
};
|
|
404
408
|
|
|
405
409
|
declare const NEETO_FILTERS_SELECTORS: {
|
package/index.js
CHANGED
|
@@ -13024,6 +13024,10 @@ const NEETO_EDITOR_SELECTORS = {
|
|
|
13024
13024
|
redoOption: "neeto-editor-fixed-menu-redo-option",
|
|
13025
13025
|
imageWrapper: "neeto-editor-image-wrapper",
|
|
13026
13026
|
contentField: "neeto-editor-content",
|
|
13027
|
+
addLinkButton: "neeto-editor-fixed-menu-link-option",
|
|
13028
|
+
addLinkTextField: "neeto-editor-add-link-text-input",
|
|
13029
|
+
addURLTextField: "neeto-editor-add-link-url-input",
|
|
13030
|
+
submitLinkButton: "neeto-editor-add-link",
|
|
13027
13031
|
};
|
|
13028
13032
|
|
|
13029
13033
|
const NEETO_FILTERS_SELECTORS = {
|