@bigbinary/neeto-playwright-commons 1.8.38 → 1.8.39

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.d.ts CHANGED
@@ -462,6 +462,7 @@ declare const COMMON_SELECTORS: {
462
462
  columnsDropdownContainer: string;
463
463
  columnsDropdownButton: string;
464
464
  breadcrumbHeader: string;
465
+ header: string;
465
466
  };
466
467
 
467
468
  declare const NEETO_EDITOR_SELECTORS: {
package/index.js CHANGED
@@ -190,6 +190,7 @@ const COMMON_SELECTORS = {
190
190
  columnsDropdownContainer: "show/hide-columns-dropdown-container",
191
191
  columnsDropdownButton: "columns-dropdown-button",
192
192
  breadcrumbHeader: "header-breadcrumb",
193
+ header: "neeto-molecules-header",
193
194
  };
194
195
 
195
196
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};