@digitalculture/ochre-sdk 0.4.6 → 0.4.7

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/dist/index.cjs CHANGED
@@ -1970,9 +1970,9 @@ async function parseWebpage(webpageResource) {
1970
1970
  blocks: [],
1971
1971
  elements,
1972
1972
  properties: {
1973
- spacing: "auto",
1973
+ spacing: null,
1974
1974
  gap: "none",
1975
- alignItems: "stretch",
1975
+ alignItems: "start",
1976
1976
  justifyContent: "stretch"
1977
1977
  },
1978
1978
  cssStyles: []
@@ -1992,9 +1992,9 @@ async function parseWebpage(webpageResource) {
1992
1992
  blocks: [],
1993
1993
  elements,
1994
1994
  properties: {
1995
- spacing: "auto",
1995
+ spacing: null,
1996
1996
  gap: "none",
1997
- alignItems: "stretch",
1997
+ alignItems: "start",
1998
1998
  justifyContent: "stretch"
1999
1999
  },
2000
2000
  cssStyles: []
@@ -2083,9 +2083,9 @@ async function parseBlock(blockResource) {
2083
2083
  blocks: [],
2084
2084
  elements: [],
2085
2085
  properties: {
2086
- spacing: "auto",
2086
+ spacing: null,
2087
2087
  gap: "none",
2088
- alignItems: "stretch",
2088
+ alignItems: "start",
2089
2089
  justifyContent: "stretch"
2090
2090
  },
2091
2091
  cssStyles: []
package/dist/index.d.cts CHANGED
@@ -590,7 +590,7 @@ type Block = {
590
590
  /**
591
591
  * valid `gridTemplateColumns` or `gridTemplateRows` CSS property value
592
592
  */
593
- spacing: string;
593
+ spacing: string | null;
594
594
  /**
595
595
  * `gap` CSS property value
596
596
  */
package/dist/index.d.ts CHANGED
@@ -590,7 +590,7 @@ type Block = {
590
590
  /**
591
591
  * valid `gridTemplateColumns` or `gridTemplateRows` CSS property value
592
592
  */
593
- spacing: string;
593
+ spacing: string | null;
594
594
  /**
595
595
  * `gap` CSS property value
596
596
  */
package/dist/index.js CHANGED
@@ -1891,9 +1891,9 @@ async function parseWebpage(webpageResource) {
1891
1891
  blocks: [],
1892
1892
  elements,
1893
1893
  properties: {
1894
- spacing: "auto",
1894
+ spacing: null,
1895
1895
  gap: "none",
1896
- alignItems: "stretch",
1896
+ alignItems: "start",
1897
1897
  justifyContent: "stretch"
1898
1898
  },
1899
1899
  cssStyles: []
@@ -1913,9 +1913,9 @@ async function parseWebpage(webpageResource) {
1913
1913
  blocks: [],
1914
1914
  elements,
1915
1915
  properties: {
1916
- spacing: "auto",
1916
+ spacing: null,
1917
1917
  gap: "none",
1918
- alignItems: "stretch",
1918
+ alignItems: "start",
1919
1919
  justifyContent: "stretch"
1920
1920
  },
1921
1921
  cssStyles: []
@@ -2004,9 +2004,9 @@ async function parseBlock(blockResource) {
2004
2004
  blocks: [],
2005
2005
  elements: [],
2006
2006
  properties: {
2007
- spacing: "auto",
2007
+ spacing: null,
2008
2008
  gap: "none",
2009
- alignItems: "stretch",
2009
+ alignItems: "start",
2010
2010
  justifyContent: "stretch"
2011
2011
  },
2012
2012
  cssStyles: []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitalculture/ochre-sdk",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Node.js library for working with OCHRE (Online Cultural and Historical Research Environment) data",