@postenbring/hedwig-react 0.0.68 → 0.0.69
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/_tsup-dts-rollup.d.mts +27 -0
- package/dist/_tsup-dts-rollup.d.ts +27 -0
- package/dist/{chunk-XNA5MFJC.mjs → chunk-25R7DBK6.mjs} +3 -3
- package/dist/chunk-25R7DBK6.mjs.map +1 -0
- package/dist/{chunk-DIDVODBP.mjs → chunk-JDXYRFLJ.mjs} +2 -2
- package/dist/{chunk-QGZU7Z2W.mjs → chunk-VVPJOVFP.mjs} +27 -3
- package/dist/chunk-VVPJOVFP.mjs.map +1 -0
- package/dist/index-no-css.js +28 -4
- package/dist/index-no-css.js.map +1 -1
- package/dist/index-no-css.mjs +3 -3
- package/dist/index.js +28 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/layout/grid/grid.js +2 -2
- package/dist/layout/grid/grid.js.map +1 -1
- package/dist/layout/grid/grid.mjs +1 -1
- package/dist/layout/grid/index.js +2 -2
- package/dist/layout/grid/index.js.map +1 -1
- package/dist/layout/grid/index.mjs +2 -2
- package/dist/layout/index.js +28 -4
- package/dist/layout/index.js.map +1 -1
- package/dist/layout/index.mjs +3 -3
- package/dist/layout/stack/index.js +26 -2
- package/dist/layout/stack/index.js.map +1 -1
- package/dist/layout/stack/index.mjs +1 -1
- package/dist/layout/stack/stack.js +26 -2
- package/dist/layout/stack/stack.js.map +1 -1
- package/dist/layout/stack/stack.mjs +1 -1
- package/package.json +2 -2
- package/dist/chunk-QGZU7Z2W.mjs.map +0 -1
- package/dist/chunk-XNA5MFJC.mjs.map +0 -1
- /package/dist/{chunk-DIDVODBP.mjs.map → chunk-JDXYRFLJ.mjs.map} +0 -0
package/dist/index-no-css.mjs
CHANGED
|
@@ -57,19 +57,19 @@ import {
|
|
|
57
57
|
import "./chunk-BVG5VSZK.mjs";
|
|
58
58
|
import {
|
|
59
59
|
GridComponent
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-JDXYRFLJ.mjs";
|
|
61
61
|
import "./chunk-ZQHLYAJU.mjs";
|
|
62
62
|
import {
|
|
63
63
|
HStack,
|
|
64
64
|
Stack,
|
|
65
65
|
VStack
|
|
66
|
-
} from "./chunk-
|
|
66
|
+
} from "./chunk-VVPJOVFP.mjs";
|
|
67
67
|
import {
|
|
68
68
|
Container
|
|
69
69
|
} from "./chunk-I6GDRDYD.mjs";
|
|
70
70
|
import {
|
|
71
71
|
GridItem
|
|
72
|
-
} from "./chunk-
|
|
72
|
+
} from "./chunk-25R7DBK6.mjs";
|
|
73
73
|
import "./chunk-XLLYMQLW.mjs";
|
|
74
74
|
import {
|
|
75
75
|
Link
|
package/dist/index.js
CHANGED
|
@@ -1338,9 +1338,9 @@ function getSpacingVariable(size) {
|
|
|
1338
1338
|
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1339
1339
|
var Grid = (0, import_react21.forwardRef)(
|
|
1340
1340
|
(_a, ref) => {
|
|
1341
|
-
var _b = _a, { children, asChild, className, span, center, style: _style, gap } = _b, rest = __objRest(_b, ["children", "asChild", "className", "span", "center", "style", "gap"]);
|
|
1341
|
+
var _b = _a, { children, asChild, className, span, center, style: _style, gap, gapX, gapY } = _b, rest = __objRest(_b, ["children", "asChild", "className", "span", "center", "style", "gap", "gapX", "gapY"]);
|
|
1342
1342
|
const Component = asChild ? import_react_slot2.Slot : "div";
|
|
1343
|
-
const style = __spreadValues(__spreadValues(__spreadValues(__spreadValues({}, _style), getResponsiveProps("--hds-grid-gap", gap, getSpacingVariable)), getResponsiveProps("--hds-grid-span", span)), getResponsiveProps("--hds-grid-center", center, (value) => value ? "1" : "0"));
|
|
1343
|
+
const style = __spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({}, _style), getResponsiveProps("--hds-grid-gap", gap, getSpacingVariable)), getResponsiveProps("--hds-grid-gap-x", gapX, getSpacingVariable)), getResponsiveProps("--hds-grid-gap-y", gapY, getSpacingVariable)), getResponsiveProps("--hds-grid-span", span)), getResponsiveProps("--hds-grid-center", center, (value) => value ? "1" : "0"));
|
|
1344
1344
|
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1345
1345
|
Component,
|
|
1346
1346
|
__spreadProps(__spreadValues({
|
|
@@ -1385,9 +1385,33 @@ var import_react_slot3 = require("@radix-ui/react-slot");
|
|
|
1385
1385
|
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1386
1386
|
var Stack = (0, import_react22.forwardRef)(
|
|
1387
1387
|
(_a, ref) => {
|
|
1388
|
-
var _b = _a, {
|
|
1388
|
+
var _b = _a, {
|
|
1389
|
+
children,
|
|
1390
|
+
asChild,
|
|
1391
|
+
className,
|
|
1392
|
+
style: _style,
|
|
1393
|
+
gap,
|
|
1394
|
+
gapX,
|
|
1395
|
+
gapY,
|
|
1396
|
+
direction,
|
|
1397
|
+
wrap,
|
|
1398
|
+
align,
|
|
1399
|
+
justify
|
|
1400
|
+
} = _b, rest = __objRest(_b, [
|
|
1401
|
+
"children",
|
|
1402
|
+
"asChild",
|
|
1403
|
+
"className",
|
|
1404
|
+
"style",
|
|
1405
|
+
"gap",
|
|
1406
|
+
"gapX",
|
|
1407
|
+
"gapY",
|
|
1408
|
+
"direction",
|
|
1409
|
+
"wrap",
|
|
1410
|
+
"align",
|
|
1411
|
+
"justify"
|
|
1412
|
+
]);
|
|
1389
1413
|
const Component = asChild ? import_react_slot3.Slot : "div";
|
|
1390
|
-
const style = __spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({}, _style), getResponsiveProps("--hds-stack-gap", gap, getSpacingVariable)), getResponsiveProps("--hds-stack-direction", direction)), getResponsiveProps("--hds-stack-wrap", wrap, (value) => value ? "wrap" : "nowrap")), getResponsiveProps("--hds-stack-align", align)), getResponsiveProps("--hds-stack-justify", justify));
|
|
1414
|
+
const style = __spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({}, _style), getResponsiveProps("--hds-stack-gap", gap, getSpacingVariable)), getResponsiveProps("--hds-stack-gap-x", gapX, getSpacingVariable)), getResponsiveProps("--hds-stack-gap-y", gapY, getSpacingVariable)), getResponsiveProps("--hds-stack-direction", direction)), getResponsiveProps("--hds-stack-wrap", wrap, (value) => value ? "wrap" : "nowrap")), getResponsiveProps("--hds-stack-align", align)), getResponsiveProps("--hds-stack-justify", justify));
|
|
1391
1415
|
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1392
1416
|
Component,
|
|
1393
1417
|
__spreadProps(__spreadValues({
|