forked from Doist/reactist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
63 lines (53 loc) · 1.71 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import './styles/design-tokens.css'
// layout components
export * from './box'
export * from './columns'
export * from './divider'
export * from './inline'
export * from './stack'
export * from './hidden'
export * from './hidden-visually'
// alerts, notifications, etc.
export * from './alert'
export * from './banner'
export * from './loading'
export * from './notice'
export * from './toast'
// text and typography
export * from './heading'
export * from './text'
export * from './prose'
// links
export * from './button'
export * from './button-link'
export * from './text-link'
// form fields
export * from './checkbox-field'
export * from './password-field'
export * from './select-field'
export * from './switch-field'
export * from './text-area'
export * from './text-field'
// other components
export * from './avatar'
export * from './badge'
export * from './modal'
export * from './tabs'
export * from './tooltip'
export * from './menu'
//
// components not yet integrated with the design system
//
export { default as ColorPicker, COLORS } from './components/color-picker'
export { default as KeyboardShortcut } from './components/keyboard-shortcut'
export { default as KeyCapturer, SUPPORTED_KEYS } from './components/key-capturer'
export { default as ProgressBar } from './components/progress-bar'
export { default as Time } from './components/time'
//
// Deprecated components
//
export { default as DeprecatedButton } from './components/deprecated-button'
export { default as DeprecatedDropdown } from './components/deprecated-dropdown'
export { default as DeprecatedInput } from './components/deprecated-input'
export { default as DeprecatedSelect } from './components/deprecated-select'
export * from './deprecated-modal'