Skip to content

Commit e85f6f1

Browse files
committed
fix(mui, pf4): fixed type in component mapper typings
1 parent f273bee commit e85f6f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/blueprint-component-mapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"license": "Apache-2.0",
1212
"scripts": {
1313
"start": "webpack-dev-server --env dev --config ./config/webpack.config.js --open --hot",
14-
"build": "yarn build:cjs && yarn build:esm && yarn build:umd",
14+
"build": "yarn build:cjs && yarn build:esm && yarn build:umd && yarn build:typings",
1515
"build:cjs": "BABEL_ENV=cjs rollup -c ./rollup.config.js --format=cjs --environment FORMAT:cjs",
1616
"build:esm": "BABEL_ENV=esm rollup -c ./rollup.config.js --format=esm --environment FORMAT:esm",
1717
"build:umd": "rollup -c ./rollup.config.js --format=umd --environment FORMAT:umd",

packages/mui-component-mapper/src/files/component-mapper.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ interface componentMapper {
3636

3737
declare const componentMapper: componentMapper;
3838

39-
export const Components: Components;
39+
export const Components: components;
4040

4141
export default componentMapper;

packages/pf4-component-mapper/src/files/component-mapper.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ export const rawComponents: RawComponents;
4242

4343
declare const componentMapper: componentMapper;
4444

45-
export const Components: Components;
45+
export const components: Components;
4646

4747
export default componentMapper;

0 commit comments

Comments
 (0)