@rpg-engine/long-bow 0.5.93 → 0.5.95
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/components/Stepper.d.ts +14 -0
- package/dist/long-bow.cjs.development.js +1 -1
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +1 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/stories/Stepper.stories.d.ts +5 -0
- package/package.json +1 -1
- package/src/components/Stepper.tsx +109 -0
- package/src/components/TradingMenu/TradingMenu.tsx +2 -2
- package/src/stories/Stepper.stories.tsx +48 -0
package/dist/long-bow.esm.js
CHANGED
|
@@ -19249,7 +19249,7 @@ var TradingMenu = function TradingMenu(_ref) {
|
|
|
19249
19249
|
scale: scale,
|
|
19250
19250
|
isBuy: isBuy()
|
|
19251
19251
|
}));
|
|
19252
|
-
})), React.createElement(GoldWrapper, null, React.createElement("p", null, "Available Gold:"), React.createElement("p", null, "$", characterAvailableGold)), React.createElement(TotalWrapper, null, React.createElement("p", null, "Total:"), React.createElement("p", null, "$", sum)), !hasGoldForSale() ? React.createElement(AlertWrapper, null, React.createElement("p", null, " Sorry, not enough money.")) : React.createElement(GoldWrapper, null, React.createElement("p", null, "Final Gold:"), React.createElement("p", null, "$", getFinalGold())), React.createElement(ButtonWrapper$2, null, React.createElement(Button, {
|
|
19252
|
+
})), React.createElement(GoldWrapper, null, React.createElement("p", null, "Available Gold:"), React.createElement("p", null, "$", characterAvailableGold.toFixed(2))), React.createElement(TotalWrapper, null, React.createElement("p", null, "Total:"), React.createElement("p", null, "$", sum)), !hasGoldForSale() ? React.createElement(AlertWrapper, null, React.createElement("p", null, " Sorry, not enough money.")) : React.createElement(GoldWrapper, null, React.createElement("p", null, "Final Gold:"), React.createElement("p", null, "$", getFinalGold().toFixed(2))), React.createElement(ButtonWrapper$2, null, React.createElement(Button, {
|
|
19253
19253
|
buttonType: ButtonTypes.RPGUIButton,
|
|
19254
19254
|
disabled: !hasGoldForSale(),
|
|
19255
19255
|
onPointerDown: function onPointerDown() {
|