Rename all files and fix imports
* Renaming index.scss files to index.module.scss * Changing `import from` to `import styles from`
This commit is contained in:
parent
39245e3e88
commit
4c5fb3c28d
224 changed files with 128 additions and 129 deletions
|
|
@ -4,7 +4,7 @@ import { useTranslation } from 'next-i18next'
|
||||||
|
|
||||||
import * as ToggleGroup from '@radix-ui/react-toggle-group'
|
import * as ToggleGroup from '@radix-ui/react-toggle-group'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
currentElement: number
|
currentElement: number
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { useTranslation } from 'next-i18next'
|
||||||
import Button from '~components/common/Button'
|
import Button from '~components/common/Button'
|
||||||
import { ResponseStatus } from '~types'
|
import { ResponseStatus } from '~types'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
status: ResponseStatus
|
status: ResponseStatus
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import { defaultFilterset } from '~utils/defaultFilters'
|
||||||
|
|
||||||
import FilterIcon from '~public/icons/Filter.svg'
|
import FilterIcon from '~public/icons/Filter.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import { getCookie } from 'cookies-next'
|
import { getCookie } from 'cookies-next'
|
||||||
import RaidCombobox from '~components/raids/RaidCombobox'
|
import RaidCombobox from '~components/raids/RaidCombobox'
|
||||||
import { appState } from '~utils/appState'
|
import { appState } from '~utils/appState'
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import SelectItem from '~components/common/SelectItem'
|
||||||
import type { DialogProps } from '@radix-ui/react-dialog'
|
import type { DialogProps } from '@radix-ui/react-dialog'
|
||||||
|
|
||||||
import CrossIcon from '~public/icons/Cross.svg'
|
import CrossIcon from '~public/icons/Cross.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends DialogProps {
|
interface Props extends DialogProps {
|
||||||
defaultFilterSet: FilterSet
|
defaultFilterSet: FilterSet
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ import Button from '~components/common/Button'
|
||||||
|
|
||||||
import SaveIcon from '~public/icons/Save.svg'
|
import SaveIcon from '~public/icons/Save.svg'
|
||||||
import ShieldIcon from '~public/icons/Shield.svg'
|
import ShieldIcon from '~public/icons/Shield.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
shortcode: string
|
shortcode: string
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import ChevronIcon from '~public/icons/Chevron.svg'
|
||||||
import MenuIcon from '~public/icons/Menu.svg'
|
import MenuIcon from '~public/icons/Menu.svg'
|
||||||
import PlusIcon from '~public/icons/Add.svg'
|
import PlusIcon from '~public/icons/Add.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
const Header = () => {
|
const Header = () => {
|
||||||
// Localization
|
// Localization
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
.ToastViewport {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0px;
|
|
||||||
right: 0px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
width: 340px;
|
|
||||||
max-width: 100vw;
|
|
||||||
z-index: 2147483647;
|
|
||||||
padding: 25px;
|
|
||||||
gap: 10px;
|
|
||||||
margin: 0px;
|
|
||||||
list-style: none;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
@ -8,8 +8,6 @@ import { appState } from '~utils/appState'
|
||||||
import TopHeader from '~components/Header'
|
import TopHeader from '~components/Header'
|
||||||
import UpdateToast from '~components/toasts/UpdateToast'
|
import UpdateToast from '~components/toasts/UpdateToast'
|
||||||
|
|
||||||
import './index.scss'
|
|
||||||
|
|
||||||
interface Props {}
|
interface Props {}
|
||||||
|
|
||||||
const Layout = ({ children }: PropsWithChildren<Props>) => {
|
const Layout = ({ children }: PropsWithChildren<Props>) => {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import Overlay from '~components/common/Overlay'
|
||||||
|
|
||||||
import ChevronIcon from '~public/icons/Chevron.svg'
|
import ChevronIcon from '~public/icons/Chevron.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import SegmentedControl from '~components/common/SegmentedControl'
|
import SegmentedControl from '~components/common/SegmentedControl'
|
||||||
import Segment from '~components/common/Segment'
|
import Segment from '~components/common/Segment'
|
||||||
import Input from '~components/common/Input'
|
import Input from '~components/common/Input'
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import ShareIcon from '~public/icons/Share.svg'
|
||||||
import DiscordIcon from '~public/icons/discord.svg'
|
import DiscordIcon from '~public/icons/discord.svg'
|
||||||
import GithubIcon from '~public/icons/github.svg'
|
import GithubIcon from '~public/icons/github.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {}
|
interface Props {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import { useRouter } from 'next/router'
|
||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
import api from '~utils/api'
|
import api from '~utils/api'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
id: string
|
id: string
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
||||||
import { useTranslation } from 'next-i18next'
|
import { useTranslation } from 'next-i18next'
|
||||||
import ChangelogUnit from '~components/about/ChangelogUnit'
|
import ChangelogUnit from '~components/about/ChangelogUnit'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface UpdateObject {
|
interface UpdateObject {
|
||||||
character?: string[]
|
character?: string[]
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import { useTranslation } from 'next-i18next'
|
||||||
import ShareIcon from '~public/icons/Share.svg'
|
import ShareIcon from '~public/icons/Share.svg'
|
||||||
import GithubIcon from '~public/icons/github.svg'
|
import GithubIcon from '~public/icons/github.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
const ROADMAP_ITEMS = 6
|
const ROADMAP_ITEMS = 6
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { useTranslation } from 'next-i18next'
|
||||||
import ContentUpdate from '~components/about/ContentUpdate'
|
import ContentUpdate from '~components/about/ContentUpdate'
|
||||||
import ChangelogUnit from '~components/about/ChangelogUnit'
|
import ChangelogUnit from '~components/about/ChangelogUnit'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
const UpdatesPage = () => {
|
const UpdatesPage = () => {
|
||||||
const { t: common } = useTranslation('common')
|
const { t: common } = useTranslation('common')
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import { accountState } from '~utils/accountState'
|
||||||
import { pictureData } from '~utils/pictureData'
|
import { pictureData } from '~utils/pictureData'
|
||||||
|
|
||||||
import CrossIcon from '~public/icons/Cross.svg'
|
import CrossIcon from '~public/icons/Cross.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
type StateVariables = {
|
type StateVariables = {
|
||||||
[key: string]: boolean
|
[key: string]: boolean
|
||||||
|
|
|
||||||
|
|
@ -10,12 +10,12 @@ import { accountState } from '~utils/accountState'
|
||||||
|
|
||||||
import Button from '~components/common/Button'
|
import Button from '~components/common/Button'
|
||||||
import Input from '~components/common/Input'
|
import Input from '~components/common/Input'
|
||||||
import { Dialog, DialogTrigger, DialogClose } from '~components/common/Dialog'
|
import { Dialog, DialogClose } from '~components/common/Dialog'
|
||||||
import DialogContent from '~components/common/DialogContent'
|
import DialogContent from '~components/common/DialogContent'
|
||||||
import changeLanguage from '~utils/changeLanguage'
|
import changeLanguage from '~utils/changeLanguage'
|
||||||
|
|
||||||
import CrossIcon from '~public/icons/Cross.svg'
|
import CrossIcon from '~public/icons/Cross.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface ErrorMap {
|
interface ErrorMap {
|
||||||
[index: string]: string
|
[index: string]: string
|
||||||
|
|
|
||||||
|
|
@ -10,10 +10,10 @@ import { accountState } from '~utils/accountState'
|
||||||
|
|
||||||
import Button from '~components/common/Button'
|
import Button from '~components/common/Button'
|
||||||
import Input from '~components/common/Input'
|
import Input from '~components/common/Input'
|
||||||
import { Dialog, DialogTrigger, DialogClose } from '~components/common/Dialog'
|
import { Dialog, DialogClose } from '~components/common/Dialog'
|
||||||
import DialogContent from '~components/common/DialogContent'
|
import DialogContent from '~components/common/DialogContent'
|
||||||
import CrossIcon from '~public/icons/Cross.svg'
|
import CrossIcon from '~public/icons/Cross.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
open: boolean
|
open: boolean
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import Overlay from '~components/common/Overlay'
|
||||||
|
|
||||||
import { appState } from '~utils/appState'
|
import { appState } from '~utils/appState'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
open: boolean
|
open: boolean
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import type { DetailsObject, JobSkillObject, SearchableObject } from '~types'
|
||||||
import api from '~utils/api'
|
import api from '~utils/api'
|
||||||
import { appState } from '~utils/appState'
|
import { appState } from '~utils/appState'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
// Props
|
// Props
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import {
|
||||||
} from '~data/overMastery'
|
} from '~data/overMastery'
|
||||||
import { ExtendedMastery } from '~types'
|
import { ExtendedMastery } from '~types'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
gridCharacter: GridCharacter
|
gridCharacter: GridCharacter
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ const MAX_AWAKENING_LEVEL = 9
|
||||||
|
|
||||||
// Styles and icons
|
// Styles and icons
|
||||||
import CrossIcon from '~public/icons/Cross.svg'
|
import CrossIcon from '~public/icons/Cross.svg'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
import {
|
import {
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ import { useRouter } from 'next/router'
|
||||||
import UncapIndicator from '~components/uncap/UncapIndicator'
|
import UncapIndicator from '~components/uncap/UncapIndicator'
|
||||||
import WeaponLabelIcon from '~components/weapon/WeaponLabelIcon'
|
import WeaponLabelIcon from '~components/weapon/WeaponLabelIcon'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
data: Character
|
data: Character
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
|
||||||
import SearchFilter from '~components/search/SearchFilter'
|
import SearchFilter from '~components/search/SearchFilter'
|
||||||
import SearchFilterCheckboxItem from '~components/search/SearchFilterCheckboxItem'
|
import SearchFilterCheckboxItem from '~components/search/SearchFilterCheckboxItem'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import {
|
import {
|
||||||
emptyElementState,
|
emptyElementState,
|
||||||
emptyProficiencyState,
|
emptyProficiencyState,
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ import type {
|
||||||
SearchableObject,
|
SearchableObject,
|
||||||
} from '~types'
|
} from '~types'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
gridCharacter?: GridCharacter
|
gridCharacter?: GridCharacter
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import * as AlertDialog from '@radix-ui/react-alert-dialog'
|
import * as AlertDialog from '@radix-ui/react-alert-dialog'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import Button from '~components/common/Button'
|
import Button from '~components/common/Button'
|
||||||
import Overlay from '~components/common/Overlay'
|
import Overlay from '~components/common/Overlay'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import React, {
|
||||||
} from 'react'
|
} from 'react'
|
||||||
|
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends React.HTMLProps<HTMLInputElement> {
|
interface Props extends React.HTMLProps<HTMLInputElement> {
|
||||||
fieldName: string
|
fieldName: string
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { Command as CommandPrimitive } from 'cmdk'
|
||||||
import { Dialog } from '../Dialog'
|
import { Dialog } from '../Dialog'
|
||||||
import { DialogContent, DialogProps } from '@radix-ui/react-dialog'
|
import { DialogContent, DialogProps } from '@radix-ui/react-dialog'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
const Command = forwardRef<
|
const Command = forwardRef<
|
||||||
React.ElementRef<typeof CommandPrimitive>,
|
React.ElementRef<typeof CommandPrimitive>,
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
|
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import { DropdownMenuItem } from '@radix-ui/react-dropdown-menu'
|
import { DropdownMenuItem } from '@radix-ui/react-dropdown-menu'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
className?: string
|
className?: string
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React, { PropsWithChildren, useEffect, useState } from 'react'
|
||||||
import * as DialogPrimitive from '@radix-ui/react-dialog'
|
import * as DialogPrimitive from '@radix-ui/react-dialog'
|
||||||
import { useLockedBody } from 'usehooks-ts'
|
import { useLockedBody } from 'usehooks-ts'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends DialogPrimitive.DialogProps {}
|
interface Props extends DialogPrimitive.DialogProps {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ import classNames from 'classnames'
|
||||||
import debounce from 'lodash.debounce'
|
import debounce from 'lodash.debounce'
|
||||||
|
|
||||||
import Overlay from '~components/common/Overlay'
|
import Overlay from '~components/common/Overlay'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React, { PropsWithChildren } from 'react'
|
||||||
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu'
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends DropdownMenuPrimitive.DropdownMenuContentProps {}
|
interface Props extends DropdownMenuPrimitive.DropdownMenuContentProps {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React, { useState, ChangeEvent, KeyboardEvent } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import Input from '~components/common/Input'
|
import Input from '~components/common/Input'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React, { PropsWithChildren } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import * as HoverCardPrimitive from '@radix-ui/react-hover-card'
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends HoverCardPrimitive.HoverCardContentProps {}
|
interface Props extends HoverCardPrimitive.HoverCardContentProps {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import { useEffect, useState } from 'react'
|
||||||
import Input from '~components/common/Input'
|
import Input from '~components/common/Input'
|
||||||
import TableField from '~components/common/TableField'
|
import TableField from '~components/common/TableField'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
visible: boolean
|
visible: boolean
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { ComponentProps } from 'react'
|
import React, { ComponentProps } from 'react'
|
||||||
import * as Select from '@radix-ui/react-select'
|
import * as Select from '@radix-ui/react-select'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
interface Props extends ComponentProps<'div'> {
|
interface Props extends ComponentProps<'div'> {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import classNames from 'classnames'
|
||||||
import * as PopoverPrimitive from '@radix-ui/react-popover'
|
import * as PopoverPrimitive from '@radix-ui/react-popover'
|
||||||
import ChevronIcon from '~public/icons/Chevron.svg'
|
import ChevronIcon from '~public/icons/Chevron.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props extends ComponentProps<'div'> {
|
interface Props extends ComponentProps<'div'> {
|
||||||
open: boolean
|
open: boolean
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import React, { PropsWithChildren } from 'react'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
import * as PopoverPrimitive from '@radix-ui/react-popover'
|
import * as PopoverPrimitive from '@radix-ui/react-popover'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props
|
interface Props
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
groupName: string
|
groupName: string
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
className?: string
|
className?: string
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import Overlay from '~components/common/Overlay'
|
||||||
|
|
||||||
import ChevronIcon from '~public/icons/Chevron.svg'
|
import ChevronIcon from '~public/icons/Chevron.svg'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
// Props
|
// Props
|
||||||
interface Props
|
interface Props
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import * as RadixSelect from '@radix-ui/react-select'
|
import * as RadixSelect from '@radix-ui/react-select'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
// Props
|
// Props
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { ComponentProps } from 'react'
|
import React, { ComponentProps } from 'react'
|
||||||
import * as Select from '@radix-ui/react-select'
|
import * as Select from '@radix-ui/react-select'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
interface Props extends ComponentProps<'div'> {
|
interface Props extends ComponentProps<'div'> {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import { useEffect, useState } from 'react'
|
||||||
import Select from '~components/common/Select'
|
import Select from '~components/common/Select'
|
||||||
import TableField from '~components/common/TableField'
|
import TableField from '~components/common/TableField'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
name: string
|
name: string
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import Select from '~components/common/Select'
|
||||||
import SelectItem from '~components/common/SelectItem'
|
import SelectItem from '~components/common/SelectItem'
|
||||||
|
|
||||||
// Styles and icons
|
// Styles and icons
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import * as SliderPrimitive from '@radix-ui/react-slider'
|
||||||
import type { SliderProps } from '@radix-ui/react-slider'
|
import type { SliderProps } from '@radix-ui/react-slider'
|
||||||
import classNames from 'classnames'
|
import classNames from 'classnames'
|
||||||
|
|
||||||
import './index.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
interface Props {}
|
interface Props {}
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue