@rpg-engine/long-bow 0.2.64 → 0.2.66
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/Chat/Chat.d.ts +2 -0
- package/dist/components/CheckButton.d.ts +1 -2
- package/dist/long-bow.cjs.development.js +6 -2
- 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 +6 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/Chat/Chat.tsx +6 -0
- package/src/components/CheckButton.tsx +1 -1
- package/src/components/NPCDialog/.DS_Store +0 -0
- package/src/components/NPCDialog/img/.DS_Store +0 -0
- package/src/mocks/.DS_Store +0 -0
package/dist/long-bow.esm.js
CHANGED
|
@@ -26997,7 +26997,9 @@ var Chat = function Chat(_ref) {
|
|
|
26997
26997
|
width = _ref$width === void 0 ? '100%' : _ref$width,
|
|
26998
26998
|
_ref$height = _ref.height,
|
|
26999
26999
|
height = _ref$height === void 0 ? '250px' : _ref$height,
|
|
27000
|
-
onCloseButton = _ref.onCloseButton
|
|
27000
|
+
onCloseButton = _ref.onCloseButton,
|
|
27001
|
+
onFocus = _ref.onFocus,
|
|
27002
|
+
onBlur = _ref.onBlur;
|
|
27001
27003
|
var _useState = useState(''),
|
|
27002
27004
|
message = _useState[0],
|
|
27003
27005
|
setMessage = _useState[1];
|
|
@@ -27064,7 +27066,9 @@ var Chat = function Chat(_ref) {
|
|
|
27064
27066
|
height: 20,
|
|
27065
27067
|
className: "chat-input dark-background",
|
|
27066
27068
|
type: "text",
|
|
27067
|
-
autoComplete: "off"
|
|
27069
|
+
autoComplete: "off",
|
|
27070
|
+
onFocus: onFocus,
|
|
27071
|
+
onBlur: onBlur
|
|
27068
27072
|
})), React.createElement(Column, {
|
|
27069
27073
|
justifyContent: "flex-end"
|
|
27070
27074
|
}, React.createElement(Button, {
|