**What** - Sets up the initial work for Pricing domain - Fixes Store domain **Todo in follow up PR** - Translations - Add status when creating the Price List and allow updating it - Improve DataGrid component - Add missing functionality once backend support is added (customer_groups, region prices and update prices) CLOSES CORE-1931
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
export enum GridCellType {
|
|
VOID = "void",
|
|
READONLY = "readonly",
|
|
EDITABLE = "editable",
|
|
OVERLAY = "overlay",
|
|
}
|
|
|
|
export const NON_INTERACTIVE_CELL_TYPES = [
|
|
GridCellType.VOID,
|
|
GridCellType.READONLY,
|
|
]
|