Skip to content

Commit

Permalink
Fix primefaces#6233: Column MatchMode Typescript fix
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Apr 5, 2024
1 parent 6bae277 commit 39562b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion components/lib/column/column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ interface ColumnFilterMatchModeOptions {
/**
* Type of filter match; "startsWith", "contains", "endsWith", "equals", "notEquals", "in", "notIn", "lt", "lte", "gt", "gte" and "custom".
*/
matchMode: FilterMatchMode | string;
value: FilterMatchMode | string;
}

/**
Expand Down
14 changes: 2 additions & 12 deletions components/lib/passthrough/tailwind/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2162,20 +2162,10 @@ const Tailwind = {
},
metergroup: {
root: ({ props }) => ({
className: classNames(
'flex gap-4',
{ 'flex-col': props.orientation == 'horizontal', 'flex-row': props.orientation == 'vertical' }
)
className: classNames('flex gap-4', { 'flex-col': props.orientation == 'horizontal', 'flex-row': props.orientation == 'vertical' })
}),
metercontainer: ({ props }) => ({
className: classNames(
'flex',
{ 'flex-col': props.orientation === 'vertical' },
{ 'w-2 h-full': props.orientation === 'vertical' },
{ 'h-2': props.orientation === 'horizontal' },
'bg-gray-200 dark:bg-gray-700',
'rounded-lg'
)
className: classNames('flex', { 'flex-col': props.orientation === 'vertical' }, { 'w-2 h-full': props.orientation === 'vertical' }, { 'h-2': props.orientation === 'horizontal' }, 'bg-gray-200 dark:bg-gray-700', 'rounded-lg')
}),
meter: ({ props }) => ({
className: classNames(
Expand Down

0 comments on commit 39562b0

Please sign in to comment.