@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
|
/**
|
|
@@ -2486,6 +2486,14 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2486
2486
|
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2487
2487
|
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2488
2488
|
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2489
|
+
DisplayValueEnumDisplayValue2["tableRowGroup"] = "tableRowGroup";
|
|
2490
|
+
DisplayValueEnumDisplayValue2["tableHeaderGroup"] = "tableHeaderGroup";
|
|
2491
|
+
DisplayValueEnumDisplayValue2["tableFooterGroup"] = "tableFooterGroup";
|
|
2492
|
+
DisplayValueEnumDisplayValue2["tableRow"] = "tableRow";
|
|
2493
|
+
DisplayValueEnumDisplayValue2["tableCell"] = "tableCell";
|
|
2494
|
+
DisplayValueEnumDisplayValue2["tableColumnGroup"] = "tableColumnGroup";
|
|
2495
|
+
DisplayValueEnumDisplayValue2["tableColumn"] = "tableColumn";
|
|
2496
|
+
DisplayValueEnumDisplayValue2["tableCaption"] = "tableCaption";
|
|
2489
2497
|
return DisplayValueEnumDisplayValue2;
|
|
2490
2498
|
})(DisplayValueEnumDisplayValue || {});
|
|
2491
2499
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|