You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.8 KiB
51 lines
1.8 KiB
3 years ago
|
import { u as useStateManager } from './useStateManager-7e1e8489.esm.js';
|
||
|
export { u as useStateManager } from './useStateManager-7e1e8489.esm.js';
|
||
|
import _extends from '@babel/runtime/helpers/esm/extends';
|
||
|
import * as React from 'react';
|
||
|
import { forwardRef, useMemo } from 'react';
|
||
|
import { S as Select } from './Select-40119e12.esm.js';
|
||
|
export { c as createFilter, d as defaultTheme, m as mergeStyles } from './Select-40119e12.esm.js';
|
||
|
import { CacheProvider } from '@emotion/react';
|
||
|
import createCache from '@emotion/cache';
|
||
|
export { c as components } from './index-a86253bb.esm.js';
|
||
|
import '@babel/runtime/helpers/objectSpread2';
|
||
|
import '@babel/runtime/helpers/slicedToArray';
|
||
|
import '@babel/runtime/helpers/objectWithoutProperties';
|
||
|
import '@babel/runtime/helpers/classCallCheck';
|
||
|
import '@babel/runtime/helpers/createClass';
|
||
|
import '@babel/runtime/helpers/inherits';
|
||
|
import '@babel/runtime/helpers/createSuper';
|
||
|
import '@babel/runtime/helpers/toConsumableArray';
|
||
|
import 'memoize-one';
|
||
|
import '@babel/runtime/helpers/typeof';
|
||
|
import '@babel/runtime/helpers/taggedTemplateLiteral';
|
||
|
import '@babel/runtime/helpers/defineProperty';
|
||
|
import 'react-dom';
|
||
|
import '@floating-ui/dom';
|
||
|
import 'use-isomorphic-layout-effect';
|
||
|
|
||
|
var StateManagedSelect = /*#__PURE__*/forwardRef(function (props, ref) {
|
||
|
var baseSelectProps = useStateManager(props);
|
||
|
return /*#__PURE__*/React.createElement(Select, _extends({
|
||
|
ref: ref
|
||
|
}, baseSelectProps));
|
||
|
});
|
||
|
|
||
|
var NonceProvider = (function (_ref) {
|
||
|
var nonce = _ref.nonce,
|
||
|
children = _ref.children,
|
||
|
cacheKey = _ref.cacheKey;
|
||
|
var emotionCache = useMemo(function () {
|
||
|
return createCache({
|
||
|
key: cacheKey,
|
||
|
nonce: nonce
|
||
|
});
|
||
|
}, [cacheKey, nonce]);
|
||
|
return /*#__PURE__*/React.createElement(CacheProvider, {
|
||
|
value: emotionCache
|
||
|
}, children);
|
||
|
});
|
||
|
|
||
|
export default StateManagedSelect;
|
||
|
export { NonceProvider };
|