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

Commit

Permalink
feat(style): add style to umbrella package (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw committed Apr 16, 2020
1 parent c0e3048 commit 4ab96f3
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 @@ -34,6 +34,7 @@
"@superset-ui/dimension": "0.12.18",
"@superset-ui/number-format": "0.12.18",
"@superset-ui/query": "0.12.18",
"@superset-ui/style": "0.12.18",
"@superset-ui/time-format": "0.12.18",
"@superset-ui/translation": "0.12.18",
"@superset-ui/validator": "0.12.18"
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 @@ -6,6 +6,7 @@ export * from '@superset-ui/core';
export * from '@superset-ui/dimension';
export * from '@superset-ui/number-format';
export * from '@superset-ui/query';
export * from '@superset-ui/style';
export * from '@superset-ui/time-format';
export * from '@superset-ui/translation';
export * from '@superset-ui/validator';
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 @@ -10,6 +10,7 @@ import {
getTimeFormatterRegistry,
t,
validateInteger,
supersetTheme,
} from '../src';

describe('@superset-ui/superset-ui', () => {
Expand Down Expand Up @@ -37,6 +38,9 @@ describe('@superset-ui/superset-ui', () => {
it('should export @superset-ui/query', () => {
expect(buildQueryContext).toBeDefined();
});
it('should export @superset-ui/style', () => {
expect(supersetTheme).toBeDefined();
});
it('should export @superset-ui/time-format', () => {
expect(getTimeFormatterRegistry).toBeDefined();
});
Expand Down

0 comments on commit 4ab96f3

Please sign in to comment.