generated from eea/volto-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
313 additions
and
299 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export AccordionBlockEdit from './manage/Blocks/Accordion/Edit'; | ||
export AccordionBlockView from './manage/Blocks/Accordion/View'; | ||
export AccordionBlockSchema from './manage/Blocks/Accordion/Schema'; | ||
export PanelWidget from './manage/Widgets/PanelWidget'; | ||
|
||
export { options } from './manage/Blocks/Accordion/panels'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 0 additions & 165 deletions
165
src/components/manage/Blocks/Accordion/icons/five-circle-bottom.svg
This file was deleted.
Oops, something went wrong.
95 changes: 0 additions & 95 deletions
95
src/components/manage/Blocks/Accordion/icons/three-circle-bottom.svg
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
import threeColumnSVG from './icons/three-circle-bottom.svg'; | ||
import fiveColumnSVG from './icons/five-circle-bottom.svg'; | ||
import oneColumnSVG from './icons/circle-bottom.svg'; | ||
import oneSVG from '@eeacms/volto-accordion-block/icons/one.svg'; | ||
import twoSVG from '@eeacms/volto-accordion-block/icons/two.svg'; | ||
import threeSVG from '@eeacms/volto-accordion-block/icons/three.svg'; | ||
|
||
export const options = [ | ||
{ | ||
icon: oneColumnSVG, | ||
icon: oneSVG, | ||
defaultData: { | ||
count: 1, | ||
}, | ||
title: '1 Panel', | ||
title: '1', | ||
}, | ||
{ | ||
icon: threeColumnSVG, | ||
icon: twoSVG, | ||
defaultData: { | ||
count: 3, | ||
count: 2, | ||
}, | ||
title: '3 Panels', | ||
title: '2', | ||
}, | ||
{ | ||
icon: fiveColumnSVG, | ||
icon: threeSVG, | ||
defaultData: { | ||
count: 5, | ||
count: 3, | ||
}, | ||
title: '5 Panels', | ||
title: '3', | ||
}, | ||
]; |
File renamed without changes.
Oops, something went wrong.