Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandra-c committed Nov 29, 2023
2 parents d9eb2cd + fabd38b commit eb5c38a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ __mocks__
.vim
public
.prettierrc
src/testingUtils
src/stories
2 changes: 1 addition & 1 deletion src/components/inputs/DynamicField/DynamicField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Autocomplete, DateTime, TextField } from '../../index'
import { ControlType, DynamicFieldProps } from './types'
import { Checkbox } from '@mui/material'
import { FormControlLabel } from '@mui/material'
import { emptyString } from '../../../testingUtils/constants'
import { emptyString } from '../../utils/constants'

/**
* The DynamicField component is used for rendering controls dynamically
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/stories/inputs/Autocomplete/CheckboxesPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import React, { useState } from 'react'
import { Autocomplete } from 'components'
import { emptyArray } from 'testingUtils/constants'
import { emptyArray } from 'components/utils/constants'

export const CheckboxesPreview = (props: any) => {
const [value, setValue] = useState(emptyArray)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import FormattedJson from './components/FormattedJson'
import ColumnHeader from './components/ColumnHeader'
import { options, primitiveOptions, numericOptions } from './_mocks'
import { Autocomplete } from 'components'
import { emptyArray } from 'testingUtils/constants'
import { emptyArray } from 'components/utils/constants'

export const MultipleSelectionPreview = () => {
const [simpleValueBasic, setSimpleValueBasic] = useState(false)
Expand Down
1 change: 0 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"extends": "./tsconfig",
"include": ["./src/components/**/*.ts*"],
"exclude": [
"**/*.test.*",
"**/__mocks__/*",
Expand Down

0 comments on commit eb5c38a

Please sign in to comment.