Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STSMACOM-884 correctly import from public paths #1556

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Check for `active` status of `<Settings>` navigation links independently from the applied href and query string. Query string should only be applied to active link. Refs STSMACOM-837.
* `<EditableListForm>` use `lodash.isEmpty` to check for empty `state.status` in re-initialization checks on component update. Fixes STSMACOM-876.
* `<NoteFields>` improve "Display as pop-up" markup and fix label a11y issue. Refs STSMACOM-882.
* Correctly import from `stripes-*` libraries. Refs STSMACOM-884.

## [9.2.3] IN PROGRESS

Expand Down
2 changes: 1 addition & 1 deletion lib/ChangeDueDateDialog/LoanList.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import { get } from 'lodash';
import { FormattedMessage, FormattedTime, useIntl } from 'react-intl';
import { Checkbox, MultiColumnList } from '@folio/stripes-components';
import getEffectiveCallNumber from '@folio/stripes-util/lib/effectiveCallNumber';
import { getEffectiveCallNumber } from '@folio/stripes-util';

const propTypes = {
alerts: PropTypes.object,
Expand Down
3 changes: 1 addition & 2 deletions lib/PasswordValidationField/PasswordValidationField.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import { Field as ReduxFormField } from 'redux-form';
import { Field as FinalFormField } from 'react-final-form';
import isEmpty from 'lodash/isEmpty';

import { TextField } from '@folio/stripes-components';
import omitProps from '@folio/stripes-components/util/omitProps';
import { TextField, omitProps } from '@folio/stripes-components';

const defaultValidationHandler = (errors) => {
if (!isEmpty(errors)) {
Expand Down
8 changes: 4 additions & 4 deletions lib/SearchAndSort/advancedSearchQueryToRows.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
BOOLEAN_OPERATORS,
DEFAULT_SEARCH_OPTION,
MATCH_OPTIONS,
} from '@folio/stripes-components/lib/AdvancedSearch';
ADVANCED_SEARCH_BOOLEAN_OPERATORS as BOOLEAN_OPERATORS,
ADVANCED_SEARCH_DEFAULT_SEARCH_OPTION as DEFAULT_SEARCH_OPTION,
ADVANCED_SEARCH_MATCH_OPTIONS as MATCH_OPTIONS,
} from '@folio/stripes-components';

const advancedSearchQueryToRows = (queryValue) => {
if (!queryValue) {
Expand Down
Loading