@vuu-ui/vuu-filters 3.1.0 → 3.2.0

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.0",
2
+ "version": "3.2.0",
3
3
  "main": "./src/index.js",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
@@ -10,19 +10,19 @@
10
10
  "type-defs": "node ../../scripts/build-type-defs.mjs"
11
11
  },
12
12
  "devDependencies": {
13
- "@vuu-ui/vuu-data-types": "3.1.0",
14
- "@vuu-ui/vuu-protocol-types": "3.1.0",
15
- "@vuu-ui/vuu-table-types": "3.1.0",
16
- "@vuu-ui/vuu-filter-types": "3.1.0"
13
+ "@vuu-ui/vuu-data-types": "3.2.0",
14
+ "@vuu-ui/vuu-protocol-types": "3.2.0",
15
+ "@vuu-ui/vuu-table-types": "3.2.0",
16
+ "@vuu-ui/vuu-filter-types": "3.2.0"
17
17
  },
18
18
  "dependencies": {
19
- "@vuu-ui/vuu-context-menu": "3.1.0",
20
- "@vuu-ui/vuu-data-react": "3.1.0",
21
- "@vuu-ui/vuu-filter-parser": "3.1.0",
22
- "@vuu-ui/vuu-popups": "3.1.0",
23
- "@vuu-ui/vuu-ui-controls": "3.1.0",
24
- "@vuu-ui/vuu-table": "3.1.0",
25
- "@vuu-ui/vuu-utils": "3.1.0",
19
+ "@vuu-ui/vuu-context-menu": "3.2.0",
20
+ "@vuu-ui/vuu-data-react": "3.2.0",
21
+ "@vuu-ui/vuu-filter-parser": "3.2.0",
22
+ "@vuu-ui/vuu-popups": "3.2.0",
23
+ "@vuu-ui/vuu-ui-controls": "3.2.0",
24
+ "@vuu-ui/vuu-table": "3.2.0",
25
+ "@vuu-ui/vuu-utils": "3.2.0",
26
26
  "@salt-ds/core": "1.54.1",
27
27
  "@salt-ds/lab": "1.0.0-alpha.83",
28
28
  "@salt-ds/styles": "0.2.1",
@@ -4,8 +4,8 @@ import { useWindow } from "@salt-ds/window";
4
4
  import { VirtualColSpan } from "@vuu-ui/vuu-table";
5
5
  import clsx from "clsx";
6
6
  import { FilterContainer, FilterContainerColumnFilter } from "../filter-container/FilterContainer.js";
7
- import { useInlineFilter } from "./useInlineFilter.js";
8
7
  import InlineFilter from "./InlineFilter.css";
8
+ import { useInlineFilter } from "./useInlineFilter.js";
9
9
  const classBase = "vuuInlineFilter";
10
10
  const InputProps = {
11
11
  inputProps: {
@@ -1,5 +1,5 @@
1
- import { NumericFilterClauseOp } from "@vuu-ui/vuu-filter-types";
2
- import { FilterClauseValueEditor } from "../filterClauseTypes";
1
+ import type { NumericFilterClauseOp } from "@vuu-ui/vuu-filter-types";
2
+ import type { FilterClauseValueEditor } from "../filterClauseTypes";
3
3
  interface FilterClauseValueEditorDateProps extends Pick<FilterClauseValueEditor, "onChangeValue" | "inputProps"> {
4
4
  className?: string;
5
5
  value: number | undefined;
@@ -1,8 +1,8 @@
1
- import { TableSchemaTable } from "@vuu-ui/vuu-data-types";
2
- import { VuuFilter } from "@vuu-ui/vuu-protocol-types";
3
- import { BaseRowProps } from "@vuu-ui/vuu-table-types";
4
- import { HTMLAttributes } from "react";
5
- import { FilterAppliedHandler } from "../filter-container/useFilterContainer";
1
+ import type { TableSchemaTable } from "@vuu-ui/vuu-data-types";
2
+ import type { VuuFilter } from "@vuu-ui/vuu-protocol-types";
3
+ import type { BaseRowProps } from "@vuu-ui/vuu-table-types";
4
+ import type { HTMLAttributes } from "react";
5
+ import type { FilterAppliedHandler } from "../filter-container/useFilterContainer";
6
6
  export type FilterValueChangeHandler = (filter: VuuFilter) => void;
7
7
  export interface InlineFilterProps extends Partial<BaseRowProps>, Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
8
8
  onFilterApplied?: FilterAppliedHandler;