Fix props
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
@@ -29,19 +29,19 @@ const justifyValues = ['start', 'center', 'end', 'between'] as const;
|
||||
const flexPropDefs = {
|
||||
align: {
|
||||
type: 'enum',
|
||||
className: 'cu-align',
|
||||
className: 'bui-align',
|
||||
values: alignValues,
|
||||
responsive: true,
|
||||
},
|
||||
direction: {
|
||||
type: 'enum',
|
||||
className: 'cu-fd',
|
||||
className: 'bui-fd',
|
||||
values: directionValues,
|
||||
responsive: true,
|
||||
},
|
||||
justify: {
|
||||
type: 'enum',
|
||||
className: 'cu-jc',
|
||||
className: 'bui-jc',
|
||||
values: justifyValues,
|
||||
responsive: true,
|
||||
},
|
||||
|
||||
@@ -36,7 +36,7 @@ const columnsValues = [
|
||||
const gridPropDefs = {
|
||||
columns: {
|
||||
type: 'enum | string',
|
||||
className: 'cu-columns',
|
||||
className: 'bui-columns',
|
||||
customProperties: ['--columns'],
|
||||
values: columnsValues,
|
||||
responsive: true,
|
||||
@@ -50,28 +50,28 @@ const gridPropDefs = {
|
||||
const gridItemPropDefs = {
|
||||
colSpan: {
|
||||
type: 'enum | string',
|
||||
className: 'cu-col-span',
|
||||
className: 'bui-col-span',
|
||||
customProperties: ['--col-span'],
|
||||
values: columnsValues,
|
||||
responsive: true,
|
||||
},
|
||||
colEnd: {
|
||||
type: 'enum | string',
|
||||
className: 'cu-col-end',
|
||||
className: 'bui-col-end',
|
||||
customProperties: ['--col-end'],
|
||||
values: columnsValues,
|
||||
responsive: true,
|
||||
},
|
||||
colStart: {
|
||||
type: 'enum | string',
|
||||
className: 'cu-col-start',
|
||||
className: 'bui-col-start',
|
||||
customProperties: ['--col-start'],
|
||||
values: columnsValues,
|
||||
responsive: true,
|
||||
},
|
||||
rowSpan: {
|
||||
type: 'enum | string',
|
||||
className: 'cu-row-span',
|
||||
className: 'bui-row-span',
|
||||
customProperties: ['--row-span'],
|
||||
values: columnsValues,
|
||||
responsive: true,
|
||||
|
||||
Reference in New Issue
Block a user