import { KbqFilterBarModule } from '@koobiq/components/filter-bar';Selector: kbq-filter-reset
| Name | Description |
|---|---|
@Output('onResetFilter')
onResetFilter: OutputEmitterRef |
Event that is generated whenever the user reset a filter. |
Selector: [kbqPipe]
| Name | Description |
|---|---|
@Input('kbqPipe')
pipe: InputSignal |
Selector: [kbqFilterBarButton]
| Name | Description |
|---|---|
| filters: KbqFilters | KbqFilters instance |
Selector: [kbqPipeState]
| Name | Description |
|---|---|
@Input('kbqPipeState')
state: InputSignal |
Pipe state used to calculate/update the button style. |
Selector: kbq-filter-refresher, [kbq-filter-refresher]
Selector: kbq-filter-refresher, [kbq-filter-refresher]
Selector: kbq-pipe-readonly
| Name | Description |
|---|---|
| data: KbqPipeData |
pipe data. Provided from subclass |
| isEmpty: boolean | Whether the current pipe is empty. Used for apply style modifier |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Shared scaffolding for the tree-based select pipes (`kbq-pipe-tree-select`, `kbq-pipe-multi-tree-select`): the flat-tree control / flattener / data source, the node accessors, search-driven filtering and open handling. Subclasses provide the value-specific pieces (`selected`, `isEmpty`, `onSelect`, `updateTemplates`). The `internalTemplatesChanges` subscription is intentionally left in each subclass constructor: it must be set up after the subclass's `updateTemplates` field initializer runs, so the initial `BehaviorSubject` replay dispatches to the subclass override (which writes `dataSource.data`) rather than the base one.
| Name | Description |
|---|---|
| data: KbqPipeData |
pipe data. Provided from subclass |
| dataSource: KbqTreeFlatDataSource |
|
| getChildren: (node: KbqTreeSelectNode) => KbqTreeSelectNode[] | |
| getLevel: (node: KbqTreeSelectFlatNode) => number | |
| getValue: (node: KbqTreeSelectFlatNode) => unknown | |
| getViewValue: (node: KbqTreeSelectFlatNode) => string | |
| isEmpty: boolean | Whether the current pipe is empty. Used for apply style modifier |
| isExpandable: (node: KbqTreeSelectFlatNode) => boolean | |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| searchControl: FormControl |
control for search options |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| transformer: (node: KbqTreeSelectNode, level: number, parent: KbqTreeSelectFlatNode) => KbqTreeSelectFlatNode | |
| treeControl: FlatTreeControl |
|
| treeFlattener: KbqTreeFlattener |
|
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-input
| Name | Description |
|---|---|
| control: FormControl |
Input control. Must stay nullable: `reset()` — all `KbqFormField.clearValue()` and its Escape handler ever call — resolves to `defaultValue`, which is `null` only while `nonNullable` is unset. `{ nonNullable: true }` would make `reset()` yield `''` and silently break the cleaner bridge below. |
| data: KbqPipeData |
pipe data. Provided from subclass |
| debounceTime: number | Debounce in milliseconds between the last keystroke and the typed value being applied to the filter. Matches `defaultEmitValueTimeout` of `kbq-search-expandable`, so both search fields of a bar feel the same. `Enter` and blur apply immediately and cancel a pending apply. |
| isEmpty: boolean | Whether the current pipe is empty. Used for apply style modifier |
| minLength: number | Minimum number of characters before typing applies the value to the filter. Anything shorter — including an emptied field — is applied as `null`, so the filter never keeps text the user has already erased. `Enter` and blur ignore the threshold. Set to `0` to apply every keystroke. |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-button
| Name | Description |
|---|---|
@Input() readonly: InputSignalWithTransform |
enables/disables read-only state |
| filterBar: KbqFilterBarHost | KbqFilterBar instance |
| pipe: KbqBasePipe |
KbqPipe instance |
Shared implementation for the `date` and `datetime` pipes. The two pipes differ only in how a range is formatted and in their default start/end values, exposed here as the {@link formatRange}, {@link getDefaultStart} and {@link getDefaultEnd} hooks. Everything else — the period list / custom period flow, calendar handling and form group — is common.
| Name | Description |
|---|---|
| adapter: DateAdapter |
|
| data: KbqPipeData |
pipe data. Provided from subclass |
| defaultEnd: D | default object for end |
| defaultStart: D | default object for start |
| disabled: boolean | Whether the current pipe is disabled. |
| end: D | parsed end |
| formattedValue: string | formatted value for period |
| formatter: DateFormatter |
|
| isEmpty: boolean | Whether the current pipe is empty. |
| isListMode: boolean | Whether the current state is list of periods. When false will displayed control for set custom period |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| start: D | parsed start |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-add
| Name | Description |
|---|---|
@Input() filterTemplate: InputSignal |
template of filter |
@Output('onAddPipe')
onAddPipe: OutputEmitterRef |
Event that is generated after add pipe. |
| addedPipes: Signal<(string | number | (string & {}))[]> | Ids of the pipes already added to the current filter. Used to open an already-added pipe. Derived from the `filter` signal so it stays in sync without the retired `changes` bus. |
| filterBar: KbqFilterBarHost | KbqFilterBar instance |
Selector: kbq-filter-bar, [kbq-filter-bar]
| Name | Description |
|---|---|
@Input() @Output('filterChange')
filter: ModelSignal |
Filter that is currently selected. A two-way-bindable `model()`: derived state (`isSaved`/`isChanged`/…) is exposed via `computed()` off it and change detection is driven by signal reactivity. `model()` auto-provides the `filterChange` output for `[(filter)]` two-way binding. |
@Input() pipeTemplates: InputSignal |
An array of templates that are used when adding a pipe. Also contains lists of options to select (values). |
@Input() selectedAllEqualsSelectedNothing: InputSignalWithTransform |
This is special logic that unselect all items when all selected because "all selected = nothing selected". Default is true |
@Output('onChangePipe')
onChangePipe: OutputEmitterRef |
Event that emits whenever the value of the pipe changes. |
@Output('onClearPipe')
onClearPipe: OutputEmitterRef |
Event that emits whenever the pipe cleared. |
@Output('onClosePipe')
onClosePipe: OutputEmitterRef |
Event that emits whenever the select or multiselect pipe closed. |
@Output('onRemovePipe')
onRemovePipe: OutputEmitterRef |
Event that emits whenever the pipe deleted. |
| configuration: { reset: { buttonName: string; }; search: { tooltip: string; placeholder: string; }; filters: { defaultName: string; saveNewFilterTooltip: string; searchPlaceholder: string; searchEmptyResult: string; saveAsNewFilter: string; saveChanges: string; saveAsNew: string; change: string; resetChanges: string; remove: string; name: string; error: string; errorHint: string; saveButton: string; cancelButton: string; actionsTooltip: string; }; add: { tooltip: string; addedAnnouncement: string; }; refresher: { refresh: string; settings: string; }; pipe: { clearButtonTooltip: string; removeButtonTooltip: string; applyButton: string; emptySearchResult: string; selectAll: string; }; datePipe: { customPeriod: string; customPeriodFrom: string; customPeriodTo: string; customPeriodErrorHint: string; backToPeriodSelection: string; }; } | Localized strings and configuration for the filter-bar and its pipes. |
| externalConfiguration: { reset: { buttonName: string; }; search: { tooltip: string; placeholder: string; }; filters: { defaultName: string; saveNewFilterTooltip: string; searchPlaceholder: string; searchEmptyResult: string; saveAsNewFilter: string; saveChanges: string; saveAsNew: string; change: string; resetChanges: string; remove: string; name: string; error: string; errorHint: string; saveButton: string; cancelButton: string; actionsTooltip: string; }; add: { tooltip: string; addedAnnouncement: string; }; refresher: { refresh: string; settings: string; }; pipe: { clearButtonTooltip: string; removeButtonTooltip: string; applyButton: string; emptySearchResult: string; selectAll: string; }; datePipe: { customPeriod: string; customPeriodFrom: string; customPeriodTo: string; customPeriodErrorHint: string; backToPeriodSelection: string; }; } | |
| internalFilterChanges: BehaviorSubject |
internal filter changes |
| internalTemplatesChanges: BehaviorSubject |
internal changes in templates |
| isChanged: Signal |
Whether the current filter is changed |
| isDisabled: Signal |
Whether the current filter is disabled |
| isReadOnly: Signal |
Whether the current filter is readonly |
| isSaved: Signal |
Whether the current filter is saved |
| isSavedAndChanged: Signal |
Whether the current filter is saved and changed |
| onResetFilter: BehaviorSubject |
Event that emits whenever the filter is reset. |
Deprecated changes: BehaviorSubject |
All changes. |
Selector: kbq-pipe-text
| Name | Description |
|---|---|
| control: FormControl |
textarea control |
| data: KbqPipeData |
pipe data. Provided from subclass |
| disabled: boolean | Whether the current pipe is disabled. |
| isEmpty: boolean | Whether the current pipe is empty. Used for apply style modifier |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| placements: typeof PopUpPlacements | |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-select
| Name | Description |
|---|---|
| compareByValue: (o1: Pick |
Comparator of selected options |
| data: KbqPipeData |
pipe data. Provided from subclass |
| filteredOptions: Observable |
filtered by search options |
| isEmpty: boolean | Whether the current pipe is empty. |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| searchControl: FormControl |
control for search options |
| selected: KbqSelectValue | selected value |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-date
| Name | Description |
|---|---|
| adapter: DateAdapter |
|
| data: KbqPipeData |
pipe data. Provided from subclass |
| defaultEnd: D | default object for end |
| defaultStart: D | default object for start |
| disabled: boolean | Whether the current pipe is disabled. |
| end: D | parsed end |
| formattedValue: string | formatted value for period |
| formatter: DateFormatter |
|
| isEmpty: boolean | Whether the current pipe is empty. |
| isListMode: boolean | Whether the current state is list of periods. When false will displayed control for set custom period |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| start: D | parsed start |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-datetime
| Name | Description |
|---|---|
| adapter: DateAdapter |
|
| data: KbqPipeData |
pipe data. Provided from subclass |
| defaultEnd: D | default object for end |
| defaultStart: D | default object for start |
| disabled: boolean | Whether the current pipe is disabled. |
| end: D | parsed end |
| formattedValue: string | formatted value for period |
| formatter: DateFormatter |
|
| isEmpty: boolean | Whether the current pipe is empty. |
| isListMode: boolean | Whether the current state is list of periods. When false will displayed control for set custom period |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| start: D | parsed start |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
| Name | Description |
|---|---|
| data: KbqPipeData |
pipe data. Provided from subclass |
| isEmpty: boolean | Whether the current pipe is empty. Used for apply style modifier |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-tree-select
| Name | Description |
|---|---|
| data: KbqPipeData |
pipe data. Provided from subclass |
| dataSource: KbqTreeFlatDataSource |
|
| getChildren: (node: KbqTreeSelectNode) => KbqTreeSelectNode[] | |
| getLevel: (node: KbqTreeSelectFlatNode) => number | |
| getValue: (node: KbqTreeSelectFlatNode) => unknown | |
| getViewValue: (node: KbqTreeSelectFlatNode) => string | |
| isEmpty: boolean | Whether the current pipe is empty. |
| isExpandable: (node: KbqTreeSelectFlatNode) => boolean | |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| searchControl: FormControl |
control for search options |
| selected: KbqSelectValue | selected value |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| transformer: (node: KbqTreeSelectNode, level: number, parent: KbqTreeSelectFlatNode) => KbqTreeSelectFlatNode | |
| treeControl: FlatTreeControl |
|
| treeFlattener: KbqTreeFlattener |
|
| updateTemplates: (templates: KbqPipeTemplate[]) => void | Populates the tree data source from the pipe template. The shared `values`/`valueTemplate` assignment is already performed by the base subscription, so this override only does the tree-specific work and avoids a redundant double assignment. |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-multi-select
| Name | Description |
|---|---|
| allOptionsSelected: boolean | true if all options selected |
| allVisibleOptionsSelected: boolean | true if all visible options selected |
| checkboxState: KbqPseudoCheckboxState | state for checkbox 'select all'. |
| compareByValue: (o1: Pick |
Comparator of selected options. Two null/absent values never match (aligned with the select pipe). |
| data: KbqPipeData |
pipe data. Provided from subclass |
| filteredOptions: Observable |
filtered by search options |
| isEmpty: boolean | Whether the current pipe is empty. |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| searchControl: FormControl |
control for search options |
| selectAllHandler: (event: KeyboardEvent) => void | handler for select all options in select |
| selected: KbqSelectValue[] | selected value |
| selectedAllEqualsSelectedNothing: boolean | |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| updateTemplates: (templates: KbqPipeTemplate[]) => void | updates values for selection and value template |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-pipe-multi-tree-select
| Name | Description |
|---|---|
| allOptionsSelected: boolean | true if all options selected |
| allVisibleOptionsSelected: boolean | true if all visible options selected |
| data: KbqPipeData |
pipe data. Provided from subclass |
| dataSource: KbqTreeFlatDataSource |
|
| getChildren: (node: KbqTreeSelectNode) => KbqTreeSelectNode[] | |
| getLevel: (node: KbqTreeSelectFlatNode) => number | |
| getValue: (node: KbqTreeSelectFlatNode) => unknown | |
| getViewValue: (node: KbqTreeSelectFlatNode) => string | |
| isEmpty: boolean | Whether the current pipe is empty. |
| isExpandable: (node: KbqTreeSelectFlatNode) => boolean | |
| numberOfSelectedLeaves: number | |
| optionCompareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Optional equality comparator forwarded from the pipe template to the underlying `kbq-select`. Only consumed by the select / multi-select pipe components; when unset they fall back to their own id-based `compareByValue`. |
| searchControl: FormControl |
control for search options |
| selectAllCheckboxState: KbqPseudoCheckboxState | |
| selectAllHandler: (event: KeyboardEvent) => void | handler for select all options in select |
| selected: KbqSelectValue[] | selected value |
| selectedAllEqualsSelectedNothing: boolean | |
| showRemoveButton: boolean | Whether the current pipe is removable or cleanable. Used for apply style modifier |
| stateChanges: Subject |
changes of state |
| transformer: (node: KbqTreeSelectNode, level: number, parent: KbqTreeSelectFlatNode) => KbqTreeSelectFlatNode | |
| treeControl: FlatTreeControl |
|
| treeFlattener: KbqTreeFlattener |
|
| updateTemplates: (templates: KbqPipeTemplate[]) => void | Populates the tree data source from the pipe template. The shared `values`/`valueTemplate` assignment is already performed by the base subscription, so this override only does the tree-specific work and avoids a redundant double assignment. |
| valueTemplate: string | TemplateRef |
TemplateRef for selecting an option |
| values: any | values to select from the pipe template |
Selector: kbq-filters
Exported as: kbqFilters| Name | Description |
|---|---|
@Input() filters: InputSignal |
|
@Output('onChangeFilter')
onChangeFilter: OutputEmitterRef |
Event that is generated whenever the user change a filter. |
@Output('onRemoveFilter')
onRemoveFilter: OutputEmitterRef |
Event that is generated whenever the user remove a filter. |
@Output('onResetFilterChanges')
onResetFilterChanges: OutputEmitterRef |
Event that is generated whenever the user reset a filter changes. |
@Output('onSave')
onSave: OutputEmitterRef |
Event that is generated whenever the user save a filter. The emitted `filter` shares its pipe objects with the live filter by design (so the rendered pipes keep their identity across a save instead of being destroyed and recreated). Consumers that persist `event.filter` as an immutable record should snapshot it first (e.g. via `KbqFilterBar.saveFilterState` or a structural copy) — otherwise later in-place pipe edits will mutate the stored reference. |
@Output('onSelectFilter')
onSelectFilter: OutputEmitterRef |
Event that is generated whenever the user selects a filter. |
| filter: KbqFilter | Selected filter. Kept as a plain getter facade over the bar's `filter` model. |
| filterActionsOpened: boolean | Component state. true if opened dropdown or popup of filterActions |
| filterBar: KbqFilterBar | KbqFilterBar instance |
| filteredOptions: Observable |
filtered by search filters |
| isEmpty: boolean | Component state. True if 'filters' input contains no elements. |
| opened: boolean | Component state. true if opened dropdown or popup |
| searchControl: FormControl |
control for search filter |
Selector: [kbqPipeMinWidth]
| Name | Description |
|---|---|
| filterBar: KbqFilterBarHost | KbqFilterBar instance |
| maxSymbolsForFitContent: number | maximal symbols for apply fit-content to min-width |
| textLength: number | current length of text |
| update: () => void |
Flattened node
| Name | Description |
|---|---|
| expandable: boolean | |
| level: number | |
| name: string | |
| parent: KbqTreeSelectFlatNode | |
| value: unknown |
Contract a pipe (or filter-bar sub-component) depends on instead of the concrete `KbqFilterBar`. `KbqFilterBar` provides itself as {@link KBQ_FILTER_BAR_HOST}, so a pipe can be unit-tested against a lightweight mock of this seam rather than a full bar. Members mirror the current `KbqFilterBar` surface; they are expected to slim down once the state model moves to signals.
| Name | Description |
|---|---|
| configuration: { reset: { buttonName: string; }; search: { tooltip: string; placeholder: string; }; filters: { defaultName: string; saveNewFilterTooltip: string; searchPlaceholder: string; searchEmptyResult: string; saveAsNewFilter: string; saveChanges: string; saveAsNew: string; change: string; resetChanges: string; remove: string; name: string; error: string; errorHint: string; saveButton: string; cancelButton: string; actionsTooltip: string; }; add: { tooltip: string; addedAnnouncement: string; }; refresher: { refresh: string; settings: string; }; pipe: { clearButtonTooltip: string; removeButtonTooltip: string; applyButton: string; emptySearchResult: string; selectAll: string; }; datePipe: { customPeriod: string; customPeriodFrom: string; customPeriodTo: string; customPeriodErrorHint: string; backToPeriodSelection: string; }; } | Localized strings and configuration for the filter-bar and its pipes. |
| filter: ModelSignal |
Currently selected filter. A two-way-bindable `model()`: read via `filter()`, write via `filter.set()`. |
| internalFilterChanges: BehaviorSubject |
Internal filter changes. |
| internalTemplatesChanges: BehaviorSubject |
Internal pipe-template changes. |
| isChanged: Signal |
Whether the current filter is changed. |
| isReadOnly: Signal |
Whether the current filter is readonly. |
| isSaved: Signal |
Whether the current filter is saved. |
| isSavedAndChanged: Signal |
Whether the current filter is both saved and changed. |
| onChangePipe: OutputEmitterRef |
Emits whenever a pipe value changes. (The two-way-bound `filter` value is emitted by the `filter` model's `filterChange` output.) |
| onClearPipe: OutputEmitterRef |
Emits whenever a pipe is cleared. |
| onClosePipe: OutputEmitterRef |
Emits whenever a select/multiselect pipe closes. |
| onResetFilter: BehaviorSubject |
Emits when the filter is reset. |
| openPipe: BehaviorSubject |
Requests opening a pipe after it is added. |
| pipeTemplates: Signal |
Templates used when adding a pipe (also hold the option lists). Read via `pipeTemplates()`. |
| selectedAllEqualsSelectedNothing: Signal |
Whether selecting all options counts as selecting nothing. |
| Name | Description |
|---|---|
| end: string | |
| name: string | |
| start: string |
| Name | Description |
|---|---|
| id: string | number | Optional stable identifier used by the select/multi-select pipe comparators. |
| name: string | |
| value: unknown |
| Name | Description |
|---|---|
| changed: boolean | |
| disabled: boolean | |
| name: string | |
| pipes: KbqPipe[] | |
| readonly: boolean | |
| saved: boolean |
| Name | Description |
|---|---|
| cleanable: boolean | |
| disabled: boolean | |
| id: string | number | |
| name: string | |
| openOnAdd: boolean | |
| openOnReset: boolean | |
| removable: boolean | |
| search: boolean | |
| selectAll: boolean | |
| selectedAllEqualsSelectedNothing: boolean | This is special logic that unselect all items when all selected because "all selected = nothing selected". Default is true |
| type: KbqPipeType | |
| value: unknown | |
Deprecated required: boolean
|
| Name | Description |
|---|---|
| cleanable: boolean | |
| disabled: boolean | |
| id: string | number | |
| name: string | |
| openOnAdd: boolean | |
| openOnReset: boolean | |
| removable: boolean | |
| search: boolean | |
| selectAll: boolean | |
| selectedAllEqualsSelectedNothing: boolean | This is special logic that unselect all items when all selected because "all selected = nothing selected". Default is true |
| type: KbqPipeType | |
| value: V | |
Deprecated required: boolean
|
| Name | Description |
|---|---|
| cleanable: boolean | |
| compareWith: (o1: KbqSelectValue, o2: KbqSelectValue) => boolean | Custom equality comparator forwarded to the underlying `kbq-select` of the `select` / `multiselect` pipes. When omitted, the pipe's default id-based comparator (`compareByValue`) is used. Ignored by other pipe types. |
| disabled: boolean | |
| id: string | number | |
| name: string | |
| openOnAdd: boolean | |
| openOnReset: boolean | |
| removable: boolean | |
| search: boolean | |
| selectAll: boolean | |
| selectedAllEqualsSelectedNothing: boolean | This is special logic that unselect all items when all selected because "all selected = nothing selected". Default is true |
| type: KbqPipeType | |
| valueTemplate: string | TemplateRef |
|
| values: unknown[] | |
Deprecated required: boolean
|
| Name | Description |
|---|---|
| nameAlreadyExists: boolean | |
| text: string |
| Name | Description |
|---|---|
| filter: KbqFilter | |
| filterBar: KbqFilterBar | |
| status: KbqSaveFilterStatuses |
| Name | Description |
|---|---|
| children: KbqTreeSelectNode[] | |
| name: string | |
| value: unknown |
function to get unique identifier of an element
const getId(item: KbqPipeTemplate): string | number | (string & {});
| Parameters | Description |
|---|---|
| item: KbqPipeTemplate |
Build the file structure tree. The `value` is the Json object, or a sub-tree of a Json object. The return value is the list of extends `KbqTreeSelectNode`.
const kbqBuildTree(value: Record<string, unknown>, level: number): T[];
| Parameters | Description |
|---|---|
|
value:
Record |
|
| level: number |
Shape of the localized strings consumed by the filter-bar and its pipes.
type KbqFilterBarConfiguration = typeof KBQ_FILTER_BAR_DEFAULT_CONFIGURATION;
type KbqPipeType = `${KbqPipeTypes}` | (string & {});
Injection Token for providing configuration of filter-bar
const KBQ_PIPE_DATA: InjectionToken<unknown>;
Default localized strings for the filter-bar, used when no `KBQ_LOCALE_SERVICE` (nor an explicit `KBQ_FILTER_BAR_CONFIGURATION`) is provided. These are the Russian (`ru-RU`) strings, matching the library-wide default-locale convention (every `KBQ_*_DEFAULT_CONFIGURATION` resolves to `ruRULocaleData`). Provide `KBQ_LOCALE_SERVICE` at the application root to localize the filter-bar for other locales.
const KBQ_FILTER_BAR_DEFAULT_CONFIGURATION: { reset: { buttonName: string; }; search: { tooltip: string; placeholder: string; }; filters: { defaultName: string; saveNewFilterTooltip: string; searchPlaceholder: string; searchEmptyResult: string; ... 11 more ...; actionsTooltip: string; }; add: { ...; }; refresher: { ...; }; pipe: { ...; }; datePipe: { ...; }; };
Injection Token for providing configuration of filter-bar
const KBQ_FILTER_BAR_CONFIGURATION: InjectionToken<{ reset: { buttonName: string; }; search: { tooltip: string; placeholder: string; }; filters: { defaultName: string; saveNewFilterTooltip: string; searchPlaceholder: string; searchEmptyResult: string; ... 11 more ...; actionsTooltip: string; }; add: { ...; }; refresher: { ...; }; pipe: { ...; }; dateP...;
Injection token exposing the {@link KbqFilterBarHost} seam. `KbqFilterBar` provides itself via `useExisting`, so pipes `inject(KBQ_FILTER_BAR_HOST)` instead of depending on the concrete bar.
const KBQ_FILTER_BAR_HOST: InjectionToken<KbqFilterBarHost>;
Injection Token for providing pipes in filter-bar
const KBQ_FILTER_BAR_PIPES: InjectionToken<Map<KbqPipeType, Type<KbqBasePipe<unknown>>>>;
Utility provider for `KBQ_FILTER_BAR_PIPES`.
const kbqFilterBarPipesProvider: () => Provider;
list of pipes available out of the box.
const defaultFilterBarPipes: [KbqPipeType, Type<KbqBasePipe<unknown>>][];