Initial
This commit is contained in:
24
src/constants.js
Normal file
24
src/constants.js
Normal file
@@ -0,0 +1,24 @@
|
||||
export const bookItems = ['GAAP', 'FEDERAL', 'STATE', 'AMT', 'ACE', 'USER'];
|
||||
|
||||
export const statusItems = ['in_service', 'cip', 'reserved', 'checked_out', 'disposed', 'retired'];
|
||||
|
||||
export const customFieldTypes = [
|
||||
{ title: 'Text', value: 'text' },
|
||||
{ title: 'Number', value: 'numeric' },
|
||||
{ title: 'Date', value: 'date' },
|
||||
{ title: 'Checkbox', value: 'bool' }
|
||||
];
|
||||
|
||||
export const themeItems = [
|
||||
{ title: 'Dark', value: 'mixedAssetsDark' },
|
||||
{ title: 'Light', value: 'mixedAssets' }
|
||||
];
|
||||
|
||||
export const navItems = [
|
||||
{ key: 'dashboard', label: 'Dashboard', icon: 'mdi-view-dashboard-outline' },
|
||||
{ key: 'assets', label: 'Assets', icon: 'mdi-archive-search-outline' },
|
||||
{ key: 'assignments', label: 'Assignments', icon: 'mdi-account-switch-outline' },
|
||||
{ key: 'reports', label: 'Reports', icon: 'mdi-chart-bar' },
|
||||
{ key: 'templates', label: 'Templates', icon: 'mdi-form-select' },
|
||||
{ key: 'admin', label: 'Admin', icon: 'mdi-cog-outline' }
|
||||
];
|
||||
Reference in New Issue
Block a user