@bitrise/bitkit 10.10.0-alpha-dropdown-release.1 → 10.10.0-alpha-dropdown-release.2
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 +8 -1
- package/src/tsconfig.tsbuildinfo +1 -1
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.10.0-alpha-dropdown-release.
|
|
4
|
+
"version": "10.10.0-alpha-dropdown-release.2",
|
|
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
|
@@ -143,6 +143,13 @@ export type { RibbonProps } from './Components/Ribbon/Ribbon';
|
|
|
143
143
|
export { default as Ribbon } from './Components/Ribbon/Ribbon';
|
|
144
144
|
|
|
145
145
|
export type { DropdownProps } from './Components/Dropdown/Dropdown';
|
|
146
|
-
export {
|
|
146
|
+
export {
|
|
147
|
+
default as Dropdown,
|
|
148
|
+
DropdownOption,
|
|
149
|
+
DropdownGroup,
|
|
150
|
+
DropdownSearch,
|
|
151
|
+
NoResultsFound as DropdownNoResultsFound,
|
|
152
|
+
typedDropdown,
|
|
153
|
+
} from './Components/Dropdown/Dropdown';
|
|
147
154
|
|
|
148
155
|
export { BREAKPOINTS } from './Foundations/Breakpoints/Breakpoints';
|