@freedom-code-compliance/fcc-redesign 0.1.53 → 0.1.54
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/index.d.ts +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -358,6 +358,16 @@ export const FCC_CHAT_BREAKPOINTS: {
|
|
|
358
358
|
mobile: number
|
|
359
359
|
smallDesktop: number
|
|
360
360
|
}
|
|
361
|
+
export interface FCCChatSidebarWidths {
|
|
362
|
+
viewport: FCCChatViewport
|
|
363
|
+
railWidth: number
|
|
364
|
+
detailWidth: number
|
|
365
|
+
collapsedWidth: number
|
|
366
|
+
expandedWidth: number
|
|
367
|
+
currentWidth: number
|
|
368
|
+
}
|
|
369
|
+
export function useFCCChatViewport(): FCCChatViewport
|
|
370
|
+
export function useFCCChatSidebarWidths(detailOpen?: boolean): FCCChatSidebarWidths
|
|
361
371
|
|
|
362
372
|
export type FCCCallsSidePanelTab = 'dial' | 'calls' | 'voicemail'
|
|
363
373
|
|
package/package.json
CHANGED