130 lines
3.6 KiB
JavaScript
130 lines
3.6 KiB
JavaScript
export default {
|
|
col_1: {
|
|
label: '1 kolumna ',
|
|
name: 'col_1',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [{ name: 'col-md-12', items: [], class: '', attribute: '' }]
|
|
},
|
|
col_2: {
|
|
label: '2 kolumny po 6 ',
|
|
name: 'col_2',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-6', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-6', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_4_8: {
|
|
label: '2 kolumny 2 i 8 ',
|
|
name: 'col_4_8',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-4', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-8', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_8_4: {
|
|
label: '2 kolkumny 8 i 2 ',
|
|
name: 'col_8_4',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-8', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-4', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_2_10: {
|
|
label: '2 kolumny 2 i 10 ',
|
|
name: 'col_2_10',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-2', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-10', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_10_2: {
|
|
label: '2 kolkumny 10 i 2 ',
|
|
name: 'col_10_2',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-10', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-2', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_3: {
|
|
label: '3 kolumny po 4 ',
|
|
name: 'col_3',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ 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: {
|
|
label: '3 kolumny: 3 ,6, 3 ',
|
|
name: 'col_3_6_3',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ 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: {
|
|
label: '3 kolumny: 6,3,3 ',
|
|
name: 'col_6_3_3',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ 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: {
|
|
label: '3 kolumny: 3,3,6 ',
|
|
name: 'col_3_3_6',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ name: 'col-md-3', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-3', items: [], class: '', attribute: '' },
|
|
{ name: 'col-md-6', items: [], class: '', attribute: '' }
|
|
]
|
|
},
|
|
col_4: {
|
|
label: '4 kolumny po 3 ',
|
|
name: 'col_4',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ 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: {
|
|
label: '6 kolumn po 2 ',
|
|
name: 'col_6',
|
|
type: 'container',
|
|
class: '',
|
|
columns: [
|
|
{ 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: '' }
|
|
]
|
|
}
|
|
}
|