@factorialco/f0-react 4.44.0 → 4.45.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/{DocumentToolbar-D3GqxyBD.js → DocumentToolbar-CW3DaM_j.js} +1 -1
- package/dist/{DocxViewer-BIZmtyWY.js → DocxViewer-Dpj4i6ig.js} +2 -2
- package/dist/{SheetViewer-HsR5toIL.js → SheetViewer-huUU5vFM.js} +1 -1
- package/dist/{TextViewer-Dn0MDAXs.js → TextViewer-DXDZcvag.js} +1 -1
- package/dist/ai.d.ts +4 -0
- package/dist/component-status.js +1 -1
- package/dist/experimental.d.ts +11 -1
- package/dist/experimental.js +2 -2
- package/dist/{f0-BaDuQbAV.js → f0-C3TJ0moH.js} +222 -384
- package/dist/f0.d.ts +44 -0
- package/dist/f0.js +114 -114
- package/dist/i18n-provider-defaults.d.ts +4 -0
- package/dist/i18n-provider-defaults.js +5 -1
- package/dist/{index-DoDUaTro.js → index-CNi_8WQC.js} +14655 -14406
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -5209,6 +5209,10 @@ export declare const defaultTranslations: {
|
|
|
5209
5209
|
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
5210
5210
|
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
5211
5211
|
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
5212
|
+
readonly removeConfirmTitle: "Remove item?";
|
|
5213
|
+
readonly removeConfirmMessage: "This item will be removed. This action cannot be undone.";
|
|
5214
|
+
readonly removeError: "Couldn't remove the item. Please try again.";
|
|
5215
|
+
readonly removeErrorTitle: "Remove failed";
|
|
5212
5216
|
};
|
|
5213
5217
|
readonly moreInformation: "More information";
|
|
5214
5218
|
readonly validation: {
|
|
@@ -8896,12 +8900,20 @@ declare type F0EntitiesListField = F0BaseField & {
|
|
|
8896
8900
|
labels?: F0EntitiesListLabels;
|
|
8897
8901
|
/** Ids of the items that can be edited (matched against `item.id`) */
|
|
8898
8902
|
editableIds?: Array<string | number>;
|
|
8903
|
+
/** Ids of the items that can be removed (matched against `item.id`) */
|
|
8904
|
+
removableIds?: Array<string | number>;
|
|
8899
8905
|
/** Maximum number of rows allowed */
|
|
8900
8906
|
maxItems?: number;
|
|
8901
8907
|
/** Per-column presentation options, keyed by item-schema property name */
|
|
8902
8908
|
columns?: Record<string, F0EntitiesListColumnConfig>;
|
|
8903
8909
|
/** Custom trailing actions per row (resolved per row) */
|
|
8904
8910
|
rowActions?: (item: EntitiesListItem, index: number) => F0EntitiesListRowAction[];
|
|
8911
|
+
/** Persistence hook for removing a row (runs after the user confirms) */
|
|
8912
|
+
onRemove?: (item: EntitiesListItem) => Promise<{
|
|
8913
|
+
success: boolean;
|
|
8914
|
+
} | void>;
|
|
8915
|
+
/** Per-item confirmation copy for the remove action */
|
|
8916
|
+
confirmRemove?: (item: EntitiesListItem) => ConfirmDialogOptions;
|
|
8905
8917
|
/** Conditional rendering based on another field's value */
|
|
8906
8918
|
renderIf?: EntitiesListFieldRenderIf;
|
|
8907
8919
|
};
|
|
@@ -9033,6 +9045,16 @@ declare interface F0EntitiesListOptions<T = EntitiesListItem> {
|
|
|
9033
9045
|
* (pencil) action that opens the edit dialog.
|
|
9034
9046
|
*/
|
|
9035
9047
|
editableIds?: Array<string | number>;
|
|
9048
|
+
/**
|
|
9049
|
+
* Restricts which items can be removed, matched against each item's `id`
|
|
9050
|
+
* property. The remove counterpart to {@link editableIds}, and independent
|
|
9051
|
+
* of it — a row can be editable but not removable, or vice versa. When
|
|
9052
|
+
* omitted, every item is removable. Items without an `id` (e.g. rows just
|
|
9053
|
+
* added by the user and not yet persisted) stay removable. A row hidden from
|
|
9054
|
+
* this list shows no remove action (`list-view`) / no remove button
|
|
9055
|
+
* (`editable-table`).
|
|
9056
|
+
*/
|
|
9057
|
+
removableIds?: Array<string | number>;
|
|
9036
9058
|
/** Minimum number of rows required (defaults to 1 unless the field is optional) */
|
|
9037
9059
|
minItems?: number;
|
|
9038
9060
|
/** Maximum number of rows allowed. When reached the add button is hidden. */
|
|
@@ -9046,6 +9068,28 @@ declare interface F0EntitiesListOptions<T = EntitiesListItem> {
|
|
|
9046
9068
|
* update or remove the row.
|
|
9047
9069
|
*/
|
|
9048
9070
|
rowActions?: (item: T, index: number) => F0EntitiesListRowAction<T>[];
|
|
9071
|
+
/**
|
|
9072
|
+
* Persistence hook for removing a row — the delete counterpart to
|
|
9073
|
+
* `createFormDefinition` (add) and `updateFormDefinition` (edit). Called with
|
|
9074
|
+
* the row's item **after** the user confirms the destructive action. Return
|
|
9075
|
+
* `{ success: false }` or throw to keep the row and surface an error; return
|
|
9076
|
+
* `{ success: true }` (or nothing) to drop it from the field value.
|
|
9077
|
+
*
|
|
9078
|
+
* When omitted, removal is value-only (the row is spliced from the array with
|
|
9079
|
+
* no network call) — but the confirmation is still shown, per the CRUD
|
|
9080
|
+
* "Delete & destructive" guidance.
|
|
9081
|
+
*/
|
|
9082
|
+
onRemove?: (item: T) => Promise<{
|
|
9083
|
+
success: boolean;
|
|
9084
|
+
} | void>;
|
|
9085
|
+
/**
|
|
9086
|
+
* Per-item confirmation copy for the remove action, so callers can **name the
|
|
9087
|
+
* resource** and its scope (per the CRUD "Delete & destructive" doc). Receives
|
|
9088
|
+
* the row item and returns the confirmation dialog options
|
|
9089
|
+
* (`title`, `msg`, `type`, `confirm`/`cancel` labels). When omitted, a generic
|
|
9090
|
+
* default confirmation is shown.
|
|
9091
|
+
*/
|
|
9092
|
+
confirmRemove?: (item: T) => ConfirmDialogOptions;
|
|
9049
9093
|
}
|
|
9050
9094
|
|
|
9051
9095
|
/**
|
package/dist/f0.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import { hL as e, C as t, cY as r, fv as o, D as i, aY as n, c as l, F, a as d, hE as u, f as c, bk as g, bQ as C, bo as h, aZ as m, cr as
|
|
2
|
-
import { B as ts, D as rs, i as os, t as is, ar as ns, p as ls, q as Fs, o as ds, ap as us, A as cs, F as gs, am as Cs, I as hs, an as ms, J as
|
|
3
|
-
import { s as
|
|
4
|
-
import { A as
|
|
1
|
+
import { hL as e, C as t, cY as r, fv as o, D as i, aY as n, c as l, F, a as d, hE as u, f as c, bk as g, bQ as C, bo as h, aZ as m, cr as b, d$ as p, aQ as A, bx as S, a_ as D, au as T, e6 as P, a0 as y, aC as v, cD as I, g as f, bM as k, cE as L, e5 as E, e2 as x, aK as R, hz as B, hQ as w, bR as M, V as U, b7 as V, d as O, e as _, b3 as N, bU as z, j as G, ck as H, e7 as j, hG as Q, bb as W, hH as X, hJ as Y, b4 as Z, ac as J, hK as K, cF as $, c$ as q, hN as aa, cU as sa, cV as ea, an as ta, gG as ra, P as oa, cZ as ia, hI as na, cW as la, hM as Fa, hR as da, hw as ua, hx as ca, hy as ga, cX as Ca, hP as ha, hF as ma, hC as ba, hB as pa, ai as Aa, c_ as Sa, gj as Da, fY as Ta, gr as Pa, gC as ya, hO as va, b1 as Ia, ga as fa, cT as ka, cQ as La, cS as Ea, cP as xa, hD as Ra, gJ as Ba, gt as wa, gn as Ma, gd as Ua, hU as Va, cH as Oa, cR as _a, hT as Na, by as za, e0 as Ga, fX as Ha, ge as ja, b as Qa, bB as Wa, gI as Xa, a$ as Ya, e1 as Za, hA as Ja, gp as Ka, aX as $a, go as qa, hS as as, ah as ss } from "./F0CanvasPanel-VGTPb68G.js";
|
|
2
|
+
import { B as ts, D as rs, i as os, t as is, ar as ns, p as ls, q as Fs, o as ds, ap as us, A as cs, F as gs, am as Cs, I as hs, an as ms, J as bs, O as ps, a5 as As, V as Ss, ao as Ds, X as Ts, au as Ps, aq as ys, _ as vs, a6 as Is, a0 as fs, a1 as ks, Q as Ls, k as Es, G as xs, l as Rs, H as Bs, L as ws, m as Ms, P as Us, ag as Vs, ah as Os, ai as _s, R as Ns, S as zs, ad as Gs, ac as Hs, a7 as js, af as Qs, ae as Ws, a3 as Xs, as as Ys, b as Zs, aj as Js, ak as Ks, al as $s, E as qs, r as ae, h as se, y as ee, x as te, w as re, v as oe, u as ie, z as ne, j as le, aa as Fe, Z as de, N as ue, M as ce, e as ge, g as Ce, ay as he, C as me, K as be, a8 as pe, s as Ae, U as Se, ab as De, W as Te, Y as Pe, a9 as ye, $ as ve, a4 as Ie, a2 as fe, at as ke, av as Le, aw as Ee, ax as xe } from "./f0-C3TJ0moH.js";
|
|
3
|
+
import { s as Be, t as we, I as Me, v as Ue, D as Ve, bj as Oe, bi as _e, bc as Ne, H as ze, a$ as Ge, a_ as He, b0 as je, b1 as Qe, b3 as We, b4 as Xe, ac as Ye, ab as Ze, T as Je, af as Ke, W as $e, K as qe, ah as at, N as st, w as et, bk as tt, ad as rt, ae as ot, Q as it, O as nt, x as lt, aZ as Ft, P as dt, z as ut, E as ct, ag as gt, U as Ct, ai as ht, aT as mt, aV as bt, y as pt, G as At, bm as St, n as Dt, o as Tt, bb as Pt, bg as yt, bg as vt, bh as It, aJ as ft, b7 as kt, b6 as Lt, bl as Et, a8 as xt, b9 as Rt, ba as Bt, J as wt, bn as Mt, bo as Ut, h as Vt, e as Ot, bd as _t, be as Nt, bf as zt, b2 as Gt, aE as Ht, b8 as jt, f as Qt, i as Wt, b5 as Xt, bp as Yt } from "./index-CNi_8WQC.js";
|
|
4
|
+
import { A as Jt, C as Kt, t as $t, s as qt, v as ar, y as sr, l as er, i as tr, q as rr, z as or, B as ir, p as nr, r as lr, j as Fr, M as dr, e as ur, g as cr, k as gr, F as Cr, T as hr, w as mr, h as br, a as pr, n as Ar, m as Sr, o as Dr, b as Tr, f as Pr, x as yr, c as vr, d as Ir, u as fr } from "./F0AiProcessingOverlay-rViVqtAb.js";
|
|
5
5
|
import { defaultTranslations as Lr } from "./i18n-provider-defaults.js";
|
|
6
6
|
export {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
Jt as AiChatTranslationsProvider,
|
|
8
|
+
Be as AreaChart,
|
|
9
9
|
e as Await,
|
|
10
|
-
|
|
10
|
+
we as BarChart,
|
|
11
11
|
ts as BarChartSkeleton,
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
Me as CardSelectableContainer,
|
|
13
|
+
Ue as CategoryBarChart,
|
|
14
14
|
t as ChatSpinner,
|
|
15
15
|
r as Chip,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
Kt as CollapsibleGroup,
|
|
17
|
+
Ve as ComboChart,
|
|
18
|
+
Oe as DATA_COLLECTION_URL_PARAMS,
|
|
19
|
+
_e as DATA_COLLECTION_URL_PARAM_PREFIX,
|
|
20
20
|
rs as Dashboard,
|
|
21
21
|
os as DataChartEmptyStateView,
|
|
22
22
|
o as DataTestIdWrapper,
|
|
23
|
-
|
|
23
|
+
Ne as DndProvider,
|
|
24
24
|
i as DropOverlay,
|
|
25
25
|
n as EmojiImage,
|
|
26
26
|
is as F0Accordion,
|
|
27
|
-
|
|
27
|
+
ze as F0ActionBar,
|
|
28
28
|
l as F0ActionItem,
|
|
29
29
|
F as F0AiChat,
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
$t as F0AiChatCreditsButton,
|
|
31
|
+
qt as F0AiChatHeader,
|
|
32
32
|
ar as F0AiChatHistory,
|
|
33
33
|
d as F0AiChatProvider,
|
|
34
34
|
sr as F0AiChatTextArea,
|
|
@@ -41,7 +41,7 @@ export {
|
|
|
41
41
|
ir as F0AiProcessingOverlay,
|
|
42
42
|
nr as F0AiProposalCard,
|
|
43
43
|
lr as F0AiTableCard,
|
|
44
|
-
|
|
44
|
+
Ge as F0Alert,
|
|
45
45
|
ns as F0AnalyticsDashboard,
|
|
46
46
|
ls as F0AudioPlayer,
|
|
47
47
|
Fs as F0AudioPlayerCard,
|
|
@@ -50,10 +50,10 @@ export {
|
|
|
50
50
|
C as F0AvatarAlert,
|
|
51
51
|
h as F0AvatarCompany,
|
|
52
52
|
m as F0AvatarDate,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
b as F0AvatarEmoji,
|
|
54
|
+
p as F0AvatarFile,
|
|
55
|
+
A as F0AvatarIcon,
|
|
56
|
+
S as F0AvatarList,
|
|
57
57
|
D as F0AvatarModule,
|
|
58
58
|
T as F0AvatarPerson,
|
|
59
59
|
P as F0AvatarTeam,
|
|
@@ -67,41 +67,41 @@ export {
|
|
|
67
67
|
f as F0CanvasPanel,
|
|
68
68
|
k as F0Card,
|
|
69
69
|
L as F0CardRow,
|
|
70
|
-
|
|
70
|
+
E as F0Checkbox,
|
|
71
71
|
cs as F0ChipList,
|
|
72
72
|
cr as F0ClarifyingPanel,
|
|
73
73
|
gs as F0DataChart,
|
|
74
|
-
|
|
74
|
+
He as F0DatePicker,
|
|
75
75
|
Cs as F0DemoCard,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
x as F0Dialog,
|
|
77
|
+
je as F0DialogAlikeContext,
|
|
78
|
+
Qe as F0DialogAlikeProvider,
|
|
79
79
|
R as F0DialogContext,
|
|
80
80
|
B as F0DialogProvider,
|
|
81
81
|
hs as F0Drawer,
|
|
82
|
-
|
|
82
|
+
We as F0DurationInput,
|
|
83
83
|
w as F0EventCatcherProvider,
|
|
84
84
|
ms as F0FAQCard,
|
|
85
85
|
M as F0FileItem,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
bs as F0FilterPickerContent,
|
|
87
|
+
Xe as F0Form,
|
|
88
|
+
ps as F0FormField,
|
|
89
|
+
As as F0GridStack,
|
|
90
90
|
gr as F0HILActionConfirmation,
|
|
91
|
-
|
|
91
|
+
Ss as F0Heading,
|
|
92
92
|
U as F0Icon,
|
|
93
|
-
|
|
93
|
+
V as F0Link,
|
|
94
94
|
Ds as F0ModuleCard,
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
Ye as F0NotesTextEditor,
|
|
96
|
+
Ze as F0NotesTextEditorSkeleton,
|
|
97
97
|
Je as F0NumberInput,
|
|
98
|
-
|
|
98
|
+
O as F0OneIcon,
|
|
99
99
|
_ as F0OneSwitch,
|
|
100
100
|
Ts as F0PdfViewer,
|
|
101
101
|
Ps as F0Provider,
|
|
102
102
|
ys as F0QuestionCardMultiStep,
|
|
103
103
|
N as F0RichTextDisplay,
|
|
104
|
-
|
|
104
|
+
Ke as F0RichTextEditor,
|
|
105
105
|
z as F0SearchInput,
|
|
106
106
|
G as F0Select,
|
|
107
107
|
vs as F0Slider,
|
|
@@ -113,48 +113,48 @@ export {
|
|
|
113
113
|
X as F0TagList,
|
|
114
114
|
Y as F0TagPerson,
|
|
115
115
|
Z as F0TagRaw,
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
J as F0TagStatus,
|
|
117
|
+
K as F0TagTeam,
|
|
118
118
|
fs as F0Text,
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
$e as F0TextAreaInput,
|
|
120
|
+
$ as F0TextInput,
|
|
121
121
|
ks as F0TimelineRow,
|
|
122
122
|
Ls as F0WizardForm,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
123
|
+
qe as F1SearchBox,
|
|
124
|
+
at as FILE_TYPES,
|
|
125
|
+
q as FileItem,
|
|
126
126
|
Cr as FormCardValueFormatterProvider,
|
|
127
|
-
|
|
127
|
+
Es as FunnelChartSkeleton,
|
|
128
128
|
aa as GROUP_ID_SYMBOL,
|
|
129
|
-
|
|
129
|
+
xs as GaugeChartSkeleton,
|
|
130
130
|
Rs as HeatmapChartSkeleton,
|
|
131
131
|
Bs as HomeLayout,
|
|
132
|
-
|
|
132
|
+
st as Input,
|
|
133
133
|
ws as Layout,
|
|
134
|
-
|
|
134
|
+
et as LineChart,
|
|
135
135
|
Ms as LineChartSkeleton,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
tt as MAX_URL_FILTER_VALUES,
|
|
137
|
+
rt as NotesTextEditor,
|
|
138
|
+
ot as NotesTextEditorSkeleton,
|
|
139
|
+
it as NumberInput,
|
|
140
140
|
sa as OneCalendar,
|
|
141
141
|
ea as OneCalendarInternal,
|
|
142
142
|
ta as OneEllipsis,
|
|
143
|
-
|
|
143
|
+
nt as OneEmptyState,
|
|
144
144
|
ra as OneFilterPicker,
|
|
145
|
-
|
|
145
|
+
lt as PieChart,
|
|
146
146
|
Us as PieChartSkeleton,
|
|
147
147
|
oa as PongBall,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
148
|
+
Ft as PrivacyModeProvider,
|
|
149
|
+
Vs as ProductBlankslate,
|
|
150
|
+
dt as ProductCard,
|
|
151
|
+
Os as ProductModal,
|
|
152
152
|
_s as ProductWidget,
|
|
153
|
-
|
|
154
|
-
|
|
153
|
+
ut as ProgressBarChart,
|
|
154
|
+
ct as RadarChart,
|
|
155
155
|
Ns as RadarChartSkeleton,
|
|
156
156
|
ia as RichTextDisplay,
|
|
157
|
-
|
|
157
|
+
gt as RichTextEditor,
|
|
158
158
|
zs as StandardLayout,
|
|
159
159
|
Gs as SurveyAllQuestionsLoadingSkeleton,
|
|
160
160
|
Hs as SurveyAnsweringForm,
|
|
@@ -163,34 +163,34 @@ export {
|
|
|
163
163
|
Ws as SurveySteppedLoadingSkeleton,
|
|
164
164
|
Xs as Tag,
|
|
165
165
|
na as TagCounter,
|
|
166
|
-
|
|
166
|
+
Ct as Textarea,
|
|
167
167
|
hr as ThreadItem,
|
|
168
168
|
mr as ThreadListSkeleton,
|
|
169
169
|
Ys as ToastProvider,
|
|
170
170
|
Zs as TwoColumnLayout,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
171
|
+
ht as UPLOAD_INPUT_ID,
|
|
172
|
+
mt as UpsellRequestResponseDialog,
|
|
173
|
+
Js as UpsellingAlert,
|
|
174
|
+
Ks as UpsellingBanner,
|
|
175
|
+
bt as UpsellingButton,
|
|
176
|
+
$s as UpsellingPopover,
|
|
177
|
+
pt as VerticalBarChart,
|
|
178
178
|
la as WeekStartDay,
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
At as actionBarStatuses,
|
|
180
|
+
br as actionItemStatuses,
|
|
181
181
|
Fa as adaptDataAdapterToInfiniteScroll,
|
|
182
|
-
|
|
183
|
-
|
|
182
|
+
pr as aiTranslations,
|
|
183
|
+
qs as alertVariantOptions,
|
|
184
184
|
ae as audioPlayerSizes,
|
|
185
185
|
se as avatarVariants,
|
|
186
|
-
|
|
186
|
+
St as buildDataCollectionUrlParams,
|
|
187
187
|
da as buildTranslations,
|
|
188
188
|
ee as buttonDropdownModes,
|
|
189
189
|
te as buttonDropdownSizes,
|
|
190
190
|
re as buttonDropdownVariants,
|
|
191
191
|
oe as buttonSizes,
|
|
192
|
-
|
|
193
|
-
|
|
192
|
+
Dt as buttonToggleSizes,
|
|
193
|
+
Tt as buttonToggleVariants,
|
|
194
194
|
ie as buttonVariants,
|
|
195
195
|
ne as cardAlertVariants,
|
|
196
196
|
ua as cardImageAspectRatios,
|
|
@@ -200,8 +200,8 @@ export {
|
|
|
200
200
|
Ca as chipVariants,
|
|
201
201
|
Fe as computeSectionEndIds,
|
|
202
202
|
de as configurePdfWorker,
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
Ar as contentTypes,
|
|
204
|
+
Pt as createAtlaskitDriver,
|
|
205
205
|
ha as createDataSourceDefinition,
|
|
206
206
|
ue as createF0FormDefinitionTester,
|
|
207
207
|
ce as createF0FormTester,
|
|
@@ -211,20 +211,20 @@ export {
|
|
|
211
211
|
me as datepickerSizes,
|
|
212
212
|
Lr as defaultTranslations,
|
|
213
213
|
ma as defineAvailableForm,
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
214
|
+
be as describeFormSchema,
|
|
215
|
+
yt as dialog,
|
|
216
|
+
vt as dialogs,
|
|
217
|
+
It as drawers,
|
|
218
|
+
ba as durationInputSizes,
|
|
219
|
+
pa as durationUnits,
|
|
220
220
|
ft as evaluateRenderIf,
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
Aa as experimental,
|
|
222
|
+
Sa as f0FileItemSizes,
|
|
223
223
|
Da as f0FormField,
|
|
224
224
|
Ta as fieldsToSeconds,
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
225
|
+
pe as flattenElements,
|
|
226
|
+
Ae as formatPlaybackTime,
|
|
227
|
+
Se as forms,
|
|
228
228
|
kt as generateAnchorId,
|
|
229
229
|
Pa as getAnimationVariants,
|
|
230
230
|
ya as getDataCollectionStorageKey,
|
|
@@ -233,26 +233,26 @@ export {
|
|
|
233
233
|
fa as getF0Config,
|
|
234
234
|
ka as getGranularityDefinition,
|
|
235
235
|
La as getGranularityDefinitions,
|
|
236
|
-
|
|
236
|
+
Ea as getGranularitySimpleDefinition,
|
|
237
237
|
Lt as getSchemaDefinition,
|
|
238
|
-
|
|
238
|
+
xa as granularityDefinitions,
|
|
239
239
|
Ra as hasF0Config,
|
|
240
240
|
Ba as inferFieldType,
|
|
241
|
-
|
|
241
|
+
De as injectSectionEnds,
|
|
242
242
|
wa as isInfiniteScrollPagination,
|
|
243
243
|
Ma as isPageBasedPagination,
|
|
244
244
|
Ua as isZodType,
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
245
|
+
Te as linkVariants,
|
|
246
|
+
Sr as markdownRenderers,
|
|
247
|
+
Va as mergeDataCollectionFilters,
|
|
248
|
+
Oa as modules,
|
|
249
249
|
Dr as oneIconSizes,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
250
|
+
Et as parseDataCollectionUrlParams,
|
|
251
|
+
Pe as pdfScales,
|
|
252
|
+
xt as predefinedPresets,
|
|
253
253
|
_a as rangeSeparator,
|
|
254
254
|
Na as readDataCollectionStorage,
|
|
255
|
-
|
|
255
|
+
ye as reconstructElements,
|
|
256
256
|
za as resolveDataCollectionFilters,
|
|
257
257
|
Rt as resolveItemNeighbors,
|
|
258
258
|
Bt as resolveWindowNeighbors,
|
|
@@ -260,39 +260,39 @@ export {
|
|
|
260
260
|
Ha as secondsToVisibleFields,
|
|
261
261
|
wt as selectSizes,
|
|
262
262
|
Mt as setDataCollectionUrlParams,
|
|
263
|
-
|
|
263
|
+
ve as sliderTooltipModes,
|
|
264
264
|
Ut as syncDataCollectionUrlParams,
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
265
|
+
Ie as tagDotColors,
|
|
266
|
+
fe as timelineRowStatuses,
|
|
267
|
+
ke as toasts,
|
|
268
268
|
ja as unwrapZodSchema,
|
|
269
269
|
Qa as useAiChat,
|
|
270
270
|
Tr as useAiChatTranslations,
|
|
271
|
-
|
|
271
|
+
Vt as useAudioPlayer,
|
|
272
272
|
Pr as useCanvasEntity,
|
|
273
273
|
yr as useChatHistory,
|
|
274
274
|
Wa as useData,
|
|
275
275
|
Xa as useDataSource,
|
|
276
|
-
|
|
276
|
+
Ot as useDataSourceItemNavigation,
|
|
277
277
|
_t as useDndEvents,
|
|
278
278
|
Nt as useDraggable,
|
|
279
279
|
zt as useDroppableList,
|
|
280
280
|
Ya as useEmojiConfetti,
|
|
281
281
|
Za as useF0AiFormRegistry,
|
|
282
|
-
|
|
282
|
+
Ja as useF0Dialog,
|
|
283
283
|
Gt as useF0DialogAlikeContext,
|
|
284
284
|
Ht as useF0Form,
|
|
285
285
|
jt as useF0FormDefinition,
|
|
286
286
|
vr as useFormCardValueFormatter,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
287
|
+
Le as useFormComponent,
|
|
288
|
+
Ka as useGroups,
|
|
289
|
+
Ee as useIsDesktop,
|
|
290
|
+
xe as useIsMobile,
|
|
291
291
|
Qt as useItemNeighbors,
|
|
292
292
|
Wt as usePrivacyMode,
|
|
293
|
-
|
|
293
|
+
$a as useReducedMotion,
|
|
294
294
|
Xt as useSchemaDefinition,
|
|
295
|
-
|
|
295
|
+
qa as useSelectable,
|
|
296
296
|
Ir as useSetFormCardValueFormatter,
|
|
297
297
|
fr as useToolCallId,
|
|
298
298
|
as as useXRay,
|
|
@@ -889,6 +889,10 @@ export declare const defaultTranslations: {
|
|
|
889
889
|
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
890
890
|
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
891
891
|
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
892
|
+
readonly removeConfirmTitle: "Remove item?";
|
|
893
|
+
readonly removeConfirmMessage: "This item will be removed. This action cannot be undone.";
|
|
894
|
+
readonly removeError: "Couldn't remove the item. Please try again.";
|
|
895
|
+
readonly removeErrorTitle: "Remove failed";
|
|
892
896
|
};
|
|
893
897
|
readonly moreInformation: "More information";
|
|
894
898
|
readonly validation: {
|
|
@@ -911,7 +911,11 @@ const e = {
|
|
|
911
911
|
view: "View",
|
|
912
912
|
addBlockedHint: "Finish filling out the last item you just added in order to add another one",
|
|
913
913
|
addBlockedErrorHint: "Fix the errors in the existing items before adding another one",
|
|
914
|
-
addBlockedMaxHint: "You've reached the maximum number of items"
|
|
914
|
+
addBlockedMaxHint: "You've reached the maximum number of items",
|
|
915
|
+
removeConfirmTitle: "Remove item?",
|
|
916
|
+
removeConfirmMessage: "This item will be removed. This action cannot be undone.",
|
|
917
|
+
removeError: "Couldn't remove the item. Please try again.",
|
|
918
|
+
removeErrorTitle: "Remove failed"
|
|
915
919
|
},
|
|
916
920
|
moreInformation: "More information",
|
|
917
921
|
validation: {
|