@antscorp/antsomi-ui 1.3.5-beta.916 → 1.3.5-beta.917
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/es/components/atoms/Tag/Tag.js +1 -1
- package/es/components/molecules/SearchPopover/components/PopoverAddField/PopoverAddField.js +2 -1
- package/es/components/molecules/SearchPopover/components/PopoverSelect/PopoverSelect.js +3 -1
- package/es/components/molecules/SearchPopover/styled.js +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ import { CloseIcon } from '../../icons';
|
|
|
10
10
|
import { Flex } from '../Flex';
|
|
11
11
|
import { Button } from '../Button';
|
|
12
12
|
import { Typography } from '../Typography';
|
|
13
|
-
import { SearchPopover } from '../../molecules';
|
|
13
|
+
import { SearchPopover } from '../../molecules/SearchPopover';
|
|
14
14
|
// Constants
|
|
15
15
|
import { globalToken } from '@antscorp/antsomi-ui/es/constants';
|
|
16
16
|
import { translate, translations } from '@antscorp/antsomi-ui/es/locales';
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useCallback, useMemo } from 'react';
|
|
3
3
|
import clsx from 'clsx';
|
|
4
|
-
import { Button
|
|
4
|
+
import { Button } from '../../../../atoms/Button';
|
|
5
|
+
import { Icon } from '../../../../atoms/Icon';
|
|
5
6
|
import { PopoverSelect } from '../PopoverSelect';
|
|
6
7
|
import { Flex, Typography } from 'antd';
|
|
7
8
|
import { IconField } from '@antscorp/antsomi-ui/es/components/atoms/IconField';
|
|
@@ -2,7 +2,9 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
2
2
|
import { useEffect, useMemo, useRef, useState } from 'react';
|
|
3
3
|
import { SearchPopover } from '../../SearchPopover';
|
|
4
4
|
import './styles.scss';
|
|
5
|
-
import { Button
|
|
5
|
+
import { Button } from '../../../../atoms/Button';
|
|
6
|
+
import { Checkbox } from '../../../../atoms/Checkbox';
|
|
7
|
+
import { Typography } from '../../../../atoms/Typography';
|
|
6
8
|
import { StyledAction, StyledFooter, StyledListFieldsWrapper } from './styled';
|
|
7
9
|
import { EmptyData } from '../../../EmptyData';
|
|
8
10
|
import i18nInstance from '@antscorp/antsomi-ui/es/locales/i18n';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import styled from 'styled-components';
|
|
3
|
-
import { Input } from '../../atoms';
|
|
3
|
+
import { Input } from '../../atoms/Input';
|
|
4
4
|
import { THEME } from '@antscorp/antsomi-ui/es/constants';
|
|
5
5
|
export const StyledInput = styled(props => _jsx(Input, { ...props })) `
|
|
6
6
|
&.antsomi-input-group-wrapper {
|