@pingux/astro 2.0.2-alpha.1 → 2.0.2-alpha.2
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/lib/cjs/components/ComboBoxField/ComboBoxField.js +1 -0
- package/lib/cjs/components/MultivaluesField/MultivaluesField.js +1 -0
- package/lib/cjs/components/PasswordField/PasswordField.js +1 -0
- package/lib/components/ComboBoxField/ComboBoxField.js +1 -0
- package/lib/components/MultivaluesField/MultivaluesField.js +1 -0
- package/lib/components/PasswordField/PasswordField.js +1 -0
- package/package.json +1 -1
@@ -150,6 +150,7 @@ var ComboBoxField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
150
150
|
shouldSelectOnPressUp = listBoxProps.shouldSelectOnPressUp,
|
151
151
|
otherListBoxProps = (0, _objectWithoutProperties2["default"])(listBoxProps, _excluded2);
|
152
152
|
var _useOverlayPosition = (0, _reactAria.useOverlayPosition)({
|
153
|
+
offset: 1,
|
153
154
|
targetRef: inputWrapperRef,
|
154
155
|
overlayRef: popoverRef,
|
155
156
|
scrollRef: listBoxRef,
|
@@ -151,6 +151,7 @@ var MultivaluesField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
151
151
|
var _useOverlayPosition = (0, _reactAria.useOverlayPosition)({
|
152
152
|
isOpen: isOpen,
|
153
153
|
onClose: close,
|
154
|
+
offset: 1,
|
154
155
|
overlayRef: popoverRef,
|
155
156
|
placement: "".concat(direction, " end"),
|
156
157
|
scrollRef: listBoxRef,
|
@@ -102,6 +102,7 @@ var PasswordField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
102
102
|
(0, _utils.useLayoutEffect)(onResize, [onResize]);
|
103
103
|
var _useOverlayPosition = (0, _reactAria.useOverlayPosition)({
|
104
104
|
isOpen: true,
|
105
|
+
offset: 1,
|
105
106
|
overlayRef: popoverRef,
|
106
107
|
placement: 'bottom end',
|
107
108
|
targetRef: inputRef
|
@@ -140,6 +140,7 @@ var ComboBoxField = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
140
140
|
shouldSelectOnPressUp = listBoxProps.shouldSelectOnPressUp,
|
141
141
|
otherListBoxProps = _objectWithoutProperties(listBoxProps, _excluded2);
|
142
142
|
var _useOverlayPosition = useOverlayPosition({
|
143
|
+
offset: 1,
|
143
144
|
targetRef: inputWrapperRef,
|
144
145
|
overlayRef: popoverRef,
|
145
146
|
scrollRef: listBoxRef,
|
@@ -140,6 +140,7 @@ var MultivaluesField = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
140
140
|
var _useOverlayPosition = useOverlayPosition({
|
141
141
|
isOpen: isOpen,
|
142
142
|
onClose: close,
|
143
|
+
offset: 1,
|
143
144
|
overlayRef: popoverRef,
|
144
145
|
placement: "".concat(direction, " end"),
|
145
146
|
scrollRef: listBoxRef,
|
@@ -90,6 +90,7 @@ var PasswordField = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
90
90
|
useLayoutEffect(onResize, [onResize]);
|
91
91
|
var _useOverlayPosition = useOverlayPosition({
|
92
92
|
isOpen: true,
|
93
|
+
offset: 1,
|
93
94
|
overlayRef: popoverRef,
|
94
95
|
placement: 'bottom end',
|
95
96
|
targetRef: inputRef
|