Skip to content

Commit e4e5a7f

Browse files
authored
Export all modifiers and other common typings (#1004)
1 parent f59ba08 commit e4e5a7f

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

generatedTypes/index.d.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@
66
export * from './style';
77
export * from './services';
88
export * as Incubator from './incubator';
9-
export {asBaseComponent, withScrollEnabler, withScrollReached, WithScrollEnablerProps, WithScrollReachedProps} from './commons/new';
9+
export {
10+
asBaseComponent,
11+
withScrollEnabler,
12+
withScrollReached,
13+
WithScrollEnablerProps,
14+
WithScrollReachedProps,
15+
BaseComponentInjectedProps,
16+
ForwardRefInjectedProps,
17+
ContainerModifiers,
18+
MarginModifiers,
19+
PaddingModifiers,
20+
TypographyModifiers,
21+
ColorsModifiers,
22+
BackgroundColorModifier
23+
} from './commons/new';
1024
export {default as ActionBar, ActionBarProps} from './components/actionBar';
1125
export {default as Avatar, AvatarPropTypes} from './components/avatar';
1226
export {default as Card, CardPropTypes, CardSectionProps} from './components/card';

src/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
export * from './style';
88
export * from './services';
9+
export {
10+
BaseComponentInjectedProps,
11+
ForwardRefInjectedProps,
12+
ContainerModifiers,
13+
MarginModifiers,
14+
PaddingModifiers,
15+
TypographyModifiers,
16+
ColorsModifiers,
17+
BackgroundColorModifier
18+
} from './commons/new';
919
export * as Incubator from './incubator';
1020
export {default as ActionBar, ActionBarProps} from './components/actionBar';
1121
export {default as Avatar, AvatarPropTypes} from './components/avatar';

0 commit comments

Comments
 (0)