Skip to content

Commit

Permalink
STSMACOM-884 correctly import from public paths (#1556)
Browse files Browse the repository at this point in the history
Import from public paths only.

Refs STSMACOM-884
  • Loading branch information
zburke authored Jan 22, 2025
1 parent 640cac4 commit 21e7622
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* `<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.
* Change the request URL limit for `REQUEST_URL_LIMIT` due to increase to 8192. Refs STSMACOM-887.
* 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

0 comments on commit 21e7622

Please sign in to comment.