@@ -23,8 +23,8 @@ export const STEPS = {
2323// STEPS_DATA is for PcProgressBar component
2424export const STEPS_DATA = [
2525 // step_id must be a number
26- { step_id : 1 , step : ROUTES . CUSTOMER_INFO , title : 'Customer Information' } ,
27- { step_id : 2 , step : ROUTES . ITEM_PRICING , title : 'Items & Pricing' } ,
26+ { step_id : 1 , step : ROUTES . CUSTOMER_INFO , title : 'Customer Information' } ,
27+ { step_id : 2 , step : ROUTES . ITEM_PRICING , title : 'Items & Pricing' } ,
2828]
2929
3030// Centralized storage for image assets
@@ -47,6 +47,9 @@ import trashDangerUrl from '../../../assets/images/icons/trash-danger.svg'
4747import trashTwoUrl from '../../../assets/images/icons/trash-default.svg'
4848import trashDefaultUrl from '../../../assets/images/icons/trash-default.svg'
4949import trashUrl from '../../../assets/images/icons/trash.svg'
50+ import dropdownArrowDownUrl from '../../../assets/images/icons/arrow-down.svg'
51+ import dropdownArrowUpUrl from '../../../assets/images/icons/arrow-up.svg'
52+ import crossUrl from '../../../assets/images/icons/cross.svg'
5053
5154export const IMAGE_ASSETS = {
5255 ICONS : {
@@ -68,7 +71,10 @@ export const IMAGE_ASSETS = {
6871 trashDefault : trashDefaultUrl ,
6972 trashDanger : trashDangerUrl ,
7073 arrowDownLight : arrowDownLightUrl ,
71- arrowUpLight : arrowUpLightUrl
74+ arrowUpLight : arrowUpLightUrl ,
75+ dropdownArrowDown : dropdownArrowDownUrl ,
76+ dropdownArrowUp : dropdownArrowUpUrl ,
77+ cross : crossUrl ,
7278 } ,
7379 // future asset files can be added here
7480}
@@ -82,12 +88,12 @@ export const EMPTY_ENTITIES = {
8288 address : '' ,
8389 notes : '' ,
8490 logo_url : null ,
85- }
91+ } ,
8692 // future empty entities can be added here
8793}
8894
8995export const INPUT_VALIDATORS = {
90- emailFormat :/ ^ [ ^ \s @ ] + @ [ ^ \s @ ] + \. [ ^ \s @ ] + $ / ,
96+ emailFormat : / ^ [ ^ \s @ ] + @ [ ^ \s @ ] + \. [ ^ \s @ ] + $ / ,
9197 maxSizeFile : 2 * 1024 * 1024 ,
9298 allowedFileTypes : [ 'image/jpeg' , 'image/png' ] ,
9399 // future validation rules can be added here
0 commit comments