bump version to 0.0.31 and add AosSelect component for animation selection in Pagebuilder

This commit is contained in:
2025-11-28 09:55:12 +01:00
parent b54a2c41ce
commit c2c67c15a7
5 changed files with 137 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ export default {
name: 'col_1',
type: 'container',
class: '',
columns: [{ name: 'col-md-12', items: [] }]
columns: [{ name: 'col-md-12', items: [], class: '', attribute: '' }]
},
col_2: {
label: '2 kolumny po 6 ',
@@ -12,8 +12,8 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-6', items: [] },
{ name: 'col-md-6', items: [] }
{ name: 'col-md-6', items: [], class: '', attribute: '' },
{ name: 'col-md-6', items: [], class: '', attribute: '' }
]
},
col_4_8: {
@@ -22,8 +22,8 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-4', items: [] },
{ name: 'col-md-8', items: [] }
{ name: 'col-md-4', items: [], class: '', attribute: '' },
{ name: 'col-md-8', items: [], class: '', attribute: '' }
]
},
col_8_4: {
@@ -32,8 +32,8 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-8', items: [] },
{ name: 'col-md-4', items: [] }
{ name: 'col-md-8', items: [], class: '', attribute: '' },
{ name: 'col-md-4', items: [], class: '', attribute: '' }
]
},
col_2_10: {
@@ -42,8 +42,8 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-2', items: [] },
{ name: 'col-md-10', items: [] }
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-10', items: [], class: '', attribute: '' }
]
},
col_10_2: {
@@ -52,8 +52,8 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-10', items: [] },
{ name: 'col-md-2', items: [] }
{ name: 'col-md-10', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' }
]
},
col_3: {
@@ -62,9 +62,9 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-4', items: [] },
{ name: 'col-md-4', items: [] },
{ name: 'col-md-4', items: [] }
{ name: 'col-md-4', items: [], class: '', attribute: '' },
{ name: 'col-md-4', items: [], class: '', attribute: '' },
{ name: 'col-md-4', items: [], class: '', attribute: '' }
]
},
col_3_6_3: {
@@ -73,9 +73,9 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-3', items: [] },
{ name: 'col-md-6', items: [] },
{ name: 'col-md-3', items: [] }
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-6', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' }
]
},
col_6_3_3: {
@@ -84,9 +84,9 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-6', items: [] },
{ name: 'col-md-3', items: [] },
{ name: 'col-md-3', items: [] }
{ name: 'col-md-6', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' }
]
},
col_3_3_6: {
@@ -95,9 +95,9 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-3', items: [] },
{ name: 'col-md-3', items: [] },
{ name: 'col-md-6', items: [] }
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-6', items: [], class: '', attribute: '' }
]
},
col_4: {
@@ -106,10 +106,10 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-3', items: [] },
{ name: 'col-md-3', items: [] },
{ name: 'col-md-3', items: [] },
{ name: 'col-md-3', items: [] }
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' },
{ name: 'col-md-3', items: [], class: '', attribute: '' }
]
},
col_6: {
@@ -118,12 +118,12 @@ export default {
type: 'container',
class: '',
columns: [
{ name: 'col-md-2', items: [] },
{ name: 'col-md-2', items: [] },
{ name: 'col-md-2', items: [] },
{ name: 'col-md-2', items: [] },
{ name: 'col-md-2', items: [] },
{ name: 'col-md-2', items: [] }
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' },
{ name: 'col-md-2', items: [], class: '', attribute: '' }
]
}
}