unlayer-types 1.287.0 → 1.291.0

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.
Files changed (2) hide show
  1. package/embed.d.ts +14 -0
  2. package/package.json +1 -1
package/embed.d.ts CHANGED
@@ -1631,6 +1631,20 @@ declare module "state/types/types" {
1631
1631
  }, placeholder: string) => (dispatch: Dispatch, getState: () => RootState) => Promise<void>;
1632
1632
  export interface JSONSchema {
1633
1633
  }
1634
+ export type TableValue = {
1635
+ headers: {
1636
+ cells: {
1637
+ id: string;
1638
+ text: string;
1639
+ }[];
1640
+ }[];
1641
+ rows: {
1642
+ cells: {
1643
+ id: string;
1644
+ text: string;
1645
+ }[];
1646
+ }[];
1647
+ };
1634
1648
  }
1635
1649
  declare module "engine/utils/pruneObj" {
1636
1650
  export function pruneObj<T extends Record<string, any>>(obj: T, options?: {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "unlayer-types",
3
- "version": "1.287.0",
3
+ "version": "1.291.0",
4
4
  "license": "MIT"
5
5
  }