@kopexa/filter 0.0.25 → 0.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-6TRAIAKS.mjs +178 -0
- package/dist/chunk-I7WCYMXD.mjs +133 -0
- package/dist/{chunk-45QJL74L.mjs → chunk-JSRGUDCG.mjs} +49 -24
- package/dist/chunk-NUDUXOHP.mjs +243 -0
- package/dist/chunk-ON2UFJ3Y.mjs +32 -0
- package/dist/{chunk-RFCPJLIQ.mjs → chunk-SJXRD3RO.mjs} +6 -1
- package/dist/{chunk-EF4VI36D.mjs → chunk-UBTUCPOG.mjs} +1 -1
- package/dist/{chunk-3ZBNWXRA.mjs → chunk-WD7YU6IN.mjs} +17 -14
- package/dist/chunk-XCWKWXBW.mjs +602 -0
- package/dist/{chunk-URDCG5NI.mjs → chunk-YTYOFT33.mjs} +52 -0
- package/dist/filter-active.js +108 -28
- package/dist/filter-active.mjs +4 -4
- package/dist/filter-bar-internal.d.mts +25 -0
- package/dist/filter-bar-internal.d.ts +25 -0
- package/dist/filter-bar-internal.js +648 -0
- package/dist/filter-bar-internal.mjs +11 -0
- package/dist/filter-bar-messages.d.mts +124 -0
- package/dist/filter-bar-messages.d.ts +124 -0
- package/dist/filter-bar-messages.js +156 -0
- package/dist/filter-bar-messages.mjs +7 -0
- package/dist/filter-bar-types.d.mts +112 -0
- package/dist/filter-bar-types.d.ts +112 -0
- package/dist/filter-bar-types.js +56 -0
- package/dist/filter-bar-types.mjs +8 -0
- package/dist/filter-bar.d.mts +29 -0
- package/dist/filter-bar.d.ts +29 -0
- package/dist/filter-bar.js +942 -0
- package/dist/filter-bar.mjs +11 -0
- package/dist/filter-menu.js +161 -1
- package/dist/filter-menu.mjs +2 -1
- package/dist/filter-trigger.js +52 -0
- package/dist/filter-trigger.mjs +2 -2
- package/dist/filter-value-editor.js +65 -10
- package/dist/filter-value-editor.mjs +3 -3
- package/dist/filter.d.mts +6 -0
- package/dist/filter.d.ts +6 -0
- package/dist/filter.mjs +2 -2
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1263 -31
- package/dist/index.mjs +28 -14
- package/dist/messages.d.mts +50 -0
- package/dist/messages.d.ts +50 -0
- package/dist/messages.js +52 -0
- package/dist/messages.mjs +1 -1
- package/dist/search-filter-bar.d.mts +44 -0
- package/dist/search-filter-bar.d.ts +44 -0
- package/dist/search-filter-bar.js +1007 -0
- package/dist/search-filter-bar.mjs +11 -0
- package/package.json +19 -16
- package/dist/{chunk-SH7DBK54.mjs → chunk-LWDVRMCI.mjs} +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/filter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"description": "A filter component for building complex filtering interfaces",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"filter",
|
|
@@ -30,23 +30,26 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": ">=19.0.0-rc.0",
|
|
32
32
|
"react-dom": ">=19.0.0-rc.0",
|
|
33
|
-
"@kopexa/theme": "17.
|
|
33
|
+
"@kopexa/theme": "17.21.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@kopexa/
|
|
37
|
-
"@kopexa/
|
|
38
|
-
"@kopexa/use-controllable-state": "17.0.
|
|
39
|
-
"@kopexa/
|
|
40
|
-
"@kopexa/
|
|
41
|
-
"@kopexa/
|
|
42
|
-
"@kopexa/
|
|
43
|
-
"@kopexa/
|
|
44
|
-
"@kopexa/select": "17.2.
|
|
45
|
-
"@kopexa/
|
|
46
|
-
"@kopexa/
|
|
47
|
-
"@kopexa/
|
|
48
|
-
"@kopexa/
|
|
49
|
-
"@kopexa/checkbox": "17.0.
|
|
36
|
+
"@kopexa/react-utils": "17.0.37",
|
|
37
|
+
"@kopexa/shared-utils": "17.0.37",
|
|
38
|
+
"@kopexa/use-controllable-state": "17.0.37",
|
|
39
|
+
"@kopexa/use-debounced-callback": "17.0.37",
|
|
40
|
+
"@kopexa/i18n": "17.6.1",
|
|
41
|
+
"@kopexa/icons": "17.7.2",
|
|
42
|
+
"@kopexa/button": "17.0.37",
|
|
43
|
+
"@kopexa/input": "17.0.37",
|
|
44
|
+
"@kopexa/select": "17.2.2",
|
|
45
|
+
"@kopexa/combobox": "17.3.2",
|
|
46
|
+
"@kopexa/calendar": "17.0.37",
|
|
47
|
+
"@kopexa/popover": "17.2.2",
|
|
48
|
+
"@kopexa/dropdown-menu": "17.0.37",
|
|
49
|
+
"@kopexa/checkbox": "17.0.37",
|
|
50
|
+
"@kopexa/switch": "17.2.2",
|
|
51
|
+
"@kopexa/command": "17.0.37",
|
|
52
|
+
"@kopexa/spinner": "17.0.37"
|
|
50
53
|
},
|
|
51
54
|
"clean-package": "../../../clean-package.config.json",
|
|
52
55
|
"module": "dist/index.mjs",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getDefaultOperator
|
|
4
|
+
} from "./chunk-PHESMHTT.mjs";
|
|
2
5
|
import {
|
|
3
6
|
DEFAULT_I18N
|
|
4
7
|
} from "./chunk-3WNAREG6.mjs";
|
|
5
8
|
import {
|
|
6
9
|
FilterProvider
|
|
7
10
|
} from "./chunk-I3Z2T4N2.mjs";
|
|
8
|
-
import {
|
|
9
|
-
getDefaultOperator
|
|
10
|
-
} from "./chunk-PHESMHTT.mjs";
|
|
11
11
|
|
|
12
12
|
// src/filter.tsx
|
|
13
13
|
import { DropdownMenu } from "@kopexa/dropdown-menu";
|