@talixo-ds/options-input 0.0.1 → 0.0.20
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 +4 -1
- package/{components → src/components}/options-input-content-item.tsx +1 -1
- package/{components → src/components}/options-input-dropdown-item.tsx +1 -1
- package/{components → src/components}/tests/options-input-content-item.spec.tsx +1 -1
- package/{components → src/components}/tests/options-input-dropdown-item.spec.tsx +1 -1
- package/{options-input.tsx → src/options-input.tsx} +1 -1
- /package/{components → src/components}/min-max-value-label.tsx +0 -0
- /package/{components → src/components}/tests/__snapshots__/min-max-value-label.spec.tsx.snap +0 -0
- /package/{components → src/components}/tests/__snapshots__/options-input-content-item.spec.tsx.snap +0 -0
- /package/{components → src/components}/tests/__snapshots__/options-input-dropdown-item.spec.tsx.snap +0 -0
- /package/{components → src/components}/tests/min-max-value-label.spec.tsx +0 -0
- /package/{index.ts → src/index.ts} +0 -0
- /package/{styles.scss → src/styles.scss} +0 -0
- /package/{types.ts → src/types.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talixo-ds/options-input",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"main": "src/index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"storybook": "start-storybook -p 6006"
|
|
7
7
|
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@talixo-ds/icons": "^0.0.1"
|
|
10
|
+
},
|
|
8
11
|
"devDependencies": {
|
|
9
12
|
"@storybook/react": "^6.3.0"
|
|
10
13
|
}
|
|
@@ -3,7 +3,7 @@ import Tooltip from '@mui/material/Tooltip';
|
|
|
3
3
|
import Box from '@mui/material/Box';
|
|
4
4
|
import Typography from '@mui/material/Typography';
|
|
5
5
|
import * as MuiIcons from '@mui/icons-material';
|
|
6
|
-
import * as DesignSystemIcons from '@talixo-ds/
|
|
6
|
+
import * as DesignSystemIcons from '@talixo-ds/icons';
|
|
7
7
|
import { MinMaxValueLabel } from './min-max-value-label';
|
|
8
8
|
import { OptionsInputOption } from '../types';
|
|
9
9
|
|
|
@@ -10,7 +10,7 @@ import Button from '@mui/material/Button';
|
|
|
10
10
|
import AddIcon from '@mui/icons-material/Add';
|
|
11
11
|
import RemoveIcon from '@mui/icons-material/Remove';
|
|
12
12
|
import * as MuiIcons from '@mui/icons-material';
|
|
13
|
-
import * as DesignSystemIcons from '@talixo-ds/
|
|
13
|
+
import * as DesignSystemIcons from '@talixo-ds/icons';
|
|
14
14
|
import { MinMaxValueLabel } from './min-max-value-label';
|
|
15
15
|
import { OptionsInputOption } from '../types';
|
|
16
16
|
|
|
@@ -7,7 +7,7 @@ import ClickAwayListener from '@mui/material/ClickAwayListener';
|
|
|
7
7
|
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
|
8
8
|
import KeyboardArrowUpIcon from '@mui/icons-material/KeyboardArrowUp';
|
|
9
9
|
import * as MuiIcons from '@mui/icons-material';
|
|
10
|
-
import * as DesignSystemIcons from '@talixo-ds/
|
|
10
|
+
import * as DesignSystemIcons from '@talixo-ds/icons';
|
|
11
11
|
import type { SxProps } from '@mui/material';
|
|
12
12
|
import { OptionsInputOption, OptionsInputValue } from './types';
|
|
13
13
|
import OptionsInputContentItem from './components/options-input-content-item';
|
|
File without changes
|
/package/{components → src/components}/tests/__snapshots__/min-max-value-label.spec.tsx.snap
RENAMED
|
File without changes
|
/package/{components → src/components}/tests/__snapshots__/options-input-content-item.spec.tsx.snap
RENAMED
|
File without changes
|
/package/{components → src/components}/tests/__snapshots__/options-input-dropdown-item.spec.tsx.snap
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|