@factorialco/f0-react 1.317.1 → 1.318.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/dist/experimental.d.ts +4 -4
- package/dist/experimental.js +1187 -1185
- package/dist/f0.d.ts +92 -4
- package/dist/f0.js +1195 -1143
- package/dist/{hooks-CUFsqUWT.js → hooks-DAsEPAIb.js} +12954 -12939
- package/dist/i18n-provider-defaults.d.ts +4 -4
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/f0.d.ts
CHANGED
|
@@ -2411,6 +2411,76 @@ export declare type F0DropdownButtonProps<T = string> = {
|
|
|
2411
2411
|
|
|
2412
2412
|
export declare function F0EventCatcherProvider({ children, onEvent, enabled, catchEvents, }: EventCatcherProviderProps): JSX.Element;
|
|
2413
2413
|
|
|
2414
|
+
/**
|
|
2415
|
+
* A standalone dual-pane filter picker content component.
|
|
2416
|
+
*
|
|
2417
|
+
* This component renders the filter picker interface (left panel with filter list,
|
|
2418
|
+
* right panel with filter content) without any popover wrapper, allowing it to be
|
|
2419
|
+
* embedded directly in modals, sidebars, or other containers.
|
|
2420
|
+
*
|
|
2421
|
+
* Features:
|
|
2422
|
+
* - Left panel showing filter categories with search
|
|
2423
|
+
* - Right panel showing filter options for the selected filter
|
|
2424
|
+
* - Multi-select with checkboxes for "in" type filters
|
|
2425
|
+
* - Support for search, date, number, and custom filter types
|
|
2426
|
+
* - Select All and Clear actions
|
|
2427
|
+
*
|
|
2428
|
+
* @template Filters - The type defining the structure of available filters
|
|
2429
|
+
*
|
|
2430
|
+
* @example
|
|
2431
|
+
* ```tsx
|
|
2432
|
+
* // Embed directly in a modal or page
|
|
2433
|
+
* <F0FilterPickerContent
|
|
2434
|
+
* filters={{
|
|
2435
|
+
* department: {
|
|
2436
|
+
* type: "in",
|
|
2437
|
+
* label: "Department",
|
|
2438
|
+
* options: {
|
|
2439
|
+
* options: [
|
|
2440
|
+
* { value: "engineering", label: "Engineering" },
|
|
2441
|
+
* { value: "marketing", label: "Marketing" },
|
|
2442
|
+
* ]
|
|
2443
|
+
* }
|
|
2444
|
+
* },
|
|
2445
|
+
* location: {
|
|
2446
|
+
* type: "in",
|
|
2447
|
+
* label: "Location",
|
|
2448
|
+
* options: {
|
|
2449
|
+
* options: [
|
|
2450
|
+
* { value: "nyc", label: "New York" },
|
|
2451
|
+
* { value: "sf", label: "San Francisco" },
|
|
2452
|
+
* ]
|
|
2453
|
+
* }
|
|
2454
|
+
* }
|
|
2455
|
+
* }}
|
|
2456
|
+
* value={selectedFilters}
|
|
2457
|
+
* onChange={setSelectedFilters}
|
|
2458
|
+
* />
|
|
2459
|
+
* ```
|
|
2460
|
+
*/
|
|
2461
|
+
export declare function F0FilterPickerContent<Filters extends FiltersDefinition>({ filters, value, onChange, height, width, className, showApplyButton, applyButtonLabel, }: F0FilterPickerContentProps<Filters>): JSX_2.Element | null;
|
|
2462
|
+
|
|
2463
|
+
export declare namespace F0FilterPickerContent {
|
|
2464
|
+
var displayName: string;
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
/**
|
|
2468
|
+
* Props for the F0FilterPickerContent component.
|
|
2469
|
+
* @template Filters - The type defining the structure of available filters
|
|
2470
|
+
*/
|
|
2471
|
+
export declare interface F0FilterPickerContentProps<Filters extends FiltersDefinition> extends FilterPickerBaseProps<Filters> {
|
|
2472
|
+
/** Current state of applied filters */
|
|
2473
|
+
value: FiltersState<Filters>;
|
|
2474
|
+
/**
|
|
2475
|
+
* Callback fired when filters change.
|
|
2476
|
+
* - With apply button (default): called when Apply button is clicked
|
|
2477
|
+
* - Without apply button: called immediately on every selection
|
|
2478
|
+
*/
|
|
2479
|
+
onChange: (value: FiltersState<Filters>) => void;
|
|
2480
|
+
/** Width of the content panel */
|
|
2481
|
+
width?: number;
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2414
2484
|
export declare const F0GridStack: {
|
|
2415
2485
|
({ options, widgets, onChange, className, }: F0GridStackProps_2): JSX_2.Element;
|
|
2416
2486
|
displayName: string;
|
|
@@ -2630,6 +2700,24 @@ declare type FilterDefinitionsByType<T = unknown, R extends RecordType = RecordT
|
|
|
2630
2700
|
*/
|
|
2631
2701
|
export declare type FilterOptions<FilterKeys extends string> = Record<FilterKeys, FilterDefinition>;
|
|
2632
2702
|
|
|
2703
|
+
/**
|
|
2704
|
+
* Shared styling and behavior props used by both public and internal components.
|
|
2705
|
+
* Internal type - not exported to external consumers.
|
|
2706
|
+
* @template Filters - The type defining the structure of available filters
|
|
2707
|
+
*/
|
|
2708
|
+
declare interface FilterPickerBaseProps<Filters extends FiltersDefinition> {
|
|
2709
|
+
/** The schema defining available filters and their configurations */
|
|
2710
|
+
filters: Filters;
|
|
2711
|
+
/** Height of the content panel */
|
|
2712
|
+
height?: number;
|
|
2713
|
+
/** Optional className for the container */
|
|
2714
|
+
className?: string;
|
|
2715
|
+
/** Whether to show the apply button (default: true) */
|
|
2716
|
+
showApplyButton?: boolean;
|
|
2717
|
+
/** Custom label for the apply button */
|
|
2718
|
+
applyButtonLabel?: string;
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2633
2721
|
/**
|
|
2634
2722
|
* Record of filter definitions for a collection.
|
|
2635
2723
|
* Maps filter keys to their respective definitions.
|
|
@@ -4984,8 +5072,8 @@ declare module "@tiptap/core" {
|
|
|
4984
5072
|
|
|
4985
5073
|
declare module "@tiptap/core" {
|
|
4986
5074
|
interface Commands<ReturnType> {
|
|
4987
|
-
|
|
4988
|
-
|
|
5075
|
+
liveCompanion: {
|
|
5076
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4989
5077
|
};
|
|
4990
5078
|
}
|
|
4991
5079
|
}
|
|
@@ -4993,8 +5081,8 @@ declare module "@tiptap/core" {
|
|
|
4993
5081
|
|
|
4994
5082
|
declare module "@tiptap/core" {
|
|
4995
5083
|
interface Commands<ReturnType> {
|
|
4996
|
-
|
|
4997
|
-
|
|
5084
|
+
transcript: {
|
|
5085
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
4998
5086
|
};
|
|
4999
5087
|
}
|
|
5000
5088
|
}
|