@trading-game/design-intelligence-layer 0.9.2 → 0.9.4
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/README.md +2 -1
- package/dist/index.cjs +14 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -11
- package/dist/index.js.map +1 -1
- package/guides/design-system-guide/trading-game-ds-guide.md +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5804,17 +5804,20 @@ function Stepper({
|
|
|
5804
5804
|
className: "text-center [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none"
|
|
5805
5805
|
}
|
|
5806
5806
|
),
|
|
5807
|
-
/* @__PURE__ */
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5815
|
-
|
|
5816
|
-
|
|
5817
|
-
|
|
5807
|
+
/* @__PURE__ */ jsxs24(InputGroupAddon, { align: "inline-end", children: [
|
|
5808
|
+
/* @__PURE__ */ jsx51(InputGroupText, { className: "font-normal text-on-subtle", children: "USDT" }),
|
|
5809
|
+
/* @__PURE__ */ jsx51(
|
|
5810
|
+
InputGroupButton,
|
|
5811
|
+
{
|
|
5812
|
+
size: "icon-xs",
|
|
5813
|
+
variant: "secondary",
|
|
5814
|
+
onClick: handleIncrement,
|
|
5815
|
+
disabled: disabled || currentValue >= max,
|
|
5816
|
+
"aria-label": "Increase value",
|
|
5817
|
+
children: /* @__PURE__ */ jsx51(Plus, { className: "size-3.5" })
|
|
5818
|
+
}
|
|
5819
|
+
)
|
|
5820
|
+
] })
|
|
5818
5821
|
]
|
|
5819
5822
|
}
|
|
5820
5823
|
);
|