@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.
@@ -13282,7 +13282,7 @@ interface EditorElement {
13282
13282
  /**
13283
13283
  * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)
13284
13284
  * @minLength 4
13285
- * @maxLength 50
13285
+ * @maxLength 300
13286
13286
  */
13287
13287
  selector?: string;
13288
13288
  /**
@@ -14397,9 +14397,9 @@ declare enum ElementType {
14397
14397
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14398
14398
  interface InlineElement {
14399
14399
  /**
14400
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14400
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14401
14401
  * @minLength 4
14402
- * @maxLength 50
14402
+ * @maxLength 300
14403
14403
  */
14404
14404
  selector?: string;
14405
14405
  /**
@@ -15874,9 +15874,9 @@ interface RefElement {
15874
15874
  */
15875
15875
  type?: string;
15876
15876
  /**
15877
- * The override of the used element selector
15877
+ * The override of the used element selector, full path from root
15878
15878
  * @minLength 4
15879
- * @maxLength 50
15879
+ * @maxLength 300
15880
15880
  */
15881
15881
  selector?: string;
15882
15882
  /**