@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.
@@ -13273,7 +13273,7 @@ interface EditorElement {
13273
13273
  /**
13274
13274
  * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)
13275
13275
  * @minLength 4
13276
- * @maxLength 50
13276
+ * @maxLength 300
13277
13277
  */
13278
13278
  selector?: string;
13279
13279
  /**
@@ -14388,9 +14388,9 @@ declare enum ElementType {
14388
14388
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14389
14389
  interface InlineElement {
14390
14390
  /**
14391
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14391
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14392
14392
  * @minLength 4
14393
- * @maxLength 50
14393
+ * @maxLength 300
14394
14394
  */
14395
14395
  selector?: string;
14396
14396
  /**
@@ -15865,9 +15865,9 @@ interface RefElement {
15865
15865
  */
15866
15866
  type?: string;
15867
15867
  /**
15868
- * The override of the used element selector
15868
+ * The override of the used element selector, full path from root
15869
15869
  * @minLength 4
15870
- * @maxLength 50
15870
+ * @maxLength 300
15871
15871
  */
15872
15872
  selector?: string;
15873
15873
  /**