gitextract_i9kdersq/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github/ │ └── workflows/ │ └── chromatic.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .storybook/ │ ├── global-style/ │ │ ├── global-style.ts │ │ ├── index.ts │ │ └── react-toastify-override.ts │ ├── main.ts │ ├── manager-head.html │ ├── manager.ts │ └── preview.tsx ├── .test/ │ ├── custom-test-env.ts │ └── setup-tests.ts ├── .travis.yml ├── LICENSE ├── README.md ├── __stories__/ │ ├── helpers/ │ │ ├── components/ │ │ │ ├── Checkbox.tsx │ │ │ ├── CodeMarkup.tsx │ │ │ ├── OptionsCountButton.tsx │ │ │ ├── PackageLink.tsx │ │ │ └── index.ts │ │ ├── constants/ │ │ │ ├── index.ts │ │ │ ├── markup.ts │ │ │ ├── npm-package.ts │ │ │ ├── options-data.ts │ │ │ ├── react-toastify.ts │ │ │ ├── svg-props.ts │ │ │ └── theme.ts │ │ ├── hooks/ │ │ │ ├── index.ts │ │ │ └── useCallbackState.ts │ │ ├── index.ts │ │ ├── styled/ │ │ │ └── index.ts │ │ └── utils/ │ │ └── index.ts │ ├── index.stories.tsx │ └── types/ │ └── index.d.ts ├── __tests__/ │ ├── AriaLiveRegion.test.tsx │ ├── AutosizeInput.test.tsx │ ├── IndicatorIcons.test.tsx │ ├── LoadingDots.test.tsx │ ├── MenuList.test.tsx │ ├── MultiValue.test.tsx │ ├── Option.test.tsx │ ├── ReactSSR.test.tsx │ ├── Select.test.tsx │ ├── Value.test.tsx │ └── helpers/ │ ├── ThemeWrapper.tsx │ ├── index.ts │ └── utils.ts ├── babel.config.js ├── jest.config.js ├── package.json ├── rollup.config.js ├── src/ │ ├── Select.tsx │ ├── components/ │ │ ├── AriaLiveRegion/ │ │ │ └── index.tsx │ │ ├── AutosizeInput/ │ │ │ └── index.tsx │ │ ├── IndicatorIcons/ │ │ │ ├── ClearIcon.tsx │ │ │ ├── LoadingDots.tsx │ │ │ └── index.tsx │ │ ├── Menu/ │ │ │ ├── MenuList.tsx │ │ │ ├── Option.tsx │ │ │ └── index.tsx │ │ ├── Value/ │ │ │ ├── MultiValue.tsx │ │ │ └── index.tsx │ │ └── index.ts │ ├── constants/ │ │ ├── defaults.ts │ │ ├── dom.ts │ │ ├── enums.ts │ │ ├── index.ts │ │ ├── styled.ts │ │ └── theme.ts │ ├── globals.d.ts │ ├── hooks/ │ │ ├── index.ts │ │ ├── useCallbackRef.ts │ │ ├── useDebounce.ts │ │ ├── useLatestRef.ts │ │ ├── useMenuOptions.ts │ │ ├── useMenuPosition.ts │ │ ├── useMountEffect.ts │ │ └── useUpdateEffect.ts │ ├── index.ts │ ├── types.ts │ └── utils/ │ ├── common.ts │ ├── device.ts │ ├── index.ts │ └── menu.ts └── tsconfig.json