reactbridge-sdk 0.1.19 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -784,8 +784,7 @@ toggleButtonClass = defaultToggleButtonClass, toggleButtonTitle = "Open chat ass
|
|
|
784
784
|
React.createElement("button", { type: "button", onClick: () => setIsUploadMenuOpen(!isUploadMenuOpen), disabled: isLoading, title: "Attach file", style: {
|
|
785
785
|
padding: theme.spacing.sm,
|
|
786
786
|
paddingRight: 0,
|
|
787
|
-
|
|
788
|
-
color: "#ffffff",
|
|
787
|
+
color: theme.colors.border,
|
|
789
788
|
border: "none",
|
|
790
789
|
borderRadius: theme.borderRadius,
|
|
791
790
|
cursor: isLoading ? "not-allowed" : "pointer",
|
|
@@ -839,10 +838,7 @@ toggleButtonClass = defaultToggleButtonClass, toggleButtonTitle = "Open chat ass
|
|
|
839
838
|
React.createElement("button", { type: "button", onClick: isListening ? stopVoiceInput : startVoiceInput, disabled: isLoading, title: isListening ? "Stop recording" : "Start voice input", style: {
|
|
840
839
|
padding: theme.spacing.sm,
|
|
841
840
|
paddingLeft: 0,
|
|
842
|
-
|
|
843
|
-
? theme.colors.error
|
|
844
|
-
: theme.colors.secondary,
|
|
845
|
-
color: "#ffffff",
|
|
841
|
+
color: isListening ? theme.colors.primary : theme.colors.border,
|
|
846
842
|
border: "none",
|
|
847
843
|
borderRadius: theme.borderRadius,
|
|
848
844
|
cursor: isLoading ? "not-allowed" : "pointer",
|
|
@@ -985,6 +981,7 @@ toggleButtonClass = defaultToggleButtonClass, toggleButtonTitle = "Open chat ass
|
|
|
985
981
|
} }),
|
|
986
982
|
React.createElement("button", { type: "button", onClick: () => setIsUploadMenuOpen(!isUploadMenuOpen), disabled: isLoading, title: "Attach file", style: {
|
|
987
983
|
padding: theme.spacing.sm,
|
|
984
|
+
paddingRight: 0,
|
|
988
985
|
color: theme.colors.border,
|
|
989
986
|
border: "none",
|
|
990
987
|
borderRadius: theme.borderRadius,
|
|
@@ -1044,6 +1041,7 @@ toggleButtonClass = defaultToggleButtonClass, toggleButtonTitle = "Open chat ass
|
|
|
1044
1041
|
"Upload Document"))),
|
|
1045
1042
|
React.createElement("button", { type: "button", onClick: isListening ? stopVoiceInput : startVoiceInput, disabled: isLoading, title: isListening ? "Stop recording" : "Start voice input", style: {
|
|
1046
1043
|
padding: theme.spacing.sm,
|
|
1044
|
+
paddingLeft: 0,
|
|
1047
1045
|
color: isListening ? theme.colors.primary : theme.colors.border,
|
|
1048
1046
|
border: "none",
|
|
1049
1047
|
borderRadius: theme.borderRadius,
|