diff --git a/components/lib/column/column.d.ts b/components/lib/column/column.d.ts index e22d645a7b..a5513a6624 100644 --- a/components/lib/column/column.d.ts +++ b/components/lib/column/column.d.ts @@ -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; } /** diff --git a/components/lib/passthrough/tailwind/index.js b/components/lib/passthrough/tailwind/index.js index 6c9c8fd86d..2c9f51575f 100644 --- a/components/lib/passthrough/tailwind/index.js +++ b/components/lib/passthrough/tailwind/index.js @@ -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(