@factorialco/f0-react 1.333.0 → 1.333.2
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/{AiChatTranslationsProvider-OBZEPLbx.js → AiChatTranslationsProvider-CifgEXcW.js} +847 -832
- package/dist/ai.d.ts +46 -16
- package/dist/ai.js +2 -2
- package/dist/experimental.css +1 -1
- package/dist/experimental.d.ts +50 -98
- package/dist/experimental.js +9762 -9982
- package/dist/f0.d.ts +47 -17
- package/dist/f0.js +4 -4
- package/dist/{hooks-BR8OW9T7.js → hooks-B94Gvpbs.js} +1 -1
- package/dist/i18n-provider-defaults.d.ts +46 -16
- package/dist/i18n-provider-defaults.js +38 -0
- package/dist/{index-Bsa5j9Oa.js → index-CkQYM2IW.js} +74 -84
- package/dist/styles.css +1 -1
- package/icons/modules/Communities.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1421,7 +1421,7 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
1421
1421
|
filters?: FiltersState<Filters>;
|
|
1422
1422
|
pagination?: ChildrenPaginationInfo;
|
|
1423
1423
|
sortings?: SortingsState<Sortings>;
|
|
1424
|
-
}) => Promise<ChildrenResponse<R
|
|
1424
|
+
}) => ChildrenResponse<R> | Promise<ChildrenResponse<R>> | Observable<PromiseState<ChildrenResponse<R>>>;
|
|
1425
1425
|
/** Function to determine if an item has children */
|
|
1426
1426
|
itemsWithChildren?: (item: R) => boolean;
|
|
1427
1427
|
/** Function to get the number of children for an item */
|
|
@@ -1660,8 +1660,12 @@ export declare const defaultTranslations: {
|
|
|
1660
1660
|
readonly save: "Save";
|
|
1661
1661
|
readonly send: "Send";
|
|
1662
1662
|
readonly cancel: "Cancel";
|
|
1663
|
+
readonly delete: "Delete";
|
|
1663
1664
|
readonly copy: "Copy";
|
|
1665
|
+
readonly paste: "Paste";
|
|
1664
1666
|
readonly close: "Close";
|
|
1667
|
+
readonly collapse: "Collapse";
|
|
1668
|
+
readonly expand: "Expand";
|
|
1665
1669
|
readonly showAll: "Show all";
|
|
1666
1670
|
readonly showLess: "Show less";
|
|
1667
1671
|
readonly skipToContent: "Skip to content";
|
|
@@ -1964,6 +1968,40 @@ export declare const defaultTranslations: {
|
|
|
1964
1968
|
readonly sectionTitlePlaceholder: "Section title";
|
|
1965
1969
|
};
|
|
1966
1970
|
};
|
|
1971
|
+
readonly richTextEditor: {
|
|
1972
|
+
readonly bold: "Bold";
|
|
1973
|
+
readonly italic: "Italic";
|
|
1974
|
+
readonly underline: "Underline";
|
|
1975
|
+
readonly strike: "Strike";
|
|
1976
|
+
readonly highlight: "Highlight";
|
|
1977
|
+
readonly heading1: "Heading 1";
|
|
1978
|
+
readonly heading2: "Heading 2";
|
|
1979
|
+
readonly heading3: "Heading 3";
|
|
1980
|
+
readonly left: "Left";
|
|
1981
|
+
readonly center: "Center";
|
|
1982
|
+
readonly right: "Right";
|
|
1983
|
+
readonly justify: "Justify";
|
|
1984
|
+
readonly bulletList: "Bullet List";
|
|
1985
|
+
readonly orderedList: "Ordered List";
|
|
1986
|
+
readonly taskList: "Task List";
|
|
1987
|
+
readonly codeBlock: "Code Block";
|
|
1988
|
+
readonly horizontalRule: "Horizontal Rule";
|
|
1989
|
+
readonly quote: "Quote";
|
|
1990
|
+
readonly moreOptions: "More Options";
|
|
1991
|
+
readonly code: "Code";
|
|
1992
|
+
readonly divider: "Divider";
|
|
1993
|
+
readonly bullet: "Bullet";
|
|
1994
|
+
readonly ordered: "Ordered";
|
|
1995
|
+
readonly task: "Task";
|
|
1996
|
+
readonly details: "Dropdown";
|
|
1997
|
+
readonly link: "Link";
|
|
1998
|
+
readonly linkPlaceholder: "Enter a link";
|
|
1999
|
+
readonly groups: {
|
|
2000
|
+
readonly textStyles: "Text Styles";
|
|
2001
|
+
readonly lists: "Lists";
|
|
2002
|
+
readonly blocks: "Blocks";
|
|
2003
|
+
};
|
|
2004
|
+
};
|
|
1967
2005
|
};
|
|
1968
2006
|
|
|
1969
2007
|
export declare type DialogPosition = (typeof dialogPositions)[number];
|
|
@@ -5155,19 +5193,16 @@ declare module "gridstack" {
|
|
|
5155
5193
|
}
|
|
5156
5194
|
|
|
5157
5195
|
|
|
5158
|
-
declare
|
|
5159
|
-
|
|
5160
|
-
liveCompanion: {
|
|
5161
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5162
|
-
};
|
|
5163
|
-
}
|
|
5196
|
+
declare namespace Calendar {
|
|
5197
|
+
var displayName: string;
|
|
5164
5198
|
}
|
|
5165
5199
|
|
|
5166
5200
|
|
|
5167
5201
|
declare module "@tiptap/core" {
|
|
5168
5202
|
interface Commands<ReturnType> {
|
|
5169
5203
|
aiBlock: {
|
|
5170
|
-
insertAIBlock: (data: AIBlockData, config:
|
|
5204
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
5205
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
5171
5206
|
};
|
|
5172
5207
|
}
|
|
5173
5208
|
}
|
|
@@ -5175,8 +5210,8 @@ declare module "@tiptap/core" {
|
|
|
5175
5210
|
|
|
5176
5211
|
declare module "@tiptap/core" {
|
|
5177
5212
|
interface Commands<ReturnType> {
|
|
5178
|
-
|
|
5179
|
-
|
|
5213
|
+
moodTracker: {
|
|
5214
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
5180
5215
|
};
|
|
5181
5216
|
}
|
|
5182
5217
|
}
|
|
@@ -5184,13 +5219,8 @@ declare module "@tiptap/core" {
|
|
|
5184
5219
|
|
|
5185
5220
|
declare module "@tiptap/core" {
|
|
5186
5221
|
interface Commands<ReturnType> {
|
|
5187
|
-
|
|
5188
|
-
|
|
5222
|
+
transcript: {
|
|
5223
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
5189
5224
|
};
|
|
5190
5225
|
}
|
|
5191
5226
|
}
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
declare namespace Calendar {
|
|
5195
|
-
var displayName: string;
|
|
5196
|
-
}
|
package/dist/f0.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { c as j, a as Di, b as En, m as Ri, B as Si, O as Kr, p as Xr, w as Dn, S as xe, u as Rn, F as Sn, d as Yr, A as Vr, D as qr, e as Jr, f as we, C as me, g as Zr, h as Qr, i as Nn, j as es, k as Mt, P as An, l as On, n as ts, o as kn, q as Tn, r as zn, s as is, t as ns, v as qi, x as rs, y as Pn, z as ss, E as os, G as as, H as ls, J as cs, K as Mn, L as qe, M as ds, U as us, N as hs, I as fs, Q as gs, X as ps, R as ms, T as vs } from "./index-
|
|
2
|
-
import { ac as hd, ar as fd, V as gd, W as pd, Y as md, Z as vd, _ as yd, a0 as bd, a1 as xd, a2 as wd, a3 as Cd, a4 as _d, a5 as Ed, a6 as Dd, a7 as Rd, an as Sd, a9 as Nd, aa as Ad, ad as Od, ab as kd, ao as Td, ai as zd, al as Pd, ah as Md, as as Ld, ag as Id, af as Hd, $ as Bd, ae as Fd, aj as Wd, at as Gd, a8 as $d, ak as jd, aq as Ud, am as Kd, ap as Xd } from "./index-
|
|
1
|
+
import { c as j, a as Di, b as En, m as Ri, B as Si, O as Kr, p as Xr, w as Dn, S as xe, u as Rn, F as Sn, d as Yr, A as Vr, D as qr, e as Jr, f as we, C as me, g as Zr, h as Qr, i as Nn, j as es, k as Mt, P as An, l as On, n as ts, o as kn, q as Tn, r as zn, s as is, t as ns, v as qi, x as rs, y as Pn, z as ss, E as os, G as as, H as ls, J as cs, K as Mn, L as qe, M as ds, U as us, N as hs, I as fs, Q as gs, X as ps, R as ms, T as vs } from "./index-CkQYM2IW.js";
|
|
2
|
+
import { ac as hd, ar as fd, V as gd, W as pd, Y as md, Z as vd, _ as yd, a0 as bd, a1 as xd, a2 as wd, a3 as Cd, a4 as _d, a5 as Ed, a6 as Dd, a7 as Rd, an as Sd, a9 as Nd, aa as Ad, ad as Od, ab as kd, ao as Td, ai as zd, al as Pd, ah as Md, as as Ld, ag as Id, af as Hd, $ as Bd, ae as Fd, aj as Wd, at as Gd, a8 as $d, ak as jd, aq as Ud, am as Kd, ap as Xd } from "./index-CkQYM2IW.js";
|
|
3
3
|
import { jsx as f, jsxs as P, Fragment as qt } from "react/jsx-runtime";
|
|
4
4
|
import M, { forwardRef as oe, useRef as L, useImperativeHandle as ys, Children as Lt, createContext as Ae, useContext as _e, useState as B, useMemo as H, useEffect as I, useCallback as U, useLayoutEffect as vi, createElement as Ji, isValidElement as Ln, Fragment as bs, memo as xs, useReducer as ws, cloneElement as Cs, PureComponent as _s } from "react";
|
|
5
5
|
import { createPortal as In, unstable_batchedUpdates as At } from "react-dom";
|
|
6
|
-
import { L as Hn, C as Es, i as Bn, D as Ds, S as Zi, a as Rs, f as di, b as lt, c as Ss, A as Ns, d as Ot, e as Fn, E as As, g as zt, h as Os, j as ks, k as Ts, l as Xe, m as Wn, u as zs, G as Ps, n as Ms, o as Qi, p as Ls, q as Gn, r as Is, B as $n, X as jn, Y as yi, s as Hs, t as Un, v as Bs, w as Fs, x as Ws, y as Gs, z as $s, F as js, H as Us, I as Ks, J as en, K as Xs, M as ct, N as ui, O as Ys, P as Vs, Q as qs, R as Js, T as Zs, U as Qs, V as eo, W as to, Z as io, _ as no, $ as ro, a0 as tn, a1 as so, a2 as oo, a3 as Kn, a4 as ao, a5 as lo, a6 as nn, a7 as co, a8 as Xn, a9 as uo, aa as ho, ab as fo, ac as go } from "./hooks-
|
|
7
|
-
import { aw as Vd, ad as qd, ae as Jd, af as Zd, ai as Qd, aj as eu, an as tu, ao as iu, ap as nu, ar as ru, as as su, at as ou, au, am as lu, aq as cu, ag as du, ah as uu, av as hu, ak as fu, al as gu, ax as pu, ay as mu, az as vu, aA as yu } from "./hooks-
|
|
6
|
+
import { L as Hn, C as Es, i as Bn, D as Ds, S as Zi, a as Rs, f as di, b as lt, c as Ss, A as Ns, d as Ot, e as Fn, E as As, g as zt, h as Os, j as ks, k as Ts, l as Xe, m as Wn, u as zs, G as Ps, n as Ms, o as Qi, p as Ls, q as Gn, r as Is, B as $n, X as jn, Y as yi, s as Hs, t as Un, v as Bs, w as Fs, x as Ws, y as Gs, z as $s, F as js, H as Us, I as Ks, J as en, K as Xs, M as ct, N as ui, O as Ys, P as Vs, Q as qs, R as Js, T as Zs, U as Qs, V as eo, W as to, Z as io, _ as no, $ as ro, a0 as tn, a1 as so, a2 as oo, a3 as Kn, a4 as ao, a5 as lo, a6 as nn, a7 as co, a8 as Xn, a9 as uo, aa as ho, ab as fo, ac as go } from "./hooks-B94Gvpbs.js";
|
|
7
|
+
import { aw as Vd, ad as qd, ae as Jd, af as Zd, ai as Qd, aj as eu, an as tu, ao as iu, ap as nu, ar as ru, as as su, at as ou, au, am as lu, aq as cu, ag as du, ah as uu, av as hu, ak as fu, al as gu, ax as pu, ay as mu, az as vu, aA as yu } from "./hooks-B94Gvpbs.js";
|
|
8
8
|
import { defaultTranslations as xu } from "./i18n-provider-defaults.js";
|
|
9
9
|
import './f0.css';const po = {
|
|
10
10
|
xs: 1,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _, jsxs as K, Fragment as St } from "react/jsx-runtime";
|
|
2
2
|
import * as ue from "react";
|
|
3
3
|
import T, { useRef as Vt, useState as Te, useCallback as rr, useEffect as Ue, useContext as it, useMemo as Qe, useLayoutEffect as Yw, createContext as Lt, isValidElement as It, Children as zr, PureComponent as Et, forwardRef as De, useImperativeHandle as nE, cloneElement as Le, createElement as Xw, Component as Zw, useId as aE } from "react";
|
|
4
|
-
import { bh as Zv, bf as iE,
|
|
4
|
+
import { bh as Zv, bf as iE, dk as oE, B as On, aC as Jw, c as Z, aD as Qw, aw as sE, ax as uE, a as ms, dl as Vi, bs as xe, D as cE, dm as lE, dn as fE, aI as eO, dp as dE, dq as pE, bK as ih, dr as hE, F as vt, E as gs, aT as tO, b1 as oh, au as rO, ds as pn, dt as vE, du as yE, dv as mE, dw as Jv, dx as Qv, dy as ey, dz as ty, dA as ry, dB as nO, dC as fo, dD as gE, dE as bE, cq as Ba, dF as xE, cN as aO, cO as iO, cP as oO, q as sO, V as Qr, r as uO, s as cO, bP as sh, g as le, ca as wE, by as uh, bz as ch, bA as lh, bD as fh, b4 as OE, b6 as dh, d6 as SE, co as _E, ay as AE, av as PE, cw as Ei, u as Jn, aU as EE, bF as TE, L as Ut, a9 as lO, Y as CE, Z as fO, _ as jE, db as bs, dG as ME, O as Ti, aR as $E, aF as IE, aY as kE, aG as dO, b0 as NE, m as DE, z as ph, e as RE, a4 as LE, n as qE, bM as BE, S as xt, w as pO, dH as hO, y as FE, K as vO, t as zE, cS as $e, dI as yO, dJ as mO, dK as Pd, dL as WE, dM as ny, P as UE, l as HE, o as KE, di as VE, aa as GE, d8 as YE, az as XE, dN as ZE, f as JE, G as QE, H as eT, J as tT, M as rT } from "./index-CkQYM2IW.js";
|
|
5
5
|
const nT = {
|
|
6
6
|
active: !0,
|
|
7
7
|
breakpoints: {},
|
|
@@ -138,8 +138,12 @@ export declare const defaultTranslations: {
|
|
|
138
138
|
readonly save: "Save";
|
|
139
139
|
readonly send: "Send";
|
|
140
140
|
readonly cancel: "Cancel";
|
|
141
|
+
readonly delete: "Delete";
|
|
141
142
|
readonly copy: "Copy";
|
|
143
|
+
readonly paste: "Paste";
|
|
142
144
|
readonly close: "Close";
|
|
145
|
+
readonly collapse: "Collapse";
|
|
146
|
+
readonly expand: "Expand";
|
|
143
147
|
readonly showAll: "Show all";
|
|
144
148
|
readonly showLess: "Show less";
|
|
145
149
|
readonly skipToContent: "Skip to content";
|
|
@@ -442,6 +446,40 @@ export declare const defaultTranslations: {
|
|
|
442
446
|
readonly sectionTitlePlaceholder: "Section title";
|
|
443
447
|
};
|
|
444
448
|
};
|
|
449
|
+
readonly richTextEditor: {
|
|
450
|
+
readonly bold: "Bold";
|
|
451
|
+
readonly italic: "Italic";
|
|
452
|
+
readonly underline: "Underline";
|
|
453
|
+
readonly strike: "Strike";
|
|
454
|
+
readonly highlight: "Highlight";
|
|
455
|
+
readonly heading1: "Heading 1";
|
|
456
|
+
readonly heading2: "Heading 2";
|
|
457
|
+
readonly heading3: "Heading 3";
|
|
458
|
+
readonly left: "Left";
|
|
459
|
+
readonly center: "Center";
|
|
460
|
+
readonly right: "Right";
|
|
461
|
+
readonly justify: "Justify";
|
|
462
|
+
readonly bulletList: "Bullet List";
|
|
463
|
+
readonly orderedList: "Ordered List";
|
|
464
|
+
readonly taskList: "Task List";
|
|
465
|
+
readonly codeBlock: "Code Block";
|
|
466
|
+
readonly horizontalRule: "Horizontal Rule";
|
|
467
|
+
readonly quote: "Quote";
|
|
468
|
+
readonly moreOptions: "More Options";
|
|
469
|
+
readonly code: "Code";
|
|
470
|
+
readonly divider: "Divider";
|
|
471
|
+
readonly bullet: "Bullet";
|
|
472
|
+
readonly ordered: "Ordered";
|
|
473
|
+
readonly task: "Task";
|
|
474
|
+
readonly details: "Dropdown";
|
|
475
|
+
readonly link: "Link";
|
|
476
|
+
readonly linkPlaceholder: "Enter a link";
|
|
477
|
+
readonly groups: {
|
|
478
|
+
readonly textStyles: "Text Styles";
|
|
479
|
+
readonly lists: "Lists";
|
|
480
|
+
readonly blocks: "Blocks";
|
|
481
|
+
};
|
|
482
|
+
};
|
|
445
483
|
};
|
|
446
484
|
|
|
447
485
|
declare type Join<T extends string[], D extends string> = T extends [] ? never : T extends [infer F] ? F : T extends [infer F, ...infer R] ? F extends string ? `${F}${D}${Join<Extract<R, string[]>, D>}` : never : string;
|
|
@@ -488,19 +526,16 @@ declare module "gridstack" {
|
|
|
488
526
|
}
|
|
489
527
|
|
|
490
528
|
|
|
491
|
-
declare
|
|
492
|
-
|
|
493
|
-
liveCompanion: {
|
|
494
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
495
|
-
};
|
|
496
|
-
}
|
|
529
|
+
declare namespace Calendar {
|
|
530
|
+
var displayName: string;
|
|
497
531
|
}
|
|
498
532
|
|
|
499
533
|
|
|
500
534
|
declare module "@tiptap/core" {
|
|
501
535
|
interface Commands<ReturnType> {
|
|
502
536
|
aiBlock: {
|
|
503
|
-
insertAIBlock: (data: AIBlockData, config:
|
|
537
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
538
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
504
539
|
};
|
|
505
540
|
}
|
|
506
541
|
}
|
|
@@ -508,8 +543,8 @@ declare module "@tiptap/core" {
|
|
|
508
543
|
|
|
509
544
|
declare module "@tiptap/core" {
|
|
510
545
|
interface Commands<ReturnType> {
|
|
511
|
-
|
|
512
|
-
|
|
546
|
+
moodTracker: {
|
|
547
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
513
548
|
};
|
|
514
549
|
}
|
|
515
550
|
}
|
|
@@ -517,13 +552,8 @@ declare module "@tiptap/core" {
|
|
|
517
552
|
|
|
518
553
|
declare module "@tiptap/core" {
|
|
519
554
|
interface Commands<ReturnType> {
|
|
520
|
-
|
|
521
|
-
|
|
555
|
+
transcript: {
|
|
556
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
522
557
|
};
|
|
523
558
|
}
|
|
524
559
|
}
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
declare namespace Calendar {
|
|
528
|
-
var displayName: string;
|
|
529
|
-
}
|
|
@@ -138,8 +138,12 @@ const e = {
|
|
|
138
138
|
save: "Save",
|
|
139
139
|
send: "Send",
|
|
140
140
|
cancel: "Cancel",
|
|
141
|
+
delete: "Delete",
|
|
141
142
|
copy: "Copy",
|
|
143
|
+
paste: "Paste",
|
|
142
144
|
close: "Close",
|
|
145
|
+
collapse: "Collapse",
|
|
146
|
+
expand: "Expand",
|
|
143
147
|
showAll: "Show all",
|
|
144
148
|
showLess: "Show less",
|
|
145
149
|
skipToContent: "Skip to content",
|
|
@@ -441,6 +445,40 @@ const e = {
|
|
|
441
445
|
actions: "Actions",
|
|
442
446
|
sectionTitlePlaceholder: "Section title"
|
|
443
447
|
}
|
|
448
|
+
},
|
|
449
|
+
richTextEditor: {
|
|
450
|
+
bold: "Bold",
|
|
451
|
+
italic: "Italic",
|
|
452
|
+
underline: "Underline",
|
|
453
|
+
strike: "Strike",
|
|
454
|
+
highlight: "Highlight",
|
|
455
|
+
heading1: "Heading 1",
|
|
456
|
+
heading2: "Heading 2",
|
|
457
|
+
heading3: "Heading 3",
|
|
458
|
+
left: "Left",
|
|
459
|
+
center: "Center",
|
|
460
|
+
right: "Right",
|
|
461
|
+
justify: "Justify",
|
|
462
|
+
bulletList: "Bullet List",
|
|
463
|
+
orderedList: "Ordered List",
|
|
464
|
+
taskList: "Task List",
|
|
465
|
+
codeBlock: "Code Block",
|
|
466
|
+
horizontalRule: "Horizontal Rule",
|
|
467
|
+
quote: "Quote",
|
|
468
|
+
moreOptions: "More Options",
|
|
469
|
+
code: "Code",
|
|
470
|
+
divider: "Divider",
|
|
471
|
+
bullet: "Bullet",
|
|
472
|
+
ordered: "Ordered",
|
|
473
|
+
task: "Task",
|
|
474
|
+
details: "Dropdown",
|
|
475
|
+
link: "Link",
|
|
476
|
+
linkPlaceholder: "Enter a link",
|
|
477
|
+
groups: {
|
|
478
|
+
textStyles: "Text Styles",
|
|
479
|
+
lists: "Lists",
|
|
480
|
+
blocks: "Blocks"
|
|
481
|
+
}
|
|
444
482
|
}
|
|
445
483
|
};
|
|
446
484
|
export {
|
|
@@ -10921,32 +10921,7 @@ const cz = (e, t) => o("svg", {
|
|
|
10921
10921
|
d: "M8 10V8C8 5.79086 9.79086 4 12 4V4C14.2091 4 16 5.79086 16 8V10",
|
|
10922
10922
|
vectorEffect: "non-scaling-stroke"
|
|
10923
10923
|
})]
|
|
10924
|
-
}), cI = $(lI), uI = (e, t) =>
|
|
10925
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
10926
|
-
fill: "none",
|
|
10927
|
-
viewBox: "0 0 24 24",
|
|
10928
|
-
ref: t,
|
|
10929
|
-
...e,
|
|
10930
|
-
children: [o("path", {
|
|
10931
|
-
stroke: "currentColor",
|
|
10932
|
-
strokeLinecap: "round",
|
|
10933
|
-
strokeLinejoin: "round",
|
|
10934
|
-
d: "M4.99989 7H18.9999",
|
|
10935
|
-
vectorEffect: "non-scaling-stroke"
|
|
10936
|
-
}), o("path", {
|
|
10937
|
-
stroke: "currentColor",
|
|
10938
|
-
strokeLinecap: "round",
|
|
10939
|
-
strokeLinejoin: "round",
|
|
10940
|
-
d: "M5 12H19",
|
|
10941
|
-
vectorEffect: "non-scaling-stroke"
|
|
10942
|
-
}), o("path", {
|
|
10943
|
-
stroke: "currentColor",
|
|
10944
|
-
strokeLinecap: "round",
|
|
10945
|
-
strokeLinejoin: "round",
|
|
10946
|
-
d: "M4.99989 17H18.9999",
|
|
10947
|
-
vectorEffect: "non-scaling-stroke"
|
|
10948
|
-
})]
|
|
10949
|
-
}), St1 = $(uI), dI = (e, t) => o("svg", {
|
|
10924
|
+
}), cI = $(lI), uI = (e, t) => o("svg", {
|
|
10950
10925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10951
10926
|
fill: "none",
|
|
10952
10927
|
viewBox: "0 0 24 24",
|
|
@@ -10959,7 +10934,7 @@ const cz = (e, t) => o("svg", {
|
|
|
10959
10934
|
d: "M19 12H5",
|
|
10960
10935
|
vectorEffect: "non-scaling-stroke"
|
|
10961
10936
|
})
|
|
10962
|
-
}),
|
|
10937
|
+
}), dI = $(uI), CI = (e, t) => o("svg", {
|
|
10963
10938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10964
10939
|
fill: "none",
|
|
10965
10940
|
viewBox: "0 0 24 24",
|
|
@@ -10972,7 +10947,7 @@ const cz = (e, t) => o("svg", {
|
|
|
10972
10947
|
clipRule: "evenodd",
|
|
10973
10948
|
vectorEffect: "non-scaling-stroke"
|
|
10974
10949
|
})
|
|
10975
|
-
}),
|
|
10950
|
+
}), St1 = $(CI), fI = (e, t) => w("svg", {
|
|
10976
10951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10977
10952
|
fill: "none",
|
|
10978
10953
|
viewBox: "0 0 24 24",
|
|
@@ -11000,7 +10975,20 @@ const cz = (e, t) => o("svg", {
|
|
|
11000
10975
|
d: "M5 5L19 19",
|
|
11001
10976
|
vectorEffect: "non-scaling-stroke"
|
|
11002
10977
|
})]
|
|
11003
|
-
}),
|
|
10978
|
+
}), hI = $(fI), mI = (e, t) => o("svg", {
|
|
10979
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10980
|
+
fill: "none",
|
|
10981
|
+
viewBox: "0 0 24 24",
|
|
10982
|
+
ref: t,
|
|
10983
|
+
...e,
|
|
10984
|
+
children: o("path", {
|
|
10985
|
+
fill: "currentColor",
|
|
10986
|
+
fillRule: "evenodd",
|
|
10987
|
+
d: "M12.65 5.00001C12.65 4.64102 12.359 4.35001 12 4.35001C11.641 4.35001 11.35 4.64102 11.35 5.00001V11.35H5C4.64102 11.35 4.35 11.641 4.35 12C4.35 12.359 4.64102 12.65 5 12.65H11.35V19C11.35 19.359 11.641 19.65 12 19.65C12.359 19.65 12.65 19.359 12.65 19V12.65H19C19.359 12.65 19.65 12.359 19.65 12C19.65 11.641 19.359 11.35 19 11.35H12.65V5.00001Z",
|
|
10988
|
+
clipRule: "evenodd",
|
|
10989
|
+
vectorEffect: "non-scaling-stroke"
|
|
10990
|
+
})
|
|
10991
|
+
}), $t1 = $(mI), pI = (e, t) => w("svg", {
|
|
11004
10992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11005
10993
|
fill: "none",
|
|
11006
10994
|
viewBox: "0 0 24 24",
|
|
@@ -39188,7 +39176,7 @@ const Jy = ({ firstName: e, lastName: t, src: n, size: r, "aria-label": a, "aria
|
|
|
39188
39176
|
"aria-labelledby": i,
|
|
39189
39177
|
badge: s,
|
|
39190
39178
|
icon: l ? {
|
|
39191
|
-
icon:
|
|
39179
|
+
icon: hI,
|
|
39192
39180
|
color: "secondary"
|
|
39193
39181
|
} : void 0
|
|
39194
39182
|
});
|
|
@@ -49547,7 +49535,7 @@ const eu = b.forwardRef(({ className: e, indeterminate: t, disabled: n, hideLabe
|
|
|
49547
49535
|
children: o(au2, {
|
|
49548
49536
|
className: "absolute inset-0 z-[2] flex items-center justify-center text-current transition-none",
|
|
49549
49537
|
children: t ? o(x1, {
|
|
49550
|
-
icon:
|
|
49538
|
+
icon: dI,
|
|
49551
49539
|
size: "sm"
|
|
49552
49540
|
}) : o(x1, {
|
|
49553
49541
|
icon: Lz,
|
|
@@ -94124,10 +94112,10 @@ export {
|
|
|
94124
94112
|
aI as aU,
|
|
94125
94113
|
sI as aV,
|
|
94126
94114
|
cI as aW,
|
|
94127
|
-
|
|
94128
|
-
|
|
94129
|
-
|
|
94130
|
-
|
|
94115
|
+
dI as aX,
|
|
94116
|
+
St1 as aY,
|
|
94117
|
+
hI as aZ,
|
|
94118
|
+
$t1 as a_,
|
|
94131
94119
|
PF as aa,
|
|
94132
94120
|
VF as ab,
|
|
94133
94121
|
En as ac,
|
|
@@ -94220,7 +94208,7 @@ export {
|
|
|
94220
94208
|
Jb as by,
|
|
94221
94209
|
ew as bz,
|
|
94222
94210
|
a2 as c,
|
|
94223
|
-
|
|
94211
|
+
ct1 as c$,
|
|
94224
94212
|
T5 as c0,
|
|
94225
94213
|
$4 as c1,
|
|
94226
94214
|
Bi as c2,
|
|
@@ -94257,7 +94245,7 @@ export {
|
|
|
94257
94245
|
ab as cX,
|
|
94258
94246
|
ye1 as cY,
|
|
94259
94247
|
Rt1 as cZ,
|
|
94260
|
-
|
|
94248
|
+
se1 as c_,
|
|
94261
94249
|
aB as ca,
|
|
94262
94250
|
Iq as cb,
|
|
94263
94251
|
FG as cc,
|
|
@@ -94285,53 +94273,55 @@ export {
|
|
|
94285
94273
|
S81 as cy,
|
|
94286
94274
|
LO as cz,
|
|
94287
94275
|
Zt1 as d,
|
|
94288
|
-
|
|
94289
|
-
|
|
94290
|
-
|
|
94291
|
-
|
|
94292
|
-
|
|
94293
|
-
|
|
94294
|
-
|
|
94295
|
-
|
|
94296
|
-
|
|
94297
|
-
|
|
94298
|
-
|
|
94299
|
-
|
|
94300
|
-
|
|
94301
|
-
|
|
94302
|
-
|
|
94303
|
-
|
|
94304
|
-
|
|
94305
|
-
|
|
94306
|
-
|
|
94307
|
-
|
|
94308
|
-
|
|
94309
|
-
|
|
94310
|
-
|
|
94311
|
-
|
|
94312
|
-
|
|
94313
|
-
|
|
94314
|
-
|
|
94315
|
-
|
|
94316
|
-
|
|
94317
|
-
|
|
94318
|
-
|
|
94319
|
-
|
|
94320
|
-
|
|
94321
|
-
|
|
94322
|
-
|
|
94323
|
-
|
|
94324
|
-
|
|
94325
|
-
|
|
94326
|
-
|
|
94327
|
-
|
|
94328
|
-
|
|
94329
|
-
|
|
94330
|
-
|
|
94331
|
-
|
|
94332
|
-
|
|
94333
|
-
|
|
94334
|
-
|
|
94276
|
+
W81 as d0,
|
|
94277
|
+
$l2 as d1,
|
|
94278
|
+
Al2 as d2,
|
|
94279
|
+
Tl2 as d3,
|
|
94280
|
+
aH as d4,
|
|
94281
|
+
jl as d5,
|
|
94282
|
+
Ic2 as d6,
|
|
94283
|
+
Jt1 as d7,
|
|
94284
|
+
I9 as d8,
|
|
94285
|
+
SV as d9,
|
|
94286
|
+
Fi2 as dA,
|
|
94287
|
+
L4 as dB,
|
|
94288
|
+
Ra as dC,
|
|
94289
|
+
b3 as dD,
|
|
94290
|
+
U6 as dE,
|
|
94291
|
+
Di2 as dF,
|
|
94292
|
+
Ky as dG,
|
|
94293
|
+
Ua2 as dH,
|
|
94294
|
+
Ds as dI,
|
|
94295
|
+
uF as dJ,
|
|
94296
|
+
dF as dK,
|
|
94297
|
+
CF as dL,
|
|
94298
|
+
jk as dM,
|
|
94299
|
+
M51 as dN,
|
|
94300
|
+
Yt1 as da,
|
|
94301
|
+
lb as db,
|
|
94302
|
+
d91 as dc,
|
|
94303
|
+
X91 as dd,
|
|
94304
|
+
Y91 as de,
|
|
94305
|
+
G91 as df,
|
|
94306
|
+
j3 as dg,
|
|
94307
|
+
e91 as dh,
|
|
94308
|
+
o01 as di,
|
|
94309
|
+
IE as dj,
|
|
94310
|
+
aT as dk,
|
|
94311
|
+
R6 as dl,
|
|
94312
|
+
Ak as dm,
|
|
94313
|
+
qt1 as dn,
|
|
94314
|
+
Fc as dp,
|
|
94315
|
+
Tk as dq,
|
|
94316
|
+
zp as dr,
|
|
94317
|
+
z2 as ds,
|
|
94318
|
+
X1 as dt,
|
|
94319
|
+
B7 as du,
|
|
94320
|
+
rr as dv,
|
|
94321
|
+
W9 as dw,
|
|
94322
|
+
Qt1 as dx,
|
|
94323
|
+
Kt1 as dy,
|
|
94324
|
+
Ut1 as dz,
|
|
94335
94325
|
xt1 as e,
|
|
94336
94326
|
tc as f,
|
|
94337
94327
|
vv as g,
|