-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdui-client.coffee
29 lines (28 loc) · 1.57 KB
/
sdui-client.coffee
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
# Write your package code here!
# Variables exported by this module can be imported by other packages and
# applications. See sdui-tests.js for an example of importing.
export {
userWithIdIsInRole, currentUserIsInRole,
useCurrentUserIsInRole, currentUserMustBeInRole,
scopesForCurrentUserInRole, useScopesForCurrentUserInRole
} from './common/roleChecks.coffee'
export {createTableDataAPI} from './api/createTableDataAPI.coffee'
export {ActionButton} from './forms/ActionButton.coffee'
export {SdTable} from './tables/SdTable.coffee'
export {SdList} from './tables/SdList.coffee'
export {SdContentEditor} from './tables/SdContentEditor.coffee'
export {SdEditor} from './editor/SdEditor.coffee'
export {MarkdownDisplay} from './markdown/MarkdownDisplay.coffee'
export * from './forms/uniforms-custom/select-implementation'
export {useSession} from './common/useSession.coffee'
export {meteorApply} from './common/meteorApply.coffee'
export {ColorPicker, ColorPickerField} from './forms/ColorPicker.coffee'
export {LongTextField} from './forms/uniforms-custom/src'
export {ManagedForm} from './forms/ManagedForm.coffee'
export {FormModal} from './forms/FormModal.coffee'
export {createUserTableAPI} from './usertable/createUserTableAPI.coffee'
export {LoginForm} from './forms/LoginForm.coffee'
export {config} from './config/config.coffee'
export {QueryEditor, QueryEditorField} from './query-editor/QueryEditor.coffee'
export {default as queryUiObjectToQuery} from './query-editor/queryUiObjectToQuery.coffee'
export {SdDocumentSelect, SdDocumentSelectField} from './tables/SdDocumentSelect.coffee'