@papernote/ui 1.10.26 → 1.11.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/components/ActionCard.d.ts +48 -0
- package/dist/components/ActionCard.d.ts.map +1 -0
- package/dist/components/AnomalyBanner.d.ts +27 -0
- package/dist/components/AnomalyBanner.d.ts.map +1 -0
- package/dist/components/CaseQueueItem.d.ts +35 -0
- package/dist/components/CaseQueueItem.d.ts.map +1 -0
- package/dist/components/ConfidenceBadge.d.ts +19 -0
- package/dist/components/ConfidenceBadge.d.ts.map +1 -0
- package/dist/components/ConfidenceIndicator.d.ts +25 -0
- package/dist/components/ConfidenceIndicator.d.ts.map +1 -0
- package/dist/components/EntityCard.d.ts +46 -0
- package/dist/components/EntityCard.d.ts.map +1 -0
- package/dist/components/FunnelChart.d.ts +31 -0
- package/dist/components/FunnelChart.d.ts.map +1 -0
- package/dist/components/MatchIndicator.d.ts +20 -0
- package/dist/components/MatchIndicator.d.ts.map +1 -0
- package/dist/components/PersonaDashboard.d.ts +39 -0
- package/dist/components/PersonaDashboard.d.ts.map +1 -0
- package/dist/components/ProcessHealthBar.d.ts +28 -0
- package/dist/components/ProcessHealthBar.d.ts.map +1 -0
- package/dist/components/ProcessIndicator.d.ts +38 -0
- package/dist/components/ProcessIndicator.d.ts.map +1 -0
- package/dist/components/ReviewDecisionCard.d.ts +53 -0
- package/dist/components/ReviewDecisionCard.d.ts.map +1 -0
- package/dist/components/SLAIndicator.d.ts +24 -0
- package/dist/components/SLAIndicator.d.ts.map +1 -0
- package/dist/components/SplitPane.d.ts +33 -0
- package/dist/components/SplitPane.d.ts.map +1 -0
- package/dist/components/SystemActionEntry.d.ts +42 -0
- package/dist/components/SystemActionEntry.d.ts.map +1 -0
- package/dist/components/VarianceDisplay.d.ts +26 -0
- package/dist/components/VarianceDisplay.d.ts.map +1 -0
- package/dist/components/index.d.ts +32 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.d.ts +529 -2
- package/dist/index.esm.js +661 -28
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +675 -26
- package/dist/index.js.map +1 -1
- package/dist/styles.css +369 -0
- package/package.json +1 -1
- package/src/components/ActionCard.tsx +176 -0
- package/src/components/AnomalyBanner.tsx +113 -0
- package/src/components/CaseQueueItem.tsx +145 -0
- package/src/components/ConfidenceBadge.tsx +62 -0
- package/src/components/ConfidenceIndicator.tsx +96 -0
- package/src/components/EntityCard.tsx +216 -0
- package/src/components/FunnelChart.tsx +160 -0
- package/src/components/MatchIndicator.tsx +73 -0
- package/src/components/PersonaDashboard.tsx +105 -0
- package/src/components/ProcessHealthBar.tsx +107 -0
- package/src/components/ProcessIndicator.tsx +167 -0
- package/src/components/ReviewDecisionCard.tsx +186 -0
- package/src/components/SLAIndicator.tsx +108 -0
- package/src/components/SplitPane.tsx +150 -0
- package/src/components/SystemActionEntry.tsx +175 -0
- package/src/components/VarianceDisplay.tsx +116 -0
- package/src/components/index.ts +48 -0
package/dist/index.d.ts
CHANGED
|
@@ -4148,6 +4148,533 @@ interface StepIndicatorProps {
|
|
|
4148
4148
|
}
|
|
4149
4149
|
declare function StepIndicator({ steps, currentStep, variant, onStepClick, }: StepIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
4150
4150
|
|
|
4151
|
+
interface ProcessStage {
|
|
4152
|
+
/** Unique stage identifier */
|
|
4153
|
+
id: string;
|
|
4154
|
+
/** Display name */
|
|
4155
|
+
name: string;
|
|
4156
|
+
/** Number of items at this stage */
|
|
4157
|
+
count: number;
|
|
4158
|
+
/** Color variant for the stage */
|
|
4159
|
+
color?: 'slate' | 'blue' | 'indigo' | 'purple' | 'green' | 'red' | 'yellow' | 'orange' | 'teal' | 'primary';
|
|
4160
|
+
/** Health status derived from thresholds */
|
|
4161
|
+
health?: 'good' | 'warning' | 'critical';
|
|
4162
|
+
/** Optional icon */
|
|
4163
|
+
icon?: React__default.ReactNode;
|
|
4164
|
+
}
|
|
4165
|
+
interface ProcessIndicatorProps {
|
|
4166
|
+
/** Stages to display in order */
|
|
4167
|
+
stages: ProcessStage[];
|
|
4168
|
+
/** Currently selected/filtered stage ID */
|
|
4169
|
+
activeStageId?: string;
|
|
4170
|
+
/** Callback when a stage is clicked */
|
|
4171
|
+
onStageClick?: (stageId: string) => void;
|
|
4172
|
+
/** Show conversion rate between stages */
|
|
4173
|
+
showConversion?: boolean;
|
|
4174
|
+
/** Size variant */
|
|
4175
|
+
size?: 'sm' | 'md' | 'lg';
|
|
4176
|
+
/** Additional className */
|
|
4177
|
+
className?: string;
|
|
4178
|
+
}
|
|
4179
|
+
/**
|
|
4180
|
+
* ProcessIndicator — Horizontal process flow visualization
|
|
4181
|
+
*
|
|
4182
|
+
* Shows stages as connected blocks with names, item counts, and health coloring.
|
|
4183
|
+
* Stages are clickable for filtering. Used at the top of process views
|
|
4184
|
+
* (Sales Pipeline, Support Center, Commission Lifecycle).
|
|
4185
|
+
*/
|
|
4186
|
+
declare function ProcessIndicator({ stages, activeStageId, onStageClick, showConversion, size, className, }: ProcessIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
4187
|
+
|
|
4188
|
+
interface EntityCardProps {
|
|
4189
|
+
/** Card title (e.g., deal name, case subject) */
|
|
4190
|
+
title: string;
|
|
4191
|
+
/** Optional subtitle (e.g., account name, contact) */
|
|
4192
|
+
subtitle?: string;
|
|
4193
|
+
/** Primary value display (e.g., deal amount, case priority) */
|
|
4194
|
+
value?: string | React__default.ReactNode;
|
|
4195
|
+
/** Status label */
|
|
4196
|
+
status?: string;
|
|
4197
|
+
/** Status color variant */
|
|
4198
|
+
statusColor?: 'slate' | 'blue' | 'indigo' | 'purple' | 'green' | 'red' | 'yellow' | 'orange' | 'teal';
|
|
4199
|
+
/** Assignee name (rendered as avatar initials) */
|
|
4200
|
+
assignee?: string;
|
|
4201
|
+
/** Progress percentage (0-100) */
|
|
4202
|
+
progress?: number;
|
|
4203
|
+
/** Additional metadata key-value pairs */
|
|
4204
|
+
metadata?: Array<{
|
|
4205
|
+
label: string;
|
|
4206
|
+
value: string | React__default.ReactNode;
|
|
4207
|
+
}>;
|
|
4208
|
+
/** Icon to display */
|
|
4209
|
+
icon?: React__default.ReactNode;
|
|
4210
|
+
/** Click handler */
|
|
4211
|
+
onClick?: () => void;
|
|
4212
|
+
/** Context menu handler */
|
|
4213
|
+
onContextMenu?: () => void;
|
|
4214
|
+
/** Whether the card is selected */
|
|
4215
|
+
selected?: boolean;
|
|
4216
|
+
/** Whether the card is draggable (adds visual indicator) */
|
|
4217
|
+
draggable?: boolean;
|
|
4218
|
+
/** Size variant */
|
|
4219
|
+
size?: 'sm' | 'md';
|
|
4220
|
+
/** Additional className */
|
|
4221
|
+
className?: string;
|
|
4222
|
+
/** Confidence score (0-100), shown as a small indicator */
|
|
4223
|
+
confidence?: number;
|
|
4224
|
+
}
|
|
4225
|
+
/**
|
|
4226
|
+
* EntityCard — Standardized card for pipeline/board views
|
|
4227
|
+
*
|
|
4228
|
+
* Renders a compact card with title, value, status, assignee, and metadata.
|
|
4229
|
+
* Designed for use in KanbanBoard columns and process view lists.
|
|
4230
|
+
*/
|
|
4231
|
+
declare function EntityCard({ title, subtitle, value, status, statusColor, assignee, progress, metadata, icon, onClick, onContextMenu, selected, draggable, size, className, confidence, }: EntityCardProps): react_jsx_runtime.JSX.Element;
|
|
4232
|
+
|
|
4233
|
+
interface SplitPaneProps {
|
|
4234
|
+
/** Content for the left/primary panel */
|
|
4235
|
+
left: React__default.ReactNode;
|
|
4236
|
+
/** Content for the right/secondary panel */
|
|
4237
|
+
right: React__default.ReactNode;
|
|
4238
|
+
/** Default width of the left panel as a fraction (0.0 - 1.0) */
|
|
4239
|
+
defaultSplit?: number;
|
|
4240
|
+
/** Minimum left panel width in pixels */
|
|
4241
|
+
minLeftWidth?: number;
|
|
4242
|
+
/** Minimum right panel width in pixels */
|
|
4243
|
+
minRightWidth?: number;
|
|
4244
|
+
/** Whether the divider is draggable */
|
|
4245
|
+
resizable?: boolean;
|
|
4246
|
+
/** Whether to show the right panel */
|
|
4247
|
+
showRight?: boolean;
|
|
4248
|
+
/** Orientation */
|
|
4249
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4250
|
+
/** Callback when split ratio changes */
|
|
4251
|
+
onSplitChange?: (ratio: number) => void;
|
|
4252
|
+
/** Additional className */
|
|
4253
|
+
className?: string;
|
|
4254
|
+
}
|
|
4255
|
+
/**
|
|
4256
|
+
* SplitPane — Resizable two-panel layout
|
|
4257
|
+
*
|
|
4258
|
+
* Renders a left/primary panel and right/secondary panel with a draggable divider.
|
|
4259
|
+
* Used for list+detail patterns (case queue + case detail, statements + line items).
|
|
4260
|
+
*
|
|
4261
|
+
* The right panel can be toggled on/off via `showRight` prop.
|
|
4262
|
+
*/
|
|
4263
|
+
declare function SplitPane({ left, right, defaultSplit, minLeftWidth, minRightWidth, resizable, showRight, orientation, onSplitChange, className, }: SplitPaneProps): react_jsx_runtime.JSX.Element;
|
|
4264
|
+
|
|
4265
|
+
interface CaseQueueItemProps {
|
|
4266
|
+
/** Case ID or number */
|
|
4267
|
+
caseNumber: string;
|
|
4268
|
+
/** Case subject/title */
|
|
4269
|
+
subject: string;
|
|
4270
|
+
/** Priority level */
|
|
4271
|
+
priority: 'critical' | 'high' | 'medium' | 'low';
|
|
4272
|
+
/** Current status */
|
|
4273
|
+
status: string;
|
|
4274
|
+
/** Status color variant */
|
|
4275
|
+
statusColor?: 'slate' | 'blue' | 'indigo' | 'purple' | 'green' | 'red' | 'yellow' | 'orange' | 'teal';
|
|
4276
|
+
/** Assignee name */
|
|
4277
|
+
assignee?: string;
|
|
4278
|
+
/** Account/customer name */
|
|
4279
|
+
account?: string;
|
|
4280
|
+
/** SLA deadline (ISO timestamp) */
|
|
4281
|
+
/** Whether the SLA is breached */
|
|
4282
|
+
slaBreach?: boolean;
|
|
4283
|
+
/** Time remaining display string (e.g., "2h 15m") */
|
|
4284
|
+
slaTimeRemaining?: string;
|
|
4285
|
+
/** Click handler */
|
|
4286
|
+
onClick?: () => void;
|
|
4287
|
+
/** Whether the item is selected */
|
|
4288
|
+
selected?: boolean;
|
|
4289
|
+
/** Additional className */
|
|
4290
|
+
className?: string;
|
|
4291
|
+
}
|
|
4292
|
+
/**
|
|
4293
|
+
* CaseQueueItem — Priority-sorted case card for support queue views
|
|
4294
|
+
*
|
|
4295
|
+
* Shows case subject, priority indicator, status, assignee, and SLA countdown.
|
|
4296
|
+
* Designed for use in the Support Center's case queue list.
|
|
4297
|
+
*/
|
|
4298
|
+
declare function CaseQueueItem({ caseNumber, subject, priority, status, statusColor, assignee, account, slaBreach, slaTimeRemaining, onClick, selected, className, }: CaseQueueItemProps): react_jsx_runtime.JSX.Element;
|
|
4299
|
+
|
|
4300
|
+
interface SLAIndicatorProps {
|
|
4301
|
+
/** Time remaining display string (e.g., "2h 15m", "45m") */
|
|
4302
|
+
timeRemaining?: string;
|
|
4303
|
+
/** Total SLA duration in minutes (for progress calculation) */
|
|
4304
|
+
totalMinutes?: number;
|
|
4305
|
+
/** Elapsed minutes (for progress calculation) */
|
|
4306
|
+
elapsedMinutes?: number;
|
|
4307
|
+
/** Current SLA status */
|
|
4308
|
+
status: 'on-track' | 'at-risk' | 'breached' | 'met';
|
|
4309
|
+
/** Size variant */
|
|
4310
|
+
size?: 'sm' | 'md' | 'lg';
|
|
4311
|
+
/** Show as compact inline badge */
|
|
4312
|
+
compact?: boolean;
|
|
4313
|
+
/** Additional className */
|
|
4314
|
+
className?: string;
|
|
4315
|
+
}
|
|
4316
|
+
/**
|
|
4317
|
+
* SLAIndicator — Visual SLA countdown with urgency coloring
|
|
4318
|
+
*
|
|
4319
|
+
* Shows time remaining, progress bar, and status icon.
|
|
4320
|
+
* Used in Support Center case queue items and case detail views.
|
|
4321
|
+
*/
|
|
4322
|
+
declare function SLAIndicator({ timeRemaining, totalMinutes, elapsedMinutes, status, size, compact, className, }: SLAIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
4323
|
+
|
|
4324
|
+
interface MatchIndicatorProps {
|
|
4325
|
+
/** Match quality level */
|
|
4326
|
+
quality: 'exact' | 'close' | 'possible' | 'unmatched';
|
|
4327
|
+
/** Optional match confidence score (0-100) */
|
|
4328
|
+
confidence?: number;
|
|
4329
|
+
/** Show label text alongside indicator */
|
|
4330
|
+
showLabel?: boolean;
|
|
4331
|
+
/** Size variant */
|
|
4332
|
+
size?: 'sm' | 'md' | 'lg';
|
|
4333
|
+
/** Additional className */
|
|
4334
|
+
className?: string;
|
|
4335
|
+
}
|
|
4336
|
+
/**
|
|
4337
|
+
* MatchIndicator — Match quality visualization for reconciliation
|
|
4338
|
+
*
|
|
4339
|
+
* Shows a color-coded dot/icon indicating match quality between
|
|
4340
|
+
* statement lines and invoices. Used in the Reconciliation Hub.
|
|
4341
|
+
*/
|
|
4342
|
+
declare function MatchIndicator({ quality, confidence, showLabel, size, className, }: MatchIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
4343
|
+
|
|
4344
|
+
interface VarianceDisplayProps {
|
|
4345
|
+
/** Expected value */
|
|
4346
|
+
expected: number;
|
|
4347
|
+
/** Actual value */
|
|
4348
|
+
actual: number;
|
|
4349
|
+
/** Display format */
|
|
4350
|
+
format?: 'currency' | 'number' | 'percentage';
|
|
4351
|
+
/** Currency code for currency format */
|
|
4352
|
+
currency?: string;
|
|
4353
|
+
/** Tolerance percentage — within tolerance shows as neutral */
|
|
4354
|
+
tolerancePercent?: number;
|
|
4355
|
+
/** Whether to show the expected and actual values */
|
|
4356
|
+
showValues?: boolean;
|
|
4357
|
+
/** Size variant */
|
|
4358
|
+
size?: 'sm' | 'md' | 'lg';
|
|
4359
|
+
/** Additional className */
|
|
4360
|
+
className?: string;
|
|
4361
|
+
}
|
|
4362
|
+
/**
|
|
4363
|
+
* VarianceDisplay — Expected vs actual comparison with tolerance coloring
|
|
4364
|
+
*
|
|
4365
|
+
* Shows the difference between expected and actual values, color-coded
|
|
4366
|
+
* by tolerance thresholds. Used in the Reconciliation Hub for variance analysis.
|
|
4367
|
+
*/
|
|
4368
|
+
declare function VarianceDisplay({ expected, actual, format, currency, tolerancePercent, showValues, size, className, }: VarianceDisplayProps): react_jsx_runtime.JSX.Element;
|
|
4369
|
+
|
|
4370
|
+
interface ActionCardAction {
|
|
4371
|
+
/** Button label */
|
|
4372
|
+
label: string;
|
|
4373
|
+
/** Button variant */
|
|
4374
|
+
variant?: 'primary' | 'secondary' | 'danger' | 'ghost';
|
|
4375
|
+
/** Click handler */
|
|
4376
|
+
onClick: () => void;
|
|
4377
|
+
/** Whether the action is disabled */
|
|
4378
|
+
disabled?: boolean;
|
|
4379
|
+
/** Icon to show */
|
|
4380
|
+
icon?: React__default.ReactNode;
|
|
4381
|
+
}
|
|
4382
|
+
interface ActionCardProps {
|
|
4383
|
+
/** Card title — what needs action */
|
|
4384
|
+
title: string;
|
|
4385
|
+
/** Description — why the system flagged it */
|
|
4386
|
+
description?: string;
|
|
4387
|
+
/** Affected entity type and ID */
|
|
4388
|
+
entityType?: string;
|
|
4389
|
+
entityId?: string;
|
|
4390
|
+
/** Entity link click handler */
|
|
4391
|
+
onEntityClick?: () => void;
|
|
4392
|
+
/** Reasoning text — why the system flagged this */
|
|
4393
|
+
reasoning?: string;
|
|
4394
|
+
/** Available actions */
|
|
4395
|
+
actions: ActionCardAction[];
|
|
4396
|
+
/** Priority/urgency level */
|
|
4397
|
+
priority?: 'high' | 'medium' | 'low';
|
|
4398
|
+
/** Icon */
|
|
4399
|
+
icon?: React__default.ReactNode;
|
|
4400
|
+
/** Confidence score (0-100) */
|
|
4401
|
+
confidence?: number;
|
|
4402
|
+
/** Timestamp */
|
|
4403
|
+
timestamp?: string;
|
|
4404
|
+
/** Whether the card is selected */
|
|
4405
|
+
selected?: boolean;
|
|
4406
|
+
/** Additional className */
|
|
4407
|
+
className?: string;
|
|
4408
|
+
}
|
|
4409
|
+
/**
|
|
4410
|
+
* ActionCard — Approval workflow card with action buttons
|
|
4411
|
+
*
|
|
4412
|
+
* Shows what needs action, why it was flagged, and provides quick-action buttons.
|
|
4413
|
+
* Used in the Approvals & Review queue across all process domains.
|
|
4414
|
+
*/
|
|
4415
|
+
declare function ActionCard({ title, description, entityType, entityId, onEntityClick, reasoning, actions, priority, icon, confidence, timestamp, selected, className, }: ActionCardProps): react_jsx_runtime.JSX.Element;
|
|
4416
|
+
|
|
4417
|
+
interface SystemActionEntryProps {
|
|
4418
|
+
/** What the system did */
|
|
4419
|
+
actionDescription: string;
|
|
4420
|
+
/** Why it did it */
|
|
4421
|
+
reasoning: string;
|
|
4422
|
+
/** Affected entity type */
|
|
4423
|
+
entityType: string;
|
|
4424
|
+
/** Affected entity display label */
|
|
4425
|
+
entityLabel: string;
|
|
4426
|
+
/** Click handler for entity link */
|
|
4427
|
+
onEntityClick?: () => void;
|
|
4428
|
+
/** Whether this action can be reverted */
|
|
4429
|
+
isRevertible?: boolean;
|
|
4430
|
+
/** Click handler for revert */
|
|
4431
|
+
onRevert?: () => void;
|
|
4432
|
+
/** Confidence score (0-100) */
|
|
4433
|
+
confidence?: number;
|
|
4434
|
+
/** Actor (system or user name) */
|
|
4435
|
+
actor?: string;
|
|
4436
|
+
/** Timestamp display string */
|
|
4437
|
+
timestamp: string;
|
|
4438
|
+
/** Action type category */
|
|
4439
|
+
actionType?: string;
|
|
4440
|
+
/** Process domain */
|
|
4441
|
+
domain?: 'sales' | 'support' | 'commission' | 'reconciliation';
|
|
4442
|
+
/** Icon */
|
|
4443
|
+
icon?: React__default.ReactNode;
|
|
4444
|
+
/** Whether the action has been reverted */
|
|
4445
|
+
reverted?: boolean;
|
|
4446
|
+
/** Additional className */
|
|
4447
|
+
className?: string;
|
|
4448
|
+
}
|
|
4449
|
+
/**
|
|
4450
|
+
* SystemActionEntry — Activity feed entry showing what the system did
|
|
4451
|
+
*
|
|
4452
|
+
* Each entry shows: action description, reasoning, affected entity (clickable),
|
|
4453
|
+
* revert button (if applicable), confidence indicator, and timestamp.
|
|
4454
|
+
* Used in the Activity Center system action log.
|
|
4455
|
+
*/
|
|
4456
|
+
declare function SystemActionEntry({ actionDescription, reasoning, entityType, entityLabel, onEntityClick, isRevertible, onRevert, confidence, actor, timestamp, actionType, domain, icon, reverted, className, }: SystemActionEntryProps): react_jsx_runtime.JSX.Element;
|
|
4457
|
+
|
|
4458
|
+
interface ProcessHealthMetric {
|
|
4459
|
+
/** Metric name */
|
|
4460
|
+
name: string;
|
|
4461
|
+
/** Health status */
|
|
4462
|
+
status: 'good' | 'warning' | 'critical';
|
|
4463
|
+
/** Display value */
|
|
4464
|
+
value: string;
|
|
4465
|
+
/** Optional trend indicator */
|
|
4466
|
+
trend?: 'up' | 'down' | 'stable';
|
|
4467
|
+
}
|
|
4468
|
+
interface ProcessHealthBarProps {
|
|
4469
|
+
/** Process area name */
|
|
4470
|
+
processName: string;
|
|
4471
|
+
/** Health metrics for this process */
|
|
4472
|
+
metrics: ProcessHealthMetric[];
|
|
4473
|
+
/** Click handler for the process area */
|
|
4474
|
+
onClick?: () => void;
|
|
4475
|
+
/** Additional className */
|
|
4476
|
+
className?: string;
|
|
4477
|
+
}
|
|
4478
|
+
/**
|
|
4479
|
+
* ProcessHealthBar — Compact horizontal process health overview
|
|
4480
|
+
*
|
|
4481
|
+
* Shows traffic-light indicators for a process area's KPIs.
|
|
4482
|
+
* Used in the persona-adaptive dashboard to show overall process health.
|
|
4483
|
+
*/
|
|
4484
|
+
declare function ProcessHealthBar({ processName, metrics, onClick, className, }: ProcessHealthBarProps): react_jsx_runtime.JSX.Element;
|
|
4485
|
+
|
|
4486
|
+
interface FunnelStage {
|
|
4487
|
+
/** Stage name */
|
|
4488
|
+
name: string;
|
|
4489
|
+
/** Stage count */
|
|
4490
|
+
count: number;
|
|
4491
|
+
/** Display value (e.g., formatted currency) */
|
|
4492
|
+
value?: string;
|
|
4493
|
+
/** Color for this stage */
|
|
4494
|
+
color?: string;
|
|
4495
|
+
}
|
|
4496
|
+
interface FunnelChartProps {
|
|
4497
|
+
/** Funnel stages in order (widest to narrowest) */
|
|
4498
|
+
stages: FunnelStage[];
|
|
4499
|
+
/** Chart height in pixels */
|
|
4500
|
+
height?: number;
|
|
4501
|
+
/** Whether to show conversion rates between stages */
|
|
4502
|
+
showConversion?: boolean;
|
|
4503
|
+
/** Click handler for a stage */
|
|
4504
|
+
onStageClick?: (stageName: string) => void;
|
|
4505
|
+
/** Additional className */
|
|
4506
|
+
className?: string;
|
|
4507
|
+
}
|
|
4508
|
+
/**
|
|
4509
|
+
* FunnelChart — SVG funnel visualization for pipeline stages
|
|
4510
|
+
*
|
|
4511
|
+
* Renders a vertical funnel where each stage's width is proportional
|
|
4512
|
+
* to its count relative to the first (widest) stage.
|
|
4513
|
+
* Shows stage names, counts, values, and optional conversion rates.
|
|
4514
|
+
*/
|
|
4515
|
+
declare function FunnelChart({ stages, height, showConversion, onStageClick, className, }: FunnelChartProps): react_jsx_runtime.JSX.Element | null;
|
|
4516
|
+
|
|
4517
|
+
interface DashboardWidget {
|
|
4518
|
+
/** Widget unique ID */
|
|
4519
|
+
id: string;
|
|
4520
|
+
/** Widget display name */
|
|
4521
|
+
name: string;
|
|
4522
|
+
/** Widget size */
|
|
4523
|
+
size: 'sm' | 'md' | 'lg' | 'full';
|
|
4524
|
+
/** Render function for widget content */
|
|
4525
|
+
render: () => React__default.ReactNode;
|
|
4526
|
+
}
|
|
4527
|
+
interface PersonaDashboardProps {
|
|
4528
|
+
/** Persona display name */
|
|
4529
|
+
personaName: string;
|
|
4530
|
+
/** System action summary component (hero position) */
|
|
4531
|
+
systemSummary?: React__default.ReactNode;
|
|
4532
|
+
/** Pending attention component */
|
|
4533
|
+
pendingAttention?: React__default.ReactNode;
|
|
4534
|
+
/** Process health indicators */
|
|
4535
|
+
processHealth?: React__default.ReactNode;
|
|
4536
|
+
/** Persona-specific widgets */
|
|
4537
|
+
widgets: DashboardWidget[];
|
|
4538
|
+
/** Additional className */
|
|
4539
|
+
className?: string;
|
|
4540
|
+
}
|
|
4541
|
+
/**
|
|
4542
|
+
* PersonaDashboard — Adaptive dashboard shell for persona-specific widgets
|
|
4543
|
+
*
|
|
4544
|
+
* Provides the common dashboard structure:
|
|
4545
|
+
* 1. System action summary (hero, persona-filtered)
|
|
4546
|
+
* 2. Pending attention items
|
|
4547
|
+
* 3. Process health indicators
|
|
4548
|
+
* 4. Persona-specific widgets in a responsive grid
|
|
4549
|
+
*
|
|
4550
|
+
* Used as the layout container on the Home page, populated with
|
|
4551
|
+
* role-specific widgets based on the resolved persona.
|
|
4552
|
+
*/
|
|
4553
|
+
declare function PersonaDashboard({ personaName, systemSummary, pendingAttention, processHealth, widgets, className, }: PersonaDashboardProps): react_jsx_runtime.JSX.Element;
|
|
4554
|
+
|
|
4555
|
+
interface ConfidenceIndicatorProps {
|
|
4556
|
+
/** Confidence score (0-100) */
|
|
4557
|
+
score: number;
|
|
4558
|
+
/** Label to display below the gauge */
|
|
4559
|
+
label?: string;
|
|
4560
|
+
/** Size in pixels */
|
|
4561
|
+
size?: number;
|
|
4562
|
+
/** Stroke width */
|
|
4563
|
+
strokeWidth?: number;
|
|
4564
|
+
/** Additional className */
|
|
4565
|
+
className?: string;
|
|
4566
|
+
}
|
|
4567
|
+
/**
|
|
4568
|
+
* ConfidenceIndicator — Circular gauge showing confidence percentage
|
|
4569
|
+
*
|
|
4570
|
+
* Renders a circular progress arc with color based on score thresholds:
|
|
4571
|
+
* - >= 80: green (high confidence)
|
|
4572
|
+
* - >= 50: yellow (medium confidence)
|
|
4573
|
+
* - < 50: red (low confidence)
|
|
4574
|
+
*
|
|
4575
|
+
* Used in review workflows and process views to show system confidence
|
|
4576
|
+
* in automated actions.
|
|
4577
|
+
*/
|
|
4578
|
+
declare function ConfidenceIndicator({ score, label, size, strokeWidth, className, }: ConfidenceIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
4579
|
+
|
|
4580
|
+
interface ConfidenceBadgeProps {
|
|
4581
|
+
/** Confidence score (0-100) */
|
|
4582
|
+
score: number;
|
|
4583
|
+
/** Whether to show the score as text */
|
|
4584
|
+
showScore?: boolean;
|
|
4585
|
+
/** Size variant */
|
|
4586
|
+
size?: 'sm' | 'md';
|
|
4587
|
+
/** Additional className */
|
|
4588
|
+
className?: string;
|
|
4589
|
+
}
|
|
4590
|
+
/**
|
|
4591
|
+
* ConfidenceBadge — Compact inline confidence display
|
|
4592
|
+
*
|
|
4593
|
+
* Shows a color-coded badge with optional score text.
|
|
4594
|
+
* Used in table cells, Kanban cards, and list items where
|
|
4595
|
+
* the full ConfidenceIndicator gauge would be too large.
|
|
4596
|
+
*/
|
|
4597
|
+
declare function ConfidenceBadge({ score, showScore, size, className, }: ConfidenceBadgeProps): react_jsx_runtime.JSX.Element;
|
|
4598
|
+
|
|
4599
|
+
interface ConfidenceBreakdown {
|
|
4600
|
+
/** Factor name */
|
|
4601
|
+
factor: string;
|
|
4602
|
+
/** Factor score (0-100) */
|
|
4603
|
+
score: number;
|
|
4604
|
+
/** Factor description */
|
|
4605
|
+
description?: string;
|
|
4606
|
+
}
|
|
4607
|
+
interface ReviewAction {
|
|
4608
|
+
/** Button label */
|
|
4609
|
+
label: string;
|
|
4610
|
+
/** Button variant */
|
|
4611
|
+
variant?: 'primary' | 'secondary' | 'danger' | 'ghost';
|
|
4612
|
+
/** Click handler */
|
|
4613
|
+
onClick: () => void;
|
|
4614
|
+
/** Icon */
|
|
4615
|
+
icon?: React__default.ReactNode;
|
|
4616
|
+
}
|
|
4617
|
+
interface ReviewDecisionCardProps {
|
|
4618
|
+
/** Card title — what needs review */
|
|
4619
|
+
title: string;
|
|
4620
|
+
/** Description */
|
|
4621
|
+
description?: string;
|
|
4622
|
+
/** Overall confidence score (0-100) */
|
|
4623
|
+
confidence: number;
|
|
4624
|
+
/** Confidence breakdown by factor */
|
|
4625
|
+
breakdown?: ConfidenceBreakdown[];
|
|
4626
|
+
/** System recommendation */
|
|
4627
|
+
recommendation?: string;
|
|
4628
|
+
/** Available actions (approve, reject, etc.) */
|
|
4629
|
+
actions: ReviewAction[];
|
|
4630
|
+
/** Entity type and identifier */
|
|
4631
|
+
entityType?: string;
|
|
4632
|
+
entityLabel?: string;
|
|
4633
|
+
/** Click handler for entity link */
|
|
4634
|
+
onEntityClick?: () => void;
|
|
4635
|
+
/** Additional notes/context */
|
|
4636
|
+
notes?: string;
|
|
4637
|
+
/** Timestamp */
|
|
4638
|
+
timestamp?: string;
|
|
4639
|
+
/** Additional className */
|
|
4640
|
+
className?: string;
|
|
4641
|
+
}
|
|
4642
|
+
/**
|
|
4643
|
+
* ReviewDecisionCard — Action card with confidence breakdown
|
|
4644
|
+
*
|
|
4645
|
+
* Extended ActionCard pattern that includes a confidence gauge and
|
|
4646
|
+
* per-factor confidence breakdown. Used in the Approvals & Review queue
|
|
4647
|
+
* for items requiring human judgment.
|
|
4648
|
+
*/
|
|
4649
|
+
declare function ReviewDecisionCard({ title, description, confidence, breakdown, recommendation, actions, entityType, entityLabel, onEntityClick, notes, timestamp, className, }: ReviewDecisionCardProps): react_jsx_runtime.JSX.Element;
|
|
4650
|
+
|
|
4651
|
+
interface AnomalyBannerProps {
|
|
4652
|
+
/** Anomaly title/summary */
|
|
4653
|
+
title: string;
|
|
4654
|
+
/** Detailed description */
|
|
4655
|
+
description?: string;
|
|
4656
|
+
/** Severity level */
|
|
4657
|
+
severity?: 'info' | 'warning' | 'critical';
|
|
4658
|
+
/** Affected entity count */
|
|
4659
|
+
affectedCount?: number;
|
|
4660
|
+
/** Action button label */
|
|
4661
|
+
actionLabel?: string;
|
|
4662
|
+
/** Action button handler */
|
|
4663
|
+
onAction?: () => void;
|
|
4664
|
+
/** Dismiss handler */
|
|
4665
|
+
onDismiss?: () => void;
|
|
4666
|
+
/** Additional className */
|
|
4667
|
+
className?: string;
|
|
4668
|
+
}
|
|
4669
|
+
/**
|
|
4670
|
+
* AnomalyBanner — Alert banner for anomaly detection
|
|
4671
|
+
*
|
|
4672
|
+
* Shows a prominent banner when the system detects unusual patterns.
|
|
4673
|
+
* Severity levels: info (FYI), warning (review recommended), critical (immediate action).
|
|
4674
|
+
* Used at the top of process views and dashboards.
|
|
4675
|
+
*/
|
|
4676
|
+
declare function AnomalyBanner({ title, description, severity, affectedCount, actionLabel, onAction, onDismiss, className, }: AnomalyBannerProps): react_jsx_runtime.JSX.Element;
|
|
4677
|
+
|
|
4151
4678
|
interface BadgeProps {
|
|
4152
4679
|
children?: React__default.ReactNode;
|
|
4153
4680
|
variant?: 'success' | 'warning' | 'error' | 'caution' | 'info' | 'neutral';
|
|
@@ -7610,5 +8137,5 @@ declare function Responsive({ mobile, tablet, desktop, }: {
|
|
|
7610
8137
|
desktop?: ReactNode;
|
|
7611
8138
|
}): react_jsx_runtime.JSX.Element;
|
|
7612
8139
|
|
|
7613
|
-
export { Accordion, AchievementBadge, AchievementUnlock, ActionBar, ActionBarCenter, ActionBarLeft, ActionBarRight, ActionButton, ActivityFeed, AdminModal, Alert, AlertDialog, AppLayout, Autocomplete, Avatar, BREAKPOINTS, Badge, BottomNavigation, BottomNavigationSpacer, BottomSheet, BottomSheetActions, BottomSheetContent, BottomSheetHeader, Box, Breadcrumbs, Button, ButtonGroup, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CardView, Carousel, Celebration, Checkbox, CheckboxList, Chip, ChipGroup, CollaboratorAvatars, Collapsible, CollapsibleSection, ColorPicker, Combobox, ComingSoon, CommandPalette, CompactStat, ConfirmDialog, ContextMenu, ControlBar, CurrencyDisplay, CurrencyInput, Dashboard, DashboardContent, DashboardHeader, DataGrid, DataTable, DataTableCardView, DateDisplay, DatePicker, DateRangePicker, DateTimePicker, DesktopOnly, Drawer, DrawerFooter, DropZone, Dropdown, DropdownTrigger, EmptyState, ErrorBoundary, ExpandablePanel, ExpandablePanelContainer, ExpandablePanelSpacer, ExpandableRowButton, ExpandableToolbar, ExpandedRowEditForm, ExportButton, FORMULA_CATEGORIES, FORMULA_DEFINITIONS, FORMULA_NAMES, FieldArray, FileUpload, FilterBar, FilterControls, FilterStatusBanner, FloatingActionButton, Form, FormContext, FormControl, FormWizard, Grid, GridItem, HelpTooltip, Hide, HorizontalScroll, HoverCard, InfiniteScroll, Input, InviteCard, KanbanBoard, Layout, Loading, LoadingOverlay, Logo, MarkdownEditor, MaskedInput, Menu, MenuDivider, MobileHeader, MobileHeaderSpacer, MobileLayout, MobileOnly, MobileProvider, Modal, ModalFooter, MotivationalMessage, MultiSelect, NotificationBanner, NotificationBar, NotificationBell, NotificationIndicator, NumberInput, Page, PageHeader, PageLayout, PageNavigation, Pagination, PasswordInput, PermissionBadge, PivotTable, Popover, PriorityAlertBanner, Progress, ProgressCelebration, PullToRefresh, QueryTransparency, RadioGroup, Rating, Responsive, RichTextEditor, SearchBar, SearchableList, Select, Separator, SharedBadge, Show, Sidebar, SidebarGroup, Skeleton, SkeletonCard, SkeletonTable, SkipLink, Slider, Spreadsheet, SpreadsheetReport, Stack, StatCard$1 as StatCard, StatItem, StatsCardGrid, StatsGrid, StatusBadge, StatusBar, StepIndicator, Stepper, StreakBadge, SuccessCheck, SummaryCard, SwipeActions, SwipeableCard, SwipeableListItem, Switch, Tabs, TabsContent, TabsList, TabsRoot, TabsTrigger, Text, Textarea, ThemeToggle, TimePicker, Timeline, TimezoneSelector, Toast, ToastContainer, Tooltip, Transfer, TreeView, TwoColumnContent, UserProfileButton, addErrorMessage, addInfoMessage, addSuccessMessage, addWarningMessage, calculateColumnWidth, createActionsSection, createFiltersSection, createMultiSheetExcel, createPageControlsSection, createQueryDetailsSection, exportDataTableToExcel, exportToExcel, formatStatisticValue, formatStatistics, getFormula, getFormulasByCategory, getLocalTimezone, isValidTimezone, loadColumnOrder, loadColumnWidths, reorderArray, saveColumnOrder, saveColumnWidths, searchFormulas, statusManager, useBreadcrumbReset, useBreakpoint, useBreakpointValue, useCelebration, useColumnReorder, useColumnResize, useCommandPalette, useConfirmDialog, useDelighters, useFABScroll, useFormContext, useIsDesktop, useIsMobile, useIsTablet, useIsTouchDevice, useMediaQuery, useMobileContext, useOrientation, usePrefersMobile, useResponsiveCallback, useSafeAreaInsets, useViewportSize, withMobileContext };
|
|
7614
|
-
export type { AccordionItem, AccordionProps, AchievementBadgeData, AchievementBadgeProps, AchievementUnlockProps, ActionBarAction, ActionBarProps, ActionButtonProps, ActionsSectionProps, ActivityFeedProps, ActivityItem, AdminModalProps, AdminModalTab, AlertDialogAction, AlertDialogProps, AlertProps, AppLayoutProps, AppliedFilter, AutocompleteHandle, AutocompleteOption, AutocompleteProps, AvatarProps, BadgeProps, BaseDataItem, BottomNavItem, BottomNavigationProps, BottomSheetActionsProps, BottomSheetContentProps, BottomSheetHeaderProps, BottomSheetProps, BoxProps, BreadcrumbItem, BreadcrumbNavigationState, BreadcrumbsProps, Breakpoint, ButtonGroupOption, ButtonGroupProps, ButtonProps, CalendarEvent, CalendarProps, CardProps, CardViewConfig, CardViewItem, CarouselItem, CarouselProps, CelebrationOptions, CelebrationProps, CelebrationType, CellValue, CheckboxFormField, CheckboxListItem, CheckboxListProps, CheckboxProps, ChipGroupProps, ChipProps, Collaborator, CollaboratorAvatarsProps, CollapsibleProps, CollapsibleSectionProps, ColorPickerProps, ColumnOrder, ColumnResize, ComboboxHandle, ComboboxOption, ComboboxProps, ComingSoonProps, Command, CommandPaletteProps, CompactStatProps, CompactStatTrend, ConfirmDialogProps, ContextMenuProps, ControlBarProps, ControlBarSection, CurrencyDisplayProps, CurrencyInputProps, DashboardContentProps, DashboardHeaderProps, DashboardProps, DataFetchParams, DataGridCell, DataGridColumn, DataGridHandle, DataGridProps, DataTableAction, DataTableCardViewProps, DataTableColumn, DataTableExportOptions, DateDisplayProps, DatePickerHandle, DatePickerProps, DateRange, DateRangePickerHandle, DateRangePickerProps, DateTimePickerProps, DrawerProps, DropZoneProps, DropdownItem, DropdownProps, EmptyStateProps, ErrorBoundaryProps, ExcelColumn, ExpandablePanelProps, ExpandableRowButtonProps, ExpandableToolbarProps, ExpandedRowConfig, ExpandedRowEditFormProps, ExpansionMode, ExportButtonProps, ExportFormat, ExportToExcelOptions, FABAction, FieldArrayProps, FieldErrors, FileUploadProps, FilterBarProps, FilterConfig, FiltersSectionProps, FloatingActionButtonProps, FormContextValue, FormControlProps, FormField, FormFieldType, FormProps, FormWizardProps, FormattedStatistic, FormulaCategory, FormulaDefinition, FormulaParameter, FrozenRowMode, GridItemProps, GridProps, HelpTooltipProps, HorizontalScrollProps, HoverCardProps, InfiniteScrollProps, InputProps, InviteCardProps, KanbanBoardProps, KanbanCard, KanbanColumn, LayoutProps, LoadingOverlayProps, LoadingProps, LogoProps, MarkdownEditorProps, MaskType, MaskedInputHandle, MaskedInputProps, MenuItem, MenuProps, MobileContextValue, MobileHeaderProps, MobileLayoutProps, MobileProviderProps, ModalProps, MotivationalMessageProps, MultiSelectHandle, MultiSelectOption, MultiSelectProps, MultiSheetExcelOptions, NotificationBannerAction, NotificationBannerProps, NotificationBellPosition, NotificationBellProps, NotificationBellStyle, NotificationIndicatorProps, NotificationItem, NumberInputProps, Orientation, PageControlsSectionProps, PageHeaderAction, PageHeaderProps, PageNavigationProps, PageProps, PaginationProps, PaginationResponse, PasswordInputHandle, PasswordInputProps, PasswordStrength, PendingInvite, PermissionBadgeProps, PermissionLevel, PivotTableProps, PopoverProps, PriorityAlert, PriorityAlertBannerProps, ProgressCelebrationProps, ProgressProps, PullToRefreshProps, QueryDetailsSectionProps, QueryTransparencyInfo, QueryTransparencyProps, RadioGroupProps, RadioOption, RatingProps, RichTextEditorProps, SearchBarProps, SearchableListItem, SearchableListProps, SelectFormField, SelectHandle, SelectOption, SelectProps, SeparatorProps, SharedBadgeProps, SidebarGroupProps, SidebarItem, SidebarProps, SkipLinkProps, SliderProps, SortConfig, SpreadsheetCell, SpreadsheetProps, StackProps, StatCardProps, StatItemProps, StatisticConfig, StatisticFormat, StatsGridProps, StatusBadgeProps, StatusBarProps, StatusMessage, StatusType, Step, StepConfig, StepIndicatorProps, StepperProps, StreakBadgeProps, SuccessCheckProps, SummaryCardAction, SummaryCardProps, SummaryCardTrend, SwipeAction, SwipeActionsProps, SwipeListAction, SwipeAction$1 as SwipeableCardAction, SwipeableCardProps, SwipeableListItemProps, SwitchFormField, SwitchProps, Tab, TabsContentProps, TabsListProps, TabsProps, TabsRootProps, TabsTriggerProps, TextFormField, TextProps, TextareaFormField, TextareaProps, ThemeToggleProps, TimePickerHandle, TimePickerProps, TimelineItem, TimelineProps, TimezoneOption, TimezoneRegion, TimezoneSelectorProps, ToastAction, ToastProps, ToastType, ToolbarSection, TooltipProps, TransferItem, TransferProps, TreeNode, TreeViewProps, TwoColumnContentProps, UploadedFile, UseColumnReorderOptions, UseColumnResizeOptions, UseDataTableOptions, UseDataTableReturn, UseDelightersReturn, UserProfileButtonProps, ValidationRule, ValidationState$1 as ValidationState, ViewportSize, WizardStep };
|
|
8140
|
+
export { Accordion, AchievementBadge, AchievementUnlock, ActionBar, ActionBarCenter, ActionBarLeft, ActionBarRight, ActionButton, ActionCard, ActivityFeed, AdminModal, Alert, AlertDialog, AnomalyBanner, AppLayout, Autocomplete, Avatar, BREAKPOINTS, Badge, BottomNavigation, BottomNavigationSpacer, BottomSheet, BottomSheetActions, BottomSheetContent, BottomSheetHeader, Box, Breadcrumbs, Button, ButtonGroup, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CardView, Carousel, CaseQueueItem, Celebration, Checkbox, CheckboxList, Chip, ChipGroup, CollaboratorAvatars, Collapsible, CollapsibleSection, ColorPicker, Combobox, ComingSoon, CommandPalette, CompactStat, ConfidenceBadge, ConfidenceIndicator, ConfirmDialog, ContextMenu, ControlBar, CurrencyDisplay, CurrencyInput, Dashboard, DashboardContent, DashboardHeader, DataGrid, DataTable, DataTableCardView, DateDisplay, DatePicker, DateRangePicker, DateTimePicker, DesktopOnly, Drawer, DrawerFooter, DropZone, Dropdown, DropdownTrigger, EmptyState, EntityCard, ErrorBoundary, ExpandablePanel, ExpandablePanelContainer, ExpandablePanelSpacer, ExpandableRowButton, ExpandableToolbar, ExpandedRowEditForm, ExportButton, FORMULA_CATEGORIES, FORMULA_DEFINITIONS, FORMULA_NAMES, FieldArray, FileUpload, FilterBar, FilterControls, FilterStatusBanner, FloatingActionButton, Form, FormContext, FormControl, FormWizard, FunnelChart, Grid, GridItem, HelpTooltip, Hide, HorizontalScroll, HoverCard, InfiniteScroll, Input, InviteCard, KanbanBoard, Layout, Loading, LoadingOverlay, Logo, MarkdownEditor, MaskedInput, MatchIndicator, Menu, MenuDivider, MobileHeader, MobileHeaderSpacer, MobileLayout, MobileOnly, MobileProvider, Modal, ModalFooter, MotivationalMessage, MultiSelect, NotificationBanner, NotificationBar, NotificationBell, NotificationIndicator, NumberInput, Page, PageHeader, PageLayout, PageNavigation, Pagination, PasswordInput, PermissionBadge, PersonaDashboard, PivotTable, Popover, PriorityAlertBanner, ProcessHealthBar, ProcessIndicator, Progress, ProgressCelebration, PullToRefresh, QueryTransparency, RadioGroup, Rating, Responsive, ReviewDecisionCard, RichTextEditor, SLAIndicator, SearchBar, SearchableList, Select, Separator, SharedBadge, Show, Sidebar, SidebarGroup, Skeleton, SkeletonCard, SkeletonTable, SkipLink, Slider, SplitPane, Spreadsheet, SpreadsheetReport, Stack, StatCard$1 as StatCard, StatItem, StatsCardGrid, StatsGrid, StatusBadge, StatusBar, StepIndicator, Stepper, StreakBadge, SuccessCheck, SummaryCard, SwipeActions, SwipeableCard, SwipeableListItem, Switch, SystemActionEntry, Tabs, TabsContent, TabsList, TabsRoot, TabsTrigger, Text, Textarea, ThemeToggle, TimePicker, Timeline, TimezoneSelector, Toast, ToastContainer, Tooltip, Transfer, TreeView, TwoColumnContent, UserProfileButton, VarianceDisplay, addErrorMessage, addInfoMessage, addSuccessMessage, addWarningMessage, calculateColumnWidth, createActionsSection, createFiltersSection, createMultiSheetExcel, createPageControlsSection, createQueryDetailsSection, exportDataTableToExcel, exportToExcel, formatStatisticValue, formatStatistics, getFormula, getFormulasByCategory, getLocalTimezone, isValidTimezone, loadColumnOrder, loadColumnWidths, reorderArray, saveColumnOrder, saveColumnWidths, searchFormulas, statusManager, useBreadcrumbReset, useBreakpoint, useBreakpointValue, useCelebration, useColumnReorder, useColumnResize, useCommandPalette, useConfirmDialog, useDelighters, useFABScroll, useFormContext, useIsDesktop, useIsMobile, useIsTablet, useIsTouchDevice, useMediaQuery, useMobileContext, useOrientation, usePrefersMobile, useResponsiveCallback, useSafeAreaInsets, useViewportSize, withMobileContext };
|
|
8141
|
+
export type { AccordionItem, AccordionProps, AchievementBadgeData, AchievementBadgeProps, AchievementUnlockProps, ActionBarAction, ActionBarProps, ActionButtonProps, ActionCardAction, ActionCardProps, ActionsSectionProps, ActivityFeedProps, ActivityItem, AdminModalProps, AdminModalTab, AlertDialogAction, AlertDialogProps, AlertProps, AnomalyBannerProps, AppLayoutProps, AppliedFilter, AutocompleteHandle, AutocompleteOption, AutocompleteProps, AvatarProps, BadgeProps, BaseDataItem, BottomNavItem, BottomNavigationProps, BottomSheetActionsProps, BottomSheetContentProps, BottomSheetHeaderProps, BottomSheetProps, BoxProps, BreadcrumbItem, BreadcrumbNavigationState, BreadcrumbsProps, Breakpoint, ButtonGroupOption, ButtonGroupProps, ButtonProps, CalendarEvent, CalendarProps, CardProps, CardViewConfig, CardViewItem, CarouselItem, CarouselProps, CaseQueueItemProps, CelebrationOptions, CelebrationProps, CelebrationType, CellValue, CheckboxFormField, CheckboxListItem, CheckboxListProps, CheckboxProps, ChipGroupProps, ChipProps, Collaborator, CollaboratorAvatarsProps, CollapsibleProps, CollapsibleSectionProps, ColorPickerProps, ColumnOrder, ColumnResize, ComboboxHandle, ComboboxOption, ComboboxProps, ComingSoonProps, Command, CommandPaletteProps, CompactStatProps, CompactStatTrend, ConfidenceBadgeProps, ConfidenceBreakdown, ConfidenceIndicatorProps, ConfirmDialogProps, ContextMenuProps, ControlBarProps, ControlBarSection, CurrencyDisplayProps, CurrencyInputProps, DashboardContentProps, DashboardHeaderProps, DashboardProps, DashboardWidget, DataFetchParams, DataGridCell, DataGridColumn, DataGridHandle, DataGridProps, DataTableAction, DataTableCardViewProps, DataTableColumn, DataTableExportOptions, DateDisplayProps, DatePickerHandle, DatePickerProps, DateRange, DateRangePickerHandle, DateRangePickerProps, DateTimePickerProps, DrawerProps, DropZoneProps, DropdownItem, DropdownProps, EmptyStateProps, EntityCardProps, ErrorBoundaryProps, ExcelColumn, ExpandablePanelProps, ExpandableRowButtonProps, ExpandableToolbarProps, ExpandedRowConfig, ExpandedRowEditFormProps, ExpansionMode, ExportButtonProps, ExportFormat, ExportToExcelOptions, FABAction, FieldArrayProps, FieldErrors, FileUploadProps, FilterBarProps, FilterConfig, FiltersSectionProps, FloatingActionButtonProps, FormContextValue, FormControlProps, FormField, FormFieldType, FormProps, FormWizardProps, FormattedStatistic, FormulaCategory, FormulaDefinition, FormulaParameter, FrozenRowMode, FunnelChartProps, FunnelStage, GridItemProps, GridProps, HelpTooltipProps, HorizontalScrollProps, HoverCardProps, InfiniteScrollProps, InputProps, InviteCardProps, KanbanBoardProps, KanbanCard, KanbanColumn, LayoutProps, LoadingOverlayProps, LoadingProps, LogoProps, MarkdownEditorProps, MaskType, MaskedInputHandle, MaskedInputProps, MatchIndicatorProps, MenuItem, MenuProps, MobileContextValue, MobileHeaderProps, MobileLayoutProps, MobileProviderProps, ModalProps, MotivationalMessageProps, MultiSelectHandle, MultiSelectOption, MultiSelectProps, MultiSheetExcelOptions, NotificationBannerAction, NotificationBannerProps, NotificationBellPosition, NotificationBellProps, NotificationBellStyle, NotificationIndicatorProps, NotificationItem, NumberInputProps, Orientation, PageControlsSectionProps, PageHeaderAction, PageHeaderProps, PageNavigationProps, PageProps, PaginationProps, PaginationResponse, PasswordInputHandle, PasswordInputProps, PasswordStrength, PendingInvite, PermissionBadgeProps, PermissionLevel, PersonaDashboardProps, PivotTableProps, PopoverProps, PriorityAlert, PriorityAlertBannerProps, ProcessHealthBarProps, ProcessHealthMetric, ProcessIndicatorProps, ProcessStage, ProgressCelebrationProps, ProgressProps, PullToRefreshProps, QueryDetailsSectionProps, QueryTransparencyInfo, QueryTransparencyProps, RadioGroupProps, RadioOption, RatingProps, ReviewAction, ReviewDecisionCardProps, RichTextEditorProps, SLAIndicatorProps, SearchBarProps, SearchableListItem, SearchableListProps, SelectFormField, SelectHandle, SelectOption, SelectProps, SeparatorProps, SharedBadgeProps, SidebarGroupProps, SidebarItem, SidebarProps, SkipLinkProps, SliderProps, SortConfig, SplitPaneProps, SpreadsheetCell, SpreadsheetProps, StackProps, StatCardProps, StatItemProps, StatisticConfig, StatisticFormat, StatsGridProps, StatusBadgeProps, StatusBarProps, StatusMessage, StatusType, Step, StepConfig, StepIndicatorProps, StepperProps, StreakBadgeProps, SuccessCheckProps, SummaryCardAction, SummaryCardProps, SummaryCardTrend, SwipeAction, SwipeActionsProps, SwipeListAction, SwipeAction$1 as SwipeableCardAction, SwipeableCardProps, SwipeableListItemProps, SwitchFormField, SwitchProps, SystemActionEntryProps, Tab, TabsContentProps, TabsListProps, TabsProps, TabsRootProps, TabsTriggerProps, TextFormField, TextProps, TextareaFormField, TextareaProps, ThemeToggleProps, TimePickerHandle, TimePickerProps, TimelineItem, TimelineProps, TimezoneOption, TimezoneRegion, TimezoneSelectorProps, ToastAction, ToastProps, ToastType, ToolbarSection, TooltipProps, TransferItem, TransferProps, TreeNode, TreeViewProps, TwoColumnContentProps, UploadedFile, UseColumnReorderOptions, UseColumnResizeOptions, UseDataTableOptions, UseDataTableReturn, UseDelightersReturn, UserProfileButtonProps, ValidationRule, ValidationState$1 as ValidationState, VarianceDisplayProps, ViewportSize, WizardStep };
|