@factorialco/f0-react 4.37.1 → 4.39.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/{F0AiProcessingOverlay-IiFgI7pP.js → F0AiProcessingOverlay-BQNKYl8G.js} +4284 -4598
- package/dist/{F0CanvasPanel-4WxLQ2QU.js → F0CanvasPanel-Eg6MeaXo.js} +27705 -27370
- package/dist/ai.d.ts +20 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +203 -0
- package/dist/experimental.js +43 -42
- package/dist/f0.d.ts +434 -4
- package/dist/f0.js +18052 -21976
- package/dist/i18n-provider-defaults.d.ts +15 -0
- package/dist/i18n-provider-defaults.js +16 -1
- package/dist/{useDataCollectionSource-xnIiHXMP.js → index-EXdkVTaH.js} +70166 -64918
- package/dist/index.css +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/useDataCollectionSource.css +0 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1754,6 +1754,9 @@ declare type DataListProps = {
|
|
|
1754
1754
|
export declare type DateGroup = "today" | "yesterday" | "thisMonth" | "older";
|
|
1755
1755
|
|
|
1756
1756
|
export declare const defaultTranslations: {
|
|
1757
|
+
readonly common: {
|
|
1758
|
+
readonly selectPlaceholder: "Select";
|
|
1759
|
+
};
|
|
1757
1760
|
readonly countries: {
|
|
1758
1761
|
ad: string;
|
|
1759
1762
|
ae: string;
|
|
@@ -2059,6 +2062,9 @@ export declare const defaultTranslations: {
|
|
|
2059
2062
|
readonly saveFailed: "Save failed";
|
|
2060
2063
|
};
|
|
2061
2064
|
readonly addRow: "Add row";
|
|
2065
|
+
readonly removeRow: "Remove row";
|
|
2066
|
+
readonly editRow: "Edit";
|
|
2067
|
+
readonly reorderRow: "Drag to reorder";
|
|
2062
2068
|
};
|
|
2063
2069
|
readonly itemsCount: "items";
|
|
2064
2070
|
readonly emptyStates: {
|
|
@@ -2601,6 +2607,15 @@ export declare const defaultTranslations: {
|
|
|
2601
2607
|
readonly invalidFileType: "File type not accepted. Accepted formats: {{types}}";
|
|
2602
2608
|
readonly maxFilesReached: "Maximum {{maxFiles}} files";
|
|
2603
2609
|
};
|
|
2610
|
+
readonly entitiesList: {
|
|
2611
|
+
readonly add: "Add";
|
|
2612
|
+
readonly edit: "Edit";
|
|
2613
|
+
readonly remove: "Remove";
|
|
2614
|
+
readonly view: "View";
|
|
2615
|
+
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
2616
|
+
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
2617
|
+
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
2618
|
+
};
|
|
2604
2619
|
readonly moreInformation: "More information";
|
|
2605
2620
|
readonly validation: {
|
|
2606
2621
|
readonly required: "This field is required";
|
|
@@ -3948,6 +3963,11 @@ declare type F0TagRawProps = {
|
|
|
3948
3963
|
* Extra classes merged onto the tag (e.g. to give it a background).
|
|
3949
3964
|
*/
|
|
3950
3965
|
className?: string;
|
|
3966
|
+
/**
|
|
3967
|
+
* The size of the tag
|
|
3968
|
+
* @default "md"
|
|
3969
|
+
*/
|
|
3970
|
+
size?: "md" | "sm";
|
|
3951
3971
|
} & ({
|
|
3952
3972
|
icon: IconType;
|
|
3953
3973
|
onlyIcon: true;
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-
|
|
1
|
+
import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-Eg6MeaXo.js";
|
|
2
2
|
import { defaultTranslations as c } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-
|
|
3
|
+
import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-BQNKYl8G.js";
|
|
4
4
|
export {
|
|
5
5
|
P as AiChatTranslationsProvider,
|
|
6
6
|
e as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3112,6 +3112,9 @@ declare const daytimePageVariants: (props?: ({
|
|
|
3112
3112
|
})) | undefined) => string;
|
|
3113
3113
|
|
|
3114
3114
|
declare const defaultTranslations: {
|
|
3115
|
+
readonly common: {
|
|
3116
|
+
readonly selectPlaceholder: "Select";
|
|
3117
|
+
};
|
|
3115
3118
|
readonly countries: {
|
|
3116
3119
|
ad: string;
|
|
3117
3120
|
ae: string;
|
|
@@ -3417,6 +3420,9 @@ declare const defaultTranslations: {
|
|
|
3417
3420
|
readonly saveFailed: "Save failed";
|
|
3418
3421
|
};
|
|
3419
3422
|
readonly addRow: "Add row";
|
|
3423
|
+
readonly removeRow: "Remove row";
|
|
3424
|
+
readonly editRow: "Edit";
|
|
3425
|
+
readonly reorderRow: "Drag to reorder";
|
|
3420
3426
|
};
|
|
3421
3427
|
readonly itemsCount: "items";
|
|
3422
3428
|
readonly emptyStates: {
|
|
@@ -3959,6 +3965,15 @@ declare const defaultTranslations: {
|
|
|
3959
3965
|
readonly invalidFileType: "File type not accepted. Accepted formats: {{types}}";
|
|
3960
3966
|
readonly maxFilesReached: "Maximum {{maxFiles}} files";
|
|
3961
3967
|
};
|
|
3968
|
+
readonly entitiesList: {
|
|
3969
|
+
readonly add: "Add";
|
|
3970
|
+
readonly edit: "Edit";
|
|
3971
|
+
readonly remove: "Remove";
|
|
3972
|
+
readonly view: "View";
|
|
3973
|
+
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
3974
|
+
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
3975
|
+
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
3976
|
+
};
|
|
3962
3977
|
readonly moreInformation: "More information";
|
|
3963
3978
|
readonly validation: {
|
|
3964
3979
|
readonly required: "This field is required";
|
|
@@ -4184,6 +4199,8 @@ declare type DropdownProps = Omit<DropdownInternalProps, (typeof privateProps_5)
|
|
|
4184
4199
|
onOpenChange?: (open: boolean) => void;
|
|
4185
4200
|
} & WithDataTestIdProps;
|
|
4186
4201
|
|
|
4202
|
+
/* Excluded from this release type: EditableColumn */
|
|
4203
|
+
|
|
4187
4204
|
/**
|
|
4188
4205
|
* Map of the attributes modified in a cell update, keyed by record key.
|
|
4189
4206
|
* Each entry is a `[previousValue, newValue]` tuple.
|
|
@@ -4225,6 +4242,11 @@ declare type EditableTableColumnDefinition<R extends RecordType, Sortings extend
|
|
|
4225
4242
|
* function whose return value isn't statically known.
|
|
4226
4243
|
*/
|
|
4227
4244
|
selectConfig?: SelectCellConfig<R>;
|
|
4245
|
+
/**
|
|
4246
|
+
* Configuration for `"text"` cells. Sets the input type and an optional
|
|
4247
|
+
* leading icon (url/email get one by default).
|
|
4248
|
+
*/
|
|
4249
|
+
textConfig?: TextCellConfig;
|
|
4228
4250
|
/**
|
|
4229
4251
|
* Configuration for `"number"` cells. Accepts constraints (`min`, `max`),
|
|
4230
4252
|
* stepping (`step`), formatting (`maxDecimals`, `locale`), and units.
|
|
@@ -5311,6 +5333,152 @@ export declare type F0FileItemSize = (typeof f0FileItemSizes)[number];
|
|
|
5311
5333
|
|
|
5312
5334
|
export declare const f0FileItemSizes: readonly ["md", "lg"];
|
|
5313
5335
|
|
|
5336
|
+
/**
|
|
5337
|
+
* F0FormEditableTable is experimental — its API may change without a major bump.
|
|
5338
|
+
*/
|
|
5339
|
+
export declare const F0FormEditableTable: typeof F0FormEditableTableBase;
|
|
5340
|
+
|
|
5341
|
+
/**
|
|
5342
|
+
* A lightweight, fully controlled editable table built on the OneTable
|
|
5343
|
+
* primitives and the editable-table cell components (`text`, `number`,
|
|
5344
|
+
* `money`, `date`, `select`, ...), with optional drag-to-reorder rows,
|
|
5345
|
+
* per-row removal and an add-row action — no data collection required.
|
|
5346
|
+
*
|
|
5347
|
+
* The parent owns the `items` array: cell edits are reported via
|
|
5348
|
+
* `onCellChange`, reorders via `onReorderRows`, removals via `onRemoveRow`,
|
|
5349
|
+
* and additions via `addRow.onClick`.
|
|
5350
|
+
*/
|
|
5351
|
+
declare function F0FormEditableTableBase<R extends RecordType>({ columns: columnsProp, items, getRowId, onCellChange, sortableRows, onReorderRows, onRemoveRow, onEditRow, canEditRow, rowActions, getCellError, addRow, editLabel: editLabelProp, removeLabel: removeLabelProp, bordered, disabled, }: F0FormEditableTableProps<R>): JSX_2.Element;
|
|
5352
|
+
|
|
5353
|
+
/**
|
|
5354
|
+
* Column definition for F0FormEditableTable.
|
|
5355
|
+
*
|
|
5356
|
+
* Reuses the editable-table column contract — same `editType` cell types
|
|
5357
|
+
* (`text`, `number`, `money`, `date`, `select`, `display-only`, `disabled`),
|
|
5358
|
+
* `selectConfig`, `numberConfig`, `dateConfig`, `formula` and `cellHint` —
|
|
5359
|
+
* minus the data-collection-only options (sorting, summaries, column
|
|
5360
|
+
* settings, header groups).
|
|
5361
|
+
*/
|
|
5362
|
+
export declare type F0FormEditableTableColumn<R extends RecordType> = Omit<EditableColumn<R>, "render" | "sorting" | "summary" | "summaryPlaceholder" | "order" | "hidden" | "noHiding" | "headerGroupId" | "sticky" | "id"> & {
|
|
5363
|
+
/** The record key this column reads from and writes to. */
|
|
5364
|
+
id: string;
|
|
5365
|
+
/**
|
|
5366
|
+
* Optional custom renderer for read-only display (same contract as the
|
|
5367
|
+
* editable table). When omitted, the raw value at `item[id]` is shown.
|
|
5368
|
+
*/
|
|
5369
|
+
render?: EditableColumn<R>["render"];
|
|
5370
|
+
};
|
|
5371
|
+
|
|
5372
|
+
/**
|
|
5373
|
+
* Props for {@link F0FormEditableTable}: a lightweight, fully controlled editable
|
|
5374
|
+
* table built on the OneTable primitives and the editable-table cell
|
|
5375
|
+
* components — no data collection (source, adapters, filters) required.
|
|
5376
|
+
*/
|
|
5377
|
+
export declare type F0FormEditableTableProps<R extends RecordType> = {
|
|
5378
|
+
/** Column definitions (see {@link F0FormEditableTableColumn}). */
|
|
5379
|
+
columns: ReadonlyArray<F0FormEditableTableColumn<R>>;
|
|
5380
|
+
/**
|
|
5381
|
+
* Rows in display order. The table is controlled: edits, reorders and
|
|
5382
|
+
* removals are reported via callbacks and the parent updates `items`.
|
|
5383
|
+
*/
|
|
5384
|
+
items: R[];
|
|
5385
|
+
/**
|
|
5386
|
+
* Stable id per row, used as the React key and the drag identity.
|
|
5387
|
+
* Defaults to `String(item.id)` and falls back to the index.
|
|
5388
|
+
*/
|
|
5389
|
+
getRowId?: (item: R, index: number) => string;
|
|
5390
|
+
/**
|
|
5391
|
+
* Called when a cell value changes (same contract as the editableTable
|
|
5392
|
+
* visualization). Resolve with nothing for success, or a
|
|
5393
|
+
* `{ columnId: message }` record to show per-cell errors.
|
|
5394
|
+
*/
|
|
5395
|
+
onCellChange: (params: EditableTableOnCellChangeParams<R>) => Promise<void | Record<string, string>>;
|
|
5396
|
+
/** Shows a leading drag handle on each row to reorder by dragging. */
|
|
5397
|
+
sortableRows?: boolean;
|
|
5398
|
+
/** Called after a row is dropped in a new position. */
|
|
5399
|
+
onReorderRows?: (params: {
|
|
5400
|
+
/** All items in their new order. */
|
|
5401
|
+
items: R[];
|
|
5402
|
+
/** Index the row was dragged from. */
|
|
5403
|
+
from: number;
|
|
5404
|
+
/** Index the row was dropped at. */
|
|
5405
|
+
to: number;
|
|
5406
|
+
/** The moved record. */
|
|
5407
|
+
movedItem: R;
|
|
5408
|
+
}) => void;
|
|
5409
|
+
/** When provided, each row gets a trailing remove button. */
|
|
5410
|
+
onRemoveRow?: (item: R, index: number) => void;
|
|
5411
|
+
/**
|
|
5412
|
+
* When provided, each row gets a trailing edit (pencil) button.
|
|
5413
|
+
* Use for row editing flows that happen outside the table (e.g. a dialog).
|
|
5414
|
+
*/
|
|
5415
|
+
onEditRow?: (item: R, index: number) => void;
|
|
5416
|
+
/**
|
|
5417
|
+
* Controls per-row visibility of the edit button (only relevant when
|
|
5418
|
+
* `onEditRow` is provided). Defaults to showing it on every row.
|
|
5419
|
+
*/
|
|
5420
|
+
canEditRow?: (item: R, index: number) => boolean;
|
|
5421
|
+
/**
|
|
5422
|
+
* Custom trailing actions per row. Return the actions to show for the given
|
|
5423
|
+
* row; because it's resolved per row, the actions can depend on the row's
|
|
5424
|
+
* value (e.g. an "Archive" vs "Unarchive" toggle driven by a hidden column).
|
|
5425
|
+
* Rendered in the trailing actions column, between the edit and remove
|
|
5426
|
+
* buttons when those are also present.
|
|
5427
|
+
*/
|
|
5428
|
+
rowActions?: (item: R, index: number) => F0FormEditableTableRowAction<R>[];
|
|
5429
|
+
/**
|
|
5430
|
+
* External validation error for a cell, keyed by the column id. When it
|
|
5431
|
+
* returns a message the cell shows an error border and a tooltip with the
|
|
5432
|
+
* message on hover/focus. Use for errors coming from outside the table
|
|
5433
|
+
* (e.g. schema validation), on top of the errors `onCellChange` can return.
|
|
5434
|
+
*/
|
|
5435
|
+
getCellError?: (item: R, columnId: string, index: number) => string | undefined;
|
|
5436
|
+
/** When provided, renders an add-row button under the last row. */
|
|
5437
|
+
addRow?: {
|
|
5438
|
+
/** Button label (defaults to the i18n editable-table "Add row"). */
|
|
5439
|
+
label?: string;
|
|
5440
|
+
onClick: () => void | Promise<void>;
|
|
5441
|
+
/** Disables the add button (e.g. while an existing row is still invalid). */
|
|
5442
|
+
disabled?: boolean;
|
|
5443
|
+
/** Tooltip shown on hover while the add button is `disabled`, explaining why. */
|
|
5444
|
+
disabledTooltip?: string;
|
|
5445
|
+
};
|
|
5446
|
+
/** Label for the per-row edit action (defaults to the i18n "Edit row"). */
|
|
5447
|
+
editLabel?: string;
|
|
5448
|
+
/** Label for the per-row remove action (defaults to the i18n "Remove row"). */
|
|
5449
|
+
removeLabel?: string;
|
|
5450
|
+
/** Wraps the table in a rounded border container. @default true */
|
|
5451
|
+
bordered?: boolean;
|
|
5452
|
+
/**
|
|
5453
|
+
* Disables interaction (dragging, edit/remove/row-action buttons) while
|
|
5454
|
+
* keeping the handle and actions columns in place, so toggling it (e.g. while
|
|
5455
|
+
* a form submits) doesn't shift the layout. Cell editability is controlled
|
|
5456
|
+
* separately via each column's `editType`.
|
|
5457
|
+
*/
|
|
5458
|
+
disabled?: boolean;
|
|
5459
|
+
};
|
|
5460
|
+
|
|
5461
|
+
/**
|
|
5462
|
+
* A custom trailing action button for a row (see
|
|
5463
|
+
* {@link F0FormEditableTableProps.rowActions}).
|
|
5464
|
+
*/
|
|
5465
|
+
declare type F0FormEditableTableRowAction<R extends RecordType> = {
|
|
5466
|
+
/** Stable key within the row's action list (defaults to the label). */
|
|
5467
|
+
id?: string;
|
|
5468
|
+
/** Icon shown in the button. */
|
|
5469
|
+
icon: IconType;
|
|
5470
|
+
/** Accessible label; also shown next to the icon when `showLabel` is set. */
|
|
5471
|
+
label: string;
|
|
5472
|
+
/** Render the label next to the icon. Icon-only by default. */
|
|
5473
|
+
showLabel?: boolean;
|
|
5474
|
+
/** Use the destructive (critical) button styling. */
|
|
5475
|
+
critical?: boolean;
|
|
5476
|
+
/** Disables the button. */
|
|
5477
|
+
disabled?: boolean;
|
|
5478
|
+
/** Called when the button is clicked. */
|
|
5479
|
+
onClick: (item: R, index: number) => void | Promise<void>;
|
|
5480
|
+
};
|
|
5481
|
+
|
|
5314
5482
|
/**
|
|
5315
5483
|
* A tag rendered in a node's metadata row. Its visual is driven by the
|
|
5316
5484
|
* `TagVariant` `type`; its column identity — which toggle/label/default-
|
|
@@ -5796,6 +5964,11 @@ declare type F0TagRawProps = {
|
|
|
5796
5964
|
* Extra classes merged onto the tag (e.g. to give it a background).
|
|
5797
5965
|
*/
|
|
5798
5966
|
className?: string;
|
|
5967
|
+
/**
|
|
5968
|
+
* The size of the tag
|
|
5969
|
+
* @default "md"
|
|
5970
|
+
*/
|
|
5971
|
+
size?: "md" | "sm";
|
|
5799
5972
|
} & ({
|
|
5800
5973
|
icon: IconType;
|
|
5801
5974
|
onlyIcon: true;
|
|
@@ -7318,6 +7491,12 @@ declare type NumberCellConfig<R extends RecordType = RecordType> = {
|
|
|
7318
7491
|
step?: number;
|
|
7319
7492
|
maxDecimals?: number;
|
|
7320
7493
|
locale?: string;
|
|
7494
|
+
/**
|
|
7495
|
+
* Show the locale's thousands separators in the resting display (grouped
|
|
7496
|
+
* while blurred, ungrouped while editing). Defaults to `true`; set `false`
|
|
7497
|
+
* for numbers that shouldn't be grouped (years, IDs, …).
|
|
7498
|
+
*/
|
|
7499
|
+
grouping?: boolean;
|
|
7321
7500
|
/**
|
|
7322
7501
|
* Unit label displayed next to the number input.
|
|
7323
7502
|
* Can be a static string (e.g. `"h"`) or a function that receives the
|
|
@@ -7373,6 +7552,13 @@ declare type NumberInputInternalProps = Pick<ComponentProps<typeof Input_2>, "re
|
|
|
7373
7552
|
min?: number;
|
|
7374
7553
|
max?: number;
|
|
7375
7554
|
maxDecimals?: number;
|
|
7555
|
+
/**
|
|
7556
|
+
* Show the locale's thousands separators in the resting display (e.g.
|
|
7557
|
+
* `1,234,567`). While the field is focused the number is shown ungrouped
|
|
7558
|
+
* for easy editing. Off by default — enable it for amounts/quantities, but
|
|
7559
|
+
* leave it off for years, IDs and other non-grouped numbers. @default false
|
|
7560
|
+
*/
|
|
7561
|
+
grouping?: boolean;
|
|
7376
7562
|
onChange?: (value: number | null) => void;
|
|
7377
7563
|
units?: string;
|
|
7378
7564
|
extraContent?: ReactNode;
|
|
@@ -9729,6 +9915,23 @@ maxHeight?: number;
|
|
|
9729
9915
|
*/
|
|
9730
9916
|
export declare type TextareaProps = F0TextAreaInputProps;
|
|
9731
9917
|
|
|
9918
|
+
declare type TextCellConfig = {
|
|
9919
|
+
/**
|
|
9920
|
+
* Input type passed to the underlying text input. Also selects a default
|
|
9921
|
+
* leading icon (`url` → link, `email` → envelope) matching F0Form's text
|
|
9922
|
+
* fields. Defaults to `"text"`.
|
|
9923
|
+
*/
|
|
9924
|
+
inputType?: TextCellInputType;
|
|
9925
|
+
/**
|
|
9926
|
+
* Leading icon. Overrides the default derived from `inputType`; pass to add
|
|
9927
|
+
* an icon to a plain text cell or replace the url/email default.
|
|
9928
|
+
*/
|
|
9929
|
+
icon?: IconType;
|
|
9930
|
+
};
|
|
9931
|
+
|
|
9932
|
+
/** The HTML-ish input type of a text cell. Drives a default leading icon. */
|
|
9933
|
+
declare type TextCellInputType = "text" | "email" | "url" | "tel";
|
|
9934
|
+
|
|
9732
9935
|
/** A button rendered in the footer at the bottom of the table of contents */
|
|
9733
9936
|
export declare type TOCAction = {
|
|
9734
9937
|
label: string;
|
package/dist/experimental.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { h as Va, B as Ga, i as Ka, j as qa, k as wn, l as lt, m as tt, n as Ya, o as g, p as re, q as Be, u as te, T as Qa, r as Ja, s as Xa, R as Za, t as es, v as we, w as ts, x as nn, y as bt, z as st, A as Ee, E as ns, G as rs, H as X, J as as, K as ss, L as ce, M as or, N as is, O as os, Q as ue, S as St, U as q, V as Ue, W as ls, X as cs, Y as ds, Z as us, _ as fs, $ as ke, a0 as lr, a1 as cr, a2 as Me, a3 as xt, a4 as ms, e as dr, a5 as He, a6 as ur, a7 as Ft, a8 as Ce, a9 as me, aa as vt, ab as fr, ac as hs, ad as mr, ae as ye, af as Ne, ag as ps, ah as gs, ai as bs, aj as xs, ak as vs, al as $e, am as Tt, an as hr, ao as ys, ap as ws, aq as Ns, ar as At, as as pr, at as gr, au as Cs, av as ks, aw as yt, ax as Is, ay as br, az as Ss, aA as Fs, aB as Ts, aC as As, aD as Es, aE as xr, aF as vr, aG as yr, aH as Gt, aI as wr, aJ as Kt, aK as Nr, aL as Rs, aM as Ds, aN as Ps, aO as Cr, aP as Ls, aQ as De, aR as Xe, aS as qt, aT as kr, aU as Os, aV as rn, aW as _s, aX as zs, aY as $s, aZ as Qe, a_ as Bs, a$ as Ms, b0 as ct, b1 as Nn, b2 as Yt, b3 as js, b4 as Ws, a as Hs, b as Us, b5 as Et, b6 as Vs, g as Gs, F as Ks, b7 as qs, b8 as Ir, b9 as Ys, ba as an, bb as Qs, bc as sn, bd as Ze, be as Js, bf as Sr, bg as Fr, bh as Xs, bi as Tr, bj as Zs, bk as ei, bl as ti, bm as Ar, bn as ni, bo as ri, bp as ai, bq as on, br as si, bs as ii, bt as oi, bu as li, bv as ci, bw as di, bx as Er, by as Rr, bz as ui, bA as fi, bB as mi, bC as hi, bD as pi, bE as Dr, bF as gi, bG as bi, bH as Pr, bI as Lr, bJ as xi, bK as vi, bL as yi, bM as wi, bN as Ni, bO as Ci, bP as Or, bQ as ki, bR as Ii, bS as Si, bT as Fi, bU as Ti, bV as _r, bW as Ai, bX as Ei, bY as Ri, bZ as Di, b_ as Pi, b$ as Li, c0 as Pe, c1 as ln, c2 as cn, c3 as dn, c4 as zr, c5 as un, c6 as $r, c7 as Br, c8 as Oi, c9 as _i, ca as zi, cb as $i, cc as Bi, cd as Mi, ce as ji, cf as Cn, cg as Wi, ch as Hi, ci as kn, cj as In, ck as Sn, cl as Ui, cm as Vi, cn as Gi, co as Ki, cp as Mr, cq as qi, cr as Yi } from "./F0CanvasPanel-
|
|
2
|
-
import { cD as vm, cC as ym, cP as wm, cz as Nm, cA as Cm, cs as km, ct as Im, ct as Sm, cu as Fm, cS as Tm, cB as Am, cL as Em, cM as Rm, cQ as Dm, cv as Pm, cF as Lm, cE as Om, cw as _m, cx as zm, cN as $m, cT as Bm, cO as Mm, cR as jm, cK as Wm, cH as Hm, cJ as Um, cG as Vm, cy as Gm, cI as Km } from "./F0CanvasPanel-
|
|
1
|
+
import { h as Va, B as Ga, i as Ka, j as qa, k as wn, l as lt, m as tt, n as Ya, o as g, p as re, q as Be, u as te, T as Qa, r as Ja, s as Xa, R as Za, t as es, v as we, w as ts, x as nn, y as bt, z as st, A as Ee, E as ns, G as rs, H as X, J as as, K as ss, L as ce, M as or, N as is, O as os, Q as ue, S as St, U as q, V as Ue, W as ls, X as cs, Y as ds, Z as us, _ as fs, $ as ke, a0 as lr, a1 as cr, a2 as Me, a3 as xt, a4 as ms, e as dr, a5 as He, a6 as ur, a7 as Ft, a8 as Ce, a9 as me, aa as vt, ab as fr, ac as hs, ad as mr, ae as ye, af as Ne, ag as ps, ah as gs, ai as bs, aj as xs, ak as vs, al as $e, am as Tt, an as hr, ao as ys, ap as ws, aq as Ns, ar as At, as as pr, at as gr, au as Cs, av as ks, aw as yt, ax as Is, ay as br, az as Ss, aA as Fs, aB as Ts, aC as As, aD as Es, aE as xr, aF as vr, aG as yr, aH as Gt, aI as wr, aJ as Kt, aK as Nr, aL as Rs, aM as Ds, aN as Ps, aO as Cr, aP as Ls, aQ as De, aR as Xe, aS as qt, aT as kr, aU as Os, aV as rn, aW as _s, aX as zs, aY as $s, aZ as Qe, a_ as Bs, a$ as Ms, b0 as ct, b1 as Nn, b2 as Yt, b3 as js, b4 as Ws, a as Hs, b as Us, b5 as Et, b6 as Vs, g as Gs, F as Ks, b7 as qs, b8 as Ir, b9 as Ys, ba as an, bb as Qs, bc as sn, bd as Ze, be as Js, bf as Sr, bg as Fr, bh as Xs, bi as Tr, bj as Zs, bk as ei, bl as ti, bm as Ar, bn as ni, bo as ri, bp as ai, bq as on, br as si, bs as ii, bt as oi, bu as li, bv as ci, bw as di, bx as Er, by as Rr, bz as ui, bA as fi, bB as mi, bC as hi, bD as pi, bE as Dr, bF as gi, bG as bi, bH as Pr, bI as Lr, bJ as xi, bK as vi, bL as yi, bM as wi, bN as Ni, bO as Ci, bP as Or, bQ as ki, bR as Ii, bS as Si, bT as Fi, bU as Ti, bV as _r, bW as Ai, bX as Ei, bY as Ri, bZ as Di, b_ as Pi, b$ as Li, c0 as Pe, c1 as ln, c2 as cn, c3 as dn, c4 as zr, c5 as un, c6 as $r, c7 as Br, c8 as Oi, c9 as _i, ca as zi, cb as $i, cc as Bi, cd as Mi, ce as ji, cf as Cn, cg as Wi, ch as Hi, ci as kn, cj as In, ck as Sn, cl as Ui, cm as Vi, cn as Gi, co as Ki, cp as Mr, cq as qi, cr as Yi } from "./F0CanvasPanel-Eg6MeaXo.js";
|
|
2
|
+
import { cD as vm, cC as ym, cP as wm, cz as Nm, cA as Cm, cs as km, ct as Im, ct as Sm, cu as Fm, cS as Tm, cB as Am, cL as Em, cM as Rm, cQ as Dm, cv as Pm, cF as Lm, cE as Om, cw as _m, cx as zm, cN as $m, cT as Bm, cO as Mm, cR as jm, cK as Wm, cH as Hm, cJ as Um, cG as Vm, cy as Gm, cI as Km } from "./F0CanvasPanel-Eg6MeaXo.js";
|
|
3
3
|
import { jsx as t, jsxs as d, Fragment as fe } from "react/jsx-runtime";
|
|
4
4
|
import Te, { forwardRef as de, useRef as z, useTransition as Qi, useState as R, useLayoutEffect as Je, useId as Qt, useContext as Le, createContext as Ie, useEffect as K, useCallback as U, useMemo as J, Fragment as qe, isValidElement as Ji, cloneElement as jr, memo as Wr, Children as Hr } from "react";
|
|
5
|
-
import { C as Xi, P as Zi, a as it, M as eo, p as to, b as no, R as Fn, c as Ur, u as ro, d as ao, e as so, f as io, g as oo, O as Vr, h as Gr, S as lo, A as co, B as uo, L as fo, i as mo, V as ho, j as po, k as go, l as bo } from "./
|
|
6
|
-
import { r as Ym, s as Qm, o as Jm, H as Xm, t as Zm, z as eh,
|
|
5
|
+
import { C as Xi, P as Zi, a as it, M as eo, p as to, b as no, R as Fn, c as Ur, u as ro, d as ao, e as so, f as io, g as oo, O as Vr, h as Gr, S as lo, A as co, B as uo, L as fo, i as mo, V as ho, j as po, k as go, l as bo } from "./index-EXdkVTaH.js";
|
|
6
|
+
import { r as Ym, s as Qm, o as Jm, H as Xm, t as Zm, z as eh, a9 as th, G as nh, q as rh, $ as ah, ab as sh, aa as ih, Q as oh, ae as lh, F as ch, Y as dh, U as uh, J as fh, ag as mh, K as hh, Z as ph, _ as gh, v as bh, ac as xh, ad as vh, N as yh, a0 as wh, a6 as Nh, a8 as Ch, w as kh, y as Ih, D as Sh, W as Fh, af as Th, X as Ah, T as Eh, ah as Rh, x as Dh, E as Ph, m as Lh, n as Oh, a2 as _h, a3 as zh, a7 as $h, I as Bh, a4 as Mh, a1 as jh, a5 as Wh } from "./index-EXdkVTaH.js";
|
|
7
7
|
const xo = Va("Search", [
|
|
8
8
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
9
9
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
|
@@ -11306,42 +11306,43 @@ export {
|
|
|
11306
11306
|
Uf as F0Chat,
|
|
11307
11307
|
Hf as F0ChatProvider,
|
|
11308
11308
|
Lr as F0FileItem,
|
|
11309
|
-
ah as
|
|
11310
|
-
sh as
|
|
11311
|
-
ih as
|
|
11309
|
+
ah as F0FormEditableTable,
|
|
11310
|
+
sh as F0NotesTextEditor,
|
|
11311
|
+
ih as F0NotesTextEditorSkeleton,
|
|
11312
|
+
oh as F0NumberInput,
|
|
11312
11313
|
$s as F0RichTextDisplay,
|
|
11313
|
-
|
|
11314
|
+
lh as F0RichTextEditor,
|
|
11314
11315
|
wi as F0SearchInput,
|
|
11315
11316
|
yf as F0SegmentedBar,
|
|
11316
|
-
|
|
11317
|
-
|
|
11318
|
-
|
|
11317
|
+
ch as F0SegmentedControl,
|
|
11318
|
+
dh as F0TableOfContent,
|
|
11319
|
+
uh as F0TextAreaInput,
|
|
11319
11320
|
Fm as F0TextInput,
|
|
11320
11321
|
wf as F0VersionHistory,
|
|
11321
|
-
|
|
11322
|
-
|
|
11322
|
+
fh as F1SearchBox,
|
|
11323
|
+
mh as FILE_TYPES,
|
|
11323
11324
|
Tm as FileItem,
|
|
11324
11325
|
If as HighlightBanner,
|
|
11325
11326
|
rm as IndicatorsList,
|
|
11326
|
-
|
|
11327
|
-
|
|
11328
|
-
|
|
11327
|
+
hh as Input,
|
|
11328
|
+
ph as Item,
|
|
11329
|
+
gh as ItemSectionHeader,
|
|
11329
11330
|
ed as LATEST,
|
|
11330
|
-
|
|
11331
|
+
bh as LineChart,
|
|
11331
11332
|
Qf as LineChartWidget,
|
|
11332
11333
|
zf as Menu,
|
|
11333
11334
|
Am as MobileDropdown,
|
|
11334
|
-
|
|
11335
|
-
|
|
11336
|
-
|
|
11335
|
+
xh as NotesTextEditor,
|
|
11336
|
+
vh as NotesTextEditorSkeleton,
|
|
11337
|
+
yh as NumberInput,
|
|
11337
11338
|
Ef as OmniButton,
|
|
11338
11339
|
jf as OneApprovalHistory,
|
|
11339
11340
|
Em as OneCalendar,
|
|
11340
11341
|
Rm as OneCalendarInternal,
|
|
11341
|
-
|
|
11342
|
-
|
|
11342
|
+
wh as OneDataCollection,
|
|
11343
|
+
Nh as OneDateNavigator,
|
|
11343
11344
|
Vr as OneEmptyState,
|
|
11344
|
-
|
|
11345
|
+
Ch as OnePagination,
|
|
11345
11346
|
Ff as OnePersonListItem,
|
|
11346
11347
|
pm as OneRestrictComponent,
|
|
11347
11348
|
Rf as Page,
|
|
@@ -11349,18 +11350,18 @@ export {
|
|
|
11349
11350
|
hn as PageHeaderNavigationContext,
|
|
11350
11351
|
gf as PageHeaderNavigationProvider,
|
|
11351
11352
|
ms as PageNavigation,
|
|
11352
|
-
|
|
11353
|
+
kh as PieChart,
|
|
11353
11354
|
Jf as PieChartWidget,
|
|
11354
11355
|
Ud as PrivateBox,
|
|
11355
|
-
|
|
11356
|
-
|
|
11356
|
+
Ih as ProgressBarChart,
|
|
11357
|
+
Sh as RadarChart,
|
|
11357
11358
|
Fl as Reactions,
|
|
11358
|
-
|
|
11359
|
+
Fh as ResourceHeader,
|
|
11359
11360
|
Dm as RichTextDisplay,
|
|
11360
|
-
|
|
11361
|
+
Th as RichTextEditor,
|
|
11361
11362
|
gm as ScrollArea,
|
|
11362
11363
|
$f as SearchBar,
|
|
11363
|
-
|
|
11364
|
+
Ah as SectionHeader,
|
|
11364
11365
|
yt as Select,
|
|
11365
11366
|
ni as Shortcut,
|
|
11366
11367
|
Bf as Sidebar,
|
|
@@ -11383,13 +11384,13 @@ export {
|
|
|
11383
11384
|
Lm as Tabs,
|
|
11384
11385
|
Om as TabsSkeleton,
|
|
11385
11386
|
dm as TasksList,
|
|
11386
|
-
|
|
11387
|
+
Eh as Textarea,
|
|
11387
11388
|
_m as ToggleGroup,
|
|
11388
11389
|
zm as ToggleGroupItem,
|
|
11389
11390
|
Me as Tooltip,
|
|
11390
11391
|
om as TwoColumnsList,
|
|
11391
|
-
|
|
11392
|
-
|
|
11392
|
+
Rh as UPLOAD_INPUT_ID,
|
|
11393
|
+
Dh as VerticalBarChart,
|
|
11393
11394
|
Xf as VerticalBarChartWidget,
|
|
11394
11395
|
Jt as VirtualList,
|
|
11395
11396
|
$m as WeekStartDay,
|
|
@@ -11404,29 +11405,29 @@ export {
|
|
|
11404
11405
|
im as WidgetSimpleList,
|
|
11405
11406
|
tn as WidgetSimpleListItem,
|
|
11406
11407
|
fm as WidgetStrip,
|
|
11407
|
-
|
|
11408
|
-
|
|
11409
|
-
|
|
11408
|
+
Ph as actionBarStatuses,
|
|
11409
|
+
Lh as buttonToggleSizes,
|
|
11410
|
+
Oh as buttonToggleVariants,
|
|
11410
11411
|
Mm as chipVariants,
|
|
11411
|
-
|
|
11412
|
+
_h as downloadAsCSV,
|
|
11412
11413
|
jm as f0FileItemSizes,
|
|
11413
|
-
|
|
11414
|
+
zh as generateCSVContent,
|
|
11414
11415
|
Wm as getGranularityDefinition,
|
|
11415
11416
|
Hm as getGranularityDefinitions,
|
|
11416
11417
|
Um as getGranularitySimpleDefinition,
|
|
11417
11418
|
Vm as granularityDefinitions,
|
|
11418
11419
|
Gm as modules,
|
|
11419
|
-
|
|
11420
|
+
$h as predefinedPresets,
|
|
11420
11421
|
Km as rangeSeparator,
|
|
11421
11422
|
Jn as seedFromStorage,
|
|
11422
|
-
|
|
11423
|
+
Bh as selectSizes,
|
|
11423
11424
|
Rt as useAiPromotionChat,
|
|
11424
|
-
|
|
11425
|
+
Mh as useDataCollectionData,
|
|
11425
11426
|
Wf as useDataCollectionItemNavigation,
|
|
11426
11427
|
ao as useDataCollectionSource,
|
|
11427
|
-
|
|
11428
|
+
jh as useExportAction,
|
|
11428
11429
|
Oe as useF0Chat,
|
|
11429
|
-
|
|
11430
|
+
Wh as useInfiniteScrollPagination,
|
|
11430
11431
|
$o as usePageHeaderItemNavigation,
|
|
11431
11432
|
bf as usePageHeaderNavigation,
|
|
11432
11433
|
et as useSidebar,
|