Skip to content

Commit b560df6

Browse files
committed
v0.3.2025073006
1 parent 0f112e8 commit b560df6

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/publish-canary-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
push:
55
branches: [canary]
6-
# paths: ['packages/filters/**']
6+
paths: ['packages/filters/**']
77

88
jobs:
99
publish-canary:
@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
NEXT_VERSION="v$(cat packages/filters/package.json | jq ".version" -r)"
5454
git add packages/filters/package.json
55-
git commit -m "${NEXT_VERSION}" --no-verify
55+
git commit --amend -m "${NEXT_VERSION}" --no-verify
5656
git tag $NEXT_VERSION
57-
git push origin HEAD --no-verify
57+
git push origin HEAD --force-with-lease --no-verify
5858
git push origin $NEXT_VERSION --no-verify

packages/filters/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bazzaui/filters",
3-
"version": "0.3.2025073005",
3+
"version": "0.3.2025073006",
44
"private": false,
55
"type": "module",
66
"main": "./dist/index.js",

packages/filters/src/lib/filter-fns.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { dateFilterOperators } from '../core/operators.js'
1010
import type { FilterModel } from '../core/types.js'
1111
import { intersection } from './array.js'
1212

13-
export function optionFilterFn<TData>(
13+
export function optionFilterFn(
1414
inputData: string,
1515
filterValue: FilterModel<'option'>,
1616
) {
@@ -64,7 +64,7 @@ export function multiOptionFilterFn(
6464
}
6565
}
6666

67-
export function dateFilterFn<TData>(
67+
export function dateFilterFn(
6868
inputData: Date,
6969
filterValue: FilterModel<'date'>,
7070
) {
@@ -114,7 +114,7 @@ export function dateFilterFn<TData>(
114114
}
115115
}
116116

117-
export function textFilterFn<TData>(
117+
export function textFilterFn(
118118
inputData: string,
119119
filterValue: FilterModel<'text'>,
120120
) {
@@ -135,7 +135,7 @@ export function textFilterFn<TData>(
135135
}
136136
}
137137

138-
export function numberFilterFn<TData>(
138+
export function numberFilterFn(
139139
inputData: number,
140140
filterValue: FilterModel<'number'>,
141141
) {

0 commit comments

Comments
 (0)