@atlaskit/react-select 3.15.5 → 3.16.0

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.
Files changed (223) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/accessibility/package.json +17 -0
  3. package/async/package.json +5 -5
  4. package/async-creatable/package.json +5 -5
  5. package/base/package.json +5 -5
  6. package/clear-indicator/package.json +17 -0
  7. package/components/package.json +17 -0
  8. package/control/package.json +17 -0
  9. package/creatable/package.json +5 -5
  10. package/dist/cjs/builtins.js +28 -15
  11. package/dist/cjs/colors.js +25 -0
  12. package/dist/cjs/entry-points/accessibility.js +12 -0
  13. package/dist/cjs/entry-points/async-creatable.js +13 -0
  14. package/dist/cjs/entry-points/async.js +20 -0
  15. package/dist/cjs/entry-points/base.js +20 -0
  16. package/dist/cjs/entry-points/clear-indicator.js +12 -0
  17. package/dist/cjs/entry-points/components.js +18 -0
  18. package/dist/cjs/entry-points/control.js +13 -0
  19. package/dist/cjs/entry-points/creatable.js +20 -0
  20. package/dist/cjs/entry-points/dropdown-indicator.js +12 -0
  21. package/dist/cjs/entry-points/filters.js +12 -0
  22. package/dist/cjs/entry-points/group-heading.js +12 -0
  23. package/dist/cjs/entry-points/group.js +13 -0
  24. package/dist/cjs/entry-points/indicators-container.js +12 -0
  25. package/dist/cjs/entry-points/input.js +13 -0
  26. package/dist/cjs/entry-points/loading-indicator.js +12 -0
  27. package/dist/cjs/entry-points/menu-list.js +12 -0
  28. package/dist/cjs/entry-points/menu-portal.js +12 -0
  29. package/dist/cjs/entry-points/menu.js +13 -0
  30. package/dist/cjs/entry-points/multi-value-remove.js +12 -0
  31. package/dist/cjs/entry-points/multi-value.js +13 -0
  32. package/dist/cjs/entry-points/option.js +13 -0
  33. package/dist/cjs/entry-points/placeholder.js +13 -0
  34. package/dist/cjs/entry-points/select-container.js +12 -0
  35. package/dist/cjs/entry-points/single-value.js +13 -0
  36. package/dist/cjs/entry-points/state-manager.js +13 -0
  37. package/dist/cjs/entry-points/styles.js +12 -0
  38. package/dist/cjs/entry-points/types.js +1 -0
  39. package/dist/cjs/entry-points/use-async.js +13 -0
  40. package/dist/cjs/entry-points/use-creatable.js +13 -0
  41. package/dist/cjs/entry-points/use-state-manager.js +13 -0
  42. package/dist/cjs/entry-points/value-container.js +12 -0
  43. package/dist/cjs/format-group-label.js +11 -0
  44. package/dist/cjs/get-option-label.js +11 -0
  45. package/dist/cjs/get-option-value.js +11 -0
  46. package/dist/cjs/is-option-disabled.js +11 -0
  47. package/dist/cjs/theme.js +9 -21
  48. package/dist/es2019/builtins.js +4 -4
  49. package/dist/es2019/colors.js +19 -0
  50. package/dist/es2019/entry-points/accessibility.js +1 -0
  51. package/dist/es2019/entry-points/async-creatable.js +1 -0
  52. package/dist/es2019/entry-points/async.js +2 -0
  53. package/dist/es2019/entry-points/base.js +2 -0
  54. package/dist/es2019/entry-points/clear-indicator.js +1 -0
  55. package/dist/es2019/entry-points/components.js +1 -0
  56. package/dist/es2019/entry-points/control.js +1 -0
  57. package/dist/es2019/entry-points/creatable.js +2 -0
  58. package/dist/es2019/entry-points/dropdown-indicator.js +1 -0
  59. package/dist/es2019/entry-points/filters.js +1 -0
  60. package/dist/es2019/entry-points/group-heading.js +1 -0
  61. package/dist/es2019/entry-points/group.js +1 -0
  62. package/dist/es2019/entry-points/indicators-container.js +1 -0
  63. package/dist/es2019/entry-points/input.js +1 -0
  64. package/dist/es2019/entry-points/loading-indicator.js +1 -0
  65. package/dist/es2019/entry-points/menu-list.js +1 -0
  66. package/dist/es2019/entry-points/menu-portal.js +1 -0
  67. package/dist/es2019/entry-points/menu.js +1 -0
  68. package/dist/es2019/entry-points/multi-value-remove.js +1 -0
  69. package/dist/es2019/entry-points/multi-value.js +1 -0
  70. package/dist/es2019/entry-points/option.js +1 -0
  71. package/dist/es2019/entry-points/placeholder.js +1 -0
  72. package/dist/es2019/entry-points/select-container.js +1 -0
  73. package/dist/es2019/entry-points/single-value.js +1 -0
  74. package/dist/es2019/entry-points/state-manager.js +1 -0
  75. package/dist/es2019/entry-points/styles.js +1 -0
  76. package/dist/es2019/entry-points/types.js +0 -0
  77. package/dist/es2019/entry-points/use-async.js +1 -0
  78. package/dist/es2019/entry-points/use-creatable.js +1 -0
  79. package/dist/es2019/entry-points/use-state-manager.js +1 -0
  80. package/dist/es2019/entry-points/value-container.js +1 -0
  81. package/dist/es2019/format-group-label.js +3 -0
  82. package/dist/es2019/get-option-label.js +3 -0
  83. package/dist/es2019/get-option-value.js +3 -0
  84. package/dist/es2019/is-option-disabled.js +3 -0
  85. package/dist/es2019/theme.js +3 -20
  86. package/dist/esm/builtins.js +4 -12
  87. package/dist/esm/colors.js +19 -0
  88. package/dist/esm/entry-points/accessibility.js +1 -0
  89. package/dist/esm/entry-points/async-creatable.js +1 -0
  90. package/dist/esm/entry-points/async.js +2 -0
  91. package/dist/esm/entry-points/base.js +2 -0
  92. package/dist/esm/entry-points/clear-indicator.js +1 -0
  93. package/dist/esm/entry-points/components.js +1 -0
  94. package/dist/esm/entry-points/control.js +1 -0
  95. package/dist/esm/entry-points/creatable.js +2 -0
  96. package/dist/esm/entry-points/dropdown-indicator.js +1 -0
  97. package/dist/esm/entry-points/filters.js +1 -0
  98. package/dist/esm/entry-points/group-heading.js +1 -0
  99. package/dist/esm/entry-points/group.js +1 -0
  100. package/dist/esm/entry-points/indicators-container.js +1 -0
  101. package/dist/esm/entry-points/input.js +1 -0
  102. package/dist/esm/entry-points/loading-indicator.js +1 -0
  103. package/dist/esm/entry-points/menu-list.js +1 -0
  104. package/dist/esm/entry-points/menu-portal.js +1 -0
  105. package/dist/esm/entry-points/menu.js +1 -0
  106. package/dist/esm/entry-points/multi-value-remove.js +1 -0
  107. package/dist/esm/entry-points/multi-value.js +1 -0
  108. package/dist/esm/entry-points/option.js +1 -0
  109. package/dist/esm/entry-points/placeholder.js +1 -0
  110. package/dist/esm/entry-points/select-container.js +1 -0
  111. package/dist/esm/entry-points/single-value.js +1 -0
  112. package/dist/esm/entry-points/state-manager.js +1 -0
  113. package/dist/esm/entry-points/styles.js +1 -0
  114. package/dist/esm/entry-points/types.js +0 -0
  115. package/dist/esm/entry-points/use-async.js +1 -0
  116. package/dist/esm/entry-points/use-creatable.js +1 -0
  117. package/dist/esm/entry-points/use-state-manager.js +1 -0
  118. package/dist/esm/entry-points/value-container.js +1 -0
  119. package/dist/esm/format-group-label.js +5 -0
  120. package/dist/esm/get-option-label.js +5 -0
  121. package/dist/esm/get-option-value.js +5 -0
  122. package/dist/esm/is-option-disabled.js +5 -0
  123. package/dist/esm/theme.js +3 -20
  124. package/dist/types/builtins.d.ts +4 -5
  125. package/dist/types/colors.d.ts +19 -0
  126. package/dist/types/entry-points/accessibility.d.ts +2 -0
  127. package/dist/types/entry-points/async-creatable.d.ts +2 -0
  128. package/dist/types/entry-points/async.d.ts +3 -0
  129. package/dist/types/entry-points/base.d.ts +3 -0
  130. package/dist/types/entry-points/clear-indicator.d.ts +2 -0
  131. package/dist/types/entry-points/components.d.ts +2 -0
  132. package/dist/types/entry-points/control.d.ts +2 -0
  133. package/dist/types/entry-points/creatable.d.ts +3 -0
  134. package/dist/types/entry-points/dropdown-indicator.d.ts +2 -0
  135. package/dist/types/entry-points/filters.d.ts +2 -0
  136. package/dist/types/entry-points/group-heading.d.ts +2 -0
  137. package/dist/types/entry-points/group.d.ts +2 -0
  138. package/dist/types/entry-points/indicators-container.d.ts +2 -0
  139. package/dist/types/entry-points/input.d.ts +2 -0
  140. package/dist/types/entry-points/loading-indicator.d.ts +2 -0
  141. package/dist/types/entry-points/menu-list.d.ts +2 -0
  142. package/dist/types/entry-points/menu-portal.d.ts +2 -0
  143. package/dist/types/entry-points/menu.d.ts +2 -0
  144. package/dist/types/entry-points/multi-value-remove.d.ts +2 -0
  145. package/dist/types/entry-points/multi-value.d.ts +2 -0
  146. package/dist/types/entry-points/option.d.ts +2 -0
  147. package/dist/types/entry-points/placeholder.d.ts +2 -0
  148. package/dist/types/entry-points/select-container.d.ts +2 -0
  149. package/dist/types/entry-points/single-value.d.ts +2 -0
  150. package/dist/types/entry-points/state-manager.d.ts +1 -0
  151. package/dist/types/entry-points/styles.d.ts +2 -0
  152. package/dist/types/entry-points/types.d.ts +1 -0
  153. package/dist/types/entry-points/use-async.d.ts +2 -0
  154. package/dist/types/entry-points/use-creatable.d.ts +2 -0
  155. package/dist/types/entry-points/use-state-manager.d.ts +2 -0
  156. package/dist/types/entry-points/value-container.d.ts +2 -0
  157. package/dist/types/format-group-label.d.ts +2 -0
  158. package/dist/types/get-option-label.d.ts +1 -0
  159. package/dist/types/get-option-value.d.ts +1 -0
  160. package/dist/types/is-option-disabled.d.ts +1 -0
  161. package/dist/types/theme.d.ts +1 -19
  162. package/dist/types-ts4.5/builtins.d.ts +4 -5
  163. package/dist/types-ts4.5/colors.d.ts +19 -0
  164. package/dist/types-ts4.5/entry-points/accessibility.d.ts +2 -0
  165. package/dist/types-ts4.5/entry-points/async-creatable.d.ts +2 -0
  166. package/dist/types-ts4.5/entry-points/async.d.ts +3 -0
  167. package/dist/types-ts4.5/entry-points/base.d.ts +3 -0
  168. package/dist/types-ts4.5/entry-points/clear-indicator.d.ts +2 -0
  169. package/dist/types-ts4.5/entry-points/components.d.ts +2 -0
  170. package/dist/types-ts4.5/entry-points/control.d.ts +2 -0
  171. package/dist/types-ts4.5/entry-points/creatable.d.ts +3 -0
  172. package/dist/types-ts4.5/entry-points/dropdown-indicator.d.ts +2 -0
  173. package/dist/types-ts4.5/entry-points/filters.d.ts +2 -0
  174. package/dist/types-ts4.5/entry-points/group-heading.d.ts +2 -0
  175. package/dist/types-ts4.5/entry-points/group.d.ts +2 -0
  176. package/dist/types-ts4.5/entry-points/indicators-container.d.ts +2 -0
  177. package/dist/types-ts4.5/entry-points/input.d.ts +2 -0
  178. package/dist/types-ts4.5/entry-points/loading-indicator.d.ts +2 -0
  179. package/dist/types-ts4.5/entry-points/menu-list.d.ts +2 -0
  180. package/dist/types-ts4.5/entry-points/menu-portal.d.ts +2 -0
  181. package/dist/types-ts4.5/entry-points/menu.d.ts +2 -0
  182. package/dist/types-ts4.5/entry-points/multi-value-remove.d.ts +2 -0
  183. package/dist/types-ts4.5/entry-points/multi-value.d.ts +2 -0
  184. package/dist/types-ts4.5/entry-points/option.d.ts +2 -0
  185. package/dist/types-ts4.5/entry-points/placeholder.d.ts +2 -0
  186. package/dist/types-ts4.5/entry-points/select-container.d.ts +2 -0
  187. package/dist/types-ts4.5/entry-points/single-value.d.ts +2 -0
  188. package/dist/types-ts4.5/entry-points/state-manager.d.ts +1 -0
  189. package/dist/types-ts4.5/entry-points/styles.d.ts +2 -0
  190. package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
  191. package/dist/types-ts4.5/entry-points/use-async.d.ts +2 -0
  192. package/dist/types-ts4.5/entry-points/use-creatable.d.ts +2 -0
  193. package/dist/types-ts4.5/entry-points/use-state-manager.d.ts +2 -0
  194. package/dist/types-ts4.5/entry-points/value-container.d.ts +2 -0
  195. package/dist/types-ts4.5/format-group-label.d.ts +2 -0
  196. package/dist/types-ts4.5/get-option-label.d.ts +1 -0
  197. package/dist/types-ts4.5/get-option-value.d.ts +1 -0
  198. package/dist/types-ts4.5/is-option-disabled.d.ts +1 -0
  199. package/dist/types-ts4.5/theme.d.ts +1 -19
  200. package/dropdown-indicator/package.json +17 -0
  201. package/filters/package.json +17 -0
  202. package/group/package.json +17 -0
  203. package/group-heading/package.json +17 -0
  204. package/indicators-container/package.json +17 -0
  205. package/input/package.json +17 -0
  206. package/loading-indicator/package.json +17 -0
  207. package/menu/package.json +17 -0
  208. package/menu-list/package.json +17 -0
  209. package/menu-portal/package.json +17 -0
  210. package/multi-value/package.json +17 -0
  211. package/multi-value-remove/package.json +17 -0
  212. package/option/package.json +17 -0
  213. package/package.json +4 -4
  214. package/placeholder/package.json +17 -0
  215. package/select-container/package.json +17 -0
  216. package/single-value/package.json +17 -0
  217. package/state-manager/package.json +17 -0
  218. package/styles/package.json +17 -0
  219. package/types/package.json +5 -5
  220. package/use-async/package.json +17 -0
  221. package/use-creatable/package.json +17 -0
  222. package/use-state-manager/package.json +17 -0
  223. package/value-container/package.json +17 -0
@@ -0,0 +1,2 @@
1
+ export type { ControlProps } from '../components/control';
2
+ export { default } from '../components/control';
@@ -0,0 +1,3 @@
1
+ export { useCreatable } from '../creatable';
2
+ export type { CreatableProps } from '../creatable';
3
+ export { default } from '../creatable';
@@ -0,0 +1,2 @@
1
+ export { DropdownIndicator } from '../components/indicators/dropdown-indicator';
2
+ export type { DropdownIndicatorProps } from '../components/indicators/dropdown-indicator';
@@ -0,0 +1,2 @@
1
+ export { createFilter } from '../filters';
2
+ export type { FilterOptionOption } from '../filters';
@@ -0,0 +1,2 @@
1
+ export { GroupHeading } from '../components/group-heading';
2
+ export type { ForwardedHeadingProps, GroupHeadingProps } from '../components/group-heading';
@@ -0,0 +1,2 @@
1
+ export type { GroupProps } from '../components/group';
2
+ export { default } from '../components/group';
@@ -0,0 +1,2 @@
1
+ export { IndicatorsContainer } from '../components/containers/indicators-container';
2
+ export type { IndicatorsContainerProps } from '../components/containers/indicators-container';
@@ -0,0 +1,2 @@
1
+ export type { InputProps } from '../components/input';
2
+ export { default } from '../components/input';
@@ -0,0 +1,2 @@
1
+ export { LoadingIndicator } from '../components/indicators/loading-indicator';
2
+ export type { LoadingIndicatorProps } from '../components/indicators/loading-indicator';
@@ -0,0 +1,2 @@
1
+ export { MenuList } from '../components/menu-list';
2
+ export type { MenuListProps } from '../components/menu-list';
@@ -0,0 +1,2 @@
1
+ export { MenuPortal } from '../components/menu-portal';
2
+ export type { MenuPortalProps, PortalStyleArgs } from '../components/menu-portal';
@@ -0,0 +1,2 @@
1
+ export type { MenuProps } from '../components/menu';
2
+ export { default } from '../components/menu';
@@ -0,0 +1,2 @@
1
+ export { MultiValueRemove } from '../components/multi-value-remove';
2
+ export type { MultiValueRemoveProps } from '../components/multi-value-remove';
@@ -0,0 +1,2 @@
1
+ export type { MultiValueProps } from '../components/multi-value';
2
+ export { default } from '../components/multi-value';
@@ -0,0 +1,2 @@
1
+ export type { OptionProps } from '../components/option';
2
+ export { default } from '../components/option';
@@ -0,0 +1,2 @@
1
+ export type { PlaceholderProps } from '../components/placeholder';
2
+ export { default } from '../components/placeholder';
@@ -0,0 +1,2 @@
1
+ export { SelectContainer } from '../components/containers/select-container';
2
+ export type { ContainerProps } from '../components/containers/select-container';
@@ -0,0 +1,2 @@
1
+ export type { SingleValueProps } from '../components/single-value';
2
+ export { default } from '../components/single-value';
@@ -0,0 +1 @@
1
+ export { default } from '../state-manager';
@@ -0,0 +1,2 @@
1
+ export { mergeStyles } from '../styles';
2
+ export type { ClassNamesConfig, StylesConfig, StylesProps } from '../styles';
@@ -0,0 +1 @@
1
+ export type { ActionMeta, ActionMetaBase, CSSObjectWithLabel, CX, ClassNamesState, ClearActionMeta, CoercedMenuPlacement, Colors, CommonProps, CommonPropsAndClassName, CreateOptionActionMeta, DeselectOptionActionMeta, FocusDirection, GetOptionLabel, GetOptionValue, GetStyles, GroupBase, InitialInputFocusedActionMeta, InputAction, InputActionMeta, MenuPlacement, MenuPosition, MultiValue, MultiValueGenericProps, NoticeProps, OnChangeValue, Options, OptionsOrGroups, PopValueActionMeta, PropsValue, RemoveValueActionMeta, SelectOptionActionMeta, SetValueAction, SingleValue, Theme, ThemeSpacing, } from '../types';
@@ -0,0 +1,2 @@
1
+ export type { AsyncAdditionalProps, AsyncProps } from '../use-async';
2
+ export { default } from '../use-async';
@@ -0,0 +1,2 @@
1
+ export type { CreatableAdditionalProps } from '../use-creatable';
2
+ export { default } from '../use-creatable';
@@ -0,0 +1,2 @@
1
+ export type { StateManagerProps } from '../use-state-manager';
2
+ export { default } from '../use-state-manager';
@@ -0,0 +1,2 @@
1
+ export { ValueContainer } from '../components/containers/value-container';
2
+ export type { ValueContainerProps } from '../components/containers/value-container';
@@ -0,0 +1,2 @@
1
+ import type { GroupBase } from './types';
2
+ export declare const formatGroupLabel: <Option, Group extends GroupBase<Option>>(group: Group) => string;
@@ -0,0 +1 @@
1
+ export declare const getOptionLabel: <Option>(option: Option) => string;
@@ -0,0 +1 @@
1
+ export declare const getOptionValue: <Option>(option: Option) => string;
@@ -0,0 +1 @@
1
+ export declare const isOptionDisabled: <Option>(option: Option) => boolean;
@@ -1,26 +1,8 @@
1
1
  import type { Theme } from './types';
2
- export declare const colors: {
3
- primary: string;
4
- primary75: string;
5
- primary50: string;
6
- primary25: string;
7
- danger: string;
8
- dangerLight: string;
9
- neutral0: string;
10
- neutral5: string;
11
- neutral10: string;
12
- neutral20: string;
13
- neutral30: string;
14
- neutral40: string;
15
- neutral50: string;
16
- neutral60: string;
17
- neutral70: string;
18
- neutral80: string;
19
- neutral90: string;
20
- };
21
2
  export declare const spacing: {
22
3
  baseUnit: number;
23
4
  controlHeight: number;
24
5
  menuGutter: number;
25
6
  };
26
7
  export declare const defaultTheme: Theme;
8
+ export { colors } from './colors';
@@ -1,5 +1,4 @@
1
- import type { GroupBase } from './types';
2
- export declare const formatGroupLabel: <Option, Group extends GroupBase<Option>>(group: Group) => string;
3
- export declare const getOptionLabel: <Option>(option: Option) => string;
4
- export declare const getOptionValue: <Option>(option: Option) => string;
5
- export declare const isOptionDisabled: <Option>(option: Option) => boolean;
1
+ export { formatGroupLabel } from './format-group-label';
2
+ export { getOptionLabel } from './get-option-label';
3
+ export { getOptionValue } from './get-option-value';
4
+ export { isOptionDisabled } from './is-option-disabled';
@@ -0,0 +1,19 @@
1
+ export declare const colors: {
2
+ primary: string;
3
+ primary75: string;
4
+ primary50: string;
5
+ primary25: string;
6
+ danger: string;
7
+ dangerLight: string;
8
+ neutral0: string;
9
+ neutral5: string;
10
+ neutral10: string;
11
+ neutral20: string;
12
+ neutral30: string;
13
+ neutral40: string;
14
+ neutral50: string;
15
+ neutral60: string;
16
+ neutral70: string;
17
+ neutral80: string;
18
+ neutral90: string;
19
+ };
@@ -0,0 +1,2 @@
1
+ export { defaultAriaLiveMessages } from '../accessibility/index';
2
+ export type { AriaGuidance, AriaGuidanceProps, AriaLiveMessages, AriaOnChange, AriaOnChangeProps, AriaOnFilter, AriaOnFilterProps, AriaOnFocus, AriaOnFocusProps, AriaSelection, GuidanceContext, OptionContext, } from '../accessibility/index';
@@ -0,0 +1,2 @@
1
+ export type { AsyncCreatableProps } from '../async-creatable';
2
+ export { default } from '../async-creatable';
@@ -0,0 +1,3 @@
1
+ export { useAsync } from '../async';
2
+ export type { AsyncProps } from '../async';
3
+ export { default } from '../async';
@@ -0,0 +1,3 @@
1
+ export { defaultProps } from '../select';
2
+ export type { FormatOptionLabelContext, FormatOptionLabelMeta, PublicBaseSelectProps, SelectProps, } from '../select';
3
+ export { default } from '../select';
@@ -0,0 +1,2 @@
1
+ export { ClearIndicator } from '../components/indicators/clear-indicator';
2
+ export type { ClearIndicatorProps } from '../components/indicators/clear-indicator';
@@ -0,0 +1,2 @@
1
+ export { components, defaultComponents } from '../components/index';
2
+ export type { SelectComponents, SelectComponentsConfig } from '../components/index';
@@ -0,0 +1,2 @@
1
+ export type { ControlProps } from '../components/control';
2
+ export { default } from '../components/control';
@@ -0,0 +1,3 @@
1
+ export { useCreatable } from '../creatable';
2
+ export type { CreatableProps } from '../creatable';
3
+ export { default } from '../creatable';
@@ -0,0 +1,2 @@
1
+ export { DropdownIndicator } from '../components/indicators/dropdown-indicator';
2
+ export type { DropdownIndicatorProps } from '../components/indicators/dropdown-indicator';
@@ -0,0 +1,2 @@
1
+ export { createFilter } from '../filters';
2
+ export type { FilterOptionOption } from '../filters';
@@ -0,0 +1,2 @@
1
+ export { GroupHeading } from '../components/group-heading';
2
+ export type { ForwardedHeadingProps, GroupHeadingProps } from '../components/group-heading';
@@ -0,0 +1,2 @@
1
+ export type { GroupProps } from '../components/group';
2
+ export { default } from '../components/group';
@@ -0,0 +1,2 @@
1
+ export { IndicatorsContainer } from '../components/containers/indicators-container';
2
+ export type { IndicatorsContainerProps } from '../components/containers/indicators-container';
@@ -0,0 +1,2 @@
1
+ export type { InputProps } from '../components/input';
2
+ export { default } from '../components/input';
@@ -0,0 +1,2 @@
1
+ export { LoadingIndicator } from '../components/indicators/loading-indicator';
2
+ export type { LoadingIndicatorProps } from '../components/indicators/loading-indicator';
@@ -0,0 +1,2 @@
1
+ export { MenuList } from '../components/menu-list';
2
+ export type { MenuListProps } from '../components/menu-list';
@@ -0,0 +1,2 @@
1
+ export { MenuPortal } from '../components/menu-portal';
2
+ export type { MenuPortalProps, PortalStyleArgs } from '../components/menu-portal';
@@ -0,0 +1,2 @@
1
+ export type { MenuProps } from '../components/menu';
2
+ export { default } from '../components/menu';
@@ -0,0 +1,2 @@
1
+ export { MultiValueRemove } from '../components/multi-value-remove';
2
+ export type { MultiValueRemoveProps } from '../components/multi-value-remove';
@@ -0,0 +1,2 @@
1
+ export type { MultiValueProps } from '../components/multi-value';
2
+ export { default } from '../components/multi-value';
@@ -0,0 +1,2 @@
1
+ export type { OptionProps } from '../components/option';
2
+ export { default } from '../components/option';
@@ -0,0 +1,2 @@
1
+ export type { PlaceholderProps } from '../components/placeholder';
2
+ export { default } from '../components/placeholder';
@@ -0,0 +1,2 @@
1
+ export { SelectContainer } from '../components/containers/select-container';
2
+ export type { ContainerProps } from '../components/containers/select-container';
@@ -0,0 +1,2 @@
1
+ export type { SingleValueProps } from '../components/single-value';
2
+ export { default } from '../components/single-value';
@@ -0,0 +1 @@
1
+ export { default } from '../state-manager';
@@ -0,0 +1,2 @@
1
+ export { mergeStyles } from '../styles';
2
+ export type { ClassNamesConfig, StylesConfig, StylesProps } from '../styles';
@@ -0,0 +1 @@
1
+ export type { ActionMeta, ActionMetaBase, CSSObjectWithLabel, CX, ClassNamesState, ClearActionMeta, CoercedMenuPlacement, Colors, CommonProps, CommonPropsAndClassName, CreateOptionActionMeta, DeselectOptionActionMeta, FocusDirection, GetOptionLabel, GetOptionValue, GetStyles, GroupBase, InitialInputFocusedActionMeta, InputAction, InputActionMeta, MenuPlacement, MenuPosition, MultiValue, MultiValueGenericProps, NoticeProps, OnChangeValue, Options, OptionsOrGroups, PopValueActionMeta, PropsValue, RemoveValueActionMeta, SelectOptionActionMeta, SetValueAction, SingleValue, Theme, ThemeSpacing, } from '../types';
@@ -0,0 +1,2 @@
1
+ export type { AsyncAdditionalProps, AsyncProps } from '../use-async';
2
+ export { default } from '../use-async';
@@ -0,0 +1,2 @@
1
+ export type { CreatableAdditionalProps } from '../use-creatable';
2
+ export { default } from '../use-creatable';
@@ -0,0 +1,2 @@
1
+ export type { StateManagerProps } from '../use-state-manager';
2
+ export { default } from '../use-state-manager';
@@ -0,0 +1,2 @@
1
+ export { ValueContainer } from '../components/containers/value-container';
2
+ export type { ValueContainerProps } from '../components/containers/value-container';
@@ -0,0 +1,2 @@
1
+ import type { GroupBase } from './types';
2
+ export declare const formatGroupLabel: <Option, Group extends GroupBase<Option>>(group: Group) => string;
@@ -0,0 +1 @@
1
+ export declare const getOptionLabel: <Option>(option: Option) => string;
@@ -0,0 +1 @@
1
+ export declare const getOptionValue: <Option>(option: Option) => string;
@@ -0,0 +1 @@
1
+ export declare const isOptionDisabled: <Option>(option: Option) => boolean;
@@ -1,26 +1,8 @@
1
1
  import type { Theme } from './types';
2
- export declare const colors: {
3
- primary: string;
4
- primary75: string;
5
- primary50: string;
6
- primary25: string;
7
- danger: string;
8
- dangerLight: string;
9
- neutral0: string;
10
- neutral5: string;
11
- neutral10: string;
12
- neutral20: string;
13
- neutral30: string;
14
- neutral40: string;
15
- neutral50: string;
16
- neutral60: string;
17
- neutral70: string;
18
- neutral80: string;
19
- neutral90: string;
20
- };
21
2
  export declare const spacing: {
22
3
  baseUnit: number;
23
4
  controlHeight: number;
24
5
  menuGutter: number;
25
6
  };
26
7
  export declare const defaultTheme: Theme;
8
+ export { colors } from './colors';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/dropdown-indicator",
3
+ "main": "../dist/cjs/entry-points/dropdown-indicator.js",
4
+ "module": "../dist/esm/entry-points/dropdown-indicator.js",
5
+ "module:es2019": "../dist/es2019/entry-points/dropdown-indicator.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/dropdown-indicator.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/dropdown-indicator.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/filters",
3
+ "main": "../dist/cjs/entry-points/filters.js",
4
+ "module": "../dist/esm/entry-points/filters.js",
5
+ "module:es2019": "../dist/es2019/entry-points/filters.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/filters.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/filters.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/group",
3
+ "main": "../dist/cjs/entry-points/group.js",
4
+ "module": "../dist/esm/entry-points/group.js",
5
+ "module:es2019": "../dist/es2019/entry-points/group.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/group.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/group.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/group-heading",
3
+ "main": "../dist/cjs/entry-points/group-heading.js",
4
+ "module": "../dist/esm/entry-points/group-heading.js",
5
+ "module:es2019": "../dist/es2019/entry-points/group-heading.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/group-heading.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/group-heading.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/indicators-container",
3
+ "main": "../dist/cjs/entry-points/indicators-container.js",
4
+ "module": "../dist/esm/entry-points/indicators-container.js",
5
+ "module:es2019": "../dist/es2019/entry-points/indicators-container.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/indicators-container.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/indicators-container.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/input",
3
+ "main": "../dist/cjs/entry-points/input.js",
4
+ "module": "../dist/esm/entry-points/input.js",
5
+ "module:es2019": "../dist/es2019/entry-points/input.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/input.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/input.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/loading-indicator",
3
+ "main": "../dist/cjs/entry-points/loading-indicator.js",
4
+ "module": "../dist/esm/entry-points/loading-indicator.js",
5
+ "module:es2019": "../dist/es2019/entry-points/loading-indicator.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/loading-indicator.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/loading-indicator.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/menu",
3
+ "main": "../dist/cjs/entry-points/menu.js",
4
+ "module": "../dist/esm/entry-points/menu.js",
5
+ "module:es2019": "../dist/es2019/entry-points/menu.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/menu.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/menu.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/menu-list",
3
+ "main": "../dist/cjs/entry-points/menu-list.js",
4
+ "module": "../dist/esm/entry-points/menu-list.js",
5
+ "module:es2019": "../dist/es2019/entry-points/menu-list.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/menu-list.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/menu-list.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/menu-portal",
3
+ "main": "../dist/cjs/entry-points/menu-portal.js",
4
+ "module": "../dist/esm/entry-points/menu-portal.js",
5
+ "module:es2019": "../dist/es2019/entry-points/menu-portal.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/menu-portal.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/menu-portal.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/multi-value",
3
+ "main": "../dist/cjs/entry-points/multi-value.js",
4
+ "module": "../dist/esm/entry-points/multi-value.js",
5
+ "module:es2019": "../dist/es2019/entry-points/multi-value.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/multi-value.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/multi-value.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/multi-value-remove",
3
+ "main": "../dist/cjs/entry-points/multi-value-remove.js",
4
+ "module": "../dist/esm/entry-points/multi-value-remove.js",
5
+ "module:es2019": "../dist/es2019/entry-points/multi-value-remove.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/multi-value-remove.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/multi-value-remove.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/react-select/option",
3
+ "main": "../dist/cjs/entry-points/option.js",
4
+ "module": "../dist/esm/entry-points/option.js",
5
+ "module:es2019": "../dist/es2019/entry-points/option.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/option.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/option.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }