@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 +1 -1
- package/src/index.ts +3 -0
- package/src/old.ts +0 -3
- package/src/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
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
|
|