Skip to content

Commit dc68681

Browse files
committed
fix(web components): export shared prop types
1 parent 3d59708 commit dc68681

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/main/scripts/create-library-export.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const fs = require('fs');
33
const PATHS = require('../../../config/paths');
44

55
const LIB_BASE_PATH = path.resolve(PATHS.packages, 'main', 'src', 'lib');
6-
const INTERNAL_COMPONENTS = ['withWebComponent', 'ScrollContext'];
6+
const INTERNAL_COMPONENTS = ['ScrollContext'];
77

88
const allLibFiles = fs
99
.readdirSync(LIB_BASE_PATH)

packages/main/src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ import { UploadState } from './lib/UploadState';
154154
import { ValueState } from './lib/ValueState';
155155
import { VariantManagement } from './lib/VariantManagement';
156156
import { VerticalAlign } from './lib/VerticalAlign';
157+
import { withWebComponent } from './lib/withWebComponent';
157158

158159
export {
159160
ActionSheet,
@@ -307,5 +308,6 @@ export {
307308
UploadState,
308309
ValueState,
309310
VariantManagement,
310-
VerticalAlign
311+
VerticalAlign,
312+
withWebComponent
311313
};

0 commit comments

Comments
 (0)