View Record
diff --git a/src/components/TimesListPagination.vue b/src/components/TimeLists/TimesListPagination.vue
similarity index 100%
rename from src/components/TimesListPagination.vue
rename to src/components/TimeLists/TimesListPagination.vue
diff --git a/src/components/TimesListHeading.vue b/src/components/TimesListHeading.vue
deleted file mode 100644
index fbd4d98..0000000
--- a/src/components/TimesListHeading.vue
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/TimesListItemContent.vue b/src/components/TimesListItemContent.vue
deleted file mode 100644
index 8e8d80c..0000000
--- a/src/components/TimesListItemContent.vue
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
- {{ props.time.rank }}.
-
-
-
-
-
- {{ data }}
-
-
-
-
-
- ({{ props.time.time - wrTime > 0 ? '+' : '-' }}{{ dateTimeFormats.time(Math.abs(props.time.time - wrTime)) }})
-
-
-
-
\ No newline at end of file
diff --git a/src/types/TimeListColumn.ts b/src/types/TimeListColumn.ts
index c9b065d..944aad6 100644
--- a/src/types/TimeListColumn.ts
+++ b/src/types/TimeListColumn.ts
@@ -4,7 +4,16 @@ export interface TimeListColumn {
label: string,
data: keyof Time,
placement?: boolean,
+ col:number,
+ colSpan?:number,
+ row?:number,
+ rowSpan?:number,
+ colMobile?:number,
+ colSpanMobile?:number,
+ rowMobile?:number,
+ rowSpanMobile?:number,
width?: string,
+ widthMobile?: string,
classes?: string,
alignmentClasses?: string,
link?: ((value: Time) => string),