From 575a68bf98c2d3a3567835e07138b5f8975b38b0 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 7 Jun 2024 13:14:41 -0500 Subject: [PATCH] updated to VDSCoreTokens Signed-off-by: Matt Bruce --- VDS/Components/Table/Table.swift | 2 +- VDS/Components/Table/TableCellItem.swift | 2 +- VDS/Components/Table/TableFlowLayout.swift | 2 +- VDS/Components/Table/TableItemModel.swift | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VDS/Components/Table/Table.swift b/VDS/Components/Table/Table.swift index 97452db9..8ce5f462 100644 --- a/VDS/Components/Table/Table.swift +++ b/VDS/Components/Table/Table.swift @@ -7,7 +7,7 @@ import Foundation import UIKit -import VDSTokens +import VDSCoreTokens ///Table is view composed of rows and columns, which takes any view into each cell and resizes based on the highest cell height. @objc(VDSTable) diff --git a/VDS/Components/Table/TableCellItem.swift b/VDS/Components/Table/TableCellItem.swift index 88b6c2d0..23d2df74 100644 --- a/VDS/Components/Table/TableCellItem.swift +++ b/VDS/Components/Table/TableCellItem.swift @@ -7,7 +7,7 @@ import Foundation import UIKit -import VDSTokens +import VDSCoreTokens final class TableCellItem: UICollectionViewCell { diff --git a/VDS/Components/Table/TableFlowLayout.swift b/VDS/Components/Table/TableFlowLayout.swift index 2e447187..3513099d 100644 --- a/VDS/Components/Table/TableFlowLayout.swift +++ b/VDS/Components/Table/TableFlowLayout.swift @@ -6,7 +6,7 @@ // import UIKit -import VDSTokens +import VDSCoreTokens protocol TableCollectionViewLayoutDataDelegate: AnyObject { func collectionView(_ collectionView: UICollectionView, dataForItemAt indexPath: IndexPath) -> TableItemModel diff --git a/VDS/Components/Table/TableItemModel.swift b/VDS/Components/Table/TableItemModel.swift index bd299d1b..47a8e3f2 100644 --- a/VDS/Components/Table/TableItemModel.swift +++ b/VDS/Components/Table/TableItemModel.swift @@ -7,7 +7,7 @@ import Foundation import UIKit -import VDSTokens +import VDSCoreTokens /// Model that represent the content of each cell of Table component public struct TableItemModel {