@vuu-ui/vuu-filters 2.1.0-alpha.1 → 2.1.0-alpha.11

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,22 +1,22 @@
1
1
  {
2
- "version": "2.1.0-alpha.1",
2
+ "version": "2.1.0-alpha.11",
3
3
  "author": "heswell",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-data-types": "2.1.0-alpha.1",
8
- "@vuu-ui/vuu-protocol-types": "2.1.0-alpha.1",
9
- "@vuu-ui/vuu-table-types": "2.1.0-alpha.1",
10
- "@vuu-ui/vuu-filter-types": "2.1.0-alpha.1"
7
+ "@vuu-ui/vuu-data-types": "2.1.0-alpha.11",
8
+ "@vuu-ui/vuu-protocol-types": "2.1.0-alpha.11",
9
+ "@vuu-ui/vuu-table-types": "2.1.0-alpha.11",
10
+ "@vuu-ui/vuu-filter-types": "2.1.0-alpha.11"
11
11
  },
12
12
  "dependencies": {
13
- "@vuu-ui/vuu-context-menu": "2.1.0-alpha.1",
14
- "@vuu-ui/vuu-data-react": "2.1.0-alpha.1",
15
- "@vuu-ui/vuu-filter-parser": "2.1.0-alpha.1",
16
- "@vuu-ui/vuu-popups": "2.1.0-alpha.1",
17
- "@vuu-ui/vuu-ui-controls": "2.1.0-alpha.1",
18
- "@vuu-ui/vuu-table": "2.1.0-alpha.1",
19
- "@vuu-ui/vuu-utils": "2.1.0-alpha.1",
13
+ "@vuu-ui/vuu-context-menu": "2.1.0-alpha.11",
14
+ "@vuu-ui/vuu-data-react": "2.1.0-alpha.11",
15
+ "@vuu-ui/vuu-filter-parser": "2.1.0-alpha.11",
16
+ "@vuu-ui/vuu-popups": "2.1.0-alpha.11",
17
+ "@vuu-ui/vuu-ui-controls": "2.1.0-alpha.11",
18
+ "@vuu-ui/vuu-table": "2.1.0-alpha.11",
19
+ "@vuu-ui/vuu-utils": "2.1.0-alpha.11",
20
20
  "@salt-ds/core": "1.54.1",
21
21
  "@salt-ds/lab": "1.0.0-alpha.83",
22
22
  "@salt-ds/styles": "0.2.1",
@@ -18,7 +18,7 @@ export declare class FilterClauseModel extends EventEmitter<FilterClauseModelEve
18
18
  private setIsValid;
19
19
  get column(): undefined | string;
20
20
  set column(column: undefined | string);
21
- get op(): import("@vuu-ui/vuu-filter-types").SingleValueFilterClauseOp | "in" | undefined;
21
+ get op(): "in" | import("@vuu-ui/vuu-filter-types").SingleValueFilterClauseOp | undefined;
22
22
  setOp(op: undefined | FilterClauseOp): void;
23
23
  setValue(value: undefined | string | string[] | number | number[] | boolean | boolean[], isFinal?: boolean): void;
24
24
  asFilter(throwIfInvalid?: boolean): FilterClause;
@@ -6,7 +6,7 @@ export type ColumnPickerProps = Pick<ComboBoxProps, "className" | "inputProps" |
6
6
  onSelect: (evt: SyntheticEvent, columnName: string) => void;
7
7
  dropdownOnAutofocus?: boolean;
8
8
  };
9
- export declare const ColumnPicker: import("react").ForwardRefExoticComponent<Pick<ComboBoxProps, "value" | "className" | "inputProps"> & {
9
+ export declare const ColumnPicker: import("react").ForwardRefExoticComponent<Pick<ComboBoxProps, "className" | "value" | "inputProps"> & {
10
10
  columns: readonly ColumnDescriptor[];
11
11
  onSelect: (evt: SyntheticEvent, columnName: string) => void;
12
12
  dropdownOnAutofocus?: boolean;
@@ -7,7 +7,7 @@ export type OperatorPickerProps = Pick<ComboBoxProps, "className" | "inputProps"
7
7
  onSelect: (evt: SyntheticEvent, operator: FilterClauseOp) => void;
8
8
  dropdownOnAutofocus?: boolean;
9
9
  };
10
- export declare const OperatorPicker: import("react").ForwardRefExoticComponent<Pick<ComboBoxProps, "value" | "className" | "inputProps"> & {
10
+ export declare const OperatorPicker: import("react").ForwardRefExoticComponent<Pick<ComboBoxProps, "className" | "value" | "inputProps"> & {
11
11
  column: ColumnDescriptor;
12
12
  onSelect: (evt: SyntheticEvent, operator: FilterClauseOp) => void;
13
13
  dropdownOnAutofocus?: boolean;