original_text
stringlengths 1
23.3k
| tokenized_code
stringlengths 1
25.1k
| masked_code
stringlengths 1
23.6k
|
---|---|---|
const [nonsense, msPath, ...urls] = tempUrl | const [ nonsense , msPath , ... urls ] = tempUrl | [MASK] [ nonsense , msPath , ... [MASK] ] = [MASK] |
const newUrl = urls.join('/') | const newUrl = urls.join ( '/ ' ) | const newUrl = urls.join ( [MASK] ' ) |
}) | } ) | } ) |
} | } | [MASK] |
) | ) | ) |
} | } | } |
export default ExportButton | export default ExportButton | export default ExportButton |
import TreeView from './TreeView' | import TreeView from './TreeView ' | import [MASK] from './TreeView ' |
export default TreeView | export default TreeView | export default TreeView |
import React from 'react' | import React from 'react ' | import React from 'react [MASK] |
import { Form } from '@protolibrary/components' | import { Form } from ' @ protolibrary/components ' | import { Form [MASK] from ' @ protolibrary/components ' |
import TreeView from './TreeView' | import TreeView from './TreeView ' | import TreeView [MASK] './TreeView [MASK] |
} | } | } |
} | } | } |
const Template = args => <TreeView {...args} partofform={false} /> | const Template = args = > < TreeView { ... args } partofform= { false } / > | const Template = args = > < TreeView { [MASK] args [MASK] [MASK] { false } [MASK] [MASK] |
) | ) | ) |
export const Default = Template.bind({}) | export const Default = Template.bind ( { } ) | [MASK] const Default [MASK] Template.bind ( { } ) |
} | } | } |
export const FormUsage = TemplateForm.bind({}) | export const FormUsage = TemplateForm.bind ( { } ) | export const FormUsage = TemplateForm.bind ( [MASK] } ) |
} | } | } |
import React, { useEffect, useMemo, useState } from 'react' | import React , { useEffect , useMemo , useState } from 'react ' | import React , { [MASK] , useMemo , useState } [MASK] 'react ' |
import BaseTreeView, { flattenTree, ITreeViewOnSelectProps } from 'react-accessible-treeview' | import BaseTreeView , { flattenTree , ITreeViewOnSelectProps } from 'react-accessible-treeview ' | import BaseTreeView , { flattenTree , ITreeViewOnSelectProps } from 'react-accessible-treeview ' |
import cx from 'classnames' | import cx from 'classnames ' | import cx from 'classnames ' |
import Icon from '@protoweb/icon' | import Icon from ' @ protoweb/icon ' | import Icon from ' @ protoweb/icon ' |
import ICONS from '@resources/icons' | import ICONS from ' @ resources/icons ' | import ICONS from ' [MASK] resources/icons ' |
import './assets/style.scss' | import './assets/style.scss ' | import './assets/style.scss ' |
import { InputHOC } from '@protoweb/utils' | import { InputHOC } from ' @ protoweb/utils ' | import { InputHOC [MASK] from ' @ protoweb/utils [MASK] |
import { IFormBasePropType } from '@protoweb/types' | import { IFormBasePropType } from ' @ protoweb/types ' | import [MASK] IFormBasePropType } [MASK] ' @ protoweb/types ' |
data: any | data : any | data : any |
value?: any | value ? : any | value ? : any |
onChange?: (event: any, selectedItem: Array<any>) => void | onChange ? : ( event : any , selectedItem : Array < any > ) = > void | onChange [MASK] [MASK] ( event : any , selectedItem : Array < any > ) = [MASK] void |
const [selectedItems, setSelectedItems] = useState([]) | const [ selectedItems , setSelectedItems ] = useState ( [ ] ) | const [ selectedItems , setSelectedItems [MASK] = [MASK] ( [ ] [MASK] |
const [expandedItems, setExpandedItems] = useState([]) | const [ expandedItems , setExpandedItems ] = useState ( [ ] ) | const [ expandedItems [MASK] setExpandedItems ] = useState ( [MASK] ] ) |
return flattenTree(data) | return flattenTree ( data ) | return [MASK] ( [MASK] ) |
} else return [] | } else return [ ] | [MASK] else return [ ] |
}, [data]) | } , [ data ] ) | } , [MASK] data ] ) |
return item.id | return item.id | return item.id |
}) | } ) | } ) |
idArr.push(item.id) | idArr.push ( item.id ) | idArr.push ( item.id ) |
}) | } ) | [MASK] ) |
const expandedIdArr = flattenData.map(item => item.parent).filter(item => item !== null) | const expandedIdArr = flattenData.map ( item = > item.parent ) .filter ( item = > item ! == null ) | const expandedIdArr = flattenData.map ( item = > item.parent ) .filter ( [MASK] = > item ! == null ) |
setExpandedItems([...new Set(expandedIdArr)]) | setExpandedItems ( [ ... new Set ( expandedIdArr ) ] ) | setExpandedItems ( [ ... new [MASK] [MASK] expandedIdArr [MASK] ] ) |
setSelectedItems([...idArr]) | setSelectedItems ( [ ... idArr ] ) | setSelectedItems ( [ ... idArr ] ) |
setSelectedItems([]) | setSelectedItems ( [ ] ) | setSelectedItems ( [ ] ) |
setExpandedItems([]) | setExpandedItems ( [ ] ) | setExpandedItems ( [ [MASK] [MASK] |
}, []) | } , [ ] ) | } , [ ] ) |
const { selectedIds } = selectProps.treeState | const { selectedIds } = selectProps.treeState | const { selectedIds } = selectProps.treeState |
const selecredIdsArr = [...selectedIds] | const selecredIdsArr = [ ... selectedIds ] | const selecredIdsArr = [ ... selectedIds ] |
return selecredIdsArr.includes(item.id) && item.children.length === 0 | return selecredIdsArr.includes ( item.id ) & & item.children.length === 0 | [MASK] selecredIdsArr.includes ( item.id [MASK] & & item.children.length === 0 |
}) | } ) | } ) |
onChange(null, selectedValues) | onChange ( null , selectedValues ) | onChange ( [MASK] , selectedValues ) |
handleSelect(e) | handleSelect ( e ) | handleSelect ( e ) |
e.stopPropagation() | e.stopPropagation ( ) | [MASK] ( ) |
) | ) | ) |
) | ) | ) |
} | } | [MASK] |
const baseClass = 'arrow' | const baseClass = 'arrow ' | const baseClass [MASK] 'arrow ' |
) | ) | ) |
return <Icon icon={ICONS.TREE_ARROW} className={classes} /> | return < Icon icon= { ICONS.TREE_ARROW } className= { classes } / > | return < Icon icon= { [MASK] [MASK] className= { classes } / > |
} | } | } |
return <Icon icon={ICONS.TREE_VIEW_CHECK} {...rest} /> | return < Icon icon= { ICONS.TREE_VIEW_CHECK } { ... rest } / > | return [MASK] Icon icon= { ICONS.TREE_VIEW_CHECK } [MASK] ... rest } / > |
return <Icon icon={ICONS.TREE_VIEW_SQUARE} {...rest} /> | return < Icon icon= { ICONS.TREE_VIEW_SQUARE } { ... rest } / > | return < [MASK] icon= { ICONS.TREE_VIEW_SQUARE } { [MASK] rest } / [MASK] |
return <Icon icon={ICONS.TREE_VIEW_MINUS} {...rest} /> | return < Icon icon= { ICONS.TREE_VIEW_MINUS } { ... rest } / > | return [MASK] Icon icon= [MASK] [MASK] } { ... rest [MASK] / [MASK] |
return null | return null | return null |
} | } | } |
export default InputHOC<ITreeView>(TreeView) | export default InputHOC < ITreeView > ( TreeView ) | export default [MASK] < ITreeView [MASK] ( TreeView ) |
import TabIcon from './TabIcon' | import TabIcon from './TabIcon ' | import TabIcon from './TabIcon ' |
export default TabIcon | export default TabIcon | export default TabIcon |
import React from 'react' | import React from 'react ' | import React from 'react ' |
import TabIcon from './TabIcon' | import TabIcon from './TabIcon ' | import TabIcon from './TabIcon ' |
} | } | } |
const Template = args => <TabIcon {...args} /> | const Template = args = > < TabIcon { ... args } / > | [MASK] Template = args [MASK] > < TabIcon { ... args } / > |
export const Success = Template.bind({}) | export const Success = Template.bind ( { } ) | export const Success [MASK] Template.bind ( { } ) |
} | } | } |
export const Warning = Template.bind({}) | export const Warning = Template.bind ( { } ) | export const Warning = [MASK] ( { } ) |
} | } | } |
export const Error = Template.bind({}) | export const Error = Template.bind ( { } ) | export const Error = Template.bind ( [MASK] } ) |
} | } | } |
import { Icon } from '@protolibrary/components' | import { Icon } from ' @ protolibrary/components ' | import [MASK] Icon } from ' @ protolibrary/components ' |
import COLORS from '@resources/colors' | import COLORS from ' @ resources/colors ' | import COLORS from [MASK] [MASK] resources/colors ' |
import { replaceColorsInSVG } from '@utils/ColorUtils' | import { replaceColorsInSVG } from ' @ utils/ColorUtils ' | import { replaceColorsInSVG } from ' @ utils/ColorUtils [MASK] |
import React from 'react' | import React from 'react ' | import React from 'react ' |
import { exclamationMark, tickMark, xMark } from './assets/icons' | import { exclamationMark , tickMark , xMark } from './assets/icons ' | import { exclamationMark , tickMark , xMark } from './assets/icons ' |
type: 'tickMark' | 'xMark' | 'exclamationMark' | type : 'tickMark ' | 'xMark ' | 'exclamationMark ' | type : 'tickMark [MASK] | 'xMark [MASK] | 'exclamationMark ' |
status: 'success' | 'error' | 'warning' | status : 'success ' | 'error ' | 'warning ' | status [MASK] 'success ' | 'error ' | [MASK] ' |
} | } | } |
} | } | } |
) | ) | ) |
} | } | } |
export default TabIcon | export default TabIcon | [MASK] default TabIcon |
'<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2256_30114)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z" fill="#157313"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M13.7121 6.21248C13.887 6.03907 14.1232 5.94148 14.3695 5.9408C14.6158 5.94012 14.8525 6.03641 15.0284 6.20885C15.2043 6.38129 15.3053 6.61603 15.3095 6.86232C15.3137 7.10861 15.2208 7.34665 15.0508 7.52498L10.0608 13.7625C9.97508 13.8549 9.87157 13.929 9.7565 13.9804C9.64144 14.0319 9.51718 14.0596 9.39115 14.062C9.26513 14.0643 9.13993 14.0412 9.02303 13.994C8.90614 13.9469 8.79996 13.8766 8.71084 13.7875L5.40459 10.48C5.31248 10.3942 5.2386 10.2907 5.18736 10.1757C5.13612 10.0607 5.10857 9.93652 5.10635 9.81064C5.10413 9.68476 5.12728 9.55972 5.17443 9.44299C5.22158 9.32625 5.29177 9.22021 5.38079 9.13119C5.46981 9.04216 5.57585 8.97198 5.69259 8.92483C5.80933 8.87768 5.93436 8.85452 6.06024 8.85674C6.18612 8.85897 6.31026 8.88652 6.42526 8.93776C6.54026 8.989 6.64376 9.06288 6.72959 9.15498L9.34709 11.7712L13.6883 6.23998C13.6961 6.2303 13.7044 6.22112 13.7133 6.21248H13.7121Z" fill="#157313"/> </g> <defs> <clipPath id="clip0_2256_30114"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg>' | ' < svg width= '' 20 '' height= '' 20 '' viewBox= '' 0 0 20 20 '' fill= '' none '' xmlns= '' http : //www.w3.org/2000/svg '' > < g clip-path= '' url ( # clip0_2256_30114 ) '' > < path fill-rule= '' evenodd '' clip-rule= '' evenodd '' d= '' M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z '' fill= '' # 157313 '' / > < path fill-rule= '' evenodd '' clip-rule= '' evenodd '' d= '' M13.7121 6.21248C13.887 6.03907 14.1232 5.94148 14.3695 5.9408C14.6158 5.94012 14.8525 6.03641 15.0284 6.20885C15.2043 6.38129 15.3053 6.61603 15.3095 6.86232C15.3137 7.10861 15.2208 7.34665 15.0508 7.52498L10.0608 13.7625C9.97508 13.8549 9.87157 13.929 9.7565 13.9804C9.64144 14.0319 9.51718 14.0596 9.39115 14.062C9.26513 14.0643 9.13993 14.0412 9.02303 13.994C8.90614 13.9469 8.79996 13.8766 8.71084 13.7875L5.40459 10.48C5.31248 10.3942 5.2386 10.2907 5.18736 10.1757C5.13612 10.0607 5.10857 9.93652 5.10635 9.81064C5.10413 9.68476 5.12728 9.55972 5.17443 9.44299C5.22158 9.32625 5.29177 9.22021 5.38079 9.13119C5.46981 9.04216 5.57585 8.97198 5.69259 8.92483C5.80933 8.87768 5.93436 8.85452 6.06024 8.85674C6.18612 8.85897 6.31026 8.88652 6.42526 8.93776C6.54026 8.989 6.64376 9.06288 6.72959 9.15498L9.34709 11.7712L13.6883 6.23998C13.6961 6.2303 13.7044 6.22112 13.7133 6.21248H13.7121Z '' fill= '' # 157313 '' / > < /g > < defs > < clipPath id= '' clip0_2256_30114 '' > < rect width= '' 20 '' height= '' 20 '' fill= '' white '' / > < /clipPath > < /defs > < /svg > ' | ' < svg width= '' [MASK] '' height= '' 20 '' viewBox= '' [MASK] 0 [MASK] 20 '' fill= '' none '' xmlns= '' http : //www.w3.org/2000/svg '' > < [MASK] clip-path= '' [MASK] [MASK] # clip0_2256_30114 ) '' > [MASK] [MASK] fill-rule= '' [MASK] '' clip-rule= '' evenodd [MASK] d= [MASK] M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 [MASK] 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 [MASK] 5.45376 [MASK] [MASK] [MASK] 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 [MASK] 20C12.6522 20 15.1957 18.9464 [MASK] 17.0711C18.9464 15.1957 [MASK] 12.6522 20 10C20 7.34784 [MASK] [MASK] 17.0711 2.92893C15.1957 1.05357 [MASK] 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 [MASK] 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z [MASK] [MASK] '' # 157313 [MASK] [MASK] > < path [MASK] '' evenodd [MASK] clip-rule= '' evenodd '' d= '' M13.7121 6.21248C13.887 [MASK] 14.1232 5.94148 14.3695 5.9408C14.6158 5.94012 14.8525 6.03641 15.0284 6.20885C15.2043 [MASK] 15.3053 6.61603 15.3095 6.86232C15.3137 7.10861 15.2208 7.34665 15.0508 7.52498L10.0608 [MASK] 13.8549 9.87157 [MASK] [MASK] [MASK] 14.0319 9.51718 14.0596 9.39115 14.062C9.26513 14.0643 9.13993 [MASK] 9.02303 13.994C8.90614 13.9469 8.79996 13.8766 [MASK] 13.7875L5.40459 10.48C5.31248 10.3942 5.2386 10.2907 5.18736 [MASK] 10.0607 5.10857 [MASK] 5.10635 [MASK] 9.68476 5.12728 9.55972 5.17443 [MASK] [MASK] [MASK] 9.22021 5.38079 [MASK] 9.04216 5.57585 8.97198 5.69259 [MASK] 8.87768 5.93436 8.85452 6.06024 8.85674C6.18612 8.85897 6.31026 8.88652 6.42526 8.93776C6.54026 [MASK] [MASK] 9.06288 6.72959 [MASK] 11.7712L13.6883 6.23998C13.6961 [MASK] 13.7044 6.22112 13.7133 6.21248H13.7121Z '' fill= [MASK] [MASK] 157313 '' [MASK] [MASK] < /g > < defs > < [MASK] id= '' [MASK] '' > < rect width= '' 20 '' height= '' 20 [MASK] fill= '' white '' / [MASK] < /clipPath > < /defs > < /svg > ' |
'<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2256_30130)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z" fill="#E73A3A"/> <path d="M8.75244 13.7501C8.75244 13.586 8.78477 13.4234 8.84759 13.2718C8.91041 13.1201 9.00248 12.9823 9.11856 12.8663C9.23463 12.7502 9.37243 12.6581 9.52409 12.5953C9.67574 12.5325 9.83829 12.5001 10.0024 12.5001C10.1666 12.5001 10.3291 12.5325 10.4808 12.5953C10.6325 12.6581 10.7703 12.7502 10.8863 12.8663C11.0024 12.9823 11.0945 13.1201 11.1573 13.2718C11.2201 13.4234 11.2524 13.586 11.2524 13.7501C11.2524 14.0817 11.1207 14.3996 10.8863 14.634C10.6519 14.8684 10.334 15.0001 10.0024 15.0001C9.67092 15.0001 9.35298 14.8684 9.11856 14.634C8.88414 14.3996 8.75244 14.0817 8.75244 13.7501ZM8.87494 6.2439C8.8583 6.0862 8.87499 5.92676 8.92394 5.77593C8.97289 5.6251 9.05301 5.48625 9.15909 5.36838C9.26517 5.25051 9.39485 5.15626 9.53971 5.09175C9.68456 5.02724 9.84137 4.9939 9.99994 4.9939C10.1585 4.9939 10.3153 5.02724 10.4602 5.09175C10.605 5.15626 10.7347 5.25051 10.8408 5.36838C10.9469 5.48625 11.027 5.6251 11.0759 5.77593C11.1249 5.92676 11.1416 6.0862 11.1249 6.2439L10.6874 10.6276C10.6727 10.7999 10.5939 10.9603 10.4666 11.0772C10.3393 11.1941 10.1728 11.259 9.99994 11.259C9.8271 11.259 9.66055 11.1941 9.53325 11.0772C9.40594 10.9603 9.32714 10.7999 9.31244 10.6276L8.87494 6.2439Z" fill="#E73A3A"/> </g> <defs> <clipPath id="clip0_2256_30130"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg>' | ' < svg width= '' 20 '' height= '' 20 '' viewBox= '' 0 0 20 20 '' fill= '' none '' xmlns= '' http : //www.w3.org/2000/svg '' > < g clip-path= '' url ( # clip0_2256_30130 ) '' > < path fill-rule= '' evenodd '' clip-rule= '' evenodd '' d= '' M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z '' fill= '' # E73A3A '' / > < path d= '' M8.75244 13.7501C8.75244 13.586 8.78477 13.4234 8.84759 13.2718C8.91041 13.1201 9.00248 12.9823 9.11856 12.8663C9.23463 12.7502 9.37243 12.6581 9.52409 12.5953C9.67574 12.5325 9.83829 12.5001 10.0024 12.5001C10.1666 12.5001 10.3291 12.5325 10.4808 12.5953C10.6325 12.6581 10.7703 12.7502 10.8863 12.8663C11.0024 12.9823 11.0945 13.1201 11.1573 13.2718C11.2201 13.4234 11.2524 13.586 11.2524 13.7501C11.2524 14.0817 11.1207 14.3996 10.8863 14.634C10.6519 14.8684 10.334 15.0001 10.0024 15.0001C9.67092 15.0001 9.35298 14.8684 9.11856 14.634C8.88414 14.3996 8.75244 14.0817 8.75244 13.7501ZM8.87494 6.2439C8.8583 6.0862 8.87499 5.92676 8.92394 5.77593C8.97289 5.6251 9.05301 5.48625 9.15909 5.36838C9.26517 5.25051 9.39485 5.15626 9.53971 5.09175C9.68456 5.02724 9.84137 4.9939 9.99994 4.9939C10.1585 4.9939 10.3153 5.02724 10.4602 5.09175C10.605 5.15626 10.7347 5.25051 10.8408 5.36838C10.9469 5.48625 11.027 5.6251 11.0759 5.77593C11.1249 5.92676 11.1416 6.0862 11.1249 6.2439L10.6874 10.6276C10.6727 10.7999 10.5939 10.9603 10.4666 11.0772C10.3393 11.1941 10.1728 11.259 9.99994 11.259C9.8271 11.259 9.66055 11.1941 9.53325 11.0772C9.40594 10.9603 9.32714 10.7999 9.31244 10.6276L8.87494 6.2439Z '' fill= '' # E73A3A '' / > < /g > < defs > < clipPath id= '' clip0_2256_30130 '' > < rect width= '' 20 '' height= '' 20 '' fill= '' white '' / > < /clipPath > < /defs > < /svg > ' | ' < svg width= [MASK] 20 '' height= '' 20 '' [MASK] '' 0 0 20 20 '' fill= '' none '' xmlns= '' http : [MASK] '' > < g [MASK] '' url ( # clip0_2256_30130 ) '' > < [MASK] fill-rule= [MASK] evenodd '' clip-rule= '' evenodd '' [MASK] [MASK] M10 18.75C12.3206 [MASK] 14.5462 17.8281 16.1872 [MASK] [MASK] 18.75 12.3206 [MASK] 10C18.75 7.67936 17.8281 5.45376 16.1872 [MASK] 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 [MASK] 3.81282 3.81282C2.17187 5.45376 1.25 [MASK] 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 [MASK] 18.75ZM10 [MASK] 20 [MASK] 18.9464 [MASK] 17.0711C18.9464 15.1957 20 12.6522 [MASK] 10C20 [MASK] 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 [MASK] 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 [MASK] [MASK] [MASK] fill= [MASK] # E73A3A [MASK] / > < path d= '' M8.75244 13.7501C8.75244 13.586 [MASK] 13.4234 8.84759 13.2718C8.91041 13.1201 9.00248 12.9823 9.11856 12.8663C9.23463 12.7502 [MASK] 12.6581 9.52409 12.5953C9.67574 12.5325 9.83829 12.5001 10.0024 12.5001C10.1666 12.5001 10.3291 12.5325 10.4808 12.5953C10.6325 12.6581 10.7703 12.7502 10.8863 12.8663C11.0024 [MASK] 11.0945 13.1201 11.1573 13.2718C11.2201 13.4234 [MASK] 13.586 [MASK] 13.7501C11.2524 14.0817 11.1207 14.3996 [MASK] 14.634C10.6519 14.8684 10.334 [MASK] 10.0024 15.0001C9.67092 15.0001 9.35298 14.8684 9.11856 [MASK] [MASK] [MASK] 14.0817 8.75244 13.7501ZM8.87494 6.2439C8.8583 6.0862 8.87499 5.92676 8.92394 5.77593C8.97289 5.6251 9.05301 5.48625 9.15909 [MASK] 5.25051 9.39485 [MASK] [MASK] 5.09175C9.68456 5.02724 9.84137 4.9939 9.99994 4.9939C10.1585 4.9939 10.3153 [MASK] 10.4602 5.09175C10.605 5.15626 10.7347 5.25051 10.8408 5.36838C10.9469 [MASK] [MASK] 5.6251 [MASK] 5.77593C11.1249 5.92676 11.1416 6.0862 [MASK] 6.2439L10.6874 10.6276C10.6727 10.7999 [MASK] 10.9603 10.4666 11.0772C10.3393 11.1941 10.1728 11.259 9.99994 11.259C9.8271 11.259 9.66055 11.1941 9.53325 11.0772C9.40594 10.9603 9.32714 10.7999 9.31244 10.6276L8.87494 6.2439Z '' fill= '' # E73A3A '' / > [MASK] /g > < defs > < clipPath id= '' clip0_2256_30130 [MASK] [MASK] < rect width= '' 20 '' [MASK] '' 20 '' fill= '' white '' / > < /clipPath > < /defs > < [MASK] > [MASK] |
'<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2579_26049)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z" fill="#E73A3A"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.80856 5.80764C5.86661 5.74944 5.93558 5.70326 6.01151 5.67175C6.08745 5.64024 6.16885 5.62402 6.25106 5.62402C6.33327 5.62402 6.41467 5.64024 6.4906 5.67175C6.56653 5.70326 6.6355 5.74944 6.69356 5.80764L10.0011 9.11639L13.3086 5.80764C13.3667 5.74953 13.4357 5.70343 13.5116 5.67199C13.5875 5.64054 13.6689 5.62435 13.7511 5.62435C13.8332 5.62435 13.9146 5.64054 13.9905 5.67199C14.0665 5.70343 14.1354 5.74953 14.1936 5.80764C14.2517 5.86575 14.2978 5.93474 14.3292 6.01066C14.3607 6.08659 14.3768 6.16796 14.3768 6.25014C14.3768 6.33232 14.3607 6.4137 14.3292 6.48962C14.2978 6.56554 14.2517 6.63453 14.1936 6.69264L10.8848 10.0001L14.1936 13.3076C14.2517 13.3657 14.2978 13.4347 14.3292 13.5107C14.3607 13.5866 14.3768 13.668 14.3768 13.7501C14.3768 13.8323 14.3607 13.9137 14.3292 13.9896C14.2978 14.0655 14.2517 14.1345 14.1936 14.1926C14.1354 14.2507 14.0665 14.2968 13.9905 14.3283C13.9146 14.3597 13.8332 14.3759 13.7511 14.3759C13.6689 14.3759 13.5875 14.3597 13.5116 14.3283C13.4357 14.2968 13.3667 14.2507 13.3086 14.1926L10.0011 10.8839L6.69356 14.1926C6.63545 14.2507 6.56646 14.2968 6.49054 14.3283C6.41461 14.3597 6.33324 14.3759 6.25106 14.3759C6.16888 14.3759 6.0875 14.3597 6.01158 14.3283C5.93565 14.2968 5.86667 14.2507 5.80856 14.1926C5.75045 14.1345 5.70435 14.0655 5.6729 13.9896C5.64145 13.9137 5.62527 13.8323 5.62527 13.7501C5.62527 13.668 5.64145 13.5866 5.6729 13.5107C5.70435 13.4347 5.75045 13.3657 5.80856 13.3076L9.11731 10.0001L5.80856 6.69264C5.75035 6.63458 5.70417 6.56561 5.67266 6.48968C5.64116 6.41375 5.62494 6.33235 5.62494 6.25014C5.62494 6.16793 5.64116 6.08653 5.67266 6.0106C5.70417 5.93467 5.75035 5.8657 5.80856 5.80764Z" fill="#E73A3A"/> </g> <defs> <clipPath id="clip0_2579_26049"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg>' | ' < svg width= '' 20 '' height= '' 20 '' viewBox= '' 0 0 20 20 '' fill= '' none '' xmlns= '' http : //www.w3.org/2000/svg '' > < g clip-path= '' url ( # clip0_2579_26049 ) '' > < path fill-rule= '' evenodd '' clip-rule= '' evenodd '' d= '' M10 18.75C12.3206 18.75 14.5462 17.8281 16.1872 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 3.81282C14.5462 2.17187 12.3206 1.25 10 1.25C7.67936 1.25 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 2.17187 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z '' fill= '' # E73A3A '' / > < path fill-rule= '' evenodd '' clip-rule= '' evenodd '' d= '' M5.80856 5.80764C5.86661 5.74944 5.93558 5.70326 6.01151 5.67175C6.08745 5.64024 6.16885 5.62402 6.25106 5.62402C6.33327 5.62402 6.41467 5.64024 6.4906 5.67175C6.56653 5.70326 6.6355 5.74944 6.69356 5.80764L10.0011 9.11639L13.3086 5.80764C13.3667 5.74953 13.4357 5.70343 13.5116 5.67199C13.5875 5.64054 13.6689 5.62435 13.7511 5.62435C13.8332 5.62435 13.9146 5.64054 13.9905 5.67199C14.0665 5.70343 14.1354 5.74953 14.1936 5.80764C14.2517 5.86575 14.2978 5.93474 14.3292 6.01066C14.3607 6.08659 14.3768 6.16796 14.3768 6.25014C14.3768 6.33232 14.3607 6.4137 14.3292 6.48962C14.2978 6.56554 14.2517 6.63453 14.1936 6.69264L10.8848 10.0001L14.1936 13.3076C14.2517 13.3657 14.2978 13.4347 14.3292 13.5107C14.3607 13.5866 14.3768 13.668 14.3768 13.7501C14.3768 13.8323 14.3607 13.9137 14.3292 13.9896C14.2978 14.0655 14.2517 14.1345 14.1936 14.1926C14.1354 14.2507 14.0665 14.2968 13.9905 14.3283C13.9146 14.3597 13.8332 14.3759 13.7511 14.3759C13.6689 14.3759 13.5875 14.3597 13.5116 14.3283C13.4357 14.2968 13.3667 14.2507 13.3086 14.1926L10.0011 10.8839L6.69356 14.1926C6.63545 14.2507 6.56646 14.2968 6.49054 14.3283C6.41461 14.3597 6.33324 14.3759 6.25106 14.3759C6.16888 14.3759 6.0875 14.3597 6.01158 14.3283C5.93565 14.2968 5.86667 14.2507 5.80856 14.1926C5.75045 14.1345 5.70435 14.0655 5.6729 13.9896C5.64145 13.9137 5.62527 13.8323 5.62527 13.7501C5.62527 13.668 5.64145 13.5866 5.6729 13.5107C5.70435 13.4347 5.75045 13.3657 5.80856 13.3076L9.11731 10.0001L5.80856 6.69264C5.75035 6.63458 5.70417 6.56561 5.67266 6.48968C5.64116 6.41375 5.62494 6.33235 5.62494 6.25014C5.62494 6.16793 5.64116 6.08653 5.67266 6.0106C5.70417 5.93467 5.75035 5.8657 5.80856 5.80764Z '' fill= '' # E73A3A '' / > < /g > < defs > < clipPath id= '' clip0_2579_26049 '' > < rect width= '' 20 '' height= '' 20 '' fill= '' white '' / > < /clipPath > < /defs > < /svg > ' | ' < svg width= [MASK] 20 '' height= '' [MASK] '' viewBox= '' 0 0 [MASK] 20 '' fill= '' none '' xmlns= '' http : //www.w3.org/2000/svg [MASK] > < g clip-path= '' url ( # clip0_2579_26049 ) '' [MASK] < path fill-rule= '' evenodd '' clip-rule= '' [MASK] '' [MASK] '' M10 18.75C12.3206 [MASK] 14.5462 17.8281 [MASK] 16.1872C17.8281 14.5462 18.75 12.3206 18.75 10C18.75 7.67936 17.8281 5.45376 16.1872 [MASK] [MASK] [MASK] 1.25 10 1.25C7.67936 [MASK] 5.45376 2.17187 3.81282 3.81282C2.17187 5.45376 1.25 7.67936 1.25 10C1.25 12.3206 [MASK] 14.5462 3.81282 16.1872C5.45376 17.8281 7.67936 18.75 10 18.75ZM10 20C12.6522 [MASK] 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 [MASK] 12.6522 20 10C20 7.34784 18.9464 4.8043 17.0711 [MASK] 1.05357 12.6522 0 10 0C7.34784 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34784 20 10 20Z '' fill= '' [MASK] E73A3A '' / > < path fill-rule= [MASK] evenodd '' clip-rule= '' evenodd '' d= [MASK] M5.80856 [MASK] [MASK] 5.93558 5.70326 6.01151 5.67175C6.08745 5.64024 6.16885 5.62402 6.25106 5.62402C6.33327 5.62402 6.41467 5.64024 [MASK] 5.67175C6.56653 5.70326 6.6355 5.74944 6.69356 5.80764L10.0011 9.11639L13.3086 5.80764C13.3667 5.74953 13.4357 5.70343 13.5116 5.67199C13.5875 5.64054 13.6689 5.62435 13.7511 5.62435C13.8332 5.62435 13.9146 5.64054 13.9905 5.67199C14.0665 5.70343 14.1354 5.74953 14.1936 5.80764C14.2517 5.86575 14.2978 5.93474 14.3292 6.01066C14.3607 6.08659 14.3768 [MASK] 14.3768 6.25014C14.3768 [MASK] 14.3607 6.4137 14.3292 6.48962C14.2978 6.56554 14.2517 6.63453 14.1936 6.69264L10.8848 10.0001L14.1936 13.3076C14.2517 13.3657 14.2978 13.4347 14.3292 13.5107C14.3607 13.5866 [MASK] 13.668 14.3768 13.7501C14.3768 13.8323 14.3607 13.9137 14.3292 13.9896C14.2978 14.0655 14.2517 14.1345 14.1936 14.1926C14.1354 [MASK] [MASK] [MASK] 13.9905 [MASK] 14.3597 [MASK] [MASK] 13.7511 14.3759C13.6689 14.3759 13.5875 14.3597 13.5116 14.3283C13.4357 14.2968 13.3667 14.2507 13.3086 14.1926L10.0011 10.8839L6.69356 14.1926C6.63545 14.2507 6.56646 14.2968 6.49054 14.3283C6.41461 14.3597 6.33324 14.3759 6.25106 14.3759C6.16888 14.3759 6.0875 14.3597 6.01158 14.3283C5.93565 14.2968 [MASK] 14.2507 5.80856 [MASK] [MASK] 5.70435 14.0655 5.6729 13.9896C5.64145 13.9137 5.62527 13.8323 5.62527 13.7501C5.62527 13.668 5.64145 13.5866 5.6729 13.5107C5.70435 13.4347 5.75045 13.3657 5.80856 13.3076L9.11731 10.0001L5.80856 6.69264C5.75035 6.63458 5.70417 6.56561 5.67266 6.48968C5.64116 [MASK] 5.62494 [MASK] 5.62494 6.25014C5.62494 6.16793 5.64116 6.08653 5.67266 6.0106C5.70417 5.93467 5.75035 5.8657 5.80856 5.80764Z '' fill= '' [MASK] E73A3A '' / > < /g > [MASK] defs > < clipPath id= '' [MASK] '' > < rect [MASK] '' 20 '' height= [MASK] [MASK] '' fill= '' white '' / > < /clipPath > < /defs > < [MASK] > ' |
export { tickMark, exclamationMark, xMark } | export { tickMark , exclamationMark , xMark } | export { tickMark [MASK] [MASK] , xMark } |
import GenericFormGroup from './GenericFormGroup' | import GenericFormGroup from './GenericFormGroup ' | import [MASK] from [MASK] ' |
export default GenericFormGroup | export default GenericFormGroup | export [MASK] [MASK] |
import { Block, Button, Col, Label, Row, Select, TextField } from '@protolibrary/components' | import { Block , Button , Col , Label , Row , Select , TextField } from ' @ protolibrary/components ' | import [MASK] [MASK] [MASK] Button , Col , Label [MASK] Row [MASK] Select , [MASK] } from ' @ protolibrary/components ' |
import React, { useEffect, useState } from 'react' | import React , { useEffect , useState } from 'react ' | [MASK] React [MASK] { useEffect , useState } from 'react ' |
import RateField from '../ratefield' | import RateField from ' .. /ratefield ' | import RateField from ' .. [MASK] ' |
import { IFormPropTypes } from '@protocommon/types' | import { IFormPropTypes } from ' @ protocommon/types ' | import { IFormPropTypes } from ' @ protocommon/types ' |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.