@wix/app-extensions 1.0.133 → 1.0.134
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 +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +10 -2
- package/build/trusted/cjs/index.js +8 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +10 -2
- package/build/trusted/es/index.mjs +8 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -20847,11 +20847,19 @@ declare enum DisplayValueEnumDisplayValue {
|
|
|
20847
20847
|
inlineTable = "inlineTable",
|
|
20848
20848
|
inlineFlex = "inlineFlex",
|
|
20849
20849
|
inlineGrid = "inlineGrid",
|
|
20850
|
-
listItem = "listItem"
|
|
20850
|
+
listItem = "listItem",
|
|
20851
|
+
tableRowGroup = "tableRowGroup",
|
|
20852
|
+
tableHeaderGroup = "tableHeaderGroup",
|
|
20853
|
+
tableFooterGroup = "tableFooterGroup",
|
|
20854
|
+
tableRow = "tableRow",
|
|
20855
|
+
tableCell = "tableCell",
|
|
20856
|
+
tableColumnGroup = "tableColumnGroup",
|
|
20857
|
+
tableColumn = "tableColumn",
|
|
20858
|
+
tableCaption = "tableCaption"
|
|
20851
20859
|
}
|
|
20852
20860
|
/** @enumType */
|
|
20853
20861
|
/** @internal */
|
|
20854
|
-
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem';
|
|
20862
|
+
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem' | 'tableRowGroup' | 'tableHeaderGroup' | 'tableFooterGroup' | 'tableRow' | 'tableCell' | 'tableColumnGroup' | 'tableColumn' | 'tableCaption';
|
|
20855
20863
|
/** @internal */
|
|
20856
20864
|
interface WritingMode {
|
|
20857
20865
|
/**
|
|
@@ -3059,6 +3059,14 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
3059
3059
|
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
3060
3060
|
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
3061
3061
|
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
3062
|
+
DisplayValueEnumDisplayValue2["tableRowGroup"] = "tableRowGroup";
|
|
3063
|
+
DisplayValueEnumDisplayValue2["tableHeaderGroup"] = "tableHeaderGroup";
|
|
3064
|
+
DisplayValueEnumDisplayValue2["tableFooterGroup"] = "tableFooterGroup";
|
|
3065
|
+
DisplayValueEnumDisplayValue2["tableRow"] = "tableRow";
|
|
3066
|
+
DisplayValueEnumDisplayValue2["tableCell"] = "tableCell";
|
|
3067
|
+
DisplayValueEnumDisplayValue2["tableColumnGroup"] = "tableColumnGroup";
|
|
3068
|
+
DisplayValueEnumDisplayValue2["tableColumn"] = "tableColumn";
|
|
3069
|
+
DisplayValueEnumDisplayValue2["tableCaption"] = "tableCaption";
|
|
3062
3070
|
return DisplayValueEnumDisplayValue2;
|
|
3063
3071
|
})(DisplayValueEnumDisplayValue || {});
|
|
3064
3072
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|