()
| 56 | }) as const; |
| 57 | |
| 58 | export const track = () => |
| 59 | ({ |
| 60 | ...fieldInput(), |
| 61 | gridArea: 'bar', |
| 62 | overflow: 'hidden', |
| 63 | borderRadius: 'full', |
| 64 | backgroundColor: { |
| 65 | default: 'gray-300', |
| 66 | isStaticColor: 'transparent-overlay-300', |
| 67 | forcedColors: 'ButtonFace' |
| 68 | }, |
| 69 | outlineWidth: { |
| 70 | default: 0, |
| 71 | forcedColors: 1 |
| 72 | }, |
| 73 | outlineStyle: { |
| 74 | default: 'none', |
| 75 | forcedColors: 'solid' |
| 76 | }, |
| 77 | outlineColor: { |
| 78 | default: 'transparent', |
| 79 | forcedColors: 'ButtonText' |
| 80 | }, |
| 81 | zIndex: 1 // to fix a weird webkit bug with rounded corners and masking |
| 82 | }) as const; |
no test coverage detected