concertina 0.8.0 → 0.8.1

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
@@ -1309,14 +1309,17 @@ var Warmup = (0, import_react15.forwardRef)(
1309
1309
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "concertina-warmup-line concertina-warmup-line-short" }),
1310
1310
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "concertina-warmup-line concertina-warmup-line-long" })
1311
1311
  ] }, i));
1312
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1312
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1313
1313
  Tag,
1314
1314
  {
1315
1315
  ref,
1316
1316
  className: merged,
1317
1317
  style: { gridTemplateColumns: `repeat(${columns}, 1fr)` },
1318
1318
  ...props,
1319
- children: cells
1319
+ children: [
1320
+ children,
1321
+ cells
1322
+ ]
1320
1323
  }
1321
1324
  );
1322
1325
  }
package/dist/index.d.cts CHANGED
@@ -105,6 +105,9 @@ interface WarmupProps extends HTMLAttributes<HTMLElement> {
105
105
  * dimensions of the real content. Pair with <Gigbag> so the
106
106
  * container ratchets to the larger of placeholder vs real content.
107
107
  *
108
+ * Pass children to inject structure before the generated bones
109
+ * (e.g. a toolbar placeholder that spans all grid columns).
110
+ *
108
111
  * All dimensions are CSS custom properties — consuming apps theme
109
112
  * without forking.
110
113
  */
package/dist/index.d.ts CHANGED
@@ -105,6 +105,9 @@ interface WarmupProps extends HTMLAttributes<HTMLElement> {
105
105
  * dimensions of the real content. Pair with <Gigbag> so the
106
106
  * container ratchets to the larger of placeholder vs real content.
107
107
  *
108
+ * Pass children to inject structure before the generated bones
109
+ * (e.g. a toolbar placeholder that spans all grid columns).
110
+ *
108
111
  * All dimensions are CSS custom properties — consuming apps theme
109
112
  * without forking.
110
113
  */
package/dist/index.js CHANGED
@@ -1269,14 +1269,17 @@ var Warmup = forwardRef10(
1269
1269
  /* @__PURE__ */ jsx14("div", { className: "concertina-warmup-line concertina-warmup-line-short" }),
1270
1270
  /* @__PURE__ */ jsx14("div", { className: "concertina-warmup-line concertina-warmup-line-long" })
1271
1271
  ] }, i));
1272
- return /* @__PURE__ */ jsx14(
1272
+ return /* @__PURE__ */ jsxs(
1273
1273
  Tag,
1274
1274
  {
1275
1275
  ref,
1276
1276
  className: merged,
1277
1277
  style: { gridTemplateColumns: `repeat(${columns}, 1fr)` },
1278
1278
  ...props,
1279
- children: cells
1279
+ children: [
1280
+ children,
1281
+ cells
1282
+ ]
1280
1283
  }
1281
1284
  );
1282
1285
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "concertina",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "React toolkit for layout stability.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",