Skip to content

Commit 0a6e40f

Browse files
authored
Merge pull request #31 from danielkestler/master
Migrate to new core Neos.Fusion components
2 parents f88676a + f37d6be commit 0a6e40f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Resources/Private/Fusion/List.fusion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This convienince object wraps your list with a title and an archive link
2-
prototype(Flowpack.Listable:List) < prototype(PackageFactory.AtomicFusion:Component) {
2+
prototype(Flowpack.Listable:List) < prototype(Neos.Fusion:Component) {
33
list = ${value}
44
# These settings are public API:
55
wrapClass = ''

Resources/Private/Fusion/PaginatedCollection.fusion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
prototype(Flowpack.Listable:PaginatedCollection) < prototype(PackageFactory.AtomicFusion:Component) {
1+
prototype(Flowpack.Listable:PaginatedCollection) < prototype(Neos.Fusion:Component) {
22
currentPage = ${request.arguments.currentPage || 1}
33
##################################
44
# These settings are public API: #

Resources/Private/Fusion/Pagination.fusion

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ prototype(Flowpack.Listable:PaginationArray) {
88

99
prototype(Flowpack.Listable:PaginationParameters) < prototype(Neos.Fusion:RawArray)
1010

11-
prototype(Flowpack.Listable:Pagination) < prototype(PackageFactory.AtomicFusion:Component) {
11+
prototype(Flowpack.Listable:Pagination) < prototype(Neos.Fusion:Component) {
1212
totalCount = 'to-be-set'
1313
maximumNumberOfLinks = 15
1414
itemsPerPage = 24

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"description": "Tiny extension for listing things",
88
"license": "MIT",
99
"require": {
10-
"neos/neos": "^3.0 || ^4.0 || dev-master",
11-
"packagefactory/atomicfusion": "^2.0"
10+
"neos/neos": "^3.3 || ^4.0 || dev-master"
1211
},
1312
"autoload": {
1413
"psr-4": {

0 commit comments

Comments
 (0)