@wix/auto_sdk_data-extension-schema_schemas 1.0.91 → 1.0.92

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.
@@ -13256,7 +13256,7 @@ interface EditorElement {
13256
13256
  /**
13257
13257
  * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)
13258
13258
  * @minLength 4
13259
- * @maxLength 50
13259
+ * @maxLength 300
13260
13260
  */
13261
13261
  selector?: string;
13262
13262
  /**
@@ -14371,9 +14371,9 @@ declare enum ElementType {
14371
14371
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14372
14372
  interface InlineElement {
14373
14373
  /**
14374
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14374
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14375
14375
  * @minLength 4
14376
- * @maxLength 50
14376
+ * @maxLength 300
14377
14377
  */
14378
14378
  selector?: string;
14379
14379
  /**
@@ -15848,9 +15848,9 @@ interface RefElement {
15848
15848
  */
15849
15849
  type?: string;
15850
15850
  /**
15851
- * The override of the used element selector
15851
+ * The override of the used element selector, full path from root
15852
15852
  * @minLength 4
15853
- * @maxLength 50
15853
+ * @maxLength 300
15854
15854
  */
15855
15855
  selector?: string;
15856
15856
  /**