Skip to content

Commit

Permalink
Rename to @eeacms/volto-tabs-block
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Aug 20, 2020
1 parent d2eafed commit 63e0dbb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "volto-tabsblock",
"version": "1.0.0",
"name": "@eeacms/volto-tabs-block",
"version": "0.2.0",
"description": "A Volto block that provides tabs for regular composite pages",
"main": "src/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/Tabs/TabsBlockEdit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import React from 'react';
import { SidebarPortal } from '@plone/volto/components'; // EditBlock
import InlineForm from '@plone/volto/components/manage/Form/InlineForm';
import { getBlocks } from '@plone/volto/helpers';
import { resetContentForEdit, resetTabs } from 'volto-tabsblock/actions'; // reflowBlocksLayout, setToEditMode
import { TABSBLOCK } from 'volto-tabsblock/constants';
import { resetContentForEdit, resetTabs } from '@eeacms/volto-tabs-block/actions'; // reflowBlocksLayout, setToEditMode
import { TABSBLOCK } from '@eeacms/volto-tabs-block/constants';
import { FormStateContext } from '@plone/volto/components/manage/Form/FormContext';
import {
globalDeriveTabsFromState,
Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/TabsBlockView.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { Tab } from 'semantic-ui-react';
import { useDispatch, useSelector } from 'react-redux';
import { setActiveTab } from 'volto-tabsblock/actions';
import { setActiveTab } from '@eeacms/volto-tabs-block/actions';
import { blocks } from '~/config';
import { defineMessages, injectIntl } from 'react-intl';
import cx from 'classnames';
Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/public.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import '../less/globals.less';

@addon: 'volto-tabsblock';
@addon: 'volto-tabs-block';
@addontype: 'block';
@addonelement: 'tabs';

Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TABSBLOCK } from 'volto-tabsblock/constants';
import { TABSBLOCK } from '@eeacms/volto-tabs-block/constants';

export function isEqual(arr1, arr2) {
return (
Expand Down

0 comments on commit 63e0dbb

Please sign in to comment.