@factorialco/f0-react 1.344.0 → 1.346.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/{DataCollectionStorageProvider-Cp49oHtv.js → DataCollectionStorageProvider-hMAvFkmY.js} +10 -7
- package/dist/{F0AiChat-BKTtt-6q.js → F0AiChat-DwdTiTfe.js} +13207 -13194
- package/dist/{F0HILActionConfirmation-DKJ3NIJ-.js → F0HILActionConfirmation-DZ7lrrAm.js} +1 -1
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +7 -0
- package/dist/experimental.js +2595 -2585
- package/dist/f0.d.ts +7 -0
- package/dist/f0.js +5 -5
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as t, jsxs as o } from "react/jsx-runtime";
|
|
2
2
|
import { createContext as c, useContext as h } from "react";
|
|
3
|
-
import { w as n, x as u } from "./F0AiChat-
|
|
3
|
+
import { w as n, x as u } from "./F0AiChat-DwdTiTfe.js";
|
|
4
4
|
const b = ["xs", "sm", "md", "lg"], w = [
|
|
5
5
|
"inProgress",
|
|
6
6
|
"executing",
|
package/dist/ai.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as e, B as t, C as o, E as i, g as n, F as r, a as l, v as c, h as A, b as h, q as F, r as u, s as C, t as T, c as d, l as g, m, n as S, H as I, I as f, L as p, O as H, o as b, P as k, S as x, T as O, j as P, k as M, U as v, p as w, i as E, u as L, d as q, f as B, e as U } from "./F0AiChat-
|
|
2
|
-
import { A as z, F as D, b as R, a as y, o as G, u as J } from "./F0HILActionConfirmation-
|
|
1
|
+
import { A as e, B as t, C as o, E as i, g as n, F as r, a as l, v as c, h as A, b as h, q as F, r as u, s as C, t as T, c as d, l as g, m, n as S, H as I, I as f, L as p, O as H, o as b, P as k, S as x, T as O, j as P, k as M, U as v, p as w, i as E, u as L, d as q, f as B, e as U } from "./F0AiChat-DwdTiTfe.js";
|
|
2
|
+
import { A as z, F as D, b as R, a as y, o as G, u as J } from "./F0HILActionConfirmation-DZ7lrrAm.js";
|
|
3
3
|
export {
|
|
4
4
|
e as A,
|
|
5
5
|
z as AiChatTranslationsProvider,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -983,6 +983,10 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
|
|
|
983
983
|
* The variant of the button.
|
|
984
984
|
*/
|
|
985
985
|
variant?: ActionButtonVariant;
|
|
986
|
+
/**
|
|
987
|
+
* The filters'counter value to display.
|
|
988
|
+
*/
|
|
989
|
+
counterValue?: number;
|
|
986
990
|
/**
|
|
987
991
|
* Callback fired when the button is clicked. Supports async functions for loading state.
|
|
988
992
|
*/
|
|
@@ -2820,6 +2824,7 @@ export declare type EntitySelectSubEntity = {
|
|
|
2820
2824
|
subName: string;
|
|
2821
2825
|
subAvatar?: string;
|
|
2822
2826
|
subSearchKeys?: string[];
|
|
2827
|
+
subDeactivated?: boolean;
|
|
2823
2828
|
};
|
|
2824
2829
|
|
|
2825
2830
|
declare type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? [...Acc, N][number] : Enumerate<N, [...Acc, Acc["length"]]>;
|
|
@@ -4570,6 +4575,8 @@ declare type OneFilterPickerRootProps<Definition extends FiltersDefinition> = {
|
|
|
4570
4575
|
mode?: FiltersMode;
|
|
4571
4576
|
/** Callback fired when filters open state is changed */
|
|
4572
4577
|
onOpenChange?: (isOpen: boolean) => void;
|
|
4578
|
+
/** Display counter for the applied filters */
|
|
4579
|
+
displayCounter?: boolean;
|
|
4573
4580
|
};
|
|
4574
4581
|
|
|
4575
4582
|
/**
|