goobs-frontend 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -181,7 +181,7 @@ export interface ProjectBoardProps {
|
|
|
181
181
|
rawArticles: RawArticle[]
|
|
182
182
|
rawCustomers: RawCustomer[]
|
|
183
183
|
rawEmployees: RawEmployee[]
|
|
184
|
-
rawCompanies
|
|
184
|
+
rawCompanies?: RawCompany[]
|
|
185
185
|
rawSeverityLevels: RawSeverityLevel[]
|
|
186
186
|
onEdit: (args: { _id: string }) => void
|
|
187
187
|
onDelete: (args: { _id: string }) => void
|
package/src/index.ts
CHANGED
|
@@ -39,7 +39,7 @@ import CompanyAddTaskCustomerDropdown from './components/ProjectBoard/forms/AddT
|
|
|
39
39
|
import CompanyAddTaskCustomerProvided from './components/ProjectBoard/forms/AddTask/company/customerProvided'
|
|
40
40
|
import CustomerAddTask from './components/ProjectBoard/forms/AddTask/customer'
|
|
41
41
|
import NoUserAddTask from './components/ProjectBoard/forms/AddTask/noUser'
|
|
42
|
-
|
|
42
|
+
import { RawSeverityLevel } from './components/ProjectBoard/types'
|
|
43
43
|
// Here is the new horizontal `Tabs` import
|
|
44
44
|
import Tabs, { TabsProps } from './components/Tabs'
|
|
45
45
|
import { Task } from './components/ProjectBoard/types'
|
|
@@ -231,6 +231,7 @@ export type { NavItem }
|
|
|
231
231
|
export type { ShowTaskProps }
|
|
232
232
|
export type { Animation }
|
|
233
233
|
export type { AccordionProps } // <-- Export AccordionProps
|
|
234
|
+
export type { RawSeverityLevel }
|
|
234
235
|
|
|
235
236
|
/* -------------------------------------------------------------------------- */
|
|
236
237
|
/* Color Exports */
|