@basic-ui/material 1.0.0-alpha.19 → 1.0.0-alpha.20
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/build/cjs/index.js +3 -14
- package/build/cjs/index.js.map +1 -1
- package/build/esm/Select/styledComponents.js +8 -19
- package/build/esm/Select/styledComponents.js.map +1 -1
- package/build/tsconfig-build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/Menu/ContextMenu.story.tsx +34 -0
- package/src/Select/styledComponents.tsx +2 -14
package/build/cjs/index.js
CHANGED
|
@@ -4094,26 +4094,15 @@ const Select$1 = /*#__PURE__*/react$1.forwardRef(({
|
|
|
4094
4094
|
...props
|
|
4095
4095
|
});
|
|
4096
4096
|
});
|
|
4097
|
-
const SelectButtonInner = /*#__PURE__*/react$1.forwardRef(({
|
|
4098
|
-
innerAs = 'div',
|
|
4099
|
-
...props
|
|
4100
|
-
}, forwardedRef) => {
|
|
4101
|
-
const InputButton = Input;
|
|
4102
|
-
return /*#__PURE__*/jsxRuntime.jsx(InputButton, {
|
|
4103
|
-
as: innerAs,
|
|
4104
|
-
ref: forwardedRef,
|
|
4105
|
-
tabIndex: 0,
|
|
4106
|
-
...props
|
|
4107
|
-
});
|
|
4108
|
-
});
|
|
4109
4097
|
const SelectButton = /*#__PURE__*/react$1.forwardRef(({
|
|
4110
|
-
as,
|
|
4098
|
+
as = 'div',
|
|
4111
4099
|
children,
|
|
4112
4100
|
...props
|
|
4113
4101
|
}, ref) => /*#__PURE__*/jsxRuntime.jsx(core.MenuButton, {
|
|
4114
|
-
as:
|
|
4102
|
+
as: Input,
|
|
4115
4103
|
innerAs: as,
|
|
4116
4104
|
ref: ref,
|
|
4105
|
+
tabIndex: 0,
|
|
4117
4106
|
...props,
|
|
4118
4107
|
children: children
|
|
4119
4108
|
}));
|