Skip to content

Commit

Permalink
Fix imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
robgietema committed Dec 23, 2024
1 parent 68f7c1f commit 52adc1c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/volto/news/6370.feature
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Add checkbox group widget. @robgietema
Add taken slugs to slugify helper. @robgietema
Add filter choices, additional choices and sort to select widget. @robgietema
Add max size and accept type checks to file widget. @robgietema
Fix bug with pressing enter in blocks form. @robgietema
Add option to pass custom widget config to field component. @robgietema
Add optional widgets config to form component. @robgietema
Fix bug with pressing enter in blocks form that events gets bubbled from modal to blocks area. @robgietema
Add option to pass custom widget `config` to field component. @robgietema
Add optional widgets `config` to form component. @robgietema
Add option to override the form component and the buttons in the form component. @robgietema
Add option to override cancel label in form. @robgietema
Add option to choose bewteen icon and text buttons in the form component. @robgietema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { compose } from 'redux';
import { filter, includes, map, without } from 'lodash';
import filter from 'lodash/filter';
import includes from 'lodash/includes';
import map from 'lodash/map';
import without from 'lodash/without';
import { injectIntl } from 'react-intl';
import {
getVocabFromHint,
getVocabFromField,
getVocabFromItems,
} from '@plone/volto/helpers';
} from '@plone/volto/helpers/Vocabularies/Vocabularies';
import { Checkbox } from 'semantic-ui-react';
import FormFieldWrapper from '@plone/volto/components/manage/Widgets/FormFieldWrapper';
import { getVocabulary, getVocabularyTokenTitle } from '@plone/volto/actions';
import {
getVocabulary,
getVocabularyTokenTitle,
} from '@plone/volto/actions/vocabularies/vocabularies';

/**
* CheckboxGroupWidget component class.
Expand Down

0 comments on commit 52adc1c

Please sign in to comment.