impact-nova 2.0.7 → 2.0.9
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/components/ui/ag-grid-react/headers/header-search-input.d.ts +2 -2
- package/dist/components/ui/ag-grid-react/headers/header-search-input.js +210 -204
- package/dist/components/ui/ag-grid-react/headers/use-header-search-editing-state.d.ts +34 -0
- package/dist/components/ui/ag-grid-react/headers/use-header-search-editing-state.js +70 -0
- package/dist/components/ui/date-picker/date-picker.js +33 -32
- package/dist/components/ui/date-picker/date-range-picker.js +1 -0
- package/dist/components/ui/date-picker/month-picker.js +48 -47
- package/dist/components/ui/date-picker/month-range-picker.js +32 -31
- package/dist/components/ui/date-picker/multi-date-picker.js +20 -19
- package/dist/components/ui/date-picker/multi-month-picker.js +80 -61
- package/dist/components/ui/date-picker/multi-week-picker.js +100 -81
- package/dist/components/ui/date-picker/week-picker.js +26 -25
- package/dist/components/ui/date-picker/week-range-picker.js +24 -23
- package/dist/components/ui/select/select.js +34 -37
- package/package.json +1 -1
|
@@ -26,8 +26,8 @@ export interface HeaderSearchInputProps {
|
|
|
26
26
|
* HeaderSearchInput - A single instance input for column filtering.
|
|
27
27
|
*
|
|
28
28
|
* Grid filter model is the source of truth. While an input is focused, a local
|
|
29
|
-
* draft overlays committed values so typing is not interrupted.
|
|
30
|
-
*
|
|
29
|
+
* draft overlays committed values so typing is not interrupted. Committed values
|
|
30
|
+
* stay in sync via a local filterChanged subscription while inline search is open.
|
|
31
31
|
*/
|
|
32
32
|
export declare const HeaderSearchInput: ({ column, api, onClose, handleInlineSearch, handleClearSearchInline, onAdvanceSearchClick, toggleAdvanceSearch, advanceSearchEnabled, selectOptions, isMultiSelect, onSelectScrollToBottom, onSelectSearchChange, onSelectOpen, isLoadingSelect, enableSpaceSplitting, enableBooleanParsing, enableDateParsing, }: HeaderSearchInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
33
|
export default HeaderSearchInput;
|