import React from 'react' import styled from 'styled-components' import {DiffComponent, DiffFromTo, DiffString, StringDiff} from '../../../diff' import {StringPreview} from '../preview/StringPreview' const StringWrapper = styled.div` white-space: pre-wrap; word-wrap: break-word; ` export const StringFieldDiff: DiffComponent = ({diff, schemaType}) => { const {options} = schemaType as any if (options?.list) { // When the string is considered to be an "enum", don't show individual // string segment changes, rather treat is as a "from -> to" diff return } return ( ) }