slack-block-builder
Advanced tools
Comparing version 1.7.0 to 1.7.1
# Change Log | ||
## v1.7.1 – 2020-10-13 | ||
* Update TypeScript definitions | ||
## v1.7.0 – 2020-10-17 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "slack-block-builder", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"description": "Maintainable code for interactive Slack messages, modals and home tabs. A must-have for the Slack Block Kit framework.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -342,4 +342,17 @@ declare module 'slack-block-builder' { | ||
maxLength(maxLength: number): this; | ||
dispatchActionOnEnterPressed(): this; | ||
dispatchActionOnCharacterEntered(): this; | ||
} | ||
interface TimePickerParams { | ||
actionId?: string; | ||
placeholder?: string; | ||
initialTime?: string; | ||
} | ||
interface TimePicker extends ConfirmableElement { | ||
placeholder(placeholder: string): this; | ||
initialTime(time: string): this; | ||
} | ||
interface UserMultiSelectParams { | ||
@@ -483,2 +496,3 @@ actionId?: string; | ||
TextInput(params?: Element.TextInputParams): Element.TextInput; | ||
TimePicker(params?: Element.TimePickerParams): Element.TimePicker; | ||
UserMultiSelect( | ||
@@ -485,0 +499,0 @@ params?: Element.UserMultiSelectParams |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
183407
4439