@freedom-code-compliance/fcc-redesign 0.1.50 → 0.1.52

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/index.d.ts ADDED
@@ -0,0 +1,554 @@
1
+ import type { CSSProperties, ReactNode } from 'react'
2
+ import type { ComponentPropsWithoutRef, ComponentType, JSX } from 'react'
3
+
4
+ type FCCAnyComponent = ComponentType<Record<string, unknown>>
5
+
6
+ export type FCCChatTab = 'hubs' | 'tickets' | 'dms'
7
+ export type FCCChatViewport = 'mobile' | 'smallDesktop' | 'bigDesktop'
8
+
9
+ export interface FCCChatSelection<Item = FCCChatHubItem | FCCChatTicketItem | FCCChatDMItem> {
10
+ tab: FCCChatTab
11
+ kind: FCCChatTab
12
+ id: string
13
+ item: Item
14
+ }
15
+
16
+ export interface FCCChatAvatarGroupItem {
17
+ id?: string
18
+ name?: string
19
+ avatarUrl?: string
20
+ avatarText?: string
21
+ presenceStatus?: 'available' | 'plan_review' | 'unavailable' | 'offline_insp' | 'offline'
22
+ }
23
+
24
+ export interface FCCChatBaseItem {
25
+ id: string
26
+ title: ReactNode
27
+ name?: ReactNode
28
+ subtitle?: ReactNode
29
+ description?: ReactNode
30
+ meta?: ReactNode
31
+ time?: ReactNode
32
+ countLabel?: ReactNode
33
+ messageCount?: number
34
+ replyCount?: number
35
+ subscribed?: boolean
36
+ unread?: boolean
37
+ group?: 'open' | 'resolved' | string
38
+ isClosed?: boolean
39
+ isResolved?: boolean
40
+ dotColor?: string
41
+ statusLabel?: ReactNode
42
+ badge?: ReactNode
43
+ avatar?: ReactNode
44
+ avatarUrl?: string
45
+ avatarGroup?: FCCChatAvatarGroupItem[]
46
+ avatarText?: string
47
+ avatarStyle?: CSSProperties
48
+ presenceStatus?: 'available' | 'plan_review' | 'unavailable' | 'offline_insp' | 'offline'
49
+ }
50
+
51
+ export interface FCCChatHubItem extends FCCChatBaseItem {}
52
+ export interface FCCChatTicketItem extends FCCChatBaseItem {}
53
+ export interface FCCChatDMItem extends FCCChatBaseItem {}
54
+
55
+ export interface FCCChatFilterState {
56
+ search?: string
57
+ mode?: 'subscribed' | 'all'
58
+ sortBy?: 'last_activity' | 'created_at' | 'title'
59
+ ticketSortBy?: 'last_activity' | 'created_at' | 'title'
60
+ status?: '' | 'open' | 'resolved'
61
+ ticketStatus?: '' | 'open' | 'resolved'
62
+ searchByTab?: Partial<Record<FCCChatTab, string>>
63
+ modeByTab?: Partial<Record<FCCChatTab, 'subscribed' | 'all'>>
64
+ }
65
+
66
+ export interface FCCChatAttachment {
67
+ id?: string
68
+ name?: string
69
+ url?: string
70
+ thumbnailUrl?: string
71
+ alt?: string
72
+ [key: string]: unknown
73
+ }
74
+
75
+ export interface FCCChatReaction {
76
+ emoji?: ReactNode
77
+ label?: ReactNode
78
+ count?: ReactNode
79
+ }
80
+
81
+ export interface FCCChatAuthor {
82
+ id?: string
83
+ name?: string
84
+ avatar?: ReactNode
85
+ avatarUrl?: string
86
+ avatarText?: string
87
+ avatarStyle?: CSSProperties
88
+ presenceStatus?: 'available' | 'plan_review' | 'unavailable' | 'offline_insp' | 'offline'
89
+ }
90
+
91
+ export interface FCCChatMessage {
92
+ id?: string
93
+ type?: 'message' | 'divider'
94
+ label?: ReactNode
95
+ from?: string
96
+ isOwn?: boolean
97
+ author?: FCCChatAuthor
98
+ authorName?: ReactNode
99
+ time?: ReactNode
100
+ body?: ReactNode
101
+ text?: ReactNode
102
+ attachments?: FCCChatAttachment[]
103
+ attachmentLayout?: 'default' | 'ticket' | 'hub'
104
+ reactions?: FCCChatReaction[]
105
+ hideReplyAction?: boolean
106
+ hideQuoteReplyAction?: boolean
107
+ onReaction?: (message: FCCChatMessage) => void
108
+ onReply?: (message: FCCChatMessage) => void
109
+ onQuoteReply?: (message: FCCChatMessage) => void
110
+ onMoreActions?: (message: FCCChatMessage) => void
111
+ onCopy?: (message: FCCChatMessage) => void
112
+ [key: string]: unknown
113
+ }
114
+
115
+ export interface FCCChatHubUpdate extends FCCChatMessage {
116
+ author?: FCCChatAuthor
117
+ }
118
+
119
+ export interface FCCChatDetailModel {
120
+ id: string
121
+ kind: FCCChatTab
122
+ title?: ReactNode
123
+ subtitle?: ReactNode
124
+ projectId?: string
125
+ participantCount?: number
126
+ tags?: Array<string | { label: ReactNode }>
127
+ actions?: ReactNode
128
+ status?: string
129
+ statusSteps?: string[]
130
+ messages?: FCCChatMessage[]
131
+ updates?: FCCChatHubUpdate[]
132
+ hubAction?: ReactNode
133
+ onOpenProject?: (projectId?: string) => void
134
+ onSelectUpdate?: (update: FCCChatHubUpdate) => void
135
+ onMessageReaction?: (message: FCCChatMessage) => void
136
+ onMessageReply?: (message: FCCChatMessage) => void
137
+ onMessageQuoteReply?: (message: FCCChatMessage) => void
138
+ onMessageMoreActions?: (message: FCCChatMessage) => void
139
+ onMessageCopy?: (message: FCCChatMessage) => void
140
+ composerPlaceholder?: string
141
+ onSubmit?: (value: string) => void
142
+ [key: string]: unknown
143
+ }
144
+
145
+ export interface FCCChatDetailSlotProps {
146
+ detail: FCCChatDetailModel
147
+ onCloseDetail?: () => void
148
+ }
149
+
150
+ export type FCCChatHubDetailSlotProps = FCCChatDetailSlotProps
151
+ export type FCCChatTicketDetailSlotProps = FCCChatDetailSlotProps
152
+ export type FCCChatDMDetailSlotProps = FCCChatDetailSlotProps
153
+
154
+ export interface FCCChatComposerSlotProps {
155
+ detail: FCCChatDetailModel
156
+ }
157
+
158
+ export interface FCCChatSidebarSlots {
159
+ headerActions?: ReactNode
160
+ hubsToolbarActions?: ReactNode
161
+ ticketsToolbarActions?: ReactNode
162
+ dmsToolbarActions?: ReactNode
163
+ renderHubDetail?: (hub: FCCChatHubDetailSlotProps) => ReactNode
164
+ renderTicketDetail?: (ticket: FCCChatTicketDetailSlotProps) => ReactNode
165
+ renderDMDetail?: (dm: FCCChatDMDetailSlotProps) => ReactNode
166
+ renderComposer?: (props: FCCChatComposerSlotProps) => ReactNode
167
+ renderMessageAttachment?: (attachment: FCCChatAttachment) => ReactNode
168
+ renderInlineReply?: (message: FCCChatMessage) => ReactNode
169
+ footerAction?: ReactNode
170
+ }
171
+
172
+ export interface FCCChatSidebarProps extends Omit<ComponentPropsWithoutRef<'section'>, 'title' | 'onSelect'> {
173
+ open: boolean
174
+ activeTab: FCCChatTab
175
+ onTabChange: (tab: FCCChatTab) => void
176
+ onClose: () => void
177
+ title?: ReactNode
178
+ scopedTitle?: ReactNode
179
+ hubs: FCCChatHubItem[]
180
+ tickets: FCCChatTicketItem[]
181
+ dms: FCCChatDMItem[]
182
+ selectedId?: string | null
183
+ detailOpen: boolean
184
+ onSelectItem: (item: FCCChatSelection) => void
185
+ onCloseDetail: () => void
186
+ loading?: Partial<Record<FCCChatTab | 'detail', boolean>>
187
+ error?: Partial<Record<FCCChatTab | 'detail', ReactNode>>
188
+ filters?: FCCChatFilterState
189
+ onFiltersChange?: (filters: FCCChatFilterState) => void
190
+ detail: FCCChatDetailModel | null
191
+ slots?: FCCChatSidebarSlots
192
+ mobilePortalTargetSelector?: string | null
193
+ }
194
+
195
+ export interface FCCChatMessageListProps {
196
+ messages?: FCCChatMessage[]
197
+ renderMessageAttachment?: (attachment: FCCChatAttachment) => ReactNode
198
+ renderInlineReply?: (message: FCCChatMessage) => ReactNode
199
+ emptyLabel?: ReactNode
200
+ attachmentLayout?: 'default' | 'ticket' | 'hub'
201
+ onMessageReaction?: (message: FCCChatMessage) => void
202
+ onMessageReply?: (message: FCCChatMessage) => void
203
+ onMessageQuoteReply?: (message: FCCChatMessage) => void
204
+ onMessageMoreActions?: (message: FCCChatMessage) => void
205
+ onMessageCopy?: (message: FCCChatMessage) => void
206
+ }
207
+
208
+ export interface FCCChatComposerFrameProps {
209
+ placeholder?: string
210
+ value?: string
211
+ onChange?: (value: string) => void
212
+ onSubmit?: (value: string) => void
213
+ disabled?: boolean
214
+ leadingAction?: ReactNode
215
+ sendLabel?: string
216
+ children?: ReactNode
217
+ }
218
+
219
+ export interface FCCChatHubFeedProps {
220
+ updates?: FCCChatHubUpdate[]
221
+ onSelectUpdate?: (update: FCCChatHubUpdate) => void
222
+ action?: ReactNode
223
+ renderMessageAttachment?: (attachment: FCCChatAttachment) => ReactNode
224
+ renderInlineReply?: (message: FCCChatMessage) => ReactNode
225
+ }
226
+
227
+ export interface FCCChatTicketStatusTrackerProps {
228
+ steps?: string[]
229
+ current?: string
230
+ }
231
+
232
+ export function FCCChatSidebar(props: FCCChatSidebarProps): JSX.Element
233
+ export function FCCChatMessageList(props: FCCChatMessageListProps): JSX.Element
234
+ export function FCCChatComposerFrame(props: FCCChatComposerFrameProps): JSX.Element
235
+ export function FCCChatHubFeed(props: FCCChatHubFeedProps): JSX.Element
236
+ export function FCCChatTicketStatusTracker(props: FCCChatTicketStatusTrackerProps): JSX.Element
237
+
238
+ export const FCC_CHAT_TABS: Array<{ id: FCCChatTab; label: string }>
239
+ export const FCC_CHAT_WIDTHS: {
240
+ rail: number
241
+ detail: number
242
+ small: number
243
+ mobile: '100%'
244
+ }
245
+ export const FCC_CHAT_BREAKPOINTS: {
246
+ mobile: number
247
+ smallDesktop: number
248
+ }
249
+
250
+ export type FCCCallsSidePanelTab = 'dial' | 'calls' | 'voicemail'
251
+
252
+ export interface FCCCallsDepartmentOption {
253
+ value: string
254
+ label: ReactNode
255
+ }
256
+
257
+ export interface FCCCallsPerson {
258
+ name?: string
259
+ number?: string
260
+ avatarUrl?: string
261
+ [key: string]: unknown
262
+ }
263
+
264
+ export interface FCCCallsTicket {
265
+ number?: string
266
+ department?: string
267
+ [key: string]: unknown
268
+ }
269
+
270
+ export interface FCCCallsHistoryItem {
271
+ id: string
272
+ caller?: FCCCallsPerson
273
+ direction?: 'inbound' | 'outbound' | string
274
+ outcome?: 'completed' | 'voicemail' | 'missed' | 'transferred' | 'callback' | string
275
+ startedAt?: string
276
+ durationSec?: number
277
+ department?: string
278
+ phoneNumber?: string
279
+ number?: string
280
+ ticket?: FCCCallsTicket | null
281
+ [key: string]: unknown
282
+ }
283
+
284
+ export interface FCCCallsQueueItem {
285
+ id: string
286
+ caller?: FCCCallsPerson
287
+ status?: 'open' | 'resolved' | 'called_back' | string
288
+ assignedTo?: { userId?: string; [key: string]: unknown } | null
289
+ department?: string
290
+ ticket?: FCCCallsTicket | null
291
+ [key: string]: unknown
292
+ }
293
+
294
+ export interface FCCCallsVoicemailItem extends FCCCallsQueueItem {
295
+ transcript?: ReactNode
296
+ receivedAt?: string
297
+ durationSec?: number
298
+ }
299
+
300
+ export interface FCCCallsCallbackItem extends FCCCallsQueueItem {
301
+ reason?: ReactNode
302
+ createdAt?: string
303
+ slaDeadlineAt?: string
304
+ }
305
+
306
+ export interface FCCCallsSidePanelProps {
307
+ activeTab?: FCCCallsSidePanelTab
308
+ callbacks?: FCCCallsCallbackItem[]
309
+ className?: string
310
+ currentUserId?: string | null
311
+ defaultDepartment?: string
312
+ defaultDialValue?: string
313
+ defaultTab?: FCCCallsSidePanelTab
314
+ departments?: FCCCallsDepartmentOption[]
315
+ departmentValue?: string
316
+ dialDisabled?: boolean
317
+ dialValue?: string
318
+ headerActions?: ReactNode
319
+ history?: FCCCallsHistoryItem[]
320
+ isDialing?: boolean
321
+ newCount?: number
322
+ onClaimCallback?: (callback: FCCCallsCallbackItem) => void
323
+ onClaimVoicemail?: (voicemail: FCCCallsVoicemailItem) => void
324
+ onClose?: () => void
325
+ onCompleteCallback?: (callback: FCCCallsCallbackItem) => void
326
+ onDepartmentChange?: (department: string) => void
327
+ onDial?: (number: string) => void
328
+ onDialValueChange?: (number: string) => void
329
+ onExpand?: () => void
330
+ onMore?: () => void
331
+ onOpenTicket?: (item: FCCCallsHistoryItem | FCCCallsVoicemailItem | FCCCallsCallbackItem) => void
332
+ onRedial?: (call: FCCCallsHistoryItem) => void
333
+ onResolveVoicemail?: (voicemail: FCCCallsVoicemailItem) => void
334
+ onReviewVoicemail?: (voicemail: FCCCallsVoicemailItem) => void
335
+ onSelectCall?: (call: FCCCallsHistoryItem) => void
336
+ onTabChange?: (tab: FCCCallsSidePanelTab) => void
337
+ recentLimit?: number
338
+ showMoreAction?: boolean
339
+ title?: ReactNode
340
+ voicemails?: FCCCallsVoicemailItem[]
341
+ }
342
+
343
+ export function FCCCallsSidePanel(props: FCCCallsSidePanelProps): JSX.Element
344
+
345
+ export const FCCDesignProvider: FCCAnyComponent
346
+ export const ThemeProvider: FCCAnyComponent
347
+ export function useTheme(): unknown
348
+ export const FCCAppShell: FCCAnyComponent
349
+ export const FCCAppShellContext: unknown
350
+ export function useFCCAppShell(): unknown
351
+ export const FCCSidebar: FCCAnyComponent
352
+ export const FCCMainWindow: FCCAnyComponent
353
+ export const FCCWorkspaceHeader: FCCAnyComponent
354
+ export const FCCBreadcrumbs: FCCAnyComponent
355
+ export const FCCHeaderStatus: FCCAnyComponent
356
+ export const FCCBrandLogo: FCCAnyComponent
357
+ export const FCCThemeToggle: FCCAnyComponent
358
+ export const FCCSidePanel: FCCAnyComponent
359
+ export const FCCSidePanelHeader: FCCAnyComponent
360
+ export const FCCSidePanelBody: FCCAnyComponent
361
+ export const FCCSidePanelTabs: FCCAnyComponent
362
+ export const FCCSidePanelSearch: FCCAnyComponent
363
+ export const FCCSidePanelGroupLabel: FCCAnyComponent
364
+ export const FCCSidePanelItem: FCCAnyComponent
365
+ export const FCCSidePanelCard: FCCAnyComponent
366
+ export const FCCSidePanelContact: FCCAnyComponent
367
+ export const FCCSidePanelAction: FCCAnyComponent
368
+ export const FCCSidePanelChatWrap: FCCAnyComponent
369
+ export const FCCSidePanelConversation: FCCAnyComponent
370
+ export const FCCSidePanelMessage: FCCAnyComponent
371
+ export const FCCDetailsPanel: FCCAnyComponent
372
+ export const FCCFullPagePanel: FCCAnyComponent
373
+ export const FCCFullPagePanelHeader: FCCAnyComponent
374
+ export const FCCFullPagePanelHeaderRevealZone: FCCAnyComponent
375
+ export const FCCFullPagePanelSubHeader: FCCAnyComponent
376
+ export const FCCFullPagePanelToolbar: FCCAnyComponent
377
+ export const FCCFullPagePanelBody: FCCAnyComponent
378
+ export const FCCFullPagePanelMain: FCCAnyComponent
379
+ export const FCCFullPagePanelSidebar: FCCAnyComponent
380
+ export const FCCFullPagePanelResizableSidebar: FCCAnyComponent
381
+ export const FCCFullPagePanelBottomControls: FCCAnyComponent
382
+ export const FCCFullPagePanelFooter: FCCAnyComponent
383
+ export const FCCFullPagePanelSidebarFooter: FCCAnyComponent
384
+ export const Accordion: FCCAnyComponent
385
+ export const AccordionItem: FCCAnyComponent
386
+ export const AppLoader: FCCAnyComponent
387
+ export const Spinner: FCCAnyComponent
388
+ export const FCCLoader: FCCAnyComponent
389
+ export const Avatar: FCCAnyComponent
390
+ export const Badge: FCCAnyComponent
391
+ export const Button: FCCAnyComponent
392
+ export const Card: FCCAnyComponent
393
+ export const CardHeader: FCCAnyComponent
394
+ export const CardTitle: FCCAnyComponent
395
+ export const CardDescription: FCCAnyComponent
396
+ export const CardContent: FCCAnyComponent
397
+ export const CardFooter: FCCAnyComponent
398
+ export const CardLayer: FCCAnyComponent
399
+ export const CardHoverActions: FCCAnyComponent
400
+ export const CardHoverAction: FCCAnyComponent
401
+ export const Dialog: FCCAnyComponent
402
+ export const DialogHeader: FCCAnyComponent
403
+ export const DialogTitle: FCCAnyComponent
404
+ export const DialogDescription: FCCAnyComponent
405
+ export const DialogBody: FCCAnyComponent
406
+ export const DialogFooter: FCCAnyComponent
407
+ export const Input: FCCAnyComponent
408
+ export const DropdownMenu: FCCAnyComponent
409
+ export const DropdownMenuItem: FCCAnyComponent
410
+ export const DropdownMenuCheckboxItem: FCCAnyComponent
411
+ export const DropdownMenuLabel: FCCAnyComponent
412
+ export const DropdownMenuSeparator: FCCAnyComponent
413
+ export const SearchableSelect: FCCAnyComponent
414
+ export const Sheet: FCCAnyComponent
415
+ export const SheetFooter: FCCAnyComponent
416
+ export const StatusMetric: FCCAnyComponent
417
+ export const Switch: FCCAnyComponent
418
+ export const Tabs: FCCAnyComponent
419
+ export const TabsList: FCCAnyComponent
420
+ export const TabsTrigger: FCCAnyComponent
421
+ export const TabsContent: FCCAnyComponent
422
+ export const Textarea: FCCAnyComponent
423
+ export const ToastProvider: FCCAnyComponent
424
+ export function useToast(): unknown
425
+ export const Tooltip: FCCAnyComponent
426
+ export const ViewModeToggle: FCCAnyComponent
427
+ export const DEFAULT_VIEW_MODE_OPTIONS: unknown
428
+ export const DEFAULT_ICON_BY_VALUE: unknown
429
+ export const WorkspaceTabs: FCCAnyComponent
430
+ export const Callbar: FCCAnyComponent
431
+ export const CallCard: FCCAnyComponent
432
+ export const CallControlsBar: FCCAnyComponent
433
+ export const PresenceDot: FCCAnyComponent
434
+ export const PresenceAvatar: FCCAnyComponent
435
+ export const TicketLinkChip: FCCAnyComponent
436
+ export const QueueItem: FCCAnyComponent
437
+ export const ActivityFeed: FCCAnyComponent
438
+ export const CommandBar: FCCAnyComponent
439
+ export const DataTable: FCCAnyComponent
440
+ export const FilterBar: FCCAnyComponent
441
+ export const KanbanBoard: FCCAnyComponent
442
+ export const KanbanColumn: FCCAnyComponent
443
+ export const KanbanCard: FCCAnyComponent
444
+ export const TableBoard: FCCAnyComponent
445
+ export const TableBoardGroup: FCCAnyComponent
446
+ export const TableBoardRow: FCCAnyComponent
447
+ export const KPICard: FCCAnyComponent
448
+ export const StatCard: FCCAnyComponent
449
+ export const NotificationsPanel: FCCAnyComponent
450
+
451
+ export type FCCIconName =
452
+ | 'inbox'
453
+ | 'issues'
454
+ | 'reviews'
455
+ | 'pulse'
456
+ | 'initiatives'
457
+ | 'projects'
458
+ | 'more'
459
+ | 'search'
460
+ | 'edit'
461
+ | 'chevronDown'
462
+ | 'chevronUp'
463
+ | 'chevron-down'
464
+ | 'chevron-up'
465
+ | 'star'
466
+ | 'statusInProgress'
467
+ | 'statusDone'
468
+ | 'statusTodo'
469
+ | 'statusBacklog'
470
+ | 'statusCancelled'
471
+ | 'status-in-progress'
472
+ | 'status-done'
473
+ | 'status-todo'
474
+ | 'status-backlog'
475
+ | 'status-cancelled'
476
+ | 'priorityUrgent'
477
+ | 'priorityHigh'
478
+ | 'priorityMedium'
479
+ | 'priorityLow'
480
+ | 'priority-urgent'
481
+ | 'priority-high'
482
+ | 'priority-medium'
483
+ | 'priority-low'
484
+ | 'link'
485
+ | 'trash'
486
+ | 'settings'
487
+ | 'close'
488
+ | 'check'
489
+ | 'copy'
490
+ | 'bell'
491
+ | 'calendar'
492
+ | 'filter'
493
+ | 'user'
494
+ | 'label'
495
+
496
+ export interface FCCIconProps extends ComponentPropsWithoutRef<'svg'> {
497
+ size?: number | string
498
+ title?: string
499
+ }
500
+
501
+ export interface FCCIconWrapperProps extends FCCIconProps {
502
+ name?: FCCIconName | string
503
+ icon?: ComponentType<FCCIconProps & Record<string, unknown>>
504
+ color?: string
505
+ }
506
+
507
+ export interface FCCHeaderIconButtonProps extends ComponentPropsWithoutRef<'button'> {
508
+ icon?: ReactNode | ComponentType<FCCIconProps & Record<string, unknown>>
509
+ iconName?: FCCIconName | string
510
+ iconSize?: number | string
511
+ label: string
512
+ active?: boolean
513
+ badge?: ReactNode
514
+ badgeLabel?: string
515
+ badgeClassName?: string
516
+ }
517
+
518
+ export const FCC_ICON_MAP: Readonly<Record<string, ComponentType<FCCIconProps>>>
519
+ export const FCC_ICON_ALIASES: Readonly<Record<string, string>>
520
+ export function resolveFCCIconComponent(name?: FCCIconName | string): ComponentType<FCCIconProps> | null
521
+ export function FCCIcon(props?: FCCIconWrapperProps): JSX.Element | null
522
+ export const FCCHeaderIconButton: ComponentType<FCCHeaderIconButtonProps>
523
+ export function InboxIcon(props?: FCCIconProps): JSX.Element
524
+ export function IssuesIcon(props?: FCCIconProps): JSX.Element
525
+ export function ReviewsIcon(props?: FCCIconProps): JSX.Element
526
+ export function PulseIcon(props?: FCCIconProps): JSX.Element
527
+ export function InitiativesIcon(props?: FCCIconProps): JSX.Element
528
+ export function ProjectsIcon(props?: FCCIconProps): JSX.Element
529
+ export function MoreIcon(props?: FCCIconProps): JSX.Element
530
+ export function SearchIcon(props?: FCCIconProps): JSX.Element
531
+ export function EditIcon(props?: FCCIconProps): JSX.Element
532
+ export function ChevronDown(props?: FCCIconProps): JSX.Element
533
+ export function ChevronUp(props?: FCCIconProps): JSX.Element
534
+ export function StarIcon(props?: FCCIconProps): JSX.Element
535
+ export function StatusInProgress(props?: FCCIconProps): JSX.Element
536
+ export function StatusDone(props?: FCCIconProps): JSX.Element
537
+ export function StatusTodo(props?: FCCIconProps): JSX.Element
538
+ export function StatusBacklog(props?: FCCIconProps): JSX.Element
539
+ export function StatusCancelled(props?: FCCIconProps): JSX.Element
540
+ export function PriorityUrgent(props?: FCCIconProps): JSX.Element
541
+ export function PriorityHigh(props?: FCCIconProps): JSX.Element
542
+ export function PriorityMedium(props?: FCCIconProps): JSX.Element
543
+ export function PriorityLow(props?: FCCIconProps): JSX.Element
544
+ export function LinkIcon(props?: FCCIconProps): JSX.Element
545
+ export function TrashIcon(props?: FCCIconProps): JSX.Element
546
+ export function SettingsIcon(props?: FCCIconProps): JSX.Element
547
+ export function CloseIcon(props?: FCCIconProps): JSX.Element
548
+ export function CheckIcon(props?: FCCIconProps): JSX.Element
549
+ export function CopyIcon(props?: FCCIconProps): JSX.Element
550
+ export function BellIcon(props?: FCCIconProps): JSX.Element
551
+ export function CalendarIcon(props?: FCCIconProps): JSX.Element
552
+ export function FilterIcon(props?: FCCIconProps): JSX.Element
553
+ export function UserIcon(props?: FCCIconProps): JSX.Element
554
+ export function LabelIcon(props?: FCCIconProps): JSX.Element
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@freedom-code-compliance/fcc-redesign",
3
3
  "private": false,
4
- "version": "0.1.50",
4
+ "version": "0.1.52",
5
5
  "description": "Reusable FCC design system components and theme for fccPRO and fccOPS.",
6
6
  "type": "module",
7
7
  "repository": {
@@ -14,8 +14,10 @@
14
14
  },
15
15
  "main": "./dist/index.cjs",
16
16
  "module": "./dist/index.js",
17
+ "types": "./index.d.ts",
17
18
  "exports": {
18
19
  ".": {
20
+ "types": "./index.d.ts",
19
21
  "import": "./dist/index.js",
20
22
  "require": "./dist/index.cjs"
21
23
  },
@@ -27,6 +29,7 @@
27
29
  },
28
30
  "files": [
29
31
  "dist",
32
+ "index.d.ts",
30
33
  "README.md"
31
34
  ],
32
35
  "sideEffects": [