@factorialco/f0-react 6.37.2 → 6.38.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.
@@ -8758,6 +8758,11 @@ export declare type HomeWidgetItem = HomeWidgetChrome & {
8758
8758
  * "Add widget" picker, so the strip can never drift from the catalog.
8759
8759
  */
8760
8760
  icon?: IconType;
8761
+ /**
8762
+ * The one thing the widget can do FROM THE COLLAPSED RAIL, drawn on its glyph
8763
+ * instead of the catalog `icon`. See `HomeWidgetRailAction`.
8764
+ */
8765
+ railAction?: HomeWidgetRailAction;
8761
8766
  /**
8762
8767
  * PINNED: the widget stays put. It offers no "Remove widget" in its menu, it
8763
8768
  * cannot be dragged, and no other widget can displace it — for widgets a user
@@ -8777,6 +8782,86 @@ export declare type HomeWidgetItem = HomeWidgetChrome & {
8777
8782
  loading?: boolean;
8778
8783
  };
8779
8784
 
8785
+ /**
8786
+ * A DIRECT ACTION on a widget's collapsed glyph: the one thing the widget can be
8787
+ * told to do without being opened — resume a paused timer, clock out, join the
8788
+ * call that starts now.
8789
+ *
8790
+ * The glyph BECOMES the button, because 40px is one control's worth of room. So
8791
+ * the widget is still one hover away (hovering or focusing the glyph floats it
8792
+ * over the feed, as any glyph does) and the CLICK is the action's rather than the
8793
+ * panel's.
8794
+ *
8795
+ * Only the COLLAPSED rail draws it. Expanded, the card's own footer button
8796
+ * (`action`) is where a widget's call to action belongs, and stacked (below `md`)
8797
+ * there is no glyph to put it on.
8798
+ */
8799
+ export declare type HomeWidgetRailAction = {
8800
+ /** The action's own glyph — `Play` to resume, `Pause` for a running timer. */
8801
+ icon: IconType;
8802
+ /**
8803
+ * What it does, in the imperative ("Resume"): the glyph's tooltip, and half of
8804
+ * its accessible name — the widget's title is the other half, since "Resume"
8805
+ * alone says nothing about which of the strip's glyphs it is.
8806
+ */
8807
+ label: string;
8808
+ onClick: () => void;
8809
+ /**
8810
+ * WHAT COLOUR THE STATE IS. One tone paints the whole chip — the pill behind
8811
+ * the reading and the button at the end of it — because they are one object,
8812
+ * and two colours picked separately is how you end up with a red button on an
8813
+ * amber pill.
8814
+ *
8815
+ * - `"neutral"` (the default) — the dark slab, with the accent button on it.
8816
+ * Nothing about the state is remarkable; it is simply running.
8817
+ * - `"accent"`, `"critical"`, `"warning"`, `"promote"`, `"positive"` — the pill
8818
+ * takes that colour and the button becomes a plain chip carrying it in its
8819
+ * icon, so the two never fight over the same hue.
8820
+ *
8821
+ * Without a `text` there is no pill, and the tone paints the button itself.
8822
+ *
8823
+ * PICK THE ONE THE WIDGET ALREADY USES. A rail action stands in for a state the
8824
+ * card is also showing, and the semantic tones are the same values that state
8825
+ * is drawn with elsewhere — a clock-in tile pulses `--positive-50` while it
8826
+ * runs and `--promote-50` on a break, which is exactly `"positive"` and
8827
+ * `"promote"` here. Two names for one state is how a glyph ends up a different
8828
+ * green from the card it came out of.
8829
+ */
8830
+ tone?: RailActionTone;
8831
+ /**
8832
+ * A READING to put beside the button — a clock's running total or the break
8833
+ * you are on today, but any short string the state can be summed up in. The
8834
+ * glyph grows into a dark PILL to hold it, overflowing its 40px column
8835
+ * leftwards, and the whole strip right-aligns behind it.
8836
+ *
8837
+ * It is only drawn while the widget is STOWED. Hovering floats the card, which
8838
+ * says the same thing in full context, so the pill gives its width back and
8839
+ * leaves the button — the one part of it you can act on.
8840
+ *
8841
+ * Keep it SHORT — "7:12", "0:20", "3 left". This is a glyph, not a status bar,
8842
+ * and anything that has to be read twice does not belong on one.
8843
+ */
8844
+ text?: string;
8845
+ /**
8846
+ * The reading is COUNTING: the separators in `text` blink once a second, the
8847
+ * way a clock does, so a stowed timer is visibly running rather than merely
8848
+ * displayed. Reduced motion holds them lit, and a `text` with nothing to
8849
+ * separate simply stands still.
8850
+ */
8851
+ ticking?: boolean;
8852
+ /**
8853
+ * THE STATE IS ASKING TO BE ACTED ON — a timer left on a break, a shift you
8854
+ * never clocked out of. The glyph alternates once a second between the
8855
+ * widget's own icon and the action's, so the strip can say which module wants
8856
+ * something AND what it wants without growing a second control.
8857
+ *
8858
+ * It settles on the action's icon while the widget is floating, so what you
8859
+ * click is never the face that happened to be up. Reduced motion is honoured:
8860
+ * the glyph simply stays the button.
8861
+ */
8862
+ flashing?: boolean;
8863
+ };
8864
+
8780
8865
  /** One slot of a widget: a visualization tag + its params (opaque to the layout). */
8781
8866
  export declare interface HomeWidgetSlot {
8782
8867
  visualization: string;
@@ -11175,6 +11260,15 @@ declare interface RadarComputation {
11175
11260
  sortOrder?: "asc" | "desc";
11176
11261
  }
11177
11262
 
11263
+ export declare type RailActionTone = (typeof railActionTones)[number];
11264
+
11265
+ /**
11266
+ * The colours a rail action's chip can take, by what the state MEANS rather than
11267
+ * by hue: the same five a tag or a banner picks from, so a red pill in the rail
11268
+ * is red for the same reason a red tag is.
11269
+ */
11270
+ export declare const railActionTones: readonly ["neutral", "accent", "critical", "warning", "promote", "positive"];
11271
+
11178
11272
  export declare const rangeSeparator = "\u2192";
11179
11273
 
11180
11274
  declare interface ReactionProps {
@@ -1,168 +1,168 @@
1
- import { t as s, s as t, A as i, a as r, G as o, ao as n, an as l, ap as d, B as S, v as C, x as g, J as m, av as u, aw as h, aF as c, w as b, C as P, au as p, aG as T, z as I, y as F, a1 as E, aZ as A, b3 as B, I as L, aY as y, E as D, b as W, ae as k, af as v, F as _, i as f, l as x, n as O, j as H, c as M, p as R, q as N, H as V, aJ as w, aK as G, ay as z, ak as U, aO as j, aq as X, a4 as Y, aI as q, Q as K, aa as J, O as Q, b7 as Z, T as $, P as aa, K as ea, L as sa, ar as ta, R as ia, aW as ra, a_ as oa, S as na, a5 as la, a6 as da, Y as Sa, Z as Ca, _ as ga, X as ma, $ as ua, U as ha, a0 as ca, a2 as ba, a3 as Pa, a7 as pa, a8 as Ta, b1 as Ia, am as Fa, al as Ea, at as Aa, aH as Ba, aE as La, as as ya, a9 as Da, az as Wa, b2 as ka, b5 as va, ax as _a, aC as fa, aA as xa, b6 as Oa, aD as Ha, aB as Ma, b4 as Ra, d as Na, ad as Va, b0 as wa, a$ as Ga, ah as za, f as Ua, k as ja, o as Xa, g as Ya, h as qa, aR as Ka, aP as Ja, ai as Qa, aj as Za, aN as $a, aQ as ae, e as ee, r as se, aM as te, aS as ie, ab as re, aX as oe, u as ne, ac as le, ag as de, aL as Se, N as Ce, M as ge, D as me, W as ue, V as he, aV as ce, aU as be, aT as Pe } from "./experimental-D_2ntw23.js";
2
- import { dL as Te, en as Ie, em as Fe, ez as Ee, dj as Ae, ek as Be, cc as Le, c2 as ye, c9 as De, ef as We, bX as ke, bX as ve, bQ as _e, eg as fe, cf as xe, dY as Oe, ch as He, eC as Me, el as Re, ev as Ne, ew as Ve, d4 as we, eA as Ge, k as ze, dM as Ue, cL as je, ej as Xe, ep as Ye, eo as qe, T as Ke, h as Je, bR as Qe, ex as Ze, eD as $e, ey as as, eB as es, eu as ss, er as ts, et as is, eq as rs, eh as os, ei as ns, eb as ls, es as ds } from "./F0CanvasPanel-x0HG1lL2.js";
3
- import { ap as Cs, aq as gs, _ as ms, $ as us, Y as hs, a9 as cs, C as bs, a0 as Ps, aB as ps, a5 as Ts, aA as Is, a8 as Fs, Z as Es, an as As, aD as Bs, aC as Ls, af as ys, aa as Ds, aG as Ws, X as ks, ak as vs, ah as _s, ac as fs, aI as xs, ad as Os, al as Hs, am as Ms, a1 as Rs, aE as Ns, aF as Vs, ae as ws, ao as Gs, ax as zs, O as Us, az as js, a2 as Xs, aK as Ys, a4 as qs, a6 as Ks, ai as Js, aH as Qs, aj as Zs, ag as $s, aJ as at, a3 as et, W as st, a7 as tt, T as it, U as rt, at as ot, au as nt, ar as lt, ay as dt, ab as St, av as Ct, h as gt, as as mt, aw as ut, s as ht } from "./CoachmarkProvider-CdA9uptF.js";
1
+ import { t as s, s as t, A as i, a as r, G as o, ao as n, an as l, ap as d, B as S, v as C, x as g, J as m, av as u, aw as c, aF as h, w as b, C as P, au as T, aG as p, z as I, y as F, a1 as E, a_ as A, b4 as B, I as L, aZ as y, E as D, b as W, ae as k, af as v, F as _, i as f, l as x, n as O, j as H, c as M, p as R, q as N, H as V, aJ as w, aK as G, ay as z, ak as U, aO as j, aq as X, a4 as Y, aI as q, Q as K, aa as J, O as Q, b8 as Z, T as $, P as aa, K as ea, L as sa, ar as ta, R as ia, aX as ra, a$ as oa, S as na, a5 as la, a6 as da, Y as Sa, Z as Ca, _ as ga, X as ma, $ as ua, U as ca, a0 as ha, a2 as ba, a3 as Pa, a7 as Ta, a8 as pa, b2 as Ia, am as Fa, al as Ea, at as Aa, aH as Ba, aE as La, as as ya, a9 as Da, az as Wa, b3 as ka, b6 as va, ax as _a, aC as fa, aA as xa, b7 as Oa, aD as Ha, aB as Ma, b5 as Ra, d as Na, ad as Va, b1 as wa, b0 as Ga, ah as za, f as Ua, k as ja, o as Xa, g as Ya, h as qa, aR as Ka, aP as Ja, ai as Qa, aj as Za, aN as $a, aQ as ae, e as ee, r as se, aV as te, aM as ie, aS as re, ab as oe, aY as ne, u as le, ac as de, ag as Se, aL as Ce, N as ge, M as me, D as ue, W as ce, V as he, aW as be, aU as Pe, aT as Te } from "./experimental-AwqVvQnQ.js";
2
+ import { dL as Ie, en as Fe, em as Ee, ez as Ae, dj as Be, ek as Le, cc as ye, c2 as De, c9 as We, ef as ke, bX as ve, bX as _e, bQ as fe, eg as xe, cf as Oe, dY as He, ch as Me, eC as Re, el as Ne, ev as Ve, ew as we, d4 as Ge, eA as ze, k as Ue, dM as je, cL as Xe, ej as Ye, ep as qe, eo as Ke, T as Je, h as Qe, bR as Ze, ex as $e, eD as as, ey as es, eB as ss, eu as ts, er as is, et as rs, eq as os, eh as ns, ei as ls, eb as ds, es as Ss } from "./F0CanvasPanel-x0HG1lL2.js";
3
+ import { ap as gs, aq as ms, _ as us, $ as cs, Y as hs, a9 as bs, C as Ps, a0 as Ts, aB as ps, a5 as Is, aA as Fs, a8 as Es, Z as As, an as Bs, aD as Ls, aC as ys, af as Ds, aa as Ws, aG as ks, X as vs, ak as _s, ah as fs, ac as xs, aI as Os, ad as Hs, al as Ms, am as Rs, a1 as Ns, aE as Vs, aF as ws, ae as Gs, ao as zs, ax as Us, O as js, az as Xs, a2 as Ys, aK as qs, a4 as Ks, a6 as Js, ai as Qs, aH as Zs, aj as $s, ag as at, aJ as et, a3 as st, W as tt, a7 as it, T as rt, U as ot, at as nt, au as lt, ar as dt, ay as St, ab as Ct, av as gt, h as mt, as as ut, aw as ct, s as ht } from "./CoachmarkProvider-DDlkiieh.js";
4
4
  export {
5
- Cs as AUTO_PER_PAGE_MAX,
6
- gs as AUTO_PER_PAGE_MIN_RESERVED_ROWS,
5
+ gs as AUTO_PER_PAGE_MAX,
6
+ ms as AUTO_PER_PAGE_MIN_RESERVED_ROWS,
7
7
  s as ActivityItemList,
8
8
  t as ActivityItemListSkeleton,
9
9
  i as AiPromotionChat,
10
10
  r as AiPromotionChatProvider,
11
11
  o as ApplicationFrame,
12
- ms as AreaChart,
12
+ us as AreaChart,
13
13
  n as AreaChartWidget,
14
14
  l as AutoGrid,
15
- Te as Badge,
16
- us as BarChart,
15
+ Ie as Badge,
16
+ cs as BarChart,
17
17
  d as BarChartWidget,
18
18
  S as BaseActivityItemList,
19
19
  hs as BaseBanner,
20
20
  C as BaseCelebration,
21
21
  g as BaseCommunityPost,
22
- Ie as BaseTabs,
23
- Fe as BreadcrumbSelect,
22
+ Fe as BaseTabs,
23
+ Ee as BreadcrumbSelect,
24
24
  m as Breadcrumbs,
25
25
  u as CalendarEvent,
26
- h as CalendarEventList,
27
- cs as CardSelectableContainer,
28
- bs as Carousel,
29
- Ps as CategoryBarChart,
30
- c as CategoryBarSection,
26
+ c as CalendarEventList,
27
+ bs as CardSelectableContainer,
28
+ Ps as Carousel,
29
+ Ts as CategoryBarChart,
30
+ h as CategoryBarSection,
31
31
  b as Celebration,
32
32
  P as CelebrationSkeleton,
33
- p as ChartWidgetEmptyState,
34
- Ee as Chip,
35
- T as ClockInControls,
33
+ T as ChartWidgetEmptyState,
34
+ Ae as Chip,
35
+ p as ClockInControls,
36
36
  ps as CoachmarkProvider,
37
- Ts as ComboChart,
37
+ Is as ComboChart,
38
38
  I as CommunityPost,
39
39
  F as CommunityPostSkeleton,
40
40
  E as CompanySelector,
41
- Ae as Counter,
41
+ Be as Counter,
42
42
  A as DEFAULT_EXPECTED_ITEMS_COUNT,
43
43
  B as Dashboard,
44
44
  L as DaytimePage,
45
- Be as DetailsItem,
46
- Le as DetailsItemsList,
47
- Is as Dialog,
48
- ye as Dropdown,
45
+ Le as DetailsItem,
46
+ ye as DetailsItemsList,
47
+ Fs as Dialog,
48
+ De as Dropdown,
49
49
  y as EVENT_LIST_GAP,
50
50
  D as EntitySelect,
51
- Fs as F0ActionBar,
52
- Es as F0AiBanner,
53
- De as F0AvatarModule,
54
- We as F0ButtonToggle,
51
+ Es as F0ActionBar,
52
+ As as F0AiBanner,
53
+ We as F0AvatarModule,
54
+ ke as F0ButtonToggle,
55
55
  W as F0Callout,
56
- ke as F0CardHorizontal,
57
- ve as F0CardRow,
56
+ ve as F0CardHorizontal,
57
+ _e as F0CardRow,
58
58
  k as F0Chat,
59
59
  v as F0ChatProvider,
60
60
  _ as F0EmojiPicker,
61
- _e as F0FileItem,
62
- As as F0FormEditableTable,
61
+ fe as F0FileItem,
62
+ Bs as F0FormEditableTable,
63
63
  f as F0Map,
64
64
  x as F0MapControls,
65
65
  O as F0MapList,
66
66
  H as F0MapSkeleton,
67
67
  M as F0MeetingCard,
68
- Bs as F0NotesTextEditor,
69
- Ls as F0NotesTextEditorSkeleton,
70
- ys as F0NumberInput,
71
- Ds as F0PhoneInput,
72
- fe as F0ProgressSeries,
73
- xe as F0RichTextDisplay,
74
- Ws as F0RichTextEditor,
75
- Oe as F0SearchInput,
68
+ Ls as F0NotesTextEditor,
69
+ ys as F0NotesTextEditorSkeleton,
70
+ Ds as F0NumberInput,
71
+ Ws as F0PhoneInput,
72
+ xe as F0ProgressSeries,
73
+ Oe as F0RichTextDisplay,
74
+ ks as F0RichTextEditor,
75
+ He as F0SearchInput,
76
76
  R as F0SegmentedBar,
77
- ks as F0SegmentedControl,
78
- vs as F0TableOfContent,
79
- _s as F0TextAreaInput,
80
- He as F0TextInput,
77
+ vs as F0SegmentedControl,
78
+ _s as F0TableOfContent,
79
+ fs as F0TextAreaInput,
80
+ Me as F0TextInput,
81
81
  N as F0VersionHistory,
82
- fs as F1SearchBox,
83
- xs as FILE_TYPES,
84
- Me as FileItem,
82
+ xs as F1SearchBox,
83
+ Os as FILE_TYPES,
84
+ Re as FileItem,
85
85
  V as HighlightBanner,
86
86
  w as HomeSlotItem,
87
87
  G as HomeSlotItems,
88
88
  z as IndicatorsList,
89
- Os as Input,
90
- Hs as Item,
91
- Ms as ItemSectionHeader,
89
+ Hs as Input,
90
+ Ms as Item,
91
+ Rs as ItemSectionHeader,
92
92
  U as LATEST,
93
93
  j as LIST_COMPACT_AFTER,
94
- Rs as LineChart,
94
+ Ns as LineChart,
95
95
  X as LineChartWidget,
96
96
  Y as Menu,
97
- Re as MobileDropdown,
97
+ Ne as MobileDropdown,
98
98
  q as NewHomeLayout,
99
- Ns as NotesTextEditor,
100
- Vs as NotesTextEditorSkeleton,
101
- ws as NumberInput,
99
+ Vs as NotesTextEditor,
100
+ ws as NotesTextEditorSkeleton,
101
+ Gs as NumberInput,
102
102
  K as OmniButton,
103
103
  J as OneApprovalHistory,
104
- Ne as OneCalendar,
105
- Ve as OneCalendarInternal,
106
- Gs as OneDataCollection,
107
- zs as OneDateNavigator,
108
- Us as OneEmptyState,
109
- js as OnePagination,
104
+ Ve as OneCalendar,
105
+ we as OneCalendarInternal,
106
+ zs as OneDataCollection,
107
+ Us as OneDateNavigator,
108
+ js as OneEmptyState,
109
+ Xs as OnePagination,
110
110
  Q as OnePersonListItem,
111
111
  Z as OneRestrictComponent,
112
112
  $ as Page,
113
113
  aa as PageHeader,
114
114
  ea as PageHeaderNavigationContext,
115
115
  sa as PageHeaderNavigationProvider,
116
- we as PageNavigation,
117
- Xs as PieChart,
116
+ Ge as PageNavigation,
117
+ Ys as PieChart,
118
118
  ta as PieChartWidget,
119
- Ys as PrivateBox,
120
- qs as ProgressBarChart,
121
- Ks as RadarChart,
119
+ qs as PrivateBox,
120
+ Ks as ProgressBarChart,
121
+ Js as RadarChart,
122
122
  ia as Reactions,
123
- Js as ResourceHeader,
124
- Ge as RichTextDisplay,
125
- Qs as RichTextEditor,
123
+ Qs as ResourceHeader,
124
+ ze as RichTextDisplay,
125
+ Zs as RichTextEditor,
126
126
  ra as SLOT_ROW_BLEED,
127
127
  oa as SLOT_SKELETON_ITEM_TESTID,
128
128
  na as ScrollArea,
129
129
  la as SearchBar,
130
- Zs as SectionHeader,
131
- ze as Select,
132
- Ue as Shortcut,
130
+ $s as SectionHeader,
131
+ Ue as Select,
132
+ je as Shortcut,
133
133
  da as Sidebar,
134
134
  Sa as SidebarChatBlankState,
135
135
  Ca as SidebarChatItem,
136
136
  ga as SidebarChatItemSkeleton,
137
137
  ma as SidebarChatList,
138
138
  ua as SidebarChatListSkeleton,
139
- ha as SidebarChatProvider,
140
- ca as SidebarCollapsibleSection,
139
+ ca as SidebarChatProvider,
140
+ ha as SidebarCollapsibleSection,
141
141
  ba as SidebarFooter,
142
142
  Pa as SidebarHeader,
143
- pa as SidebarTabPanel,
144
- Ta as SidebarTabs,
143
+ Ta as SidebarTabPanel,
144
+ pa as SidebarTabs,
145
145
  Ia as SlotWidget,
146
- je as Spinner,
146
+ Xe as Spinner,
147
147
  Fa as Split,
148
148
  Ea as Stack,
149
149
  Aa as SummariesWidget,
150
- Xe as Switch,
151
- Ye as Tabs,
152
- qe as TabsSkeleton,
150
+ Ye as Switch,
151
+ qe as Tabs,
152
+ Ke as TabsSkeleton,
153
153
  Ba as TasksList,
154
- $s as Textarea,
155
- Ke as ToggleGroup,
156
- Je as ToggleGroupItem,
157
- Qe as Tooltip,
154
+ at as Textarea,
155
+ Je as ToggleGroup,
156
+ Qe as ToggleGroupItem,
157
+ Ze as Tooltip,
158
158
  La as TwoColumnsList,
159
- at as UPLOAD_INPUT_ID,
160
- et as VerticalBarChart,
159
+ et as UPLOAD_INPUT_ID,
160
+ st as VerticalBarChart,
161
161
  ya as VerticalBarChartWidget,
162
162
  Da as VirtualList,
163
- Ze as WeekStartDay,
164
- $e as Weekdays,
165
- st as Widget,
163
+ $e as WeekStartDay,
164
+ as as Weekdays,
165
+ tt as Widget,
166
166
  Wa as WidgetAvatarsListItem,
167
167
  ka as WidgetCatalog,
168
168
  va as WidgetEmptyState,
@@ -173,61 +173,62 @@ export {
173
173
  Ha as WidgetSimpleList,
174
174
  Ma as WidgetSimpleListItem,
175
175
  Ra as WidgetStrip,
176
- tt as actionBarStatuses,
176
+ it as actionBarStatuses,
177
177
  Na as attendeesDisplays,
178
- it as buttonToggleSizes,
179
- rt as buttonToggleVariants,
180
- as as chipVariants,
178
+ rt as buttonToggleSizes,
179
+ ot as buttonToggleVariants,
180
+ es as chipVariants,
181
181
  Va as coachmarks,
182
182
  wa as defaultSlotRenderers,
183
183
  Ga as defaultSlotSkeleton,
184
- ot as downloadAsCSV,
184
+ nt as downloadAsCSV,
185
185
  za as f0ChatSenderColors,
186
186
  Ua as f0EmojiPickerSizes,
187
- es as f0FileItemSizes,
187
+ ss as f0FileItemSizes,
188
188
  ja as f0MapMarkerVariants,
189
189
  Xa as f0MapStyles,
190
190
  Ya as f0ProgressSeriesColors,
191
191
  qa as f0ProgressSeriesSizes,
192
192
  Ka as fromParams,
193
- nt as generateCSVContent,
194
- lt as getAutoPerPageMinHeight,
195
- ss as getGranularityDefinition,
196
- ts as getGranularityDefinitions,
197
- is as getGranularitySimpleDefinition,
198
- rs as granularityDefinitions,
193
+ lt as generateCSVContent,
194
+ dt as getAutoPerPageMinHeight,
195
+ ts as getGranularityDefinition,
196
+ is as getGranularityDefinitions,
197
+ rs as getGranularitySimpleDefinition,
198
+ os as granularityDefinitions,
199
199
  Ja as homeSlot,
200
- os as isPossiblePhoneValue,
200
+ ns as isPossiblePhoneValue,
201
201
  Qa as isSystemMessage,
202
202
  Za as isUserMessage,
203
- ns as isValidPhoneValue,
203
+ ls as isValidPhoneValue,
204
204
  $a as listIconColors,
205
205
  ae as listSlot,
206
206
  ee as meetingStates,
207
- ls as modules,
207
+ ds as modules,
208
208
  se as phoneInputSizes,
209
- dt as predefinedPresets,
210
- ds as rangeSeparator,
211
- te as resolveSlotRenderer,
212
- ie as resolveWidgetHeader,
213
- re as seedFromStorage,
214
- St as selectSizes,
215
- oe as slotRowBleed,
216
- ne as useAiPromotionChat,
217
- Ct as useDataCollectionData,
218
- le as useDataCollectionItemNavigation,
219
- gt as useDataCollectionSource,
220
- mt as useExportAction,
221
- de as useF0Chat,
222
- ut as useInfiniteScrollPagination,
223
- Se as useIsBulkChange,
224
- Ce as usePageHeaderItemNavigation,
225
- ge as usePageHeaderNavigation,
226
- me as useSidebar,
227
- ue as useSidebarChatActions,
209
+ St as predefinedPresets,
210
+ te as railActionTones,
211
+ Ss as rangeSeparator,
212
+ ie as resolveSlotRenderer,
213
+ re as resolveWidgetHeader,
214
+ oe as seedFromStorage,
215
+ Ct as selectSizes,
216
+ ne as slotRowBleed,
217
+ le as useAiPromotionChat,
218
+ gt as useDataCollectionData,
219
+ de as useDataCollectionItemNavigation,
220
+ mt as useDataCollectionSource,
221
+ ut as useExportAction,
222
+ Se as useF0Chat,
223
+ ct as useInfiniteScrollPagination,
224
+ Ce as useIsBulkChange,
225
+ ge as usePageHeaderItemNavigation,
226
+ me as usePageHeaderNavigation,
227
+ ue as useSidebar,
228
+ ce as useSidebarChatActions,
228
229
  he as useSidebarChats,
229
230
  ht as useWidgetIsWide,
230
- ce as widgetChrome,
231
- be as widgetParamsAreComplete,
232
- Pe as widgetTitle
231
+ be as widgetChrome,
232
+ Pe as widgetParamsAreComplete,
233
+ Te as widgetTitle
233
234
  };
package/dist/f0.js CHANGED
@@ -1,16 +1,16 @@
1
1
  import { hW as rN, w as at, e1 as xb, cr as dn, hl as nN, bW as An, fk as kV, hX as PV, hY as iN, r as Xt, c2 as ef, hZ as RV, h_ as Tw, h$ as Mr, i0 as Ua, i1 as OV, u as Be, bU as qv, i2 as Yi, i3 as zl, i4 as aN, bT as sl, hi as Vy, i5 as BV, S as ee, s as wb, i6 as zV, i7 as VV, i8 as Dw, cx as FV, i9 as GV, ia as HV, ib as oN, ic as WV, t as Zv, v as jv, m as tt, x as Kv, y as Gr, O as UV, Q as $V, z as tf, A as rf, ax as $o, B as nf, gs as Fy, d2 as Ft, V as et, ah as yl, d3 as Ma, df as Sb, id as YV, ck as XV, cl as Aw, n as sN, o as _l, bV as xc, cm as qV, ez as bd, d$ as lN, ie as ZV, hk as Mw, d5 as jV, ig as Ew, da as KV, ih as QV, b$ as uN, dX as cN, gb as Gy, dj as JV, a7 as Hy, a6 as fN, gO as Vl, gP as af, gR as hN, hr as eF, gq as dN, d8 as vN, gp as tF, ii as Qv, b3 as Cb, h5 as rF, c7 as pN, fY as nF, au as iF, hS as Tb, b6 as gN, c3 as aF, c4 as oF, c5 as sF, d as lF, bA as mN, ai as rs, bG as yN, b2 as _N, ag as Db, bI as bN, X as Ab, G as ll, H as ul, K as cl, L as fl, gt as ha, $ as xN, j as uF, b0 as xd, as as bl, J as Nr, ej as cF, bR as wN, b4 as Wy, co as wc, ch as fF, aS as of, aq as Fl, dE as SN, dr as hF, g_ as Or, ij as dF, ik as vF, il as CN, im as Jv, io as pF, ip as gF, cC as Kn, R as TN, U as DN, cg as mF, iq as yF, c9 as AN, dV as _F, dW as bF, bO as Uy, d9 as Gl, e4 as Hl, eX as sf, bJ as xF, e2 as wF, bq as SF, ak as MN, dd as CF, aj as TF, aW as Lw, bE as Sc, f_ as DF, f$ as AF, ir as MF, cf as EF, aZ as LF, l as EN, a8 as NF, a5 as IF, is as kF, ho as PF, cL as RF, c1 as OF, cD as LN, it as NN, iu as BF, iv as zF, I as VF, iw as FF, ix as GF, iy as HF, iz as WF } from "./F0CanvasPanel-x0HG1lL2.js";
2
2
  import { iQ as Che, C as The, D as Dhe, dy as Ahe, c as Mhe, F as Ehe, a as Lhe, iJ as Nhe, f as Ihe, cv as khe, dz as Phe, e6 as Rhe, ca as Ohe, cb as Bhe, ct as zhe, c8 as Vhe, cu as Fhe, dl as Ghe, ef as Hhe, g as Whe, c6 as Uhe, bX as $he, iE as Yhe, iV as Xhe, bQ as qhe, e as Zhe, dY as jhe, k as Khe, cw as Qhe, iL as Jhe, dH as ede, iM as tde, iO as rde, iP as nde, eC as ide, iS as ade, ev as ode, ew as sde, P as lde, eA as ude, iN as cde, ex as fde, iR as hde, iW as dde, iB as vde, iC as pde, iD as gde, iA as mde, ey as yde, iU as _de, iK as bde, iH as xde, iG as wde, eB as Sde, gn as Cde, h6 as Tde, iT as Dde, dB as Ade, eu as Mde, er as Ede, et as Lde, eq as Nde, iI as Ide, h8 as kde, h2 as Pde, gS as Rde, iZ as Ode, eb as Bde, es as zde, iY as Vde, dP as Fde, cd as Gde, gm as Hde, gT as Wde, b as Ude, dS as $de, hq as Yde, dA as Xde, ce as qde, iF as Zde, h4 as jde, h3 as Kde, iX as Qde } from "./F0CanvasPanel-x0HG1lL2.js";
3
3
  import { jsx as S, jsxs as B, Fragment as it } from "react/jsx-runtime";
4
- import { C as UF, W as $F, w as YF, x as XF, y as qF, z as Nw, aL as ZF, aM as jF, Q as KF, D as QF, H as JF, J as e5, N as t5, l as r5, X as IN, aN as n5, aO as i5, aP as a5, aQ as o5, aR as s5, aS as kN, aT as l5, n as Mb, aU as $a, aV as u5, v as Eb, aW as Lb, a8 as c5, aX as f5, aY as ys, aZ as PN, a_ as h5, a$ as d5, b0 as v5, b1 as p5, b2 as g5, b3 as m5, ak as y5, aA as _5, b4 as b5, af as x5, E as w5, a as S5, f as ep, R as Nb, g as Ib, ai as RN, O as kb, b5 as ON, b6 as Iw, b7 as Pb, Y as C5, h as BN, ao as zN, b8 as T5, b9 as D5, ba as A5, bb as _s, bc as M5, aB as E5, M as L5 } from "./CoachmarkProvider-CdA9uptF.js";
5
- import { _ as eve, $ as tve, a9 as rve, a0 as nve, a5 as ive, by as ave, bx as ove, bq as sve, be as lve, bd as uve, bf as cve, bg as fve, bi as hve, F as dve, aD as vve, aC as pve, aG as gve, ah as mve, ac as yve, aI as _ve, ad as bve, a1 as xve, bz as wve, aE as Sve, aF as Cve, ae as Tve, a2 as Dve, P as Ave, a4 as Mve, a6 as Eve, aH as Lve, ag as Nve, aJ as Ive, a3 as kve, a7 as Pve, bB as Rve, T as Ove, U as Bve, bp as zve, bv as Vve, bv as Fve, bw as Gve, bl as Hve, bk as Wve, bA as Uve, ay as $ve, bn as Yve, bo as Xve, ab as qve, bC as Zve, bD as jve, K as Kve, i as Qve, br as Jve, bs as epe, bt as tpe, bh as rpe, bm as npe, j as ipe, bu as ape, bj as ope, bE as spe } from "./CoachmarkProvider-CdA9uptF.js";
4
+ import { C as UF, W as $F, v as YF, w as XF, x as qF, y as Nw, aL as ZF, aM as jF, N as KF, D as QF, G as JF, I as e5, K as t5, l as r5, X as IN, aN as n5, aO as i5, aP as a5, aQ as o5, aR as s5, aS as kN, aT as l5, n as Mb, aU as $a, aV as u5, t as Eb, aW as Lb, a8 as c5, aX as f5, aY as ys, aZ as PN, a_ as h5, a$ as d5, b0 as v5, b1 as p5, b2 as g5, b3 as m5, ak as y5, aA as _5, b4 as b5, af as x5, E as w5, a as S5, f as ep, R as Nb, g as Ib, ai as RN, O as kb, b5 as ON, b6 as Iw, b7 as Pb, Y as C5, h as BN, ao as zN, b8 as T5, b9 as D5, ba as A5, bb as _s, bc as M5, aB as E5, M as L5 } from "./CoachmarkProvider-DDlkiieh.js";
5
+ import { _ as eve, $ as tve, a9 as rve, a0 as nve, a5 as ive, by as ave, bx as ove, bq as sve, be as lve, bd as uve, bf as cve, bg as fve, bi as hve, F as dve, aD as vve, aC as pve, aG as gve, ah as mve, ac as yve, aI as _ve, ad as bve, a1 as xve, bz as wve, aE as Sve, aF as Cve, ae as Tve, a2 as Dve, P as Ave, a4 as Mve, a6 as Eve, aH as Lve, ag as Nve, aJ as Ive, a3 as kve, a7 as Pve, bB as Rve, T as Ove, U as Bve, bp as zve, bv as Vve, bv as Fve, bw as Gve, bl as Hve, bk as Wve, bA as Uve, ay as $ve, bn as Yve, bo as Xve, ab as qve, bC as Zve, bD as jve, J as Kve, i as Qve, br as Jve, bs as epe, bt as tpe, bh as rpe, bm as npe, j as ipe, bu as ape, bj as ope, bE as spe } from "./CoachmarkProvider-DDlkiieh.js";
6
6
  import * as xt from "react";
7
7
  import N5, { forwardRef as Dr, useRef as ce, useImperativeHandle as I5, Children as wd, createContext as Ba, useContext as ns, useState as ue, useMemo as me, useEffect as Me, useCallback as de, useLayoutEffect as $y, isValidElement as VN, Fragment as Wl, useSyncExternalStore as xl, useId as oc, memo as k5 } from "react";
8
8
  import { createPortal as tp } from "react-dom";
9
9
  import { d as re, g as lf, h as P5, i as Js, P as uf, u as Ul, j as R5, f as za } from "./tooltip-DTpaXpXW.js";
10
10
  import { l as Yy, c as FN, d as Sd, r as Xy } from "./F0VideoPlayer-CNLDjvWx.js";
11
11
  import { F as upe } from "./F0VideoPlayer-CNLDjvWx.js";
12
- import { F as fpe, p as hpe } from "./index-B2h4ZwMg.js";
13
- import { c as vpe } from "./pdfWorker-CMsIpYiA.js";
12
+ import { F as fpe, p as hpe } from "./index-B9tGQBrU.js";
13
+ import { c as vpe } from "./pdfWorker-Bb9OLhh-.js";
14
14
  import { D as O5, E as Cd, G as Rb, H as GN, I as HN, J as B5, K as z5, L as V5, M as F5, N as G5, F as H5 } from "./F0AiProcessingOverlay-O9iKzCzA.js";
15
15
  import { A as gpe, C as mpe, t as ype, s as _pe, v as bpe, y as xpe, l as wpe, i as Spe, q as Cpe, z as Tpe, B as Dpe, p as Ape, r as Mpe, j as Epe, e as Lpe, g as Npe, k as Ipe, T as kpe, w as Ppe, h as Rpe, a as Ope, n as Bpe, m as zpe, o as Vpe, b as Fpe, f as Gpe, x as Hpe, c as Wpe, d as Upe, u as $pe } from "./F0AiProcessingOverlay-O9iKzCzA.js";
16
16
  import { g as W5 } from "./_commonjsHelpers-ByX85dGu.js";
@@ -1,7 +1,7 @@
1
1
  import { S as L, m as ye, u as Z, n as Se, o as Re, i as ke, j as _e, k as Ne, q as Ce, l as Le, w as Fe, r as Ve, s as Te } from "./F0CanvasPanel-x0HG1lL2.js";
2
2
  import { jsx as t, jsxs as y } from "react/jsx-runtime";
3
3
  import { lazy as J, forwardRef as ne, Suspense as He, useState as V, useRef as A, useMemo as te, useCallback as w, useEffect as T } from "react";
4
- import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-CMsIpYiA.js";
4
+ import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-Bb9OLhh-.js";
5
5
  import { F as We } from "./Printer-BD-FEi_2.js";
6
6
  import { d as ae } from "./tooltip-DTpaXpXW.js";
7
7
  import './index.css';const Oe = ({
@@ -222,7 +222,7 @@ import './index.css';const Oe = ({
222
222
  }), i;
223
223
  };
224
224
  Ee();
225
- const qe = J(() => import("./SheetViewer-DV9V4yAv.js")), Ge = J(() => import("./DocxViewer-DEA61Dsq.js")), Ze = J(() => import("./TextViewer-BflRFlvu.js")), oe = 48, se = ne(
225
+ const qe = J(() => import("./SheetViewer-Cb3M0JfB.js")), Ge = J(() => import("./DocxViewer-DvhVvro8.js")), Ze = J(() => import("./TextViewer-zWnCj_Ll.js")), oe = 48, se = ne(
226
226
  (o, a) => {
227
227
  const { kind: e = "pdf", mimeType: i, ...l } = o;
228
228
  if (e === "pdf") return /* @__PURE__ */ t(le, { ref: a, ...l });
@@ -2,7 +2,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { createContext, useReducer, forwardRef, useRef, useImperativeHandle, useEffect, useCallback, useMemo, useContext, useLayoutEffect } from "react";
3
3
  import { e as clsx } from "./tooltip-DTpaXpXW.js";
4
4
  import { W as invariant } from "./F0CanvasPanel-x0HG1lL2.js";
5
- import { d as dequal } from "./CoachmarkProvider-CdA9uptF.js";
5
+ import { d as dequal } from "./CoachmarkProvider-DDlkiieh.js";
6
6
  import { a as getAugmentedNamespace, g as getDefaultExportFromCjs } from "./_commonjsHelpers-ByX85dGu.js";
7
7
  import { c as commonjsRequire } from "./_commonjs-dynamic-modules-BpilXLfW.js";
8
8
  import './pdfWorker.css';var pdf$1 = { exports: {} };