@wix/auto_sdk_data-extension-schema_schemas 1.0.91 → 1.0.93

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
  /**
@@ -13816,13 +13816,19 @@ declare enum VectorArtCategoryTypes {
13816
13816
  SHAPE_BASIC = "SHAPE_BASIC",
13817
13817
  /** Vector Art Shapes - mapped to SHAPE_ART */
13818
13818
  SHAPE_ART = "SHAPE_ART",
13819
- /** Social Icons - mapped to ICON_SOCIAL */
13819
+ /** Social Icons - deprecated use SHAPE_SOCIAL instead */
13820
13820
  ICON_SOCIAL = "ICON_SOCIAL",
13821
13821
  /** Location Icons - mapped to SHAPE_LOCATION */
13822
- SHAPE_LOCATION = "SHAPE_LOCATION"
13822
+ SHAPE_LOCATION = "SHAPE_LOCATION",
13823
+ /** Documents Icons - mapped to SHAPE_DOCUMENTS */
13824
+ SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
13825
+ /** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
13826
+ SHAPE_SOCIAL = "SHAPE_SOCIAL",
13827
+ /** Arrow Icons - mapped to SHAPE_ARROWS */
13828
+ SHAPE_ARROWS = "SHAPE_ARROWS"
13823
13829
  }
13824
13830
  /** @enumType */
13825
- type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
13831
+ type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
13826
13832
  /** DEPRECATED: This message is deprecated and will be removed in the future */
13827
13833
  interface CustomEnum {
13828
13834
  /**
@@ -14397,9 +14403,9 @@ declare enum ElementType {
14397
14403
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14398
14404
  interface InlineElement {
14399
14405
  /**
14400
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14406
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14401
14407
  * @minLength 4
14402
- * @maxLength 50
14408
+ * @maxLength 300
14403
14409
  */
14404
14410
  selector?: string;
14405
14411
  /**
@@ -15874,9 +15880,9 @@ interface RefElement {
15874
15880
  */
15875
15881
  type?: string;
15876
15882
  /**
15877
- * The override of the used element selector
15883
+ * The override of the used element selector, full path from root
15878
15884
  * @minLength 4
15879
- * @maxLength 50
15885
+ * @maxLength 300
15880
15886
  */
15881
15887
  selector?: string;
15882
15888
  /**
package/build/cjs/meta.js CHANGED
@@ -2369,6 +2369,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
2369
2369
  VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
2370
2370
  VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
2371
2371
  VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
2372
+ VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
2373
+ VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
2374
+ VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
2372
2375
  return VectorArtCategoryTypes2;
2373
2376
  })(VectorArtCategoryTypes || {});
2374
2377
  var CssDataType = /* @__PURE__ */ ((CssDataType2) => {