@mieweb/ui 0.7.1-dev.6 → 0.7.1-dev.7
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/brands/index.cjs +7 -7
- package/dist/brands/index.js +2 -2
- package/dist/chunk-3MGHTTZW.js +487 -0
- package/dist/chunk-3MGHTTZW.js.map +1 -0
- package/dist/chunk-6NXQSQ3A.cjs +511 -0
- package/dist/chunk-6NXQSQ3A.cjs.map +1 -0
- package/dist/{chunk-Y3ZZEDIU.js → chunk-B77UC56R.js} +7 -2
- package/dist/chunk-B77UC56R.js.map +1 -0
- package/dist/{chunk-CYMZ2QS5.js → chunk-BCJFOSZX.js} +2 -2
- package/dist/{chunk-CYMZ2QS5.js.map → chunk-BCJFOSZX.js.map} +1 -1
- package/dist/{chunk-VIWEV6TJ.cjs → chunk-T5F565OC.cjs} +7 -2
- package/dist/chunk-T5F565OC.cjs.map +1 -0
- package/dist/{chunk-SNEQXSC5.cjs → chunk-VA7QN4DX.cjs} +2 -2
- package/dist/{chunk-SNEQXSC5.cjs.map → chunk-VA7QN4DX.cjs.map} +1 -1
- package/dist/components/CollabStatus/index.cjs +21 -0
- package/dist/components/CollabStatus/index.cjs.map +1 -0
- package/dist/components/CollabStatus/index.d.cts +222 -0
- package/dist/components/CollabStatus/index.d.ts +222 -0
- package/dist/components/CollabStatus/index.js +4 -0
- package/dist/components/CollabStatus/index.js.map +1 -0
- package/dist/index.cjs +68 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +10 -9
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind-preset.cjs +4 -4
- package/dist/tailwind-preset.js +1 -1
- package/dist/utils/index.cjs +9 -9
- package/dist/utils/index.js +1 -1
- package/package.json +2 -1
- package/dist/chunk-VIWEV6TJ.cjs.map +0 -1
- package/dist/chunk-Y3ZZEDIU.js.map +0 -1
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
/** Another participant currently present in the room. */
|
|
5
|
+
interface CollabPeer {
|
|
6
|
+
/** Display name published through presence. */
|
|
7
|
+
name: string;
|
|
8
|
+
/** Optional presence color (cursor/avatar tint). */
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
/** Static identity of the open collaboration room, shown in the debug panel. */
|
|
12
|
+
interface CollabRoomInfo {
|
|
13
|
+
/** Room name on the sync server (e.g. `case/4`). */
|
|
14
|
+
name: string;
|
|
15
|
+
/** Transport URL the client connected to. */
|
|
16
|
+
url?: string;
|
|
17
|
+
/** This window's client id (stable per document), or null before connect. */
|
|
18
|
+
clientId?: number | null;
|
|
19
|
+
/** The acting application user id passed to the sync server. */
|
|
20
|
+
userId?: string;
|
|
21
|
+
}
|
|
22
|
+
/** Category of a collaboration event in the debug log. */
|
|
23
|
+
type CollabLogKind = 'doc' | 'awareness' | 'sync' | 'patch';
|
|
24
|
+
/** A single entry in the collaboration debug log. */
|
|
25
|
+
interface CollabLogEntry {
|
|
26
|
+
/** Stable key for rendering. */
|
|
27
|
+
id: number | string;
|
|
28
|
+
/** Wall-clock time of the event (epoch ms). */
|
|
29
|
+
at: number;
|
|
30
|
+
/** Event category. */
|
|
31
|
+
kind: CollabLogKind;
|
|
32
|
+
/** Whether this window or a peer originated it. */
|
|
33
|
+
origin?: 'local' | 'remote';
|
|
34
|
+
/** Human-readable detail line. */
|
|
35
|
+
detail: string;
|
|
36
|
+
}
|
|
37
|
+
/** Every user-facing string, so apps can translate the widget. */
|
|
38
|
+
interface CollabStatusLabels {
|
|
39
|
+
/** Trigger text once the initial sync completed. */
|
|
40
|
+
live: string;
|
|
41
|
+
/** Trigger text before the initial sync completes. */
|
|
42
|
+
connecting: string;
|
|
43
|
+
/** Summary of who else is editing, e.g. `Ann, Bo are editing`. */
|
|
44
|
+
editing: (names: string[]) => string;
|
|
45
|
+
/** Accessible name / tooltip of the trigger button. */
|
|
46
|
+
triggerLabel: string;
|
|
47
|
+
/** Heading of the room-occupants section. */
|
|
48
|
+
peersTitle: (count: number) => string;
|
|
49
|
+
/** Shown in the occupants section when nobody else is in the room. */
|
|
50
|
+
alone: React.ReactNode;
|
|
51
|
+
/** Heading of the debug panel. */
|
|
52
|
+
logTitle: (count: number) => string;
|
|
53
|
+
/** Accessible name of the panel close button. */
|
|
54
|
+
close: string;
|
|
55
|
+
/** Accessible name of the toggle that unclips long values. */
|
|
56
|
+
wrap: string;
|
|
57
|
+
/** Shown when the log is empty. */
|
|
58
|
+
empty: React.ReactNode;
|
|
59
|
+
roomTerm: string;
|
|
60
|
+
urlTerm: string;
|
|
61
|
+
clientTerm: string;
|
|
62
|
+
userTerm: string;
|
|
63
|
+
/** Suffix appended to the client id once synced / while connecting. */
|
|
64
|
+
clientSynced: string;
|
|
65
|
+
clientConnecting: string;
|
|
66
|
+
}
|
|
67
|
+
declare const defaultCollabStatusLabels: CollabStatusLabels;
|
|
68
|
+
interface CollabStatusProps {
|
|
69
|
+
/** True once the room has completed its initial sync with the server. */
|
|
70
|
+
connected: boolean;
|
|
71
|
+
/** Other people in the room right now. */
|
|
72
|
+
peers?: CollabPeer[];
|
|
73
|
+
/** Recent collaboration events, newest first. */
|
|
74
|
+
log?: CollabLogEntry[];
|
|
75
|
+
/** Identity of the open room, shown at the top of the panel. */
|
|
76
|
+
room?: CollabRoomInfo | null;
|
|
77
|
+
/** Set false to render a status-only chip with no debug panel. */
|
|
78
|
+
showLog?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* Render the trigger as the bare connection dot, moving the status text into
|
|
81
|
+
* its accessible name. For headers with no room for a full chip.
|
|
82
|
+
*/
|
|
83
|
+
compact?: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* An app-level condition worth the same glance as the connection state, e.g.
|
|
86
|
+
* `"Unsaved changes"`. While set, the dot turns amber and the text joins the
|
|
87
|
+
* trigger's accessible name and heads the panel.
|
|
88
|
+
*/
|
|
89
|
+
attention?: React.ReactNode;
|
|
90
|
+
/** Overrides for any user-facing string. */
|
|
91
|
+
labels?: Partial<CollabStatusLabels>;
|
|
92
|
+
/** Additional className for the trigger wrapper. */
|
|
93
|
+
className?: string;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Live-collaboration status chip: a connection dot, a `Live` / `Connecting…`
|
|
97
|
+
* label, a summary of who else is editing, and a click-to-open panel with the
|
|
98
|
+
* room identity, who is in the room, and a rolling log of collaboration
|
|
99
|
+
* events. Pass `compact` to shrink the trigger down to the dot alone, and
|
|
100
|
+
* `attention` to let an app condition ("Unsaved changes") share that dot.
|
|
101
|
+
*
|
|
102
|
+
* Transport-agnostic — it renders whatever presence state you hand it. For a
|
|
103
|
+
* Yjs (`y-websocket`) room, {@link useYjsCollabStatus} produces these props
|
|
104
|
+
* directly:
|
|
105
|
+
*
|
|
106
|
+
* @example
|
|
107
|
+
* ```tsx
|
|
108
|
+
* const doc = React.useMemo(() => new Y.Doc(), []);
|
|
109
|
+
* const provider = React.useMemo(
|
|
110
|
+
* () => new WebsocketProvider('ws://localhost:1234', 'case/4', doc),
|
|
111
|
+
* [doc]
|
|
112
|
+
* );
|
|
113
|
+
* const status = useYjsCollabStatus({ doc, provider, user: { name: 'Ann' } });
|
|
114
|
+
*
|
|
115
|
+
* return <CollabStatus {...status} />;
|
|
116
|
+
* ```
|
|
117
|
+
*/
|
|
118
|
+
declare function CollabStatus({ connected, peers, log, room, showLog, compact, attention, labels: labelOverrides, className, }: CollabStatusProps): react_jsx_runtime.JSX.Element;
|
|
119
|
+
|
|
120
|
+
/** The subset of `Y.Doc` this hook observes. */
|
|
121
|
+
interface YjsDocLike {
|
|
122
|
+
clientID: number;
|
|
123
|
+
on(event: string, handler: (...args: any[]) => void): void;
|
|
124
|
+
off(event: string, handler: (...args: any[]) => void): void;
|
|
125
|
+
}
|
|
126
|
+
/** The subset of `y-protocols/awareness`.`Awareness` this hook uses. */
|
|
127
|
+
interface YjsAwarenessLike {
|
|
128
|
+
clientID: number;
|
|
129
|
+
getStates(): Map<number, Record<string, any>>;
|
|
130
|
+
setLocalStateField(field: string, value: unknown): void;
|
|
131
|
+
on(event: string, handler: (...args: any[]) => void): void;
|
|
132
|
+
off(event: string, handler: (...args: any[]) => void): void;
|
|
133
|
+
}
|
|
134
|
+
/** The subset of `y-websocket`.`WebsocketProvider` this hook uses. */
|
|
135
|
+
interface YjsProviderLike {
|
|
136
|
+
awareness: YjsAwarenessLike;
|
|
137
|
+
/** True once the initial sync completed (y-websocket exposes this). */
|
|
138
|
+
synced?: boolean;
|
|
139
|
+
/** Room name, used as the default label in the debug panel. */
|
|
140
|
+
roomname?: string;
|
|
141
|
+
/** Server URL, used as the default label in the debug panel. */
|
|
142
|
+
url?: string;
|
|
143
|
+
on(event: string, handler: (...args: any[]) => void): void;
|
|
144
|
+
off(event: string, handler: (...args: any[]) => void): void;
|
|
145
|
+
}
|
|
146
|
+
/** A remote collaborator's edit that just changed the open document. */
|
|
147
|
+
interface CollabRemoteEdit {
|
|
148
|
+
/** Human-readable labels of the fields that changed. */
|
|
149
|
+
fields: string[];
|
|
150
|
+
/** Who made the change, when attributable from presence. */
|
|
151
|
+
by?: string;
|
|
152
|
+
/** Timestamp; a new value signals a fresh growl/toast. */
|
|
153
|
+
at: number;
|
|
154
|
+
}
|
|
155
|
+
interface UseYjsCollabStatusOptions {
|
|
156
|
+
/** The shared document. Pass null to keep the hook inert. */
|
|
157
|
+
doc: YjsDocLike | null | undefined;
|
|
158
|
+
/** The sync provider (e.g. `y-websocket`). Pass null to keep it inert. */
|
|
159
|
+
provider: YjsProviderLike | null | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* Presence identity published for this window. Defaults to
|
|
162
|
+
* `User <clientID>` so windows are distinguishable without a login.
|
|
163
|
+
*/
|
|
164
|
+
user?: {
|
|
165
|
+
name?: string;
|
|
166
|
+
color?: string;
|
|
167
|
+
};
|
|
168
|
+
/** Room label for the debug panel. Defaults to `provider.roomname`. */
|
|
169
|
+
roomName?: string;
|
|
170
|
+
/** URL label for the debug panel. Defaults to `provider.url`. */
|
|
171
|
+
url?: string;
|
|
172
|
+
/** Application user id shown in the debug panel. */
|
|
173
|
+
userId?: string;
|
|
174
|
+
/** Maximum log entries kept in memory. Default 100. */
|
|
175
|
+
logCap?: number;
|
|
176
|
+
}
|
|
177
|
+
interface YjsCollabStatus {
|
|
178
|
+
/** True once the initial server sync completed. */
|
|
179
|
+
connected: boolean;
|
|
180
|
+
/** Other windows currently present in the room. */
|
|
181
|
+
peers: CollabPeer[];
|
|
182
|
+
/** Recent collaboration events, newest first. */
|
|
183
|
+
log: CollabLogEntry[];
|
|
184
|
+
/** Room identity for the debug panel. */
|
|
185
|
+
room: CollabRoomInfo | null;
|
|
186
|
+
/** The most recent remote edit, or null. */
|
|
187
|
+
lastRemoteEdit: CollabRemoteEdit | null;
|
|
188
|
+
/**
|
|
189
|
+
* Announce a local edit and the fields it touched, so other windows can
|
|
190
|
+
* attribute it. Also records a `patch` log entry.
|
|
191
|
+
*/
|
|
192
|
+
publishActivity: (fields: string[]) => void;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Bind {@link CollabStatus} to a Yjs room: tracks initial-sync state, publishes
|
|
196
|
+
* this window's presence, tracks peers joining/leaving, attributes remote edits,
|
|
197
|
+
* and keeps a capped log of document/awareness/sync events.
|
|
198
|
+
*
|
|
199
|
+
* The return value is spreadable straight into the component.
|
|
200
|
+
*
|
|
201
|
+
* @example
|
|
202
|
+
* ```tsx
|
|
203
|
+
* import * as Y from 'yjs';
|
|
204
|
+
* import { WebsocketProvider } from 'y-websocket';
|
|
205
|
+
* import { CollabStatus, useYjsCollabStatus } from '@mieweb/ui';
|
|
206
|
+
*
|
|
207
|
+
* function Header({ caseId }: { caseId: string }) {
|
|
208
|
+
* const doc = React.useMemo(() => new Y.Doc(), []);
|
|
209
|
+
* const provider = React.useMemo(
|
|
210
|
+
* () => new WebsocketProvider('ws://localhost:1234', `case/${caseId}`, doc),
|
|
211
|
+
* [doc, caseId]
|
|
212
|
+
* );
|
|
213
|
+
* React.useEffect(() => () => provider.destroy(), [provider]);
|
|
214
|
+
*
|
|
215
|
+
* const status = useYjsCollabStatus({ doc, provider, user: { name: 'Ann' } });
|
|
216
|
+
* return <CollabStatus {...status} />;
|
|
217
|
+
* }
|
|
218
|
+
* ```
|
|
219
|
+
*/
|
|
220
|
+
declare function useYjsCollabStatus({ doc, provider, user, roomName, url, userId, logCap, }: UseYjsCollabStatusOptions): YjsCollabStatus;
|
|
221
|
+
|
|
222
|
+
export { type CollabLogEntry, type CollabLogKind, type CollabPeer, type CollabRemoteEdit, type CollabRoomInfo, CollabStatus, type CollabStatusLabels, type CollabStatusProps, type UseYjsCollabStatusOptions, type YjsAwarenessLike, type YjsCollabStatus, type YjsDocLike, type YjsProviderLike, defaultCollabStatusLabels, useYjsCollabStatus };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var chunkDG7KE4YJ_cjs = require('./chunk-DG7KE4YJ.cjs');
|
|
3
4
|
var chunkZJCPW6MS_cjs = require('./chunk-ZJCPW6MS.cjs');
|
|
4
|
-
var
|
|
5
|
+
var chunkVA7QN4DX_cjs = require('./chunk-VA7QN4DX.cjs');
|
|
6
|
+
var chunkZ5J4NTPL_cjs = require('./chunk-Z5J4NTPL.cjs');
|
|
5
7
|
var chunkU7VQUOLS_cjs = require('./chunk-U7VQUOLS.cjs');
|
|
6
8
|
var chunkX7S76WB7_cjs = require('./chunk-X7S76WB7.cjs');
|
|
7
9
|
var chunkP52GA3GJ_cjs = require('./chunk-P52GA3GJ.cjs');
|
|
8
10
|
var chunkLCQGAOAZ_cjs = require('./chunk-LCQGAOAZ.cjs');
|
|
9
|
-
var chunkZ5J4NTPL_cjs = require('./chunk-Z5J4NTPL.cjs');
|
|
10
11
|
var chunkJ644FU54_cjs = require('./chunk-J644FU54.cjs');
|
|
11
12
|
var chunkWNJRS7Y7_cjs = require('./chunk-WNJRS7Y7.cjs');
|
|
12
13
|
var chunkUCGUA3QV_cjs = require('./chunk-UCGUA3QV.cjs');
|
|
13
14
|
var chunkRR2MJBGV_cjs = require('./chunk-RR2MJBGV.cjs');
|
|
14
15
|
var chunkUVSODK6V_cjs = require('./chunk-UVSODK6V.cjs');
|
|
16
|
+
var chunkNVHAQOHH_cjs = require('./chunk-NVHAQOHH.cjs');
|
|
15
17
|
var chunkTN33E2VN_cjs = require('./chunk-TN33E2VN.cjs');
|
|
16
18
|
var chunkQASIWBXU_cjs = require('./chunk-QASIWBXU.cjs');
|
|
17
19
|
var chunkPJAQDAMZ_cjs = require('./chunk-PJAQDAMZ.cjs');
|
|
18
20
|
var chunkST2RE5UB_cjs = require('./chunk-ST2RE5UB.cjs');
|
|
19
21
|
var chunkDLNJLCNO_cjs = require('./chunk-DLNJLCNO.cjs');
|
|
20
|
-
var chunkDG7KE4YJ_cjs = require('./chunk-DG7KE4YJ.cjs');
|
|
21
22
|
var chunkKJ5BSGEO_cjs = require('./chunk-KJ5BSGEO.cjs');
|
|
22
23
|
var chunk3GGET5LK_cjs = require('./chunk-3GGET5LK.cjs');
|
|
23
24
|
var chunkDEZ7XSTG_cjs = require('./chunk-DEZ7XSTG.cjs');
|
|
24
25
|
var chunkIWDQPSJN_cjs = require('./chunk-IWDQPSJN.cjs');
|
|
25
26
|
var chunk372IIHUA_cjs = require('./chunk-372IIHUA.cjs');
|
|
26
27
|
var chunkMAMY5HTT_cjs = require('./chunk-MAMY5HTT.cjs');
|
|
27
|
-
var
|
|
28
|
+
var chunk5MAGWW5X_cjs = require('./chunk-5MAGWW5X.cjs');
|
|
28
29
|
var chunkZNZZCB2M_cjs = require('./chunk-ZNZZCB2M.cjs');
|
|
29
30
|
var chunkKQAXXJ4G_cjs = require('./chunk-KQAXXJ4G.cjs');
|
|
30
31
|
var chunkTR2OJKQ4_cjs = require('./chunk-TR2OJKQ4.cjs');
|
|
@@ -32,6 +33,7 @@ var chunkBLPCYP4D_cjs = require('./chunk-BLPCYP4D.cjs');
|
|
|
32
33
|
var chunkOXYFTCRW_cjs = require('./chunk-OXYFTCRW.cjs');
|
|
33
34
|
var chunkQ2EWNXIB_cjs = require('./chunk-Q2EWNXIB.cjs');
|
|
34
35
|
var chunkAFKKJEV5_cjs = require('./chunk-AFKKJEV5.cjs');
|
|
36
|
+
var chunk44CK4CT2_cjs = require('./chunk-44CK4CT2.cjs');
|
|
35
37
|
var chunkJCNPVK74_cjs = require('./chunk-JCNPVK74.cjs');
|
|
36
38
|
var chunkV25Z5GR6_cjs = require('./chunk-V25Z5GR6.cjs');
|
|
37
39
|
var chunkBB4WQ4LV_cjs = require('./chunk-BB4WQ4LV.cjs');
|
|
@@ -43,13 +45,12 @@ var chunkGOKC4CCZ_cjs = require('./chunk-GOKC4CCZ.cjs');
|
|
|
43
45
|
require('./chunk-GLXTVCHN.cjs');
|
|
44
46
|
var chunkBYUV3IZV_cjs = require('./chunk-BYUV3IZV.cjs');
|
|
45
47
|
var chunkNIEIRA5A_cjs = require('./chunk-NIEIRA5A.cjs');
|
|
46
|
-
var chunk5MAGWW5X_cjs = require('./chunk-5MAGWW5X.cjs');
|
|
47
48
|
require('./chunk-RHNPILZQ.cjs');
|
|
48
49
|
var chunkDFCZPVG4_cjs = require('./chunk-DFCZPVG4.cjs');
|
|
50
|
+
var chunk6NXQSQ3A_cjs = require('./chunk-6NXQSQ3A.cjs');
|
|
49
51
|
var chunkBT3ZQJGT_cjs = require('./chunk-BT3ZQJGT.cjs');
|
|
50
52
|
var chunkVPNURIAY_cjs = require('./chunk-VPNURIAY.cjs');
|
|
51
53
|
var chunkMZPF2QGM_cjs = require('./chunk-MZPF2QGM.cjs');
|
|
52
|
-
var chunk44CK4CT2_cjs = require('./chunk-44CK4CT2.cjs');
|
|
53
54
|
var chunkWGPMTW36_cjs = require('./chunk-WGPMTW36.cjs');
|
|
54
55
|
var chunk6ZYE6JUK_cjs = require('./chunk-6ZYE6JUK.cjs');
|
|
55
56
|
var chunkLOTMAKUG_cjs = require('./chunk-LOTMAKUG.cjs');
|
|
@@ -84,12 +85,12 @@ var chunkFHY3K6PL_cjs = require('./chunk-FHY3K6PL.cjs');
|
|
|
84
85
|
var chunkFSGEDDF2_cjs = require('./chunk-FSGEDDF2.cjs');
|
|
85
86
|
var chunkZDEYV373_cjs = require('./chunk-ZDEYV373.cjs');
|
|
86
87
|
require('./chunk-AT732HC6.cjs');
|
|
87
|
-
var chunkC7RVKV25_cjs = require('./chunk-C7RVKV25.cjs');
|
|
88
88
|
var chunkL7YQBSEL_cjs = require('./chunk-L7YQBSEL.cjs');
|
|
89
|
+
var chunkC7RVKV25_cjs = require('./chunk-C7RVKV25.cjs');
|
|
89
90
|
var chunkCW75IKA6_cjs = require('./chunk-CW75IKA6.cjs');
|
|
90
91
|
var chunkOR5DRJCW_cjs = require('./chunk-OR5DRJCW.cjs');
|
|
91
92
|
var chunkSCV7C55E_cjs = require('./chunk-SCV7C55E.cjs');
|
|
92
|
-
var
|
|
93
|
+
var chunkT5F565OC_cjs = require('./chunk-T5F565OC.cjs');
|
|
93
94
|
var React10 = require('react');
|
|
94
95
|
var jsxRuntime = require('react/jsx-runtime');
|
|
95
96
|
var classVarianceAuthority = require('class-variance-authority');
|
|
@@ -42603,13 +42604,25 @@ function WebsiteInputGroup({
|
|
|
42603
42604
|
}
|
|
42604
42605
|
WebsiteInputGroup.displayName = "WebsiteInputGroup";
|
|
42605
42606
|
|
|
42607
|
+
Object.defineProperty(exports, "TranscriptView", {
|
|
42608
|
+
enumerable: true,
|
|
42609
|
+
get: function () { return chunkDG7KE4YJ_cjs.TranscriptView; }
|
|
42610
|
+
});
|
|
42611
|
+
Object.defineProperty(exports, "formatTimestampMs", {
|
|
42612
|
+
enumerable: true,
|
|
42613
|
+
get: function () { return chunkDG7KE4YJ_cjs.formatTimestampMs; }
|
|
42614
|
+
});
|
|
42606
42615
|
Object.defineProperty(exports, "VisuallyHidden", {
|
|
42607
42616
|
enumerable: true,
|
|
42608
42617
|
get: function () { return chunkZJCPW6MS_cjs.VisuallyHidden; }
|
|
42609
42618
|
});
|
|
42610
42619
|
Object.defineProperty(exports, "brands", {
|
|
42611
42620
|
enumerable: true,
|
|
42612
|
-
get: function () { return
|
|
42621
|
+
get: function () { return chunkVA7QN4DX_cjs.brands; }
|
|
42622
|
+
});
|
|
42623
|
+
Object.defineProperty(exports, "wagglelineBrand", {
|
|
42624
|
+
enumerable: true,
|
|
42625
|
+
get: function () { return chunkZ5J4NTPL_cjs.wagglelineBrand; }
|
|
42613
42626
|
});
|
|
42614
42627
|
Object.defineProperty(exports, "webchartBrand", {
|
|
42615
42628
|
enumerable: true,
|
|
@@ -42627,10 +42640,6 @@ Object.defineProperty(exports, "miewebBrand", {
|
|
|
42627
42640
|
enumerable: true,
|
|
42628
42641
|
get: function () { return chunkLCQGAOAZ_cjs.miewebBrand; }
|
|
42629
42642
|
});
|
|
42630
|
-
Object.defineProperty(exports, "wagglelineBrand", {
|
|
42631
|
-
enumerable: true,
|
|
42632
|
-
get: function () { return chunkZ5J4NTPL_cjs.wagglelineBrand; }
|
|
42633
|
-
});
|
|
42634
42643
|
Object.defineProperty(exports, "createBrandPreset", {
|
|
42635
42644
|
enumerable: true,
|
|
42636
42645
|
get: function () { return chunkJ644FU54_cjs.createBrandPreset; }
|
|
@@ -42655,6 +42664,18 @@ Object.defineProperty(exports, "ozwellBrand", {
|
|
|
42655
42664
|
enumerable: true,
|
|
42656
42665
|
get: function () { return chunkRR2MJBGV_cjs.ozwellBrand; }
|
|
42657
42666
|
});
|
|
42667
|
+
Object.defineProperty(exports, "Switch", {
|
|
42668
|
+
enumerable: true,
|
|
42669
|
+
get: function () { return chunkNVHAQOHH_cjs.Switch; }
|
|
42670
|
+
});
|
|
42671
|
+
Object.defineProperty(exports, "switchThumbVariants", {
|
|
42672
|
+
enumerable: true,
|
|
42673
|
+
get: function () { return chunkNVHAQOHH_cjs.switchThumbVariants; }
|
|
42674
|
+
});
|
|
42675
|
+
Object.defineProperty(exports, "switchTrackVariants", {
|
|
42676
|
+
enumerable: true,
|
|
42677
|
+
get: function () { return chunkNVHAQOHH_cjs.switchTrackVariants; }
|
|
42678
|
+
});
|
|
42658
42679
|
Object.defineProperty(exports, "Table", {
|
|
42659
42680
|
enumerable: true,
|
|
42660
42681
|
get: function () { return chunkTN33E2VN_cjs.Table; }
|
|
@@ -42755,14 +42776,6 @@ Object.defineProperty(exports, "toggleVariants", {
|
|
|
42755
42776
|
enumerable: true,
|
|
42756
42777
|
get: function () { return chunkDLNJLCNO_cjs.toggleVariants; }
|
|
42757
42778
|
});
|
|
42758
|
-
Object.defineProperty(exports, "TranscriptView", {
|
|
42759
|
-
enumerable: true,
|
|
42760
|
-
get: function () { return chunkDG7KE4YJ_cjs.TranscriptView; }
|
|
42761
|
-
});
|
|
42762
|
-
Object.defineProperty(exports, "formatTimestampMs", {
|
|
42763
|
-
enumerable: true,
|
|
42764
|
-
get: function () { return chunkDG7KE4YJ_cjs.formatTimestampMs; }
|
|
42765
|
-
});
|
|
42766
42779
|
Object.defineProperty(exports, "Sheet", {
|
|
42767
42780
|
enumerable: true,
|
|
42768
42781
|
get: function () { return chunkKJ5BSGEO_cjs.Sheet; }
|
|
@@ -43055,17 +43068,13 @@ Object.defineProperty(exports, "validateFile", {
|
|
|
43055
43068
|
enumerable: true,
|
|
43056
43069
|
get: function () { return chunkMAMY5HTT_cjs.validateFile; }
|
|
43057
43070
|
});
|
|
43058
|
-
Object.defineProperty(exports, "
|
|
43059
|
-
enumerable: true,
|
|
43060
|
-
get: function () { return chunkNVHAQOHH_cjs.Switch; }
|
|
43061
|
-
});
|
|
43062
|
-
Object.defineProperty(exports, "switchThumbVariants", {
|
|
43071
|
+
Object.defineProperty(exports, "PhoneInput", {
|
|
43063
43072
|
enumerable: true,
|
|
43064
|
-
get: function () { return
|
|
43073
|
+
get: function () { return chunk5MAGWW5X_cjs.PhoneInput; }
|
|
43065
43074
|
});
|
|
43066
|
-
Object.defineProperty(exports, "
|
|
43075
|
+
Object.defineProperty(exports, "PhoneInputGroup", {
|
|
43067
43076
|
enumerable: true,
|
|
43068
|
-
get: function () { return
|
|
43077
|
+
get: function () { return chunk5MAGWW5X_cjs.PhoneInputGroup; }
|
|
43069
43078
|
});
|
|
43070
43079
|
Object.defineProperty(exports, "CircularProgress", {
|
|
43071
43080
|
enumerable: true,
|
|
@@ -43183,6 +43192,14 @@ Object.defineProperty(exports, "scrollAreaVariants", {
|
|
|
43183
43192
|
enumerable: true,
|
|
43184
43193
|
get: function () { return chunkAFKKJEV5_cjs.scrollAreaVariants; }
|
|
43185
43194
|
});
|
|
43195
|
+
Object.defineProperty(exports, "FloatingWindow", {
|
|
43196
|
+
enumerable: true,
|
|
43197
|
+
get: function () { return chunk44CK4CT2_cjs.FloatingWindow; }
|
|
43198
|
+
});
|
|
43199
|
+
Object.defineProperty(exports, "MinimizedWindow", {
|
|
43200
|
+
enumerable: true,
|
|
43201
|
+
get: function () { return chunk44CK4CT2_cjs.MinimizedWindow; }
|
|
43202
|
+
});
|
|
43186
43203
|
Object.defineProperty(exports, "CodeBlock", {
|
|
43187
43204
|
enumerable: true,
|
|
43188
43205
|
get: function () { return chunkJCNPVK74_cjs.CodeBlock; }
|
|
@@ -43279,14 +43296,6 @@ Object.defineProperty(exports, "paginationButtonVariants", {
|
|
|
43279
43296
|
enumerable: true,
|
|
43280
43297
|
get: function () { return chunkNIEIRA5A_cjs.paginationButtonVariants; }
|
|
43281
43298
|
});
|
|
43282
|
-
Object.defineProperty(exports, "PhoneInput", {
|
|
43283
|
-
enumerable: true,
|
|
43284
|
-
get: function () { return chunk5MAGWW5X_cjs.PhoneInput; }
|
|
43285
|
-
});
|
|
43286
|
-
Object.defineProperty(exports, "PhoneInputGroup", {
|
|
43287
|
-
enumerable: true,
|
|
43288
|
-
get: function () { return chunk5MAGWW5X_cjs.PhoneInputGroup; }
|
|
43289
|
-
});
|
|
43290
43299
|
Object.defineProperty(exports, "Checkbox", {
|
|
43291
43300
|
enumerable: true,
|
|
43292
43301
|
get: function () { return chunkDFCZPVG4_cjs.Checkbox; }
|
|
@@ -43299,6 +43308,18 @@ Object.defineProperty(exports, "checkboxVariants", {
|
|
|
43299
43308
|
enumerable: true,
|
|
43300
43309
|
get: function () { return chunkDFCZPVG4_cjs.checkboxVariants; }
|
|
43301
43310
|
});
|
|
43311
|
+
Object.defineProperty(exports, "CollabStatus", {
|
|
43312
|
+
enumerable: true,
|
|
43313
|
+
get: function () { return chunk6NXQSQ3A_cjs.CollabStatus; }
|
|
43314
|
+
});
|
|
43315
|
+
Object.defineProperty(exports, "defaultCollabStatusLabels", {
|
|
43316
|
+
enumerable: true,
|
|
43317
|
+
get: function () { return chunk6NXQSQ3A_cjs.defaultCollabStatusLabels; }
|
|
43318
|
+
});
|
|
43319
|
+
Object.defineProperty(exports, "useYjsCollabStatus", {
|
|
43320
|
+
enumerable: true,
|
|
43321
|
+
get: function () { return chunk6NXQSQ3A_cjs.useYjsCollabStatus; }
|
|
43322
|
+
});
|
|
43302
43323
|
Object.defineProperty(exports, "Collapsible", {
|
|
43303
43324
|
enumerable: true,
|
|
43304
43325
|
get: function () { return chunkBT3ZQJGT_cjs.Collapsible; }
|
|
@@ -43347,14 +43368,6 @@ Object.defineProperty(exports, "DropdownSeparator", {
|
|
|
43347
43368
|
enumerable: true,
|
|
43348
43369
|
get: function () { return chunkMZPF2QGM_cjs.DropdownSeparator; }
|
|
43349
43370
|
});
|
|
43350
|
-
Object.defineProperty(exports, "FloatingWindow", {
|
|
43351
|
-
enumerable: true,
|
|
43352
|
-
get: function () { return chunk44CK4CT2_cjs.FloatingWindow; }
|
|
43353
|
-
});
|
|
43354
|
-
Object.defineProperty(exports, "MinimizedWindow", {
|
|
43355
|
-
enumerable: true,
|
|
43356
|
-
get: function () { return chunk44CK4CT2_cjs.MinimizedWindow; }
|
|
43357
|
-
});
|
|
43358
43371
|
Object.defineProperty(exports, "Alert", {
|
|
43359
43372
|
enumerable: true,
|
|
43360
43373
|
get: function () { return chunkWGPMTW36_cjs.Alert; }
|
|
@@ -43807,14 +43820,6 @@ Object.defineProperty(exports, "useAnchoredPosition", {
|
|
|
43807
43820
|
enumerable: true,
|
|
43808
43821
|
get: function () { return chunkZDEYV373_cjs.useAnchoredPosition; }
|
|
43809
43822
|
});
|
|
43810
|
-
Object.defineProperty(exports, "isHtmlEmpty", {
|
|
43811
|
-
enumerable: true,
|
|
43812
|
-
get: function () { return chunkC7RVKV25_cjs.isHtmlEmpty; }
|
|
43813
|
-
});
|
|
43814
|
-
Object.defineProperty(exports, "stripHtmlTags", {
|
|
43815
|
-
enumerable: true,
|
|
43816
|
-
get: function () { return chunkC7RVKV25_cjs.stripHtmlTags; }
|
|
43817
|
-
});
|
|
43818
43823
|
Object.defineProperty(exports, "formatPhoneNumber", {
|
|
43819
43824
|
enumerable: true,
|
|
43820
43825
|
get: function () { return chunkL7YQBSEL_cjs.formatPhoneNumber; }
|
|
@@ -43831,6 +43836,14 @@ Object.defineProperty(exports, "unformatPhoneNumber", {
|
|
|
43831
43836
|
enumerable: true,
|
|
43832
43837
|
get: function () { return chunkL7YQBSEL_cjs.unformatPhoneNumber; }
|
|
43833
43838
|
});
|
|
43839
|
+
Object.defineProperty(exports, "isHtmlEmpty", {
|
|
43840
|
+
enumerable: true,
|
|
43841
|
+
get: function () { return chunkC7RVKV25_cjs.isHtmlEmpty; }
|
|
43842
|
+
});
|
|
43843
|
+
Object.defineProperty(exports, "stripHtmlTags", {
|
|
43844
|
+
enumerable: true,
|
|
43845
|
+
get: function () { return chunkC7RVKV25_cjs.stripHtmlTags; }
|
|
43846
|
+
});
|
|
43834
43847
|
Object.defineProperty(exports, "calculateAge", {
|
|
43835
43848
|
enumerable: true,
|
|
43836
43849
|
get: function () { return chunkCW75IKA6_cjs.calculateAge; }
|
|
@@ -43881,11 +43894,11 @@ Object.defineProperty(exports, "isStorybookDocsMode", {
|
|
|
43881
43894
|
});
|
|
43882
43895
|
Object.defineProperty(exports, "miewebUIPreset", {
|
|
43883
43896
|
enumerable: true,
|
|
43884
|
-
get: function () { return
|
|
43897
|
+
get: function () { return chunkT5F565OC_cjs.miewebUIPreset; }
|
|
43885
43898
|
});
|
|
43886
43899
|
Object.defineProperty(exports, "miewebUISafelist", {
|
|
43887
43900
|
enumerable: true,
|
|
43888
|
-
get: function () { return
|
|
43901
|
+
get: function () { return chunkT5F565OC_cjs.miewebUISafelist; }
|
|
43889
43902
|
});
|
|
43890
43903
|
exports.AIChat = AIChat;
|
|
43891
43904
|
exports.AIChatModal = AIChatModal;
|