Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
feat(superset-ui): include control utils in the umbrella package (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored Apr 30, 2020
1 parent 4da291f commit c2e0bdd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/superset-ui-superset-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"@superset-ui/chart-composition": "0.13.3",
"@superset-ui/color": "0.13.3",
"@superset-ui/connection": "0.13.3",
"@superset-ui/control-utils": "0.13.3",
"@superset-ui/core": "0.13.3",
"@superset-ui/dimension": "0.13.3",
"@superset-ui/number-format": "0.13.3",
Expand Down
1 change: 1 addition & 0 deletions packages/superset-ui-superset-ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * from '@superset-ui/chart';
export * from '@superset-ui/chart-composition';
export * from '@superset-ui/color';
export * from '@superset-ui/connection';
export * from '@superset-ui/control-utils';
export * from '@superset-ui/core';
export * from '@superset-ui/dimension';
export * from '@superset-ui/number-format';
Expand Down
4 changes: 4 additions & 0 deletions packages/superset-ui-superset-ui/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
t,
validateInteger,
supersetTheme,
D3_FORMAT_DOCS,
} from '../src';

describe('@superset-ui/superset-ui', () => {
Expand All @@ -26,6 +27,9 @@ describe('@superset-ui/superset-ui', () => {
it('should export @superset-ui/connection', () => {
expect(SupersetClient).toBeDefined();
});
it('should export @superset-ui/control-utils', () => {
expect(D3_FORMAT_DOCS).toBeDefined();
});
it('should export @superset-ui/core', () => {
expect(Registry).toBeDefined();
});
Expand Down

0 comments on commit c2e0bdd

Please sign in to comment.