-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathprops.ts
More file actions
95 lines (95 loc) · 2.84 KB
/
Copy pathprops.ts
File metadata and controls
95 lines (95 loc) · 2.84 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
export enum Prop {
AuthorName = 'authorName',
Blocks = 'blocks',
Elements = 'elements',
BlockId = 'blockId',
ExternalId = 'externalId',
Label = 'label',
Element = 'element',
Hint = 'hint',
Optional = 'optional',
Fields = 'fields',
Accessory = 'accessory',
ActionId = 'actionId',
Url = 'url',
Style = 'style',
Value = 'value',
Option = 'option',
Confirm = 'confirm',
ImageUrl = 'imageUrl',
AltText = 'altText',
Options = 'options',
InitialOptions = 'initialOptions',
InitialOption = 'initialOption',
Placeholder = 'placeholder',
InitialDate = 'initialDate',
InitialDateTime = 'initialDateTime',
InitialValue = 'initialValue',
IsDecimalAllowed = 'isDecimalAllowed',
Multiline = 'multiline',
MinLength = 'minLength',
MaxLength = 'maxLength',
MinValue = 'minValue',
MaxValue = 'maxValue',
InitialChannel = 'initialChannel',
InitialChannels = 'initialChannels',
InitialConversation = 'initialConversation',
InitialConversations = 'initialConversations',
ResponseUrlEnabled = 'responseUrlEnabled',
DefaultToCurrentConversation = 'defaultToCurrentConversation',
Filter = 'filter',
MinQueryLength = 'minQueryLength',
OptionGroups = 'optionGroups',
InitialUser = 'initialUser',
InitialUsers = 'initialUsers',
MaxSelectedItems = 'maxSelectedItems',
Title = 'title',
Submit = 'submit',
Close = 'close',
Deny = 'deny',
ExcludeExternalSharedChannels = 'excludeExternalSharedChannels',
ExcludeBotUsers = 'excludeBotUsers',
Text = 'text',
PrivateMetaData = 'privateMetaData',
CallbackId = 'callbackId',
Channel = 'channel',
ClearOnClose = 'clearOnClose',
NotifyOnClose = 'notifyOnClose',
Description = 'description',
Danger = 'danger',
Primary = 'primary',
AsUser = 'asUser',
ThreadTs = 'threadTs',
ReplaceOriginal = 'replaceOriginal',
DeleteOriginal = 'deleteOriginal',
ResponseType = 'responseType',
PostAt = 'postAt',
Ephemeral = 'ephemeral',
InChannel = 'inChannel',
Ts = 'ts',
Color = 'color',
Fallback = 'fallback',
Attachments = 'attachments',
DispatchAction = 'dispatchAction',
DispatchActionConfig = 'dispatchActionConfig',
OnEnterPressed = 'onEnterPressed',
OnCharacterEntered = 'onCharacterEntered',
DispatchActionOnEnterPressed = 'dispatchActionOnEnterPressed',
DispatchActionOnCharacterEntered = 'dispatchActionOnCharacterEntered',
InitialTime = 'initialTime',
Mrkdwn = 'mrkdwn',
IgnoreMarkdown = 'ignoreMarkdown',
SubmitDisabled = 'submitDisabled',
FocusOnLoad = 'focusOnLoad',
AccessibilityLabel = 'accessibilityLabel',
ProviderIconUrl = 'providerIconUrl',
ProviderName = 'providerName',
TitleUrl = 'titleUrl',
ThumbnailUrl = 'thumbnailUrl',
VideoUrl = 'videoUrl',
MaxFiles = 'maxFiles',
Filetypes = 'filetypes',
Workflow = 'workflow',
Trigger = 'trigger',
CustomizableInputParameters = 'customizableInputParameters',
}