
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
@paprika/filter
Advanced tools
Filter
yarn add @paprika/filter
or with npm:
npm install @paprika/filter
| Prop | Type | required | default | Description |
|---|---|---|---|---|
| numberApplied | number | false | 0 | |
| children | node | false | null | |
| columns | arrayOf | true | - | |
| data | arrayOf | false | null | |
| maxFiltersAllowed | number | false | 9999 | |
| onAddFilter | func | true | - | |
| onApply | func | true | - | |
| onCancel | func | false | () => {} | |
| onChangeOperator | func | false | null | |
| onClear | func | false | () => {} | |
| operator | [ Filter.operator.AND, Filter.operator.OR] | false | Filter.operator.AND | |
| rulesByType | objectOf | false | Filter.defaultRulesByType | |
| zIndex | number | false | undefined |
| Prop | Type | required | default | Description |
|---|---|---|---|---|
| columnId | string | true | - | |
| id | [string,number] | false | null | |
| index | number | true | - | |
| onChangeFilter | func | true | - | |
| onDeleteFilter | func | true | - | |
| renderValueField | func | false | null | |
| rule | string | true | - | |
| value | [string,bool,array,number] | true | - |
import Filter from "@paprika/filter";
<Filter
columns={columnsSettings}
data={data}
numberApplied={1}
onAddFilter={() => {}}
onApply={() => {}}
onCancel={() => {}}
onChangeOperator={() => {}}
onClear={() => {}}
>
<Filter.Item
columnId="name"
id={1234}
index={0}
type="TEXT"
rule="CONTAINS"
value="abc"
onChangeFilter={() => {}}
onRemoveFilter={() => {}}
/>
</Filter>;
Please note that the built-in filter functions only work with flat data arrary. Please pass in a flattened array if you want to use the built-in feature. If you want to use your own filter algorithm you can still use the hook, just do not pass in the data property and ignore the filteredData in the returned value.
const { filteredData, filters, getFilterProps, getFilterItemProps } = useFilter({ columns, rulesByType, data });
const handleDeleteFilter = filterId => () => {
onDeleteFilter(filterId);
};
const handleChangeFilter = filterId => params => {
onChangeFilter({ ...params, id: filterId });
};
return (
<Filter {...getFilterProps()} columns={columnsSettings} data={data}>
{filters.map((filter, index) => (
<Filter.Item
{...getFilterItemProps()}
columnId={filter.columnId}
id={filter.id}
index={index}
key={filter.id}
type={filter.type}
rule={filter.rule}
value={filter.value}
/>
))}
</Filter>
// display filteredData
);
AND and OR by setting the onChangeOperator prop to null and including the operator to use.FAQs
Filter
The npm package @paprika/filter receives a total of 732 weekly downloads. As such, @paprika/filter popularity was classified as not popular.
We found that @paprika/filter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.