Skip to content

Commit dee9abb

Browse files
committed
feat(many): make meta package export every component and type definition
Closes: INSTUI-4381
1 parent b91cfe1 commit dee9abb

File tree

17 files changed

+414
-27
lines changed

17 files changed

+414
-27
lines changed

packages/ui-calendar/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424
export { Calendar } from './Calendar'
25+
export { Day as CalendarDay } from './Calendar/Day'
2526

2627
export type { CalendarProps } from './Calendar/props'
2728
export type { CalendarDayProps } from './Calendar/Day/props'

packages/ui-drawer-layout/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424

25-
export { DrawerLayout, DrawerContent } from './DrawerLayout'
25+
export { DrawerLayout, DrawerContent, DrawerTray } from './DrawerLayout'
2626

2727
export type { DrawerLayoutProps } from './DrawerLayout/props'
2828
export type { DrawerLayoutContentProps } from './DrawerLayout/DrawerContent/props'

packages/ui-drilldown/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
*/
2424

2525
export { Drilldown } from './Drilldown'
26+
export { DrilldownGroup } from './Drilldown/DrilldownGroup'
27+
export { DrilldownOption } from './Drilldown/DrilldownOption'
28+
export { DrilldownPage } from './Drilldown/DrilldownPage'
29+
export { DrilldownSeparator } from './Drilldown/DrilldownSeparator'
2630

2731
export type {
2832
DrilldownProps,

packages/ui-list/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
export { InlineList } from './InlineList'
2626
export { List, ListItem } from './List'
27+
export { InlineListItem } from './InlineList/InlineListItem'
2728

2829
export type { InlineListProps } from './InlineList/props'
2930
export type { InlineListItemProps } from './InlineList/InlineListItem/props'

packages/ui-modal/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
* SOFTWARE.
2323
*/
24-
export { Modal } from './Modal'
24+
export { Modal, ModalBody, ModalFooter, ModalHeader } from './Modal'
2525

2626
export type { ModalProps } from './Modal/props'
2727
export type { ModalBodyProps } from './Modal/ModalBody/props'

packages/ui-motion/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424
export { Transition } from './Transition'
25+
export { BaseTransition } from './Transition/BaseTransition'
2526
export type { TransitionProps, TransitionType } from './Transition/props'
2627
export type { BaseTransitionStatesType } from './Transition/BaseTransition/props'
2728
export { transitionTypePropType } from './Transition/props'

packages/ui-navigation/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*/
2424

2525
export { AppNav } from './AppNav'
26+
export { Item as AppNavItem } from './AppNav/Item'
2627

2728
export type { AppNavProps } from './AppNav/props'
2829
export type { AppNavItemProps } from './AppNav/Item/props'

packages/ui-options/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
*/
2424

2525
export { Options } from './Options'
26+
export { Item as OptionItem } from './Options/Item'
27+
export { Separator as OptionSeparator } from './Options/Separator'
2628

2729
export { optionsThemeGenerator } from './Options/theme'
2830
export { optionsItemThemeGenerator } from './Options/Item/theme'

packages/ui-pages/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424
export { Pages } from './Pages'
25+
export { Page as PagesPage } from './Pages/Page'
2526

2627
export type { PagesProps } from './Pages/props'
2728
export type { PagesPageProps } from './Pages/Page/props'

packages/ui-rating/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424
export { Rating } from './Rating'
25+
export { RatingIcon } from './RatingIcon'
2526

2627
export type { RatingProps } from './Rating/props'
2728
export type { RatingIconProps } from './RatingIcon/props'

0 commit comments

Comments
 (0)