@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
|
@@ -15429,6 +15429,9 @@ declare enum GroupType {
|
|
|
15429
15429
|
borderRadius = "borderRadius",
|
|
15430
15430
|
borderInlineStart = "borderInlineStart",
|
|
15431
15431
|
borderInlineEnd = "borderInlineEnd",
|
|
15432
|
+
borderColor = "borderColor",
|
|
15433
|
+
borderWidth = "borderWidth",
|
|
15434
|
+
borderStyle = "borderStyle",
|
|
15432
15435
|
font = "font",
|
|
15433
15436
|
textDecoration = "textDecoration",
|
|
15434
15437
|
gap = "gap",
|
|
@@ -15441,7 +15444,7 @@ declare enum GroupType {
|
|
|
15441
15444
|
listItem = "listItem"
|
|
15442
15445
|
}
|
|
15443
15446
|
/** @enumType */
|
|
15444
|
-
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';
|
|
15447
|
+
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';
|
|
15445
15448
|
interface ItemsGroup {
|
|
15446
15449
|
/**
|
|
15447
15450
|
* 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";
|