@extrachill/components 0.4.36 → 0.4.37

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.37] - 2026-03-26
4
+
5
+ ### Fixed
6
+ - give block shell inner default gutter
7
+
3
8
  ## [0.4.36] - 2026-03-26
4
9
 
5
10
  ### Changed
@@ -1 +1 @@
1
- {"version":3,"file":"BlockShellInner.d.ts","sourceRoot":"","sources":["../src/BlockShellInner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,oBAAoB;IACpC,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;CACtC;AAED,wBAAgB,eAAe,CAAE,EAChC,QAAQ,EACR,SAAc,EACd,WAAoC,EACpC,QAAiB,GACjB,EAAE,oBAAoB,2CAUtB"}
1
+ {"version":3,"file":"BlockShellInner.d.ts","sourceRoot":"","sources":["../src/BlockShellInner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,oBAAoB;IACpC,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;CACtC;AAED,wBAAgB,eAAe,CAAE,EAChC,QAAQ,EACR,SAAc,EACd,WAAoC,EACpC,QAAiB,GACjB,EAAE,oBAAoB,2CAWtB"}
@@ -2,6 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  export function BlockShellInner({ children, className = '', classPrefix = 'ec-block-shell-inner', maxWidth = 'none', }) {
3
3
  const innerClass = [
4
4
  classPrefix,
5
+ 'page-content',
5
6
  maxWidth !== 'none' ? `${classPrefix}--${maxWidth}` : '',
6
7
  className,
7
8
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrachill/components",
3
- "version": "0.4.36",
3
+ "version": "0.4.37",
4
4
  "description": "Shared React components for the Extra Chill Platform.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -15,6 +15,7 @@ export function BlockShellInner( {
15
15
  }: BlockShellInnerProps ) {
16
16
  const innerClass = [
17
17
  classPrefix,
18
+ 'page-content',
18
19
  maxWidth !== 'none' ? `${ classPrefix }--${ maxWidth }` : '',
19
20
  className,
20
21
  ]