Skip to content

Commit c2a2139

Browse files
authored
Merge branch 'main' into refactor/bubble-list-rerender
2 parents 42d65a2 + b88b550 commit c2a2139

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/preview-deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
# We need get PR id first
6464
- name: download pr artifact
65-
uses: dawidd6/action-download-artifact@v7
65+
uses: dawidd6/action-download-artifact@v8
6666
with:
6767
workflow: ${{ github.event.workflow_run.workflow_id }}
6868
run_id: ${{ github.event.workflow_run.id }}
@@ -82,7 +82,7 @@ jobs:
8282
# Download site artifact
8383
- name: download site artifact
8484
if: ${{ fromJSON(needs.upstream-workflow-summary.outputs.build-success) }}
85-
uses: dawidd6/action-download-artifact@v7
85+
uses: dawidd6/action-download-artifact@v8
8686
with:
8787
workflow: ${{ github.event.workflow_run.workflow_id }}
8888
run_id: ${{ github.event.workflow_run.id }}

bun.lockb

-8 Bytes
Binary file not shown.

components/sender/index.en-US.md

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Common props ref:[Common props](/docs/react/common-props)
5252
| onSubmit | Callback when click send button | (message: string) => void | - | - |
5353
| onChange | Callback when input value changes | (value: string, event?: React.FormEvent<`HTMLTextAreaElement`> \| React.ChangeEvent<`HTMLTextAreaElement`> ) => void | - | - |
5454
| onCancel | Callback when click cancel button | () => void | - | - |
55+
| onPasteFile | Callback when paste file | (file: File) => void | - | - |
5556

5657
```typescript | pure
5758
type SpeechConfig = {

components/sender/index.zh-CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ coverDark: https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*cOfrS4fVkOMAAA
5353
| onSubmit | 点击发送按钮的回调 | (message: string) => void | - | - |
5454
| onChange | 输入框值改变的回调 | (value: string, event?: React.FormEvent<`HTMLTextAreaElement`> \| React.ChangeEvent<`HTMLTextAreaElement`> ) => void | - | - |
5555
| onCancel | 点击取消按钮的回调 | () => void | - | - |
56+
| onPasteFile | 黏贴文件的回调 | (file: File) => void | - | - |
5657

5758
```typescript | pure
5859
type SpeechConfig = {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@
254254
"spinnies": "^0.5.1",
255255
"stylelint": "^16.9.0",
256256
"stylelint-config-rational-order": "^0.1.2",
257-
"stylelint-config-standard": "^36.0.1",
257+
"stylelint-config-standard": "^37.0.0",
258258
"stylelint-prettier": "^5.0.2",
259259
"sylvanas": "^0.6.1",
260260
"tar": "^7.4.3",

0 commit comments

Comments
 (0)