@extrachill/components 0.4.31 → 0.4.33

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.33] - 2026-03-26
4
+
5
+ ### Changed
6
+ - rename mobile edge shell contract
7
+
8
+ ## [0.4.32] - 2026-03-26
9
+
10
+ ### Changed
11
+ - centralize mobile edge surfaces behind page shells
12
+ - remove block shell child mobile padding
13
+
3
14
  ## [0.4.31] - 2026-03-26
4
15
 
5
16
  ### Changed
@@ -1 +1 @@
1
- {"version":3,"file":"BlockShell.d.ts","sourceRoot":"","sources":["../src/BlockShell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,eAAe;IAC/B,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACtB;AAED,wBAAgB,UAAU,CAAE,EAC3B,QAAQ,EACR,SAAc,EACd,WAA8B,EAC9B,OAAe,EACf,KAAS,GACT,EAAE,eAAe,2CASjB"}
1
+ {"version":3,"file":"BlockShell.d.ts","sourceRoot":"","sources":["../src/BlockShell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,eAAe;IAC/B,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACtB;AAED,wBAAgB,UAAU,CAAE,EAC3B,QAAQ,EACR,SAAc,EACd,WAA8B,EAC9B,OAAe,EACf,KAAS,GACT,EAAE,eAAe,2CAUjB"}
@@ -2,6 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  export function BlockShell({ children, className = '', classPrefix = 'ec-block-shell', compact = false, depth = 0, }) {
3
3
  const shellClass = [
4
4
  classPrefix,
5
+ 'ec-edge-shell',
5
6
  compact ? `${classPrefix}--compact` : '',
6
7
  `${classPrefix}--depth-${depth}`,
7
8
  className,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrachill/components",
3
- "version": "0.4.31",
3
+ "version": "0.4.33",
4
4
  "description": "Shared React components for the Extra Chill Platform.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -17,6 +17,7 @@ export function BlockShell( {
17
17
  }: BlockShellProps ) {
18
18
  const shellClass = [
19
19
  classPrefix,
20
+ 'ec-edge-shell',
20
21
  compact ? `${ classPrefix }--compact` : '',
21
22
  `${ classPrefix }--depth-${ depth }`,
22
23
  className,
@@ -252,11 +252,6 @@
252
252
  padding-right: 0;
253
253
  }
254
254
 
255
- .ec-block-shell > * {
256
- padding-left: var(--spacing-md, 1rem);
257
- padding-right: var(--spacing-md, 1rem);
258
- }
259
-
260
255
  .ec-block-shell-inner {
261
256
  max-width: none;
262
257
  }
@@ -270,7 +265,7 @@
270
265
  display: none;
271
266
  }
272
267
 
273
- .ec-responsive-tabs__item {
268
+ .ec-edge-shell .ec-responsive-tabs__item {
274
269
  margin-left: calc(var(--spacing-md, 1rem) * -1);
275
270
  margin-right: calc(var(--spacing-md, 1rem) * -1);
276
271
  border-left: 0;
@@ -544,14 +539,14 @@
544
539
  padding-bottom: var(--spacing-sm, 0.5rem);
545
540
  }
546
541
 
547
- .ec-shell-tabs {
542
+ .ec-edge-shell .ec-shell-tabs {
548
543
  margin-left: calc(var(--spacing-md, 1rem) * -1);
549
544
  margin-right: calc(var(--spacing-md, 1rem) * -1);
550
545
  padding-left: var(--spacing-md, 1rem);
551
546
  padding-right: var(--spacing-md, 1rem);
552
547
  }
553
548
 
554
- .ec-panel {
549
+ .ec-edge-shell .ec-panel {
555
550
  border-radius: 0;
556
551
  border-left: 0;
557
552
  border-right: 0;
@@ -562,7 +557,7 @@
562
557
  padding-right: var(--spacing-md, 1rem);
563
558
  }
564
559
 
565
- .ec-section {
560
+ .ec-edge-shell .ec-section {
566
561
  border-radius: 0;
567
562
  border-left: 0;
568
563
  border-right: 0;