|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`getContentStyles handles all possible style configurations 1`] = ` |
| 4 | +{ |
| 5 | + "paddingBlock": undefined, |
| 6 | + "paddingInline": undefined, |
| 7 | +} |
| 8 | +`; |
| 9 | + |
| 10 | +exports[`getContentStyles handles all possible style configurations 2`] = ` |
| 11 | +{ |
| 12 | + "paddingBlock": undefined, |
| 13 | + "paddingInline": undefined, |
| 14 | +} |
| 15 | +`; |
| 16 | + |
| 17 | +exports[`getContentStyles handles all possible style configurations 3`] = ` |
| 18 | +{ |
| 19 | + "paddingBlock": "16px", |
| 20 | + "paddingInline": "20px", |
| 21 | +} |
| 22 | +`; |
| 23 | + |
| 24 | +exports[`getFooterStyles handles all possible style configurations 1`] = ` |
| 25 | +{ |
| 26 | + "borderColor": undefined, |
| 27 | + "borderWidth": undefined, |
| 28 | + "paddingBlock": undefined, |
| 29 | + "paddingInline": undefined, |
| 30 | +} |
| 31 | +`; |
| 32 | + |
| 33 | +exports[`getFooterStyles handles all possible style configurations 2`] = ` |
| 34 | +{ |
| 35 | + "borderColor": undefined, |
| 36 | + "borderWidth": undefined, |
| 37 | + "paddingBlock": undefined, |
| 38 | + "paddingInline": undefined, |
| 39 | +} |
| 40 | +`; |
| 41 | + |
| 42 | +exports[`getFooterStyles handles all possible style configurations 3`] = ` |
| 43 | +{ |
| 44 | + "borderColor": "#e0e0e0", |
| 45 | + "borderWidth": "1px", |
| 46 | + "paddingBlock": "12px", |
| 47 | + "paddingInline": "20px", |
| 48 | +} |
| 49 | +`; |
| 50 | + |
| 51 | +exports[`getHeaderStyles handles all possible style configurations 1`] = ` |
| 52 | +{ |
| 53 | + "paddingBlock": undefined, |
| 54 | + "paddingInline": undefined, |
| 55 | +} |
| 56 | +`; |
| 57 | + |
| 58 | +exports[`getHeaderStyles handles all possible style configurations 2`] = ` |
| 59 | +{ |
| 60 | + "paddingBlock": undefined, |
| 61 | + "paddingInline": undefined, |
| 62 | +} |
| 63 | +`; |
| 64 | + |
| 65 | +exports[`getHeaderStyles handles all possible style configurations 3`] = ` |
| 66 | +{ |
| 67 | + "paddingBlock": "12px", |
| 68 | + "paddingInline": "20px", |
| 69 | +} |
| 70 | +`; |
| 71 | + |
| 72 | +exports[`getRootStyles handles all possible style configurations 1`] = ` |
| 73 | +{ |
| 74 | + "borderRadius": undefined, |
| 75 | +} |
| 76 | +`; |
| 77 | + |
| 78 | +exports[`getRootStyles handles all possible style configurations 2`] = ` |
| 79 | +{ |
| 80 | + "borderRadius": undefined, |
| 81 | +} |
| 82 | +`; |
| 83 | + |
| 84 | +exports[`getRootStyles handles all possible style configurations 3`] = ` |
| 85 | +{ |
| 86 | + "--awsui-style-background-default-m3n46o": "#ffffff", |
| 87 | + "--awsui-style-border-color-default-m3n46o": "#e0e0e0", |
| 88 | + "--awsui-style-border-radius-m3n46o": "8px", |
| 89 | + "--awsui-style-border-width-default-m3n46o": "1px", |
| 90 | + "--awsui-style-box-shadow-default-m3n46o": "0 1px 3px rgba(0,0,0,0.1)", |
| 91 | + "borderRadius": "8px", |
| 92 | +} |
| 93 | +`; |
0 commit comments