@ni/spright-components 6.20.0 → 6.20.2
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/all-components-bundle.js +3 -2
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +3 -2
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/custom-elements.json +112 -112
- package/dist/custom-elements.md +28 -28
- package/dist/esm/chat/input/index.js +1 -1
- package/dist/esm/chat/input/index.js.map +1 -1
- package/dist/esm/chat/input/styles.js +2 -1
- package/dist/esm/chat/input/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -99547,8 +99547,9 @@ focus outline in that case.
|
|
|
99547
99547
|
|
|
99548
99548
|
.action-button {
|
|
99549
99549
|
align-self: flex-end;
|
|
99550
|
-
width:
|
|
99550
|
+
width: 48px;
|
|
99551
99551
|
margin: ${mediumPadding};
|
|
99552
|
+
height: ${controlSlimHeight};
|
|
99552
99553
|
}
|
|
99553
99554
|
|
|
99554
99555
|
.attachments {
|
|
@@ -99758,7 +99759,7 @@ focus outline in that case.
|
|
|
99758
99759
|
this.textArea?.blur();
|
|
99759
99760
|
}
|
|
99760
99761
|
shouldDisableSendButton() {
|
|
99761
|
-
return this.textArea.value.length === 0;
|
|
99762
|
+
return this.sendDisabled || this.textArea.value.length === 0;
|
|
99762
99763
|
}
|
|
99763
99764
|
resetInput() {
|
|
99764
99765
|
this.value = '';
|