-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: remove re-exports * fix: remove unused deps
- Loading branch information
Showing
3 changed files
with
1 addition
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
export * from "./ExampleComponent" | ||
|
||
// Re-exports which need to be moved into this package | ||
export * from "@kaizen/select" | ||
export * from "@kaizen/tabs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,2 @@ | ||
// Components inside this package | ||
export * from "./KaizenProvider" | ||
|
||
// Re-exports which need to be moved into this package | ||
export * from "@kaizen/a11y" | ||
export * from "@kaizen/brand" | ||
export * from "@kaizen/brand-moment" | ||
export * from "@kaizen/button" | ||
export * from "@kaizen/component-base" | ||
export { Icon, Box, Spacing } from "@kaizen/component-library" | ||
export * from "@kaizen/date-picker" | ||
export * from "@kaizen/draft-avatar" | ||
export * from "@kaizen/draft-badge" | ||
export * from "@kaizen/draft-card" | ||
export * from "@kaizen/draft-collapsible" | ||
export * from "@kaizen/draft-divider" | ||
export * from "@kaizen/draft-empty-state" | ||
export * from "@kaizen/draft-filter-menu-button" | ||
export * from "@kaizen/draft-form" | ||
export * from "@kaizen/draft-guidance-block" | ||
export * from "@kaizen/draft-hero-card" | ||
export * from "@kaizen/draft-illustration" | ||
export * from "@kaizen/draft-likert-scale-legacy" | ||
export * from "@kaizen/draft-menu" | ||
export * from "@kaizen/draft-modal" | ||
export * from "@kaizen/draft-page-layout" | ||
export * from "@kaizen/draft-popover" | ||
export * from "@kaizen/draft-table" | ||
export * from "@kaizen/draft-tabs" | ||
export * from "@kaizen/draft-tag" | ||
export * from "@kaizen/draft-tile" | ||
export * from "@kaizen/draft-title-block-zen" | ||
export * from "@kaizen/draft-tooltip" | ||
export * from "@kaizen/draft-well" | ||
export * from "@kaizen/hosted-assets" | ||
export * from "@kaizen/loading-skeleton" | ||
export * from "@kaizen/loading-spinner" | ||
export * from "@kaizen/notification" | ||
export * from "@kaizen/pagination" | ||
export * from "@kaizen/progress-bar" | ||
export * from "@kaizen/responsive" | ||
export * from "@kaizen/rich-text-editor" | ||
export * from "@kaizen/split-button" | ||
export * from "@kaizen/typography" | ||
|
||
// Special cases | ||
|
||
// Part of design tokens is already exported from KaizenProvider | ||
export { | ||
makeCssVariableDefinitionsMap, | ||
makeCSSVariableTheme, | ||
mapLeafsOfObject, | ||
} from "@kaizen/design-tokens" | ||
// --- // | ||
|
||
// ValueType naming clash with @kaizen/date-picker requires us to export individual parts of draft-select | ||
export { Select, AsyncSelect } from "@kaizen/draft-select" | ||
export type { ValueType as SelectValueType } from "@kaizen/draft-select" | ||
// --- // |