|
| 1 | +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html |
| 2 | + |
| 3 | +exports[`getBubbleStyle > handles all possible style configurations 1`] = ` |
| 4 | +{ |
| 5 | + "background": undefined, |
| 6 | + "borderColor": undefined, |
| 7 | + "borderRadius": undefined, |
| 8 | + "borderStyle": undefined, |
| 9 | + "borderWidth": undefined, |
| 10 | + "boxShadow": undefined, |
| 11 | + "color": undefined, |
| 12 | + "fontSize": undefined, |
| 13 | + "fontWeight": undefined, |
| 14 | + "paddingBlock": undefined, |
| 15 | + "paddingInline": undefined, |
| 16 | + "rowGap": undefined, |
| 17 | +} |
| 18 | +`; |
| 19 | + |
| 20 | +exports[`getBubbleStyle > handles all possible style configurations 2`] = ` |
| 21 | +{ |
| 22 | + "background": undefined, |
| 23 | + "borderColor": undefined, |
| 24 | + "borderRadius": undefined, |
| 25 | + "borderStyle": undefined, |
| 26 | + "borderWidth": undefined, |
| 27 | + "boxShadow": undefined, |
| 28 | + "color": undefined, |
| 29 | + "fontSize": undefined, |
| 30 | + "fontWeight": undefined, |
| 31 | + "paddingBlock": undefined, |
| 32 | + "paddingInline": undefined, |
| 33 | + "rowGap": undefined, |
| 34 | +} |
| 35 | +`; |
| 36 | + |
| 37 | +exports[`getBubbleStyle > handles all possible style configurations 3`] = ` |
| 38 | +{ |
| 39 | + "background": "#f0f0f0", |
| 40 | + "borderColor": "#ccc", |
| 41 | + "borderRadius": "8px", |
| 42 | + "borderStyle": "solid", |
| 43 | + "borderWidth": "2px", |
| 44 | + "boxShadow": "0 4px 8px rgba(0,0,0,0.2)", |
| 45 | + "color": "#333", |
| 46 | + "fontSize": "16px", |
| 47 | + "fontWeight": "500", |
| 48 | + "paddingBlock": "20px", |
| 49 | + "paddingInline": "24px", |
| 50 | + "rowGap": "12px", |
| 51 | +} |
| 52 | +`; |
| 53 | + |
| 54 | +exports[`getChatBubbleRootStyle > handles all possible style configurations 1`] = ` |
| 55 | +{ |
| 56 | + "columnGap": undefined, |
| 57 | +} |
| 58 | +`; |
| 59 | + |
| 60 | +exports[`getChatBubbleRootStyle > handles all possible style configurations 2`] = ` |
| 61 | +{ |
| 62 | + "columnGap": undefined, |
| 63 | +} |
| 64 | +`; |
| 65 | + |
| 66 | +exports[`getChatBubbleRootStyle > handles all possible style configurations 3`] = ` |
| 67 | +{ |
| 68 | + "columnGap": "10px", |
| 69 | +} |
| 70 | +`; |
0 commit comments