@bitrise/bitkit 10.9.2 → 10.10.0-alpha-dropdown-release.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "10.9.2",
4
+ "version": "10.10.0-alpha-dropdown-release.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
package/src/index.ts CHANGED
@@ -142,4 +142,7 @@ export { default as BreadcrumbLink } from './Components/Breadcrumb/BreadcrumbLin
142
142
  export type { RibbonProps } from './Components/Ribbon/Ribbon';
143
143
  export { default as Ribbon } from './Components/Ribbon/Ribbon';
144
144
 
145
+ export type { DropdownProps } from './Components/Dropdown/Dropdown';
146
+ export { default as Dropdown } from './Components/Dropdown/Dropdown';
147
+
145
148
  export { BREAKPOINTS } from './Foundations/Breakpoints/Breakpoints';
package/src/old.ts CHANGED
@@ -15,9 +15,6 @@ export { default as Base } from './Old/Base/Base';
15
15
  export type { Props as DatePickerProps } from './Old/DatePicker/DatePicker';
16
16
  export { default as DatePicker } from './Old/DatePicker/DatePicker';
17
17
 
18
- export type { Props as DropdownProps } from './Old/Dropdown/Dropdown';
19
- export { default as Dropdown } from './Old/Dropdown/Dropdown';
20
-
21
18
  export type { Props as DropdownMenuProps } from './Old/Dropdown/DropdownMenu';
22
19
  export { default as DropdownMenu } from './Old/Dropdown/DropdownMenu';
23
20