@wix/auto_sdk_data-extension-schema_schemas 1.0.99 → 1.0.100
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/build/cjs/index.js +3 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -1
- package/build/cjs/index.typings.js +3 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -1
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +3 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -1
- package/build/es/index.typings.mjs +3 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -1
- package/build/es/meta.mjs +3 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +3 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -1
- package/build/internal/cjs/index.typings.js +3 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -1
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +3 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -1
- package/build/internal/es/index.typings.mjs +3 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -1
- package/build/internal/es/meta.mjs +3 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -15412,6 +15412,9 @@ declare enum GroupType {
|
|
|
15412
15412
|
borderRadius = "borderRadius",
|
|
15413
15413
|
borderInlineStart = "borderInlineStart",
|
|
15414
15414
|
borderInlineEnd = "borderInlineEnd",
|
|
15415
|
+
borderColor = "borderColor",
|
|
15416
|
+
borderWidth = "borderWidth",
|
|
15417
|
+
borderStyle = "borderStyle",
|
|
15415
15418
|
font = "font",
|
|
15416
15419
|
textDecoration = "textDecoration",
|
|
15417
15420
|
gap = "gap",
|
|
@@ -15424,7 +15427,7 @@ declare enum GroupType {
|
|
|
15424
15427
|
listItem = "listItem"
|
|
15425
15428
|
}
|
|
15426
15429
|
/** @enumType */
|
|
15427
|
-
type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataType' | 'dataType' | 'preset' | 'data' | 'presets' | 'cssCustomProperties' | 'displayGroups' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'font' | 'textDecoration' | 'gap' | 'text' | 'arrayItems' | 'arrayItem' | 'listItem';
|
|
15430
|
+
type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataType' | 'dataType' | 'preset' | 'data' | 'presets' | 'cssCustomProperties' | 'displayGroups' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'borderColor' | 'borderWidth' | 'borderStyle' | 'font' | 'textDecoration' | 'gap' | 'text' | 'arrayItems' | 'arrayItem' | 'listItem';
|
|
15428
15431
|
interface ItemsGroup {
|
|
15429
15432
|
/**
|
|
15430
15433
|
* A list of items that should be in this group
|
|
@@ -2411,6 +2411,9 @@ var GroupType = /* @__PURE__ */ ((GroupType2) => {
|
|
|
2411
2411
|
GroupType2["borderRadius"] = "borderRadius";
|
|
2412
2412
|
GroupType2["borderInlineStart"] = "borderInlineStart";
|
|
2413
2413
|
GroupType2["borderInlineEnd"] = "borderInlineEnd";
|
|
2414
|
+
GroupType2["borderColor"] = "borderColor";
|
|
2415
|
+
GroupType2["borderWidth"] = "borderWidth";
|
|
2416
|
+
GroupType2["borderStyle"] = "borderStyle";
|
|
2414
2417
|
GroupType2["font"] = "font";
|
|
2415
2418
|
GroupType2["textDecoration"] = "textDecoration";
|
|
2416
2419
|
GroupType2["gap"] = "gap";
|