chore: stop using alias imports
This commit is contained in:
parent
ad7a2eac4e
commit
b48c590bc8
243 changed files with 1061 additions and 1080 deletions
|
|
@ -1,14 +1,9 @@
|
|||
import classnames from 'classnames'
|
||||
import * as R from 'ramda'
|
||||
import React, { useContext } from 'react'
|
||||
import {
|
||||
Td,
|
||||
THead,
|
||||
TDoubleLevelHead,
|
||||
ThDoubleLevel,
|
||||
} from 'src/components/fake-table/Table'
|
||||
import { Td, THead, TDoubleLevelHead, ThDoubleLevel } from '../fake-table/Table'
|
||||
|
||||
import { sentenceCase } from 'src/utils/string'
|
||||
import { sentenceCase } from '../../utils/string'
|
||||
|
||||
import TableCtx from './Context'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import * as R from 'ramda'
|
||||
import React from 'react'
|
||||
|
||||
import { fromNamespace, toNamespace } from 'src/utils/config'
|
||||
import { fromNamespace, toNamespace } from '../../utils/config'
|
||||
|
||||
import EditableTable from './Table'
|
||||
|
||||
|
|
|
|||
|
|
@ -5,16 +5,16 @@ import classnames from 'classnames'
|
|||
import { Field, useFormikContext } from 'formik'
|
||||
import * as R from 'ramda'
|
||||
import React, { useContext, useState } from 'react'
|
||||
import { DeleteDialog } from 'src/components/DeleteDialog'
|
||||
import { Td, Tr } from 'src/components/fake-table/Table'
|
||||
import { Label2 } from 'src/components/typography'
|
||||
import DisabledDeleteIcon from 'src/styling/icons/action/delete/disabled.svg?react'
|
||||
import DeleteIcon from 'src/styling/icons/action/delete/enabled.svg?react'
|
||||
import DisabledEditIcon from 'src/styling/icons/action/edit/disabled.svg?react'
|
||||
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
|
||||
import StripesSvg from 'src/styling/icons/stripes.svg?react'
|
||||
import { DeleteDialog } from '../DeleteDialog'
|
||||
import { Td, Tr } from '../fake-table/Table'
|
||||
import { Label2 } from '../typography'
|
||||
import DisabledDeleteIcon from '../../styling/icons/action/delete/disabled.svg?react'
|
||||
import DeleteIcon from '../../styling/icons/action/delete/enabled.svg?react'
|
||||
import DisabledEditIcon from '../../styling/icons/action/edit/disabled.svg?react'
|
||||
import EditIcon from '../../styling/icons/action/edit/enabled.svg?react'
|
||||
import StripesSvg from '../../styling/icons/stripes.svg?react'
|
||||
|
||||
import { Link } from 'src/components/buttons'
|
||||
import { Link } from '../buttons'
|
||||
|
||||
import TableCtx from './Context'
|
||||
import moduleStyles from './Row.module.css'
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
import { Form, Formik } from 'formik'
|
||||
import * as R from 'ramda'
|
||||
import React, { useState, useEffect } from 'react'
|
||||
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
||||
import Link from 'src/components/buttons/Link'
|
||||
import { TBody, Table } from 'src/components/fake-table/Table'
|
||||
import { Info2, TL1 } from 'src/components/typography'
|
||||
import PromptWhenDirty from '../PromptWhenDirty'
|
||||
import Link from '../buttons/Link'
|
||||
import { TBody, Table } from '../fake-table/Table'
|
||||
import { Info2, TL1 } from '../typography'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
|
||||
import { AddButton } from 'src/components/buttons/index'
|
||||
import { AddButton } from '../buttons/index'
|
||||
|
||||
import TableCtx from './Context'
|
||||
import Header from './Header'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue