@pstdio/ui 0.0.3 → 0.1.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/EquationComponent-DeDYHvqY.js +62 -0
- package/dist/EquationComponent-DeDYHvqY.js.map +1 -0
- package/dist/chat-ui.js +1366 -0
- package/dist/chat-ui.js.map +1 -0
- package/dist/components/button.stories.d.ts +18 -0
- package/dist/components/chat-ui/components/ai-conversation.d.ts +1161 -0
- package/dist/components/chat-ui/index.d.ts +13 -0
- package/{storybook-static → dist}/components/chat-ui/tool-rendering/build-timeline.d.ts +2 -2
- package/dist/components/chat-ui/utils/get-icon.d.ts +34 -0
- package/{storybook-static → dist}/components/column-file-browser.d.ts +1 -2
- package/dist/components/column-file-browser.stories.d.ts +15 -0
- package/dist/components/data-table/build-columns.d.ts +3 -0
- package/dist/components/data-table/data-table.d.ts +2 -0
- package/{storybook-static/components → dist/components/data-table}/data-table.stories.d.ts +1 -1
- package/dist/components/data-table/helpers.d.ts +10 -0
- package/dist/components/data-table/index.d.ts +3 -0
- package/dist/components/data-table/pagination-footer.d.ts +5 -0
- package/dist/components/data-table/selection-toolbar.d.ts +9 -0
- package/{storybook-static/components/data-table.d.ts → dist/components/data-table/types.d.ts} +6 -4
- package/dist/components/documentation/docs-changelog.d.ts +20 -0
- package/dist/components/documentation/docs-changelog.stories.d.ts +15 -0
- package/dist/components/documentation/docs-outline.d.ts +13 -0
- package/dist/components/documentation/docs-outline.stories.d.ts +16 -0
- package/dist/components/documentation/docs-pagination.d.ts +10 -0
- package/dist/components/documentation/docs-pagination.stories.d.ts +14 -0
- package/dist/components/documentation/docs-sidebar.d.ts +14 -0
- package/dist/components/documentation/docs-sidebar.stories.d.ts +7 -0
- package/{storybook-static → dist}/components/file-selector.d.ts +1 -2
- package/dist/components/file-selector.stories.d.ts +17 -0
- package/dist/components/folder-picker-dialog.d.ts +25 -0
- package/{storybook-static/components/style-guide.stories.d.ts → dist/components/folder-picker-dialog.stories.d.ts} +2 -5
- package/{storybook-static → dist}/components/info-card.d.ts +1 -2
- package/dist/components/info-card.stories.d.ts +41 -0
- package/{storybook-static → dist}/components/menu-item.d.ts +1 -1
- package/dist/components/menu-item.stories.d.ts +72 -0
- package/dist/components/number-input.d.ts +8 -0
- package/{storybook-static → dist}/components/panel-menu.d.ts +2 -0
- package/{storybook-static → dist}/components/panel-menu.stories.d.ts +1 -0
- package/{storybook-static → dist}/components/param-editor.stories.d.ts +1 -0
- package/{storybook-static → dist}/components/rich-text/collaborative-markdown-editor/collaborative-markdown-editor.d.ts +1 -0
- package/{storybook-static → dist}/components/rich-text/markdown-editor/markdown-editor.d.ts +1 -0
- package/{storybook-static → dist}/components/rich-text/markdown-editor/markdown-editor.stories.d.ts +1 -0
- package/dist/components/rich-text/utils/inferResourceType.d.ts +1 -0
- package/dist/components/session-indicator.d.ts +14 -0
- package/dist/components/session-indicator.stories.d.ts +11 -0
- package/dist/components/slider.stories.d.ts +15 -0
- package/dist/components/style-guide.stories.d.ts +28 -0
- package/dist/components/switch.d.ts +15 -0
- package/dist/components/switch.stories.d.ts +16 -0
- package/dist/components/tickets/ticket-board.d.ts +33 -0
- package/dist/components/tickets/ticket-board.stories.d.ts +5 -0
- package/dist/components/tickets/ticket-card.d.ts +25 -0
- package/dist/components/tickets/ticket-card.stories.d.ts +17 -0
- package/dist/components/tickets/ticket-list.d.ts +23 -0
- package/dist/components/tickets/ticket-list.stories.d.ts +10 -0
- package/dist/components/toaster.d.ts +3 -0
- package/dist/empty-state-Bu1ocnPz.js +70 -0
- package/dist/empty-state-Bu1ocnPz.js.map +1 -0
- package/dist/index.d.ts +43 -0
- package/dist/index.js +1278 -0
- package/dist/index.js.map +1 -0
- package/dist/rich-message-CNDoACE7.js +1402 -0
- package/dist/rich-message-CNDoACE7.js.map +1 -0
- package/dist/rich-text.js +490 -0
- package/dist/rich-text.js.map +1 -0
- package/dist/style.css +1 -0
- package/{storybook-static → dist}/theme/primitives/colors.d.ts +12 -22
- package/dist/theme/recipes/menu.d.ts +1 -0
- package/{storybook-static → dist}/theme/tokens/borders.d.ts +6 -6
- package/{storybook-static → dist}/theme/tokens/colors.d.ts +180 -0
- package/dist/theme-C7CIuIPZ.js +2067 -0
- package/dist/theme-C7CIuIPZ.js.map +1 -0
- package/{src/theme/index.ts → dist/theme.js} +5 -2
- package/dist/theme.js.map +1 -0
- package/dist/tooltip-Gm7PLwZG.js +51 -0
- package/dist/tooltip-Gm7PLwZG.js.map +1 -0
- package/{storybook-static/theme/applyThemePreference.d.ts → dist/utils/apply-theme-preference.d.ts} +1 -1
- package/{storybook-static/theme → dist/utils}/theme-preference.d.ts +3 -3
- package/package.json +9 -8
- package/.storybook/main.ts +0 -28
- package/.storybook/preview.tsx +0 -28
- package/.storybook/vitest.setup.ts +0 -6
- package/src/components/alert.tsx +0 -27
- package/src/components/breadcrumb.stories.tsx +0 -40
- package/src/components/breadcrumb.tsx +0 -67
- package/src/components/button.stories.tsx +0 -151
- package/src/components/chat-ui/agent-types.ts +0 -231
- package/src/components/chat-ui/components/ai-conversation.stories.tsx +0 -49
- package/src/components/chat-ui/components/ai-conversation.tsx +0 -68
- package/src/components/chat-ui/components/ai-message.stories.tsx +0 -60
- package/src/components/chat-ui/components/ai-message.tsx +0 -103
- package/src/components/chat-ui/components/ai-response.stories.tsx +0 -48
- package/src/components/chat-ui/components/ai-response.tsx +0 -19
- package/src/components/chat-ui/components/approval-prompt.tsx +0 -51
- package/src/components/chat-ui/components/attachment-list.stories.tsx +0 -24
- package/src/components/chat-ui/components/attachment-list.tsx +0 -76
- package/src/components/chat-ui/components/auto-scroll.tsx +0 -42
- package/src/components/chat-ui/components/chat-input.stories.tsx +0 -114
- package/src/components/chat-ui/components/chat-input.tsx +0 -142
- package/src/components/chat-ui/components/chat-panel.stories.tsx +0 -396
- package/src/components/chat-ui/components/chat-panel.tsx +0 -97
- package/src/components/chat-ui/components/message-parts-renderer.stories.tsx +0 -59
- package/src/components/chat-ui/components/message-parts-renderer.tsx +0 -133
- package/src/components/chat-ui/components/message-types.ts +0 -40
- package/src/components/chat-ui/components/model-swap-separator.stories.tsx +0 -27
- package/src/components/chat-ui/components/model-swap-separator.tsx +0 -20
- package/src/components/chat-ui/components/send-button.tsx +0 -56
- package/src/components/chat-ui/components/timeline.tsx +0 -414
- package/src/components/chat-ui/components/tool-invocation-timeline.stories.tsx +0 -32
- package/src/components/chat-ui/components/tool-invocation-timeline.tsx +0 -16
- package/src/components/chat-ui/index.ts +0 -15
- package/src/components/chat-ui/mocks/full-conversation-normalized.json +0 -3557
- package/src/components/chat-ui/tool-rendering/build-timeline.ts +0 -127
- package/src/components/chat-ui/tool-rendering/default-renderers.ts +0 -420
- package/src/components/chat-ui/tool-rendering/index.ts +0 -3
- package/src/components/chat-ui/tool-rendering/types.ts +0 -19
- package/src/components/chat-ui/utils/diff.ts +0 -228
- package/src/components/chat-ui/utils/editor-state.ts +0 -5
- package/src/components/chat-ui/utils/get-icon.ts +0 -81
- package/src/components/code-editor.tsx +0 -147
- package/src/components/column-file-browser.stories.tsx +0 -217
- package/src/components/column-file-browser.tsx +0 -380
- package/src/components/content-placeholder.tsx +0 -21
- package/src/components/data-table/build-columns.tsx +0 -78
- package/src/components/data-table/data-table.css +0 -51
- package/src/components/data-table/data-table.stories.tsx +0 -209
- package/src/components/data-table/data-table.tsx +0 -232
- package/src/components/data-table/helpers.tsx +0 -69
- package/src/components/data-table/index.ts +0 -3
- package/src/components/data-table/pagination-footer.tsx +0 -58
- package/src/components/data-table/selection-toolbar.tsx +0 -26
- package/src/components/data-table/types.ts +0 -21
- package/src/components/delete-confirmation-modal.stories.tsx +0 -46
- package/src/components/delete-confirmation-modal.tsx +0 -56
- package/src/components/diff-bubble.stories.tsx +0 -70
- package/src/components/diff-bubble.tsx +0 -70
- package/src/components/diff-card.tsx +0 -139
- package/src/components/diff-drawer.stories.tsx +0 -106
- package/src/components/diff-drawer.tsx +0 -59
- package/src/components/diff-editor.tsx +0 -55
- package/src/components/drawer-inline.stories.tsx +0 -124
- package/src/components/drawer-inline.tsx +0 -90
- package/src/components/empty-state.stories.tsx +0 -65
- package/src/components/empty-state.tsx +0 -28
- package/src/components/error-boundary.tsx +0 -80
- package/src/components/file-selector.stories.tsx +0 -166
- package/src/components/file-selector.tsx +0 -192
- package/src/components/file-tree-helpers.ts +0 -28
- package/src/components/horizontal-menu-stack.tsx +0 -15
- package/src/components/info-card.stories.tsx +0 -120
- package/src/components/info-card.tsx +0 -60
- package/src/components/item-section.stories.tsx +0 -57
- package/src/components/item-section.tsx +0 -57
- package/src/components/layout.stories.tsx +0 -341
- package/src/components/layout.tsx +0 -67
- package/src/components/menu-item.stories.tsx +0 -162
- package/src/components/menu-item.tsx +0 -207
- package/src/components/number-input.tsx +0 -21
- package/src/components/open-source-notices-screen.stories.tsx +0 -69
- package/src/components/open-source-notices-screen.tsx +0 -154
- package/src/components/panel-menu.stories.tsx +0 -44
- package/src/components/panel-menu.tsx +0 -27
- package/src/components/param-editor-color-input.tsx +0 -98
- package/src/components/param-editor-date-input.tsx +0 -106
- package/src/components/param-editor-horizontal-text-input.tsx +0 -130
- package/src/components/param-editor-horizontal.stories.tsx +0 -545
- package/src/components/param-editor-horizontal.tsx +0 -137
- package/src/components/param-editor-input-group.tsx +0 -145
- package/src/components/param-editor-number-input.tsx +0 -145
- package/src/components/param-editor-selection-input.tsx +0 -181
- package/src/components/param-editor-text-input.tsx +0 -113
- package/src/components/param-editor.stories.tsx +0 -986
- package/src/components/param-editor.tsx +0 -142
- package/src/components/param-editor.types.ts +0 -95
- package/src/components/properties.stories.tsx +0 -108
- package/src/components/properties.tsx +0 -73
- package/src/components/pstdio-logo.tsx +0 -26
- package/src/components/resource-badge.stories.tsx +0 -26
- package/src/components/resource-badge.tsx +0 -173
- package/src/components/rich-text/collaborative-markdown-editor/awareness-cursors.tsx +0 -45
- package/src/components/rich-text/collaborative-markdown-editor/collaborative-markdown-editor.stories.tsx +0 -230
- package/src/components/rich-text/collaborative-markdown-editor/collaborative-markdown-editor.tsx +0 -131
- package/src/components/rich-text/index.ts +0 -14
- package/src/components/rich-text/markdown-editor/markdown-editor.stories.tsx +0 -147
- package/src/components/rich-text/markdown-editor/markdown-editor.tsx +0 -112
- package/src/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/ReferenceLinkNode.tsx +0 -100
- package/src/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/ReferenceLinkTransformer.ts +0 -32
- package/src/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/index.ts +0 -2
- package/src/components/rich-text/prompt-input/commands.ts +0 -44
- package/src/components/rich-text/prompt-input/events.ts +0 -21
- package/src/components/rich-text/prompt-input/plugins/CommentPlugin/CommentPlugin.tsx +0 -8
- package/src/components/rich-text/prompt-input/plugins/CommentPlugin/hooks/useCommentCommands.ts +0 -49
- package/src/components/rich-text/prompt-input/plugins/CommentPlugin/hooks/useCommentSchema.ts +0 -30
- package/src/components/rich-text/prompt-input/plugins/CommentPlugin/nodes/CommentNode/CommentNode.tsx +0 -127
- package/src/components/rich-text/prompt-input/plugins/ImperativeAPIPlugin.tsx +0 -32
- package/src/components/rich-text/prompt-input/plugins/KeyboardShortcutPlugin.tsx +0 -30
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/ReferenceMenuOption.ts +0 -15
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/ReferenceMenuPlugin.tsx +0 -88
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/components/ReferenceMenu/ReferenceMenu.tsx +0 -90
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/components/ReferenceMenu/ReferenceMenuItem.tsx +0 -50
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/constants.ts +0 -3
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/hooks/useContextLookup.tsx +0 -50
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/utils/checkForTriggers.ts +0 -45
- package/src/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/utils/getSortedMenuOptions.ts +0 -20
- package/src/components/rich-text/prompt-input/plugins/ReferencePlugin/ReferencePlugin.tsx +0 -50
- package/src/components/rich-text/prompt-input/plugins/ReferencePlugin/nodes/ReferenceNode/ReferenceNode.tsx +0 -107
- package/src/components/rich-text/prompt-input/plugins/keyboard-shortcuts.ts +0 -13
- package/src/components/rich-text/prompt-input/prompt-input.stories.tsx +0 -87
- package/src/components/rich-text/prompt-input/prompt-input.tsx +0 -106
- package/src/components/rich-text/prompt-input/theme/prompt-input-theme.css +0 -3
- package/src/components/rich-text/prompt-input/theme/prompt-input-theme.ts +0 -11
- package/src/components/rich-text/prompt-input/utils.ts +0 -158
- package/src/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/ReferenceLinkNode.tsx +0 -100
- package/src/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/ReferenceLinkTransformer.ts +0 -32
- package/src/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/index.ts +0 -2
- package/src/components/rich-text/rich-message/rich-message.stories.tsx +0 -146
- package/src/components/rich-text/rich-message/rich-message.tsx +0 -118
- package/src/components/rich-text/shared/components/content-editable.tsx +0 -28
- package/src/components/rich-text/shared/components/default-rich-text-components.tsx +0 -99
- package/src/components/rich-text/shared/editor-config.ts +0 -38
- package/src/components/rich-text/shared/nodes/DataTableNode.stories.tsx +0 -52
- package/src/components/rich-text/shared/nodes/DataTableNode.tsx +0 -73
- package/src/components/rich-text/shared/plugins/CodePlugin/CodeBlockPlugin.tsx +0 -22
- package/src/components/rich-text/shared/plugins/CodePlugin/CodeNode.tsx +0 -57
- package/src/components/rich-text/shared/plugins/EquationPlugin/EquationComponent.tsx +0 -46
- package/src/components/rich-text/shared/plugins/EquationPlugin/EquationNode.tsx +0 -161
- package/src/components/rich-text/shared/plugins/EquationPlugin/EquationPlugin.css +0 -16
- package/src/components/rich-text/shared/plugins/EquationPlugin/EquationPlugin.tsx +0 -45
- package/src/components/rich-text/shared/plugins/EquationPlugin/KatexRenderer.tsx +0 -40
- package/src/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/FloatingTextFormatToolbarPlugin.css +0 -26
- package/src/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/FloatingTextFormatToolbarPlugin.tsx +0 -414
- package/src/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/index.ts +0 -1
- package/src/components/rich-text/shared/plugins/HorizontalRulePlugin/HorizontalRuleNode.ts +0 -52
- package/src/components/rich-text/shared/plugins/HorizontalRulePlugin/horizontalRule.ts +0 -16
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/LinkEditorPlugin.css +0 -163
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/LinkEditorPlugin.tsx +0 -355
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/LinkPlugin.tsx +0 -6
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/utils/getSelectedNode.ts +0 -17
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/utils/setFloatingElemPos.ts +0 -39
- package/src/components/rich-text/shared/plugins/LinkEditorPlugin/utils/url.ts +0 -23
- package/src/components/rich-text/shared/plugins/StateUpdatePlugin.tsx +0 -21
- package/src/components/rich-text/shared/plugins/TableActionMenuPlugin/TableActionMenuPlugin.tsx +0 -224
- package/src/components/rich-text/shared/plugins/TableCellResizerPlugin/TableCellResizerPlugin.css +0 -3
- package/src/components/rich-text/shared/plugins/TableCellResizerPlugin/TableCellResizerPlugin.tsx +0 -315
- package/src/components/rich-text/shared/plugins/ToggleEditablePlugin.tsx +0 -12
- package/src/components/rich-text/shared/plugins/TreeViewPlugin/TreeViewPlugin.tsx +0 -20
- package/src/components/rich-text/shared/transformers/markdown-transformers.ts +0 -123
- package/src/components/rich-text/shared/types/rich-text-components.ts +0 -17
- package/src/components/rich-text/theme/report-theme.tsx +0 -81
- package/src/components/rich-text/theme/rich-text-theme.css +0 -773
- package/src/components/rich-text/theme/rich-text-theme.tsx +0 -81
- package/src/components/rich-text/types.ts +0 -9
- package/src/components/rich-text/utils/inferResourceType.ts +0 -17
- package/src/components/rich-text/utils/markdown.ts +0 -12
- package/src/components/rich-text/utils/mediaType.ts +0 -31
- package/src/components/session-indicator.stories.tsx +0 -46
- package/src/components/session-indicator.tsx +0 -40
- package/src/components/slider.stories.tsx +0 -38
- package/src/components/slider.tsx +0 -20
- package/src/components/style-guide-data.ts +0 -374
- package/src/components/style-guide.stories.tsx +0 -212
- package/src/components/style-guide.tsx +0 -305
- package/src/components/ticket-board.stories.tsx +0 -109
- package/src/components/ticket-board.tsx +0 -167
- package/src/components/ticket-card.stories.tsx +0 -133
- package/src/components/ticket-card.tsx +0 -126
- package/src/components/toaster.stories.tsx +0 -79
- package/src/components/toaster.tsx +0 -26
- package/src/components/tooltip.tsx +0 -43
- package/src/index.ts +0 -16
- package/src/theme/global.ts +0 -49
- package/src/theme/primitives/colors.ts +0 -209
- package/src/theme/primitives/fonts.ts +0 -33
- package/src/theme/primitives/sizes.ts +0 -49
- package/src/theme/recipes/alert.ts +0 -12
- package/src/theme/recipes/button.ts +0 -124
- package/src/theme/recipes/dialog.ts +0 -11
- package/src/theme/recipes/divider.ts +0 -7
- package/src/theme/recipes/drawer.ts +0 -16
- package/src/theme/recipes/editable.ts +0 -42
- package/src/theme/recipes/form.ts +0 -11
- package/src/theme/recipes/input.ts +0 -25
- package/src/theme/recipes/menu.ts +0 -40
- package/src/theme/recipes/popover.ts +0 -46
- package/src/theme/recipes/progress-circle.ts +0 -22
- package/src/theme/recipes/skeleton.ts +0 -8
- package/src/theme/recipes/textarea.ts +0 -29
- package/src/theme/recipes/tooltip.ts +0 -15
- package/src/theme/theme.ts +0 -70
- package/src/theme/tokens/borders.ts +0 -38
- package/src/theme/tokens/colors.ts +0 -488
- package/src/theme/tokens/layer-styles.ts +0 -15
- package/src/theme/tokens/shadows.ts +0 -47
- package/src/theme/tokens/text.ts +0 -236
- package/src/utils/apply-theme-preference.ts +0 -17
- package/src/utils/formats.ts +0 -27
- package/src/utils/get-file-type-icon.ts +0 -52
- package/src/utils/theme-preference.tsx +0 -60
- package/src/vite-env.d.ts +0 -6
- package/storybook-static/assets/CodeBlockPlugin-C3OWpvP8.js +0 -281
- package/storybook-static/assets/CodeBlockPlugin-e2vWgtYm.css +0 -1
- package/storybook-static/assets/DataTableNode.stories-DLgTftOI.js +0 -33
- package/storybook-static/assets/EquationComponent-CUFxwyNf.js +0 -1
- package/storybook-static/assets/EquationComponent-DWZwfaVI.css +0 -1
- package/storybook-static/assets/FloatingTextFormatToolbarPlugin-B6jc8xvg.js +0 -1
- package/storybook-static/assets/FloatingTextFormatToolbarPlugin-D2l3--Te.css +0 -1
- package/storybook-static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- package/storybook-static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- package/storybook-static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- package/storybook-static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- package/storybook-static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- package/storybook-static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- package/storybook-static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- package/storybook-static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- package/storybook-static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- package/storybook-static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- package/storybook-static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- package/storybook-static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- package/storybook-static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- package/storybook-static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- package/storybook-static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- package/storybook-static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- package/storybook-static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- package/storybook-static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- package/storybook-static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- package/storybook-static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- package/storybook-static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- package/storybook-static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- package/storybook-static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- package/storybook-static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- package/storybook-static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- package/storybook-static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- package/storybook-static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- package/storybook-static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- package/storybook-static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- package/storybook-static/assets/LexicalHistoryPlugin.prod-BQAibkDj.js +0 -1
- package/storybook-static/assets/TreeViewPlugin-CyVKCrKJ.js +0 -24
- package/storybook-static/assets/ai-conversation-DcjS--ee.js +0 -1
- package/storybook-static/assets/ai-conversation.stories-COjWuS8V.js +0 -3
- package/storybook-static/assets/ai-message-DLdAGhWH.js +0 -1
- package/storybook-static/assets/ai-message.stories-CRTyreKL.js +0 -3
- package/storybook-static/assets/ai-response-ySM6s0iN.js +0 -1
- package/storybook-static/assets/ai-response.stories-DVBYlrGf.js +0 -11
- package/storybook-static/assets/attachment-list-1p1601I5.js +0 -1
- package/storybook-static/assets/attachment-list.stories-Cydlsnio.js +0 -7
- package/storybook-static/assets/badge-CtgJasjB.js +0 -1
- package/storybook-static/assets/breadcrumb.stories-SAjB-iqH.js +0 -5
- package/storybook-static/assets/button-C7it2n8t.js +0 -1
- package/storybook-static/assets/button.stories-BMVbbb4y.js +0 -72
- package/storybook-static/assets/chat-input-B-915nCM.js +0 -1
- package/storybook-static/assets/chat-input.stories-DrxvpT9p.js +0 -32
- package/storybook-static/assets/chat-panel.stories-D0L6eIte.js +0 -96
- package/storybook-static/assets/chevron-down-BYCAGyCV.js +0 -1
- package/storybook-static/assets/chevron-right-owK1wZnx.js +0 -1
- package/storybook-static/assets/collaborative-markdown-editor-Bj0GvTvv.js +0 -41
- package/storybook-static/assets/collaborative-markdown-editor.stories-B_MUIC5s.js +0 -11
- package/storybook-static/assets/collapsible-DBDG7h1r.js +0 -1
- package/storybook-static/assets/collapsible-content-B1Uq3jUM.js +0 -1
- package/storybook-static/assets/column-file-browser.stories-DPMQnHCw.js +0 -54
- package/storybook-static/assets/compiler-runtime-BXE7OOXE.js +0 -1
- package/storybook-static/assets/computed-style-C0hzrq9-.js +0 -1
- package/storybook-static/assets/create-recipe-context-BU56IzEo.js +0 -1
- package/storybook-static/assets/create-slot-recipe-context-DAhDE6G_.js +0 -1
- package/storybook-static/assets/create-split-props-u5h9OPvL.js +0 -1
- package/storybook-static/assets/createLucideIcon-CcBBUKX8.js +0 -1
- package/storybook-static/assets/data-table-vuIeWXui.css +0 -1
- package/storybook-static/assets/data-table.stories-Cs-q7dpj.js +0 -19
- package/storybook-static/assets/delete-confirmation-modal.stories-C8vDKFRD.js +0 -14
- package/storybook-static/assets/diff-bubble-_zZypMRt.js +0 -1
- package/storybook-static/assets/diff-bubble.stories-DfonanIk.js +0 -39
- package/storybook-static/assets/diff-drawer.stories-CGDWiKD8.js +0 -38
- package/storybook-static/assets/diff-editor-DV9BXqbn.js +0 -11
- package/storybook-static/assets/dismissable-layer-Cc5dFRd8.js +0 -1
- package/storybook-static/assets/drawer-inline.stories-B3Tp7vjL.js +0 -88
- package/storybook-static/assets/empty-state-BXkyq69k.js +0 -1
- package/storybook-static/assets/empty-state.stories-6eYYBOWR.js +0 -29
- package/storybook-static/assets/factory-BR3bc_RM.js +0 -1
- package/storybook-static/assets/factory-DAJZwK4o.js +0 -1
- package/storybook-static/assets/file-selector.stories-PKIGBUd5.js +0 -31
- package/storybook-static/assets/file-text-D5m8MJlG.js +0 -1
- package/storybook-static/assets/flex-DAJL4AFZ.js +0 -1
- package/storybook-static/assets/folder-C5dba_Co.js +0 -1
- package/storybook-static/assets/form-D_Xln9tK.js +0 -1
- package/storybook-static/assets/full-conversation-normalized-LUbl1coD.js +0 -1
- package/storybook-static/assets/grid-7OIKBlfh.js +0 -1
- package/storybook-static/assets/h-stack-DWHd8f97.js +0 -1
- package/storybook-static/assets/horizontal-menu-stack-Cph6x7ui.js +0 -1
- package/storybook-static/assets/icon-C8FN9JqD.js +0 -1
- package/storybook-static/assets/icon-button-DHiUe7rR.js +0 -1
- package/storybook-static/assets/icons-WRA1cA-W.js +0 -1
- package/storybook-static/assets/iframe-2XPD_vrQ.css +0 -1
- package/storybook-static/assets/iframe-B8FSoBNY.js +0 -1075
- package/storybook-static/assets/index-B0y2_lLF.js +0 -1
- package/storybook-static/assets/index-CXwl6T4k.js +0 -1
- package/storybook-static/assets/index-DaXC_qY_.js +0 -1
- package/storybook-static/assets/index-DpB4ozcR.js +0 -1
- package/storybook-static/assets/index-cFwdnc0b.js +0 -1
- package/storybook-static/assets/info-DlgY5-DW.js +0 -1
- package/storybook-static/assets/info-card.stories-Cry0Qfrn.js +0 -55
- package/storybook-static/assets/input-ZSs5cSFQ.js +0 -1
- package/storybook-static/assets/inter-cyrillic-400-normal-HOLc17fK.woff +0 -0
- package/storybook-static/assets/inter-cyrillic-400-normal-obahsSVq.woff2 +0 -0
- package/storybook-static/assets/inter-cyrillic-500-normal-BasfLYem.woff2 +0 -0
- package/storybook-static/assets/inter-cyrillic-500-normal-CxZf_p3X.woff +0 -0
- package/storybook-static/assets/inter-cyrillic-ext-400-normal-BQZuk6qB.woff2 +0 -0
- package/storybook-static/assets/inter-cyrillic-ext-400-normal-DQukG94-.woff +0 -0
- package/storybook-static/assets/inter-cyrillic-ext-500-normal-B0yAr1jD.woff2 +0 -0
- package/storybook-static/assets/inter-cyrillic-ext-500-normal-BmqWE9Dz.woff +0 -0
- package/storybook-static/assets/inter-greek-400-normal-B4URO6DV.woff2 +0 -0
- package/storybook-static/assets/inter-greek-400-normal-q2sYcFCs.woff +0 -0
- package/storybook-static/assets/inter-greek-500-normal-BIZE56-Y.woff2 +0 -0
- package/storybook-static/assets/inter-greek-500-normal-Xzm54t5V.woff +0 -0
- package/storybook-static/assets/inter-greek-ext-400-normal-DGGRlc-M.woff2 +0 -0
- package/storybook-static/assets/inter-greek-ext-400-normal-KugGGMne.woff +0 -0
- package/storybook-static/assets/inter-greek-ext-500-normal-2j5mBUwD.woff +0 -0
- package/storybook-static/assets/inter-greek-ext-500-normal-C4iEst2y.woff2 +0 -0
- package/storybook-static/assets/inter-latin-400-normal-C38fXH4l.woff2 +0 -0
- package/storybook-static/assets/inter-latin-400-normal-CyCys3Eg.woff +0 -0
- package/storybook-static/assets/inter-latin-500-normal-BL9OpVg8.woff +0 -0
- package/storybook-static/assets/inter-latin-500-normal-Cerq10X2.woff2 +0 -0
- package/storybook-static/assets/inter-latin-ext-400-normal-77YHD8bZ.woff +0 -0
- package/storybook-static/assets/inter-latin-ext-400-normal-C1nco2VV.woff2 +0 -0
- package/storybook-static/assets/inter-latin-ext-500-normal-BxGbmqWO.woff +0 -0
- package/storybook-static/assets/inter-latin-ext-500-normal-CV4jyFjo.woff2 +0 -0
- package/storybook-static/assets/inter-vietnamese-400-normal-Bbgyi5SW.woff +0 -0
- package/storybook-static/assets/inter-vietnamese-400-normal-DMkecbls.woff2 +0 -0
- package/storybook-static/assets/inter-vietnamese-500-normal-DOriooB6.woff2 +0 -0
- package/storybook-static/assets/inter-vietnamese-500-normal-mJboJaSs.woff +0 -0
- package/storybook-static/assets/item-section-AoQrVPNJ.js +0 -1
- package/storybook-static/assets/item-section.stories-kYTPHRsx.js +0 -24
- package/storybook-static/assets/layout.stories-DhSjwzU1.js +0 -3
- package/storybook-static/assets/link-DE5grRtm.js +0 -1
- package/storybook-static/assets/markdown-BLUemkxK.js +0 -1
- package/storybook-static/assets/markdown-editor-Y4eMsgVb.js +0 -1
- package/storybook-static/assets/markdown-editor.stories-DIWw-hRP.js +0 -115
- package/storybook-static/assets/menu-item-CrqDaj9K.js +0 -1
- package/storybook-static/assets/menu-item.stories-D9Isjjrf.js +0 -68
- package/storybook-static/assets/message-parts-renderer.stories-CewRvbm7.js +0 -5
- package/storybook-static/assets/message-types-CEyA7Qm7.js +0 -60
- package/storybook-static/assets/model-swap-separator.stories-DrQW2NWQ.js +0 -9
- package/storybook-static/assets/mutation-observer-CAfGweIM.js +0 -1
- package/storybook-static/assets/normalize-props-D7NI5JRu.js +0 -1
- package/storybook-static/assets/number-C92MPsRM.js +0 -1
- package/storybook-static/assets/number-input-D1aC-9ls.js +0 -7
- package/storybook-static/assets/onest-cyrillic-400-normal-BxvCLB5P.woff +0 -0
- package/storybook-static/assets/onest-cyrillic-400-normal-DH8vlB-A.woff2 +0 -0
- package/storybook-static/assets/onest-cyrillic-500-normal-CyY1vN0Q.woff +0 -0
- package/storybook-static/assets/onest-cyrillic-500-normal-DHyr8B2c.woff2 +0 -0
- package/storybook-static/assets/onest-cyrillic-700-normal-CwpXuTGk.woff2 +0 -0
- package/storybook-static/assets/onest-cyrillic-700-normal-DOtXtm0s.woff +0 -0
- package/storybook-static/assets/onest-latin-400-normal-BAzPRZHg.woff +0 -0
- package/storybook-static/assets/onest-latin-400-normal-bladozIj.woff2 +0 -0
- package/storybook-static/assets/onest-latin-500-normal-oFTiz6Nq.woff +0 -0
- package/storybook-static/assets/onest-latin-500-normal-qHiQtL66.woff2 +0 -0
- package/storybook-static/assets/onest-latin-700-normal-Bd6qVL4Q.woff2 +0 -0
- package/storybook-static/assets/onest-latin-700-normal-XTvQgpoh.woff +0 -0
- package/storybook-static/assets/onest-latin-ext-400-normal--mQR5RlC.woff2 +0 -0
- package/storybook-static/assets/onest-latin-ext-400-normal-BbXTNVXw.woff +0 -0
- package/storybook-static/assets/onest-latin-ext-500-normal-BlXa29q8.woff2 +0 -0
- package/storybook-static/assets/onest-latin-ext-500-normal-CoujUMv_.woff +0 -0
- package/storybook-static/assets/onest-latin-ext-700-normal-C-Tcltod.woff2 +0 -0
- package/storybook-static/assets/onest-latin-ext-700-normal-CSGWRWNE.woff +0 -0
- package/storybook-static/assets/open-source-notices-screen.stories-BpdJxDZC.js +0 -21
- package/storybook-static/assets/overflow-CkG1DOya.js +0 -1
- package/storybook-static/assets/panel-menu-CqLSrdTB.js +0 -1
- package/storybook-static/assets/panel-menu.stories-CxdWaWjq.js +0 -14
- package/storybook-static/assets/param-editor-horizontal.stories-C1o-VOjG.js +0 -561
- package/storybook-static/assets/param-editor-selection-input-2pJE1_W1.js +0 -1
- package/storybook-static/assets/param-editor.stories-0ae3y4Vu.js +0 -921
- package/storybook-static/assets/playfair-display-cyrillic-400-normal-CjW2EstV.woff2 +0 -0
- package/storybook-static/assets/playfair-display-cyrillic-400-normal-ZiRag6zj.woff +0 -0
- package/storybook-static/assets/playfair-display-cyrillic-600-normal-DbWAkkgN.woff +0 -0
- package/storybook-static/assets/playfair-display-cyrillic-600-normal-oLY6jnZ7.woff2 +0 -0
- package/storybook-static/assets/playfair-display-cyrillic-700-normal-Dk1mTcxf.woff +0 -0
- package/storybook-static/assets/playfair-display-cyrillic-700-normal-Dw3uKy19.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-400-normal-CFtfchNt.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-400-normal-DHYHbkg3.woff +0 -0
- package/storybook-static/assets/playfair-display-latin-600-normal-CZLGqjJe.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-600-normal-CxxueQ0Z.woff +0 -0
- package/storybook-static/assets/playfair-display-latin-700-normal-Bc_1Q1cG.woff +0 -0
- package/storybook-static/assets/playfair-display-latin-700-normal-CuDiGg7c.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-400-normal-BxlSGspa.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-400-normal-qdZwdvNS.woff +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-600-normal-BumBfC1v.woff +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-600-normal-CEjQclLc.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-700-normal-C58ejOkc.woff2 +0 -0
- package/storybook-static/assets/playfair-display-latin-ext-700-normal-D5HUU8GT.woff +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-400-normal-BV2APVTb.woff2 +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-400-normal-BbvUAu4N.woff +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-600-normal-BPJkAZPN.woff +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-600-normal-ICsRR-qJ.woff2 +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-700-normal-CaKJSIny.woff2 +0 -0
- package/storybook-static/assets/playfair-display-vietnamese-700-normal-Cr1rw0mr.woff +0 -0
- package/storybook-static/assets/portal-CZHfPTRw.js +0 -1
- package/storybook-static/assets/preload-helper-PPVm8Dsz.js +0 -1
- package/storybook-static/assets/prompt-input-BLCttowi.js +0 -14
- package/storybook-static/assets/prompt-input-BVbz9joI.css +0 -1
- package/storybook-static/assets/prompt-input.stories-J8-AMVXy.js +0 -9
- package/storybook-static/assets/properties.stories-Bs7ivKgb.js +0 -59
- package/storybook-static/assets/react-18-KY0R7ltw.js +0 -9
- package/storybook-static/assets/render-strategy-BebqUNCa.js +0 -1
- package/storybook-static/assets/resource-badge-Bw5UoU4J.js +0 -1
- package/storybook-static/assets/resource-badge.stories-DtSh-RX9.js +0 -9
- package/storybook-static/assets/rich-message-BIkzo1SM.js +0 -1
- package/storybook-static/assets/rich-message.stories-C9Wc4d3O.js +0 -115
- package/storybook-static/assets/rich-text-theme-Bkhh9rAZ.js +0 -14
- package/storybook-static/assets/rich-text-theme-K2MBoCbx.css +0 -1
- package/storybook-static/assets/separator-CQkMOHNm.js +0 -1
- package/storybook-static/assets/settings-DUgg22A7.js +0 -1
- package/storybook-static/assets/simple-grid-DIKjhnVI.js +0 -1
- package/storybook-static/assets/spinner-ZYH_gvW-.js +0 -1
- package/storybook-static/assets/stack-CN4X31TA.js +0 -1
- package/storybook-static/assets/star-CvcHIXRa.js +0 -1
- package/storybook-static/assets/style-guide.stories-BUvEhZov.js +0 -6
- package/storybook-static/assets/tabbable-DHAf8oAu.js +0 -1
- package/storybook-static/assets/table-BKNSzs2r.js +0 -1
- package/storybook-static/assets/textarea-rqmaWSc5.js +0 -1
- package/storybook-static/assets/toaster-d9nN0H7K.js +0 -1
- package/storybook-static/assets/toaster.stories-BRVCYyaM.js +0 -52
- package/storybook-static/assets/tool-invocation-timeline-B-cS0W6M.js +0 -59
- package/storybook-static/assets/tool-invocation-timeline.stories-DXO59O73.js +0 -5
- package/storybook-static/assets/tooltip-C_a-XGZ8.js +0 -1
- package/storybook-static/assets/tooltip-DZxUoouw.js +0 -1
- package/storybook-static/assets/trash-2-BO05slEk.js +0 -1
- package/storybook-static/assets/typeahead-CuY9WxfQ.js +0 -1
- package/storybook-static/assets/use-field-context-DoxKQlMm.js +0 -1
- package/storybook-static/assets/use-presence-context-DK2PGZth.js +0 -1
- package/storybook-static/assets/v-stack-Btoq6OB_.js +0 -1
- package/storybook-static/assets/x-D42ziktz.js +0 -1
- package/storybook-static/components/chat-ui/mocks/full-conversation-normalized.json.d.ts +0 -3560
- package/storybook-static/components/rich-text/utils/inferResourceType.d.ts +0 -1
- package/storybook-static/favicon-wrapper.svg +0 -46
- package/storybook-static/favicon.svg +0 -1
- package/storybook-static/iframe.html +0 -705
- package/storybook-static/index.d.ts +0 -14
- package/storybook-static/index.html +0 -150
- package/storybook-static/index.json +0 -1
- package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/project.json +0 -1
- package/storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +0 -628
- package/storybook-static/sb-addons/themes-1/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/vitest-2/manager-bundle.js +0 -3
- package/storybook-static/sb-common-assets/favicon-wrapper.svg +0 -46
- package/storybook-static/sb-common-assets/favicon.svg +0 -1
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/globals-runtime.js +0 -77956
- package/storybook-static/sb-manager/globals.js +0 -24
- package/storybook-static/sb-manager/manager-stores.js +0 -23
- package/storybook-static/sb-manager/runtime.js +0 -20422
- package/storybook-static/theme/recipes/menu.d.ts +0 -1
- package/storybook-static/theme/types.d.ts +0 -1
- package/storybook-static/vite-inject-mocker-entry.js +0 -2
- package/tsconfig.json +0 -29
- package/vite.config.ts +0 -85
- package/vitest.shims.d.ts +0 -1
- /package/{storybook-static → dist}/components/alert.d.ts +0 -0
- /package/{storybook-static → dist}/components/breadcrumb.d.ts +0 -0
- /package/{storybook-static → dist}/components/breadcrumb.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/agent-types.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/ai-conversation.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/ai-message.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/ai-message.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/ai-response.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/ai-response.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/approval-prompt.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/attachment-list.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/attachment-list.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/auto-scroll.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/chat-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/chat-input.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/chat-panel.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/chat-panel.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/message-parts-renderer.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/message-parts-renderer.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/message-types.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/model-swap-separator.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/model-swap-separator.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/send-button.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/timeline.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/tool-invocation-timeline.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/components/tool-invocation-timeline.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/tool-rendering/default-renderers.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/tool-rendering/index.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/tool-rendering/types.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/utils/diff.d.ts +0 -0
- /package/{storybook-static → dist}/components/chat-ui/utils/editor-state.d.ts +0 -0
- /package/{storybook-static → dist}/components/code-editor.d.ts +0 -0
- /package/{storybook-static → dist}/components/content-placeholder.d.ts +0 -0
- /package/{storybook-static → dist}/components/delete-confirmation-modal.d.ts +0 -0
- /package/{storybook-static → dist}/components/delete-confirmation-modal.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-bubble.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-bubble.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-card.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-drawer.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-drawer.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/diff-editor.d.ts +0 -0
- /package/{storybook-static → dist}/components/drawer-inline.d.ts +0 -0
- /package/{storybook-static → dist}/components/drawer-inline.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/empty-state.d.ts +0 -0
- /package/{storybook-static → dist}/components/empty-state.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/error-boundary.d.ts +0 -0
- /package/{storybook-static → dist}/components/file-tree-helpers.d.ts +0 -0
- /package/{storybook-static → dist}/components/horizontal-menu-stack.d.ts +0 -0
- /package/{storybook-static → dist}/components/item-section.d.ts +0 -0
- /package/{storybook-static → dist}/components/item-section.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/layout.d.ts +0 -0
- /package/{storybook-static → dist}/components/layout.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/open-source-notices-screen.d.ts +0 -0
- /package/{storybook-static → dist}/components/open-source-notices-screen.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-color-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-date-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-horizontal-text-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-horizontal.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-horizontal.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-input-group.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-number-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-selection-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor-text-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor.d.ts +0 -0
- /package/{storybook-static → dist}/components/param-editor.types.d.ts +0 -0
- /package/{storybook-static → dist}/components/properties.d.ts +0 -0
- /package/{storybook-static → dist}/components/properties.stories.d.ts +0 -0
- /package/{storybook-static/components/schub-logo.d.ts → dist/components/pstdio-logo.d.ts} +0 -0
- /package/{storybook-static → dist}/components/resource-badge.d.ts +0 -0
- /package/{storybook-static → dist}/components/resource-badge.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/collaborative-markdown-editor/awareness-cursors.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/collaborative-markdown-editor/collaborative-markdown-editor.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/index.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/ReferenceLinkNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/ReferenceLinkTransformer.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/markdown-editor/plugins/ReferenceLinkPlugin/index.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/commands.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/events.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/CommentPlugin/CommentPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/CommentPlugin/hooks/useCommentCommands.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/CommentPlugin/hooks/useCommentSchema.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/CommentPlugin/nodes/CommentNode/CommentNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ImperativeAPIPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/KeyboardShortcutPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/ReferenceMenuOption.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/ReferenceMenuPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/components/ReferenceMenu/ReferenceMenu.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/components/ReferenceMenu/ReferenceMenuItem.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/constants.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/hooks/useContextLookup.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/utils/checkForTriggers.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferenceMenuPlugin/utils/getSortedMenuOptions.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferencePlugin/ReferencePlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/ReferencePlugin/nodes/ReferenceNode/ReferenceNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/plugins/keyboard-shortcuts.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/prompt-input.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/prompt-input.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/theme/prompt-input-theme.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/prompt-input/utils.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/ReferenceLinkNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/ReferenceLinkTransformer.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/rich-message/plugins/ReferenceLinkPlugin/index.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/rich-message/rich-message.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/rich-message/rich-message.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/components/content-editable.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/components/default-rich-text-components.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/editor-config.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/nodes/DataTableNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/nodes/DataTableNode.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/CodePlugin/CodeBlockPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/CodePlugin/CodeNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/EquationPlugin/EquationComponent.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/EquationPlugin/EquationNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/EquationPlugin/EquationPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/EquationPlugin/KatexRenderer.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/FloatingTextFormatToolbarPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/HorizontalRulePlugin/HorizontalRuleNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/HorizontalRulePlugin/horizontalRule.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/LinkEditorPlugin/LinkEditorPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/LinkEditorPlugin/LinkPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/LinkEditorPlugin/utils/getSelectedNode.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/LinkEditorPlugin/utils/setFloatingElemPos.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/LinkEditorPlugin/utils/url.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/StateUpdatePlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/TableActionMenuPlugin/TableActionMenuPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/TableCellResizerPlugin/TableCellResizerPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/ToggleEditablePlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/plugins/TreeViewPlugin/TreeViewPlugin.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/transformers/markdown-transformers.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/shared/types/rich-text-components.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/theme/report-theme.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/theme/rich-text-theme.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/types.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/utils/markdown.d.ts +0 -0
- /package/{storybook-static → dist}/components/rich-text/utils/mediaType.d.ts +0 -0
- /package/{storybook-static → dist}/components/slider.d.ts +0 -0
- /package/{storybook-static → dist}/components/style-guide-data.d.ts +0 -0
- /package/{storybook-static → dist}/components/style-guide.d.ts +0 -0
- /package/{storybook-static → dist}/components/toaster.stories.d.ts +0 -0
- /package/{storybook-static → dist}/components/tooltip.d.ts +0 -0
- /package/{storybook-static → dist}/theme/global.d.ts +0 -0
- /package/{storybook-static → dist}/theme/index.d.ts +0 -0
- /package/{storybook-static → dist}/theme/primitives/fonts.d.ts +0 -0
- /package/{storybook-static → dist}/theme/primitives/sizes.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/alert.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/button.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/dialog.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/divider.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/drawer.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/editable.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/form.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/input.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/popover.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/progress-circle.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/skeleton.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/textarea.d.ts +0 -0
- /package/{storybook-static → dist}/theme/recipes/tooltip.d.ts +0 -0
- /package/{storybook-static → dist}/theme/theme.d.ts +0 -0
- /package/{storybook-static → dist}/theme/tokens/layer-styles.d.ts +0 -0
- /package/{storybook-static → dist}/theme/tokens/shadows.d.ts +0 -0
- /package/{storybook-static → dist}/theme/tokens/text.d.ts +0 -0
- /package/{storybook-static → dist}/utils/formats.d.ts +0 -0
- /package/{storybook-static → dist}/utils/get-file-type-icon.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme-C7CIuIPZ.js","sources":["../src/theme/global.ts","../src/theme/primitives/colors.ts","../src/theme/primitives/fonts.ts","../src/theme/primitives/sizes.ts","../src/theme/recipes/alert.ts","../src/theme/recipes/button.ts","../src/theme/recipes/dialog.ts","../src/theme/recipes/divider.ts","../src/theme/recipes/drawer.ts","../src/theme/recipes/editable.ts","../src/theme/recipes/form.ts","../src/theme/recipes/input.ts","../src/theme/recipes/menu.ts","../src/theme/recipes/popover.ts","../src/theme/recipes/progress-circle.ts","../src/theme/recipes/skeleton.ts","../src/theme/recipes/textarea.ts","../src/theme/recipes/tooltip.ts","../src/theme/tokens/borders.ts","../src/theme/tokens/colors.ts","../src/theme/tokens/layer-styles.ts","../src/theme/tokens/shadows.ts","../src/theme/tokens/text.ts","../src/theme/theme.ts"],"sourcesContent":["export const globalCss = {\n \"*::selection\": {\n bg: {\n base: \"bg.accent-secondary.blue-medium\",\n _dark: \"bg.accent-secondary.blue-medium\",\n },\n },\n\n \":root\": {\n \"--focus-border\": \"blue.border\",\n \"--separator-border\": \"transparent !important\",\n },\n\n html: {\n height: \"100%\",\n width: \"100%\",\n overflow: \"hidden\",\n },\n\n body: {\n height: \"100%\",\n width: \"100%\",\n fontFamily: \"body\",\n fontWeight: \"regular\",\n fontSize: \"md\",\n bg: \"bg\",\n color: \"fg\",\n borderColor: \"border\",\n overflow: \"hidden\",\n },\n\n \"#root\": {\n height: \"100%\",\n width: \"100%\",\n display: \"flex\",\n },\n\n \".sash\": {\n zIndex: \"docked\",\n },\n\n \"@media (min-width: 2560px)\": {\n html: { fontSize: \"1.25rem\" },\n },\n\n \"@media (min-width: 3840px)\": {\n html: { fontSize: \"1.5rem\" },\n },\n};\n","export const blacks = {\n DEFAULT: { value: \"#0A0D15\" },\n 50: { value: \"#FFFFFF\" },\n 75: { value: \"#FCFCFC\" },\n 100: { value: \"#F9F9F9\" },\n 200: { value: \"#F5F5F5\" },\n 300: { value: \"#EAEAEA\" },\n 400: { value: \"#C5C5C7\" },\n 500: { value: \"#797D83\" },\n 600: { value: \"#5A5F67\" },\n 700: { value: \"#444750\" },\n 750: { value: \"#33363E\" },\n 800: { value: \"#22252C\" },\n 850: { value: \"#1A1C21\" },\n 900: { value: \"#0A0D15\" },\n 1000: { value: \"#000000\" },\n};\n\nexport const blue = {\n DEFAULT: { value: \"#5098FF\" },\n 50: { value: \"#EEF5FF\" },\n 100: { value: \"#D2E4FF\" },\n 200: { value: \"#A8CBFE\" },\n 300: { value: \"#81B4FE\" },\n 400: { value: \"#6CA9FF\" },\n 500: { value: \"#5098FF\" },\n 600: { value: \"#2B82FF\" },\n 700: { value: \"#0E6EF6\" },\n 800: { value: \"#0652C3\" },\n 900: { value: \"#002862\" },\n};\n\nexport const sapphire = {\n DEFAULT: { value: \"#3A4BE4\" },\n 25: { value: \"#F0F1FF\" },\n 50: { value: \"#E0E3FF\" },\n 100: { value: \"#BEC4FF\" },\n 200: { value: \"#97A2FF\" },\n 300: { value: \"#6A78F8\" },\n 400: { value: \"#4E5FF3\" },\n 500: { value: \"#3A4BE4\" },\n 600: { value: \"#2A3CD7\" },\n 700: { value: \"#202FB8\" },\n 800: { value: \"#131F87\" },\n 900: { value: \"#0A125A\" },\n};\n\nexport const pink = {\n DEFAULT: { value: \"#E054EC\" },\n 25: { value: \"#FDF0FF\" },\n 50: { value: \"#FCE1FF\" },\n 100: { value: \"#F5CBF9\" },\n 200: { value: \"#F6B4FC\" },\n 300: { value: \"#F69AFF\" },\n 400: { value: \"#EF81FA\" },\n 500: { value: \"#E054EC\" },\n 600: { value: \"#B636C1\" },\n 700: { value: \"#951BA0\" },\n 800: { value: \"#6F0C78\" },\n 900: { value: \"#520659\" },\n};\n\nexport const peach = {\n DEFAULT: { value: \"#FBD8CE\" },\n 50: { value: \"#FFF2EC\" },\n 100: { value: \"#FCE1DA\" },\n 200: { value: \"#FBD8CE\" },\n 300: { value: \"#F7C4B8\" },\n 400: { value: \"#F3AA9A\" },\n 500: { value: \"#EB8A75\" },\n 600: { value: \"#D17059\" },\n 700: { value: \"#A85646\" },\n 800: { value: \"#7B3F34\" },\n 900: { value: \"#522923\" },\n};\n\nexport const red = {\n DEFAULT: { value: \"#FF3232\" },\n 50: { value: \"#FFE0E3\" },\n 100: { value: \"#FFCCCC\" },\n 200: { value: \"#FDA8A8\" },\n 300: { value: \"#FF8B8B\" },\n 400: { value: \"#FF6B6B\" },\n 500: { value: \"#FF3232\" },\n 600: { value: \"#DE1D1D\" },\n 700: { value: \"#BA1313\" },\n 800: { value: \"#8E0E0E\" },\n 900: { value: \"#580707\" },\n};\n\nexport const orange = {\n DEFAULT: { value: \"#EB9D2A\" },\n 50: { value: \"#FDF3E5\" },\n 100: { value: \"#FAE6C8\" },\n 200: { value: \"#F7D6A6\" },\n 300: { value: \"#F3C683\" },\n 400: { value: \"#EB9D2A\" },\n 500: { value: \"#CF8A25\" },\n 600: { value: \"#B37720\" },\n 700: { value: \"#92611A\" },\n 800: { value: \"#714B14\" },\n 900: { value: \"#52370F\" },\n};\n\nexport const yellow = {\n DEFAULT: { value: \"#FFD643\" },\n 50: { value: \"#FFF7D9\" },\n 100: { value: \"#FFEEB3\" },\n 200: { value: \"#FFE792\" },\n 300: { value: \"#FFDE67\" },\n 400: { value: \"#FFD643\" },\n 500: { value: \"#FFC909\" },\n 600: { value: \"#E4B200\" },\n 700: { value: \"#C69B00\" },\n 800: { value: \"#9D7A00\" },\n 900: { value: \"#644E00\" },\n};\n\nexport const green = {\n DEFAULT: { value: \"#2DD665\" },\n 50: { value: \"#CFFFDF\" },\n 100: { value: \"#ACFBC7\" },\n 200: { value: \"#86F3AB\" },\n 300: { value: \"#61EA8F\" },\n 400: { value: \"#2DD665\" },\n 500: { value: \"#0AB744\" },\n 600: { value: \"#029232\" },\n 700: { value: \"#007126\" },\n 800: { value: \"#00511B\" },\n 900: { value: \"#003110\" },\n};\n\nexport const teal = {\n DEFAULT: { value: \"#3EECC4\" },\n 50: { value: \"#C9FFF3\" },\n 100: { value: \"#9EFBE6\" },\n 200: { value: \"#6DF4D5\" },\n 300: { value: \"#3EECC4\" },\n 400: { value: \"#16DFB0\" },\n 500: { value: \"#12C69C\" },\n 600: { value: \"#10A884\" },\n 700: { value: \"#0C8367\" },\n 800: { value: \"#096C55\" },\n 900: { value: \"#024F3D\" },\n};\n\nexport const cyan = {\n DEFAULT: { value: \"#5CDCFF\" },\n 50: { value: \"#DAF7FE\" },\n 100: { value: \"#ADEDFF\" },\n 200: { value: \"#85E4FF\" },\n 300: { value: \"#5CDCFF\" },\n 400: { value: \"#30D2FF\" },\n 500: { value: \"#00C0F5\" },\n 600: { value: \"#03AAD7\" },\n 700: { value: \"#0095BE\" },\n 800: { value: \"#007A9B\" },\n 900: { value: \"#005B73\" },\n};\n\nexport const purple = {\n DEFAULT: { value: \"#8B47FF\" },\n 50: { value: \"#EFE6FF\" },\n 100: { value: \"#D8C2FF\" },\n 200: { value: \"#BE99FF\" },\n 300: { value: \"#A36DFF\" },\n 400: { value: \"#8B47FF\" },\n 500: { value: \"#7223F9\" },\n 600: { value: \"#5A00F5\" },\n 700: { value: \"#4600C0\" },\n 800: { value: \"#310086\" },\n 900: { value: \"#1E0050\" },\n};\n\nexport const sand = {\n DEFAULT: { value: \"#F4F2EC\" },\n 50: { value: \"#FCF7EF\" },\n 100: { value: \"#F4F2EC\" },\n 200: { value: \"#E8CECE\" },\n 300: { value: \"#E8CECE\" },\n 400: { value: \"#E8CECE\" },\n 500: { value: \"#E8CECE\" },\n 600: { value: \"#E8CECE\" },\n 700: { value: \"#E8CECE\" },\n 800: { value: \"#E8CECE\" },\n 900: { value: \"#E8CECE\" },\n};\n\nexport const colors = {\n sand,\n blacks,\n blue,\n sapphire,\n pink,\n peach,\n red,\n orange,\n yellow,\n green,\n teal,\n cyan,\n purple,\n};\n","export const fonts = {\n display: { value: \"'Playfair Display', serif\" },\n brand: { value: \"Onest, sans-serif\" },\n heading: { value: \"Onest, sans-serif\" },\n label: { value: \"Onest, sans-serif\" },\n body: { value: \"Inter, sans-serif\" },\n};\n\nexport const fontSizes = {\n xs: { value: \"0.625rem\" }, // 10px\n sm: { value: \"0.75rem\" }, // 12px\n md: { value: \"0.875rem\" }, // 14px\n lg: { value: \"1rem\" }, // 16px\n xl: { value: \"1.125rem\" }, // 18px\n \"2xl\": { value: \"1.25rem\" }, // 20px\n \"3xl\": { value: \"1.5rem\" }, // 24px\n \"3.5xl\": { value: \"1.75rem\" }, // 28px\n \"4xl\": { value: \"2.25rem\" }, // 36px\n \"5xl\": { value: \"3rem\" }, // 48px\n \"6xl\": { value: \"4.375rem\" }, // 70px\n \"7xl\": { value: \"5.25rem\" }, // 84px\n \"icon-xs\": { value: \"0.875rem\" }, // 14px\n \"icon-sm\": { value: \"1rem\" }, // 16px\n \"icon-md\": { value: \"1.25rem\" }, // 20px\n \"icon-lg\": { value: \"1.25rem\" }, // 20px\n};\n\nexport const fontWeights = {\n regular: { value: 400 },\n medium: { value: 500 },\n semibold: { value: 600 },\n bold: { value: 700 },\n};\n","export const sp = {\n 0: \"0rem\", // 0px\n 25: \"0.125rem\", // 2px\n 50: \"0.25rem\", // 4px\n 100: \"0.5rem\", // 8px\n 150: \"0.75rem\", // 12px\n 200: \"1rem\", // 16px\n 250: \"1.25rem\", // 20px\n 300: \"1.5rem\", // 24px\n 400: \"2rem\", // 32px\n 500: \"2.5rem\", // 40px\n 600: \"3rem\", // 48px\n 700: \"3.5rem\", // 56px\n 800: \"4rem\", // 64px\n 900: \"4.5rem\", // 72px\n 1000: \"5rem\", // 80px\n 1200: \"6rem\", // 96px\n 1600: \"8rem\", // 128px\n 2000: \"10rem\", // 160px\n 3000: \"15rem\", // 240px\n 4000: \"20rem\", // 320px\n};\n\nexport const spacing = {\n none: { value: \"0\" },\n \"2xs\": { value: sp[50] },\n xs: { value: sp[100] },\n sm: { value: sp[150] },\n md: { value: sp[200] },\n lg: { value: sp[300] },\n xl: { value: sp[400] },\n \"2xl\": { value: sp[500] },\n \"3xl\": { value: sp[600] },\n \"3.5xl\": { value: sp[700] },\n \"4xl\": { value: sp[800] },\n \"4.5xl\": { value: sp[900] },\n \"5xl\": { value: sp[1600] },\n};\n\nexport const radii = {\n none: { value: \"0\" },\n \"2xs\": { value: sp[25] },\n xs: { value: sp[50] },\n sm: { value: sp[100] },\n md: { value: sp[150] },\n lg: { value: sp[200] },\n xl: { value: sp[400] },\n full: { value: \"100%\" },\n};\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { alertAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const alertSlotRecipe = defineSlotRecipe({\n slots: alertAnatomy.keys(),\n base: {\n root: {\n pt: \"xs\",\n pb: \"xs\",\n },\n },\n});\n","import { defineRecipe } from \"@chakra-ui/react\";\n\nexport const buttonRecipe = defineRecipe({\n base: {\n borderRadius: \"sm\",\n transition: \"all 0.1s ease-in-out\",\n fontFamily: \"label\",\n fontWeight: \"500\",\n color: \"fg\",\n bg: \"bg\",\n borderColor: \"border.muted\",\n _disabled: {\n opacity: 1,\n color: \"fg.subtle\",\n bg: \"bg.muted\",\n _hover: { bg: \"bg.muted\" },\n },\n _loading: {\n opacity: 1,\n color: \"fg.subtle\",\n bg: \"bg.muted\",\n _hover: { bg: \"bg.muted\" },\n },\n },\n variants: {\n variant: {\n \"display-primary\": {\n bg: \"blacks.900\",\n color: \"fg.inverted\",\n borderRadius: \"xl\",\n outline: \"none\",\n border: \"none\",\n _hover: { bg: \"blacks.800\" },\n },\n \"display-outline\": {\n bg: \"transparent\",\n color: \"fg\",\n borderRadius: \"xl\",\n border: \"2px solid {fg}\",\n _hover: { bg: \"bg.muted\" },\n _active: { bg: \"bg.emphasized\" },\n },\n \"display-ghost\": {\n bg: \"transparent\",\n color: \"fg\",\n borderRadius: \"xl\",\n _hover: { bg: \"bg.muted\" },\n _active: { bg: \"bg.emphasized\" },\n },\n \"display-link\": {\n bg: \"transparent\",\n color: \"fg\",\n border: \"none\",\n borderRadius: \"xl\",\n _hover: { textDecoration: \"underline\" },\n _active: { textDecoration: \"underline\" },\n },\n primary: {\n color: \"blacks.1000\",\n bg: \"bg.accent-primary.medium\",\n border: \"none\",\n _hover: { bg: \"bg.accent-primary.light\" },\n _active: { bg: \"bg.accent-primary.medium\" },\n },\n secondary: {\n color: \"fg\",\n bg: \"bg\",\n border: \"2px solid border.muted\",\n _hover: { bg: \"bg.muted\" },\n _active: { bg: \"bg.emphasized\" },\n _disabled: {\n opacity: 1,\n color: \"fg.subtle\",\n borderColor: \"border.muted\",\n },\n },\n outline: {\n color: \"fg\",\n bg: \"bg\",\n border: \"border.muted\",\n _hover: { bg: \"bg.muted\" },\n _active: { bg: \"bg.emphasized\" },\n _disabled: {\n opacity: 1,\n color: \"fg.subtle\",\n borderColor: \"border.muted\",\n },\n },\n ghost: {\n color: \"fg\",\n bg: \"transparent\",\n border: \"none\",\n _hover: { bg: \"bg.muted\" },\n _active: { bg: \"bg.emphasized\" },\n _disabled: {\n bg: \"transparent\",\n _hover: { bg: \"transparent\" },\n },\n },\n },\n size: {\n \"2xl\": {\n px: \"1.5rem\",\n h: \"3.5rem\",\n textStyle: \"label/L/medium\",\n },\n lg: {\n px: \"1rem\",\n h: \"3rem\",\n textStyle: \"label/M/medium\",\n },\n md: {\n textStyle: \"label/M/medium\",\n },\n sm: {\n px: \"0.5rem\",\n h: \"2rem\",\n textStyle: \"label/S/medium\",\n },\n },\n },\n\n defaultVariants: { size: \"md\", variant: \"outline\" },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { dialogAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const dialogSlotRecipe = defineSlotRecipe({\n slots: dialogAnatomy.keys(),\n base: {\n content: {\n bg: \"bg\",\n },\n },\n});\n","import { defineRecipe } from \"@chakra-ui/react\";\n\nexport const dividerRecipe = defineRecipe({\n base: {\n borderColor: \"border\",\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { drawerAnatomy as parts } from \"@chakra-ui/react/anatomy\";\n\nexport const drawerSlotRecipe = defineSlotRecipe({\n slots: parts.keys(),\n base: {\n header: {\n fontWeight: \"medium\",\n textStyle: \"label/M/medium\",\n p: \"xs\",\n },\n content: {\n bg: \"bg\",\n },\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\n\nexport const editableSlotRecipe = defineSlotRecipe({\n slots: [\"preview\", \"input\", \"textarea\"] as const,\n base: {\n preview: {\n textStyle: \"label/L/medium\",\n borderRadius: \"2xs\",\n focusRingColor: \"border\",\n py: \"0\",\n lineHeight: \"1.5rem\",\n transitionProperty: \"common\",\n transitionDuration: \"normal\",\n _hover: { bg: \"bg.muted\" },\n },\n input: {\n textStyle: \"label/L/medium\",\n borderRadius: \"2xs\",\n focusRingColor: \"border\",\n py: \"0\",\n lineHeight: \"1.5rem\",\n transitionProperty: \"common\",\n transitionDuration: \"normal\",\n bg: \"bg\",\n width: \"auto\",\n _focusVisible: { boxShadow: \"none\" },\n _placeholder: { color: \"fg.muted\" },\n },\n textarea: {\n textStyle: \"label/L/medium\",\n borderRadius: \"2xs\",\n focusRingColor: \"border\",\n py: \"0\",\n transitionProperty: \"common\",\n transitionDuration: \"normal\",\n bg: \"bg.muted\",\n width: \"auto\",\n _focusVisible: { boxShadow: \"none\" },\n _placeholder: { color: \"fg.muted\" },\n },\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { fieldsetAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const fieldsetSlotRecipe = defineSlotRecipe({\n slots: fieldsetAnatomy.keys(),\n base: {\n legend: {\n mb: \"2xs\",\n },\n },\n});\n","import { defineRecipe } from \"@chakra-ui/react\";\n\nexport const inputRecipe = defineRecipe({\n base: {\n px: \"sm\",\n borderRadius: \"sm\",\n border: \"1px solid\",\n transition: \"border-color 0.2s ease-in-out\",\n bg: \"bg\",\n color: \"fg\",\n borderColor: \"border.muted\",\n _hover: { borderColor: \"border\" },\n _active: { borderColor: \"blue.border\" },\n _focus: { borderColor: \"blue.border\" },\n _focusVisible: { borderColor: \"blue.border\" },\n _placeholder: { color: \"fg.subtle\" },\n },\n variants: {\n size: {\n sm: {\n h: \"2rem\",\n },\n },\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { menuAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const menuSlotRecipe = defineSlotRecipe({\n slots: menuAnatomy.keys(),\n base: {\n itemGroupLabel: {\n ml: \"{2xs}\",\n textStyle: \"label/S/regular\",\n fontWeight: \"normal\",\n color: \"fg.muted\",\n },\n\n item: {\n bg: \"bg.menu-item.default\",\n color: \"fg.menu-item.default\",\n textStyle: \"label/M/regular\",\n px: \"0.5rem\",\n h: \"2.25rem\",\n _hover: { bg: \"bg.menu-item.hover\" },\n _focus: { bg: \"bg.menu-item.focus\" },\n _active: { bg: \"bg.menu-item.selected\" },\n },\n\n content: {\n display: \"flex\",\n flexDirection: \"column\",\n gap: \"2xs\",\n borderRadius: \"sm\",\n py: \"xs\",\n bg: \"bg\",\n borderWidth: \"1px\",\n borderStyle: \"solid\",\n borderColor: \"border.muted\",\n boxShadow: \"low\",\n zIndex: \"dropdown\",\n textStyle: \"label/M/regular\",\n },\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { popoverAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const popoverRecipe = defineSlotRecipe({\n slots: popoverAnatomy.keys(),\n base: {\n positioner: {\n _focus: { boxShadow: \"none !important\" },\n },\n closeTrigger: {\n textStyle: \"label/M/medium\",\n color: \"fg\",\n },\n arrow: {\n bg: \"background-primary !important\",\n borderColor: \"button-secondary-stroke\",\n },\n content: {\n gap: \"8px\",\n py: \"xs\",\n borderRadius: \"12px\",\n bg: \"bg\",\n borderColor: \"border\",\n _focus: { boxShadow: \"none !important\" },\n },\n title: {\n borderBottom: \"none\",\n textStyle: \"label/M/medium\",\n bg: \"bg\",\n },\n body: { textStyle: \"primary\" },\n footer: {},\n },\n variants: {\n variant: {\n responsive: {\n content: { width: \"unset\" },\n },\n },\n size: {\n \"2xl\": {\n content: { width: \"2xl\" },\n },\n },\n },\n});\n","import { progressCircleSlotRecipe as baseProgressCircleSlotRecipe } from \"@chakra-ui/react/theme\";\n\nconst baseSizeVariants = baseProgressCircleSlotRecipe.variants?.size ?? {};\n\nexport const progressCircleSlotRecipe = {\n ...baseProgressCircleSlotRecipe,\n variants: {\n ...baseProgressCircleSlotRecipe.variants,\n size: {\n ...baseSizeVariants,\n \"2xs\": {\n circle: {\n \"--size\": \"14px\",\n \"--thickness\": \"2px\",\n },\n valueText: {\n textStyle: \"2xs\",\n },\n },\n },\n },\n};\n","import { defineRecipe } from \"@chakra-ui/react\";\n\nexport const skeletonRecipe = defineRecipe({\n base: {\n \"--start-color\": \"fg\",\n \"--end-color\": \"fg.muted\",\n },\n});\n","import { defineRecipe } from \"@chakra-ui/react\";\n\nexport const textareaRecipe = defineRecipe({\n base: {\n paddingX: \"sm\",\n paddingY: \"xs\",\n opacity: \"1\",\n outline: \"none\",\n color: \"fg\",\n border: \"1px solid\",\n transition: \"border-color 0.2s ease-in-out\",\n borderColor: \"border.muted\",\n _hover: {\n borderColor: \"border\",\n },\n _active: {\n borderColor: \"blue.border\",\n },\n _focus: {\n borderColor: \"blue.border\",\n },\n _focusVisible: {\n borderColor: \"blue.border\",\n },\n _placeholder: {\n color: \"fg.subtle\",\n },\n },\n});\n","import { defineSlotRecipe } from \"@chakra-ui/react\";\nimport { tooltipAnatomy } from \"@chakra-ui/react/anatomy\";\n\nexport const tooltipRecipe = defineSlotRecipe({\n slots: tooltipAnatomy.keys(),\n base: {\n content: {\n bg: \"bg.inverted\",\n color: \"fg.inverted\",\n },\n arrow: {\n bg: \"bg.inverted\",\n },\n },\n});\n","export const borders = {\n DEFAULT: {\n value: {\n base: \"1px solid {colors.blacks.400}\",\n _dark: \"1px solid {colors.blacks.600}\",\n },\n },\n\n muted: {\n value: {\n base: \"1px solid {colors.blacks.300}\",\n _dark: \"1px solid {colors.blacks.700}\",\n },\n },\n\n subtle: {\n value: {\n base: \"1px solid {colors.blacks.300}\",\n _dark: \"1px solid {colors.blacks.50}\",\n },\n },\n\n inverted: {\n value: {\n base: \"1px solid {colors.blacks.400}\",\n _dark: \"1px solid {colors.blacks.600}\",\n },\n },\n\n accent: {\n value: {\n base: \"1px solid {colors.blue.700}\",\n _dark: \"1px solid {colors.blue.200}\",\n },\n },\n\n \"accent-light\": {\n value: {\n base: \"1px solid {colors.blue.200}\",\n _dark: \"1px solid {colors.blue.900}\",\n },\n },\n};\n","export const fg = {\n DEFAULT: {\n value: {\n base: \"{colors.blacks.800}\",\n _dark: \"{colors.blacks.200}\",\n },\n },\n\n muted: {\n value: {\n base: \"{colors.blacks.500}\",\n _dark: \"{colors.blacks.500}\",\n },\n },\n\n subtle: {\n value: {\n base: \"{colors.blacks.400}\",\n _dark: \"{colors.blacks.600}\",\n },\n },\n\n inverted: {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.800}\",\n },\n },\n\n success: {\n value: {\n base: \"{colors.green.400}\",\n _dark: \"{colors.green.400}\",\n },\n },\n\n error: {\n value: {\n base: \"{colors.red.400}\",\n _dark: \"{colors.red.400}\",\n },\n },\n\n accent: {\n \"pink-dark\": {\n value: {\n base: \"{colors.pink.700}\",\n _dark: \"{colors.pink.50}\",\n },\n },\n },\n\n \"green-dark\": {\n value: {\n base: \"{colors.green.700}\",\n _dark: \"{colors.green.50}\",\n },\n },\n\n \"blue-dark\": {\n value: {\n base: \"{colors.sapphire.700}\",\n _dark: \"{colors.sapphire.100}\",\n },\n },\n\n \"blue-very-dark\": {\n value: {\n base: \"{colors.sapphire.900}\",\n _dark: \"{colors.sapphire.800}\",\n },\n },\n\n button: {\n primary: {\n default: {\n value: {\n base: \"{colors.blacks.200}\",\n _dark: \"{colors.blacks.200}\",\n },\n },\n disabled: {\n value: \"{colors.fg.subtle}\",\n },\n },\n },\n\n \"menu-item\": {\n default: {\n value: \"{colors.fg}\",\n },\n secondary: {\n value: \"{colors.fg.muted}\",\n },\n },\n};\n\nexport const bg = {\n DEFAULT: {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.900}\",\n },\n },\n\n muted: {\n value: {\n base: \"{colors.blacks.200}\",\n _dark: \"{colors.blacks.800}\",\n },\n },\n\n subtle: {\n value: {\n base: \"{colors.blacks.75}\",\n _dark: \"{colors.blacks.850}\",\n },\n },\n\n code: {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.800}\",\n },\n },\n\n emphasized: {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.600}\",\n },\n },\n\n inverted: {\n value: {\n base: \"{colors.blacks.800}\",\n _dark: \"{colors.blacks.100}\",\n },\n },\n\n panel: {\n value: {\n base: \"{colors.blacks.100}\",\n _dark: \"{colors.blacks.850}\",\n },\n },\n\n dark: {\n value: {\n base: \"{colors.blacks.900}\",\n _dark: \"{colors.blacks.900}\",\n },\n },\n\n white: {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.50}\",\n },\n },\n\n button: {\n primary: {\n default: {\n value: \"{colors.bg.accent-primary.default}\",\n },\n hover: {\n value: \"{colors.bg.accent-primary.hover}\",\n },\n pressed: {\n value: \"{colors.bg.accent-primary.pressed}\",\n },\n disabled: {\n value: \"{colors.bg.muted}\",\n },\n },\n },\n\n \"menu-item\": {\n default: {\n value: \"{colors.bg}\",\n },\n hover: {\n value: \"{colors.bg.muted}\",\n },\n focus: {\n value: \"{colors.bg.muted}\",\n },\n selected: {\n value: \"{colors.bg.muted}\",\n },\n },\n\n display: {\n \"very-light\": {\n value: {\n base: \"{colors.sand.50}\",\n _dark: \"{colors.blacks.1000}\",\n },\n },\n },\n\n \"accent-primary\": {\n default: {\n value: {\n base: \"{colors.orange.100}\",\n _dark: \"{colors.orange.300}\",\n },\n },\n hover: {\n value: {\n base: \"{colors.orange.200}\",\n _dark: \"{colors.orange.200}\",\n },\n },\n pressed: {\n value: {\n base: \"{colors.orange.300}\",\n _dark: \"{colors.orange.100}\",\n },\n },\n \"very-light\": {\n value: {\n base: \"{colors.orange.100}\",\n _dark: \"{colors.blacks.1000}\",\n },\n },\n light: {\n value: {\n base: \"{colors.orange.100}\",\n _dark: \"{colors.orange.300}\",\n },\n },\n medium: {\n value: {\n base: \"{colors.orange.200}\",\n _dark: \"{colors.orange.200}\",\n },\n },\n dark: {\n value: {\n base: \"{colors.orange.300}\",\n _dark: \"{colors.orange.100}\",\n },\n },\n },\n\n \"accent-secondary\": {\n \"grey-dark\": {\n value: {\n base: \"{colors.blacks.50}\",\n _dark: \"{colors.blacks.1000}\",\n },\n },\n \"grey-light\": {\n value: {\n base: \"{colors.blacks.100}\",\n _dark: \"{colors.blacks.900}\",\n },\n },\n \"red-very-light\": {\n value: {\n base: \"{colors.red.50}\",\n _dark: \"{colors.red.100}\",\n },\n },\n \"red-light\": {\n value: {\n base: \"{colors.red.100}\",\n _dark: \"{colors.red.100}\",\n },\n },\n \"pink-light\": {\n value: {\n base: \"{colors.pink.50}\",\n _dark: \"{colors.pink.700}\",\n },\n },\n \"pink-medium\": {\n value: {\n base: \"{colors.pink.100}\",\n _dark: \"{colors.pink.800}\",\n },\n },\n \"blue-very-light\": {\n value: {\n base: \"{colors.blue.25}\",\n _dark: \"{colors.blue.50}\",\n },\n },\n \"blue-light\": {\n value: {\n base: \"{colors.blue.50}\",\n _dark: \"{colors.blue.700}\",\n },\n },\n \"blue-medium\": {\n value: {\n base: \"{colors.blue.100}\",\n _dark: \"{colors.blue.800}\",\n },\n },\n \"blue-dark\": {\n value: {\n base: \"{colors.blue.700}\",\n _dark: \"{colors.blue.200}\",\n },\n },\n \"cyan-light\": {\n value: {\n base: \"{colors.cyan.50}\",\n _dark: \"{colors.cyan.100}\",\n },\n },\n \"green-light\": {\n value: {\n base: \"{colors.green.50}\",\n _dark: \"{colors.sapphire.50}\",\n },\n },\n \"yellow-light\": {\n value: {\n base: \"{colors.yellow.50}\",\n _dark: \"{colors.yellow.100}\",\n },\n },\n \"yellow-medium\": {\n value: {\n base: \"{colors.yellow.100}\",\n _dark: \"{colors.yellow.200}\",\n },\n },\n \"sand-light\": {\n value: {\n base: \"{colors.sand.100}\",\n _dark: \"{colors.sand.100}\",\n },\n },\n },\n};\n\nexport const border = {\n DEFAULT: {\n value: {\n base: \"{colors.blacks.400}\",\n _dark: \"{colors.blacks.600}\",\n },\n },\n\n muted: {\n value: {\n base: \"{colors.blacks.300}\",\n _dark: \"{colors.blacks.700}\",\n },\n },\n\n subtle: {\n value: {\n base: \"{colors.blacks.300}\",\n _dark: \"{colors.blacks.50}\",\n },\n },\n\n inverted: {\n value: {\n base: \"{colors.blacks.400}\",\n _dark: \"{colors.blacks.600}\",\n },\n },\n\n \"accent-light\": {\n value: {\n base: \"{colors.blue.200}\",\n _dark: \"{colors.blue.900}\",\n },\n },\n\n accent: {\n value: {\n base: \"{colors.blue.700}\",\n _dark: \"{colors.blue.200}\",\n },\n },\n\n button: {\n primary: {\n value: \"{colors.border.muted}\",\n },\n },\n};\n\nexport const blue = {\n border: {\n value: {\n base: \"{colors.blue.700}\",\n _dark: \"{colors.blue.200}\",\n },\n },\n};\n\nexport const vis = {\n text: {\n primary: {\n value: {\n base: \"{colors.blacks.800}\",\n _dark: \"{colors.blacks.200}\",\n },\n },\n secondary: {\n value: {\n base: \"{colors.blacks.600}\",\n _dark: \"{colors.blacks.500}\",\n },\n },\n },\n\n grid: {\n value: {\n base: \"{colors.blacks.300}\",\n _dark: \"{colors.blacks.800}\",\n },\n },\n\n axis: {\n value: {\n base: \"{colors.blacks.700}\",\n _dark: \"{colors.blacks.300}\",\n },\n },\n\n categorical: {\n 1: {\n value: {\n base: \"{colors.blue.300}\",\n _dark: \"{colors.blue.300}\",\n },\n },\n 2: {\n value: {\n base: \"{colors.orange.500}\",\n _dark: \"{colors.orange.500}\",\n },\n },\n 3: {\n value: {\n base: \"{colors.purple.700}\",\n _dark: \"{colors.purple.700}\",\n },\n },\n 4: {\n value: {\n base: \"{colors.red.500}\",\n _dark: \"{colors.red.600}\",\n },\n },\n 5: {\n value: {\n base: \"{colors.pink.500}\",\n _dark: \"{colors.pink.500}\",\n },\n },\n 6: {\n value: {\n base: \"{colors.cyan.800}\",\n _dark: \"{colors.green.500}\",\n },\n },\n 7: {\n value: {\n base: \"{colors.red.200}\",\n _dark: \"{colors.cyan.700}\",\n },\n },\n },\n\n sequential: {\n blue: {\n \"low-3\": {\n value: {\n base: \"{colors.blue.200}\",\n _dark: \"{colors.blue.800}\",\n },\n },\n \"low-2\": {\n value: {\n base: \"{colors.blue.300}\",\n _dark: \"{colors.blue.700}\",\n },\n },\n \"low-1\": {\n value: {\n base: \"{colors.blue.400}\",\n _dark: \"{colors.blue.600}\",\n },\n },\n default: {\n value: {\n base: \"{colors.blue.500}\",\n _dark: \"{colors.blue.500}\",\n },\n },\n \"high-1\": {\n value: {\n base: \"{colors.blue.600}\",\n _dark: \"{colors.blue.400}\",\n },\n },\n \"high-2\": {\n value: {\n base: \"{colors.blue.700}\",\n _dark: \"{colors.blue.300}\",\n },\n },\n \"high-3\": {\n value: {\n base: \"{colors.blue.800}\",\n _dark: \"{colors.blue.200}\",\n },\n },\n },\n red: {\n \"low-3\": {\n value: {\n base: \"{colors.red.200}\",\n _dark: \"{colors.red.800}\",\n },\n },\n \"low-2\": {\n value: {\n base: \"{colors.red.300}\",\n _dark: \"{colors.red.700}\",\n },\n },\n \"low-1\": {\n value: {\n base: \"{colors.red.400}\",\n _dark: \"{colors.red.600}\",\n },\n },\n default: {\n value: {\n base: \"{colors.red.500}\",\n _dark: \"{colors.red.500}\",\n },\n },\n \"high-1\": {\n value: {\n base: \"{colors.red.600}\",\n _dark: \"{colors.red.400}\",\n },\n },\n \"high-2\": {\n value: {\n base: \"{colors.red.700}\",\n _dark: \"{colors.red.300}\",\n },\n },\n \"high-3\": {\n value: {\n base: \"{colors.red.800}\",\n _dark: \"{colors.red.200}\",\n },\n },\n },\n },\n};\n\nexport const text = {\n selectable: {\n primary: {\n value: {\n base: \"{colors.blacks.800}\",\n _dark: \"{colors.blacks.800}\",\n },\n },\n },\n};\n\nexport const semanticColors = {\n fg,\n bg,\n border,\n blue,\n vis,\n text,\n};\n","import { defineLayerStyles } from \"@chakra-ui/react\";\n\nexport const layerStyles = defineLayerStyles({\n modal: {\n value: {\n paddingInline: \"xs\",\n paddingBlock: \"sm\",\n borderRadius: \"sm\",\n bg: \"bg\",\n border: \"1px solid\",\n borderColor: \"border\",\n boxShadow: \"mid\",\n },\n },\n});\n","// Primitive shadow tokens\nexport const shadows = {\n \"low-light\": { value: \"0px 2px 4px 0px rgba(0, 0, 0, 0.10)\" },\n \"mid-light\": { value: \"0px 6px 12px 0px rgba(0, 0, 0, 0.10)\" },\n \"high-light\": { value: \"0px 12px 24px 0px rgba(0, 0, 0, 0.10)\" },\n \"low-dark\": { value: \"0px 2px 4px 0px rgba(0, 0, 0, 0.45)\" },\n \"mid-dark\": { value: \"0px 6px 12px 0px rgba(0, 0, 0, 0.5)\" },\n \"high-dark\": { value: \"0px 12px 24px 0px rgba(0, 0, 0, 0.55)\" },\n \"desktop-icon-label-text-light\": { value: \"0px 1px 3px rgba(15, 23, 42, 0.45)\" },\n \"desktop-icon-label-text-dark\": { value: \"0px 1px 3px rgba(8, 15, 35, 0.75)\" },\n \"desktop-icon-label-text-selected-light\": { value: \"0px 1px 3px rgba(37, 99, 235, 0.55)\" },\n \"desktop-icon-label-text-selected-dark\": { value: \"0px 2px 4px rgba(37, 99, 235, 0.75)\" },\n};\n\n// Semantic shadow tokens for light/dark mode\nexport const semanticShadows = {\n low: {\n value: {\n base: \"{shadows.low-light}\",\n _dark: \"{shadows.low-dark}\",\n },\n },\n mid: {\n value: {\n base: \"{shadows.mid-light}\",\n _dark: \"{shadows.mid-dark}\",\n },\n },\n high: {\n value: {\n base: \"{shadows.high-light}\",\n _dark: \"{shadows.high-dark}\",\n },\n },\n \"desktop-icon-label\": {\n value: {\n base: \"{shadows.desktop-icon-label-text-light}\",\n _dark: \"{shadows.desktop-icon-label-text-dark}\",\n },\n },\n \"desktop-icon-label-selected\": {\n value: {\n base: \"{shadows.desktop-icon-label-text-selected-light}\",\n _dark: \"{shadows.desktop-icon-label-text-selected-dark}\",\n },\n },\n};\n","import { defineTextStyles } from \"@chakra-ui/react\";\n\nexport const textStyles = defineTextStyles({\n brand: {\n value: {\n fontFamily: \"brand\",\n fontSize: \"3xl\",\n fontWeight: \"500\",\n },\n },\n \"heading/display/L\": {\n value: {\n fontFamily: \"display\",\n fontWeight: \"600\",\n fontSize: [\"5xl\", \"5xl\", \"5xl\", \"6xl\"],\n lineHeight: \"120%\",\n },\n },\n \"heading/display/M\": {\n value: {\n fontFamily: \"display\",\n fontWeight: \"600\",\n fontSize: [\"4xl\", \"5xl\"],\n lineHeight: \"120%\",\n },\n },\n \"heading/display/S\": {\n value: {\n fontFamily: \"display\",\n fontWeight: \"600\",\n fontSize: [\"3xl\", \"4xl\"],\n lineHeight: \"120%\",\n },\n },\n \"heading/XL\": {\n value: {\n fontFamily: \"heading\",\n fontSize: \"5xl\",\n fontWeight: \"500\",\n lineHeight: \"120%\",\n },\n },\n \"heading/L\": {\n value: {\n fontFamily: \"heading\",\n fontSize: \"4xl\",\n fontWeight: \"500\",\n lineHeight: \"110%\",\n },\n },\n \"heading/M\": {\n value: {\n fontFamily: \"heading\",\n fontSize: \"3xl\",\n fontWeight: \"500\",\n lineHeight: \"120%\",\n },\n },\n \"heading/S\": {\n value: {\n fontFamily: \"heading\",\n fontSize: \"2xl\",\n fontWeight: \"500\",\n lineHeight: \"120%\",\n },\n },\n \"label/XL/regular\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"2xl\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.16px\",\n },\n },\n \"label/L/regular\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"lg\",\n fontWeight: \"400\",\n lineHeight: \"20px\",\n letterSpacing: \"0.16px\",\n },\n },\n \"label/L/medium\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"lg\",\n fontWeight: \"500\",\n lineHeight: \"20px\",\n letterSpacing: \"0.16px\",\n },\n },\n \"label/L/medium/underline\": {\n value: {\n textDecoration: \"underline\",\n fontFamily: \"label\",\n fontSize: \"lg\",\n fontWeight: \"500\",\n lineHeight: \"20px\",\n letterSpacing: \"0.16px\",\n },\n },\n \"label/L/medium/uppercase\": {\n value: {\n letterSpacing: \"0.089rem\",\n fontFamily: \"label\",\n fontWeight: \"600\",\n fontSize: \"lg\",\n lineHeight: \"150%\",\n textTransform: \"uppercase\",\n color: \"fg.muted\",\n },\n },\n \"label/M/regular\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"md\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"label/M/regular/underline\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"md\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n textDecoration: \"underline\",\n letterSpacing: \"0.14px\",\n },\n },\n \"label/M/medium\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"md\",\n fontWeight: \"500\",\n lineHeight: \"150%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"label/S/regular\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"sm\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.12px\",\n },\n },\n \"label/S/medium\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"sm\",\n fontWeight: \"500\",\n lineHeight: \"150%\",\n letterSpacing: \"0.12px\",\n },\n },\n \"label/S/italic\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"sm\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.12px\",\n fontStyle: \"italic\",\n },\n },\n \"label/XS\": {\n value: {\n fontFamily: \"label\",\n fontSize: \"xs\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.1px\",\n },\n },\n \"paragraph/M/regular\": {\n value: {\n fontFamily: \"body\",\n fontSize: \"md\",\n fontWeight: \"400\",\n lineHeight: \"171%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"paragraph/M/medium\": {\n value: {\n fontFamily: \"body\",\n fontSize: \"md\",\n fontWeight: \"500\",\n lineHeight: \"171%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"paragraph/L/regular\": {\n value: {\n fontFamily: \"body\",\n fontSize: \"lg\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"paragraph/L/medium\": {\n value: {\n fontFamily: \"body\",\n fontSize: \"lg\",\n fontWeight: \"500\",\n lineHeight: \"150%\",\n letterSpacing: \"0.14px\",\n },\n },\n \"paragraph/XL/regular\": {\n value: {\n fontFamily: \"body\",\n fontWeight: \"400\",\n lineHeight: \"150%\",\n fontSize: [\"xl\", \"2xl\"],\n color: \"fg\",\n letterSpacing: \"0.14px\",\n },\n },\n \"paragraph/XL/medium\": {\n value: {\n fontFamily: \"body\",\n fontWeight: \"500\",\n lineHeight: \"150%\",\n fontSize: [\"xl\", \"2xl\"],\n color: \"fg\",\n letterSpacing: \"0.14px\",\n },\n },\n} satisfies Parameters<typeof defineTextStyles>[0]);\n","import { createSystem, defaultConfig, defineConfig } from \"@chakra-ui/react\";\nimport { globalCss } from \"./global\";\nimport { colors } from \"./primitives/colors\";\nimport { fontSizes, fonts, fontWeights } from \"./primitives/fonts\";\nimport { radii, spacing } from \"./primitives/sizes\";\nimport { alertSlotRecipe } from \"./recipes/alert\";\nimport { buttonRecipe } from \"./recipes/button\";\nimport { dialogSlotRecipe } from \"./recipes/dialog\";\nimport { dividerRecipe } from \"./recipes/divider\";\nimport { drawerSlotRecipe } from \"./recipes/drawer\";\nimport { editableSlotRecipe } from \"./recipes/editable\";\nimport { fieldsetSlotRecipe } from \"./recipes/form\";\nimport { inputRecipe } from \"./recipes/input\";\nimport { menuSlotRecipe } from \"./recipes/menu\";\nimport { popoverRecipe } from \"./recipes/popover\";\nimport { progressCircleSlotRecipe } from \"./recipes/progress-circle\";\nimport { skeletonRecipe } from \"./recipes/skeleton\";\nimport { textareaRecipe } from \"./recipes/textarea\";\nimport { tooltipRecipe } from \"./recipes/tooltip\";\nimport { borders } from \"./tokens/borders\";\nimport { semanticColors } from \"./tokens/colors\";\nimport { layerStyles } from \"./tokens/layer-styles\";\nimport { semanticShadows, shadows } from \"./tokens/shadows\";\nimport { textStyles } from \"./tokens/text\";\n\nconst config = defineConfig({\n globalCss,\n theme: {\n breakpoints: {\n \"3xl\": \"2560px\",\n \"4xl\": \"3840px\",\n },\n textStyles,\n layerStyles,\n recipes: {\n button: buttonRecipe,\n divider: dividerRecipe,\n input: inputRecipe,\n skeleton: skeletonRecipe,\n textarea: textareaRecipe,\n },\n tokens: {\n colors,\n fonts,\n fontSizes,\n fontWeights,\n radii,\n shadows,\n spacing,\n },\n semanticTokens: {\n colors: semanticColors,\n borders,\n shadows: semanticShadows,\n },\n slotRecipes: {\n alert: alertSlotRecipe,\n drawer: drawerSlotRecipe,\n tooltip: tooltipRecipe,\n popover: popoverRecipe,\n menu: menuSlotRecipe,\n editable: editableSlotRecipe,\n form: fieldsetSlotRecipe,\n dialog: dialogSlotRecipe,\n progressCircle: progressCircleSlotRecipe,\n },\n },\n});\n\nexport default createSystem(defaultConfig, config);\n"],"names":["globalCss","bg","base","_dark","html","height","width","overflow","body","fontFamily","fontWeight","fontSize","color","borderColor","display","zIndex","blacks","DEFAULT","value","blue","sapphire","pink","peach","red","orange","yellow","green","teal","cyan","purple","sand","colors","fonts","brand","heading","label","fontSizes","xs","sm","md","lg","xl","fontWeights","regular","medium","semibold","bold","sp","spacing","none","radii","full","alertSlotRecipe","defineSlotRecipe","slots","alertAnatomy","keys","root","pt","pb","buttonRecipe","defineRecipe","borderRadius","transition","_disabled","opacity","_hover","_loading","variants","variant","outline","border","_active","textDecoration","primary","secondary","ghost","size","px","h","textStyle","defaultVariants","dialogSlotRecipe","dialogAnatomy","content","dividerRecipe","drawerSlotRecipe","parts","header","p","editableSlotRecipe","preview","focusRingColor","py","lineHeight","transitionProperty","transitionDuration","input","_focusVisible","boxShadow","_placeholder","textarea","fieldsetSlotRecipe","fieldsetAnatomy","legend","mb","inputRecipe","_focus","menuSlotRecipe","menuAnatomy","itemGroupLabel","ml","item","flexDirection","gap","borderWidth","borderStyle","popoverRecipe","popoverAnatomy","positioner","closeTrigger","arrow","title","borderBottom","footer","responsive","baseSizeVariants","baseProgressCircleSlotRecipe","progressCircleSlotRecipe","circle","valueText","skeletonRecipe","textareaRecipe","paddingX","paddingY","tooltipRecipe","tooltipAnatomy","borders","muted","subtle","inverted","accent","fg","success","error","button","default","disabled","code","emphasized","panel","dark","white","hover","pressed","focus","selected","light","vis","text","grid","axis","categorical","sequential","selectable","semanticColors","layerStyles","defineLayerStyles","modal","paddingInline","paddingBlock","shadows","semanticShadows","low","mid","high","textStyles","defineTextStyles","letterSpacing","textTransform","fontStyle","config","defineConfig","theme","breakpoints","recipes","divider","skeleton","tokens","semanticTokens","slotRecipes","alert","drawer","tooltip","popover","menu","editable","form","dialog","progressCircle","createSystem","defaultConfig"],"mappings":"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"}
|
|
@@ -6,5 +6,8 @@ import "@fontsource/playfair-display/700.css";
|
|
|
6
6
|
import "@fontsource/onest/400.css";
|
|
7
7
|
import "@fontsource/onest/500.css";
|
|
8
8
|
import "@fontsource/onest/700.css";
|
|
9
|
-
|
|
10
|
-
export {
|
|
9
|
+
import { t as h } from "./theme-C7CIuIPZ.js";
|
|
10
|
+
export {
|
|
11
|
+
h as psTheme
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=theme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx as h, jsxs as C } from "react/jsx-runtime";
|
|
2
|
+
import { c as v } from "react/compiler-runtime";
|
|
3
|
+
import { Tooltip as d, Portal as x } from "@chakra-ui/react";
|
|
4
|
+
import * as A from "react";
|
|
5
|
+
const $ = A.forwardRef(function(o, g) {
|
|
6
|
+
const t = v(26);
|
|
7
|
+
let r, l, i, y, n, s, c, m;
|
|
8
|
+
t[0] !== o ? ({
|
|
9
|
+
showArrow: c,
|
|
10
|
+
children: r,
|
|
11
|
+
disabled: y,
|
|
12
|
+
portalled: m,
|
|
13
|
+
content: l,
|
|
14
|
+
contentProps: i,
|
|
15
|
+
portalRef: n,
|
|
16
|
+
...s
|
|
17
|
+
} = o, t[0] = o, t[1] = r, t[2] = l, t[3] = i, t[4] = y, t[5] = n, t[6] = s, t[7] = c, t[8] = m) : (r = t[1], l = t[2], i = t[3], y = t[4], n = t[5], s = t[6], c = t[7], m = t[8]);
|
|
18
|
+
const R = m === void 0 ? !0 : m;
|
|
19
|
+
if (y || b(l))
|
|
20
|
+
return r;
|
|
21
|
+
let f;
|
|
22
|
+
t[9] !== r ? (f = /* @__PURE__ */ h(d.Trigger, { asChild: !0, children: r }), t[9] = r, t[10] = f) : f = t[10];
|
|
23
|
+
const w = !R;
|
|
24
|
+
let a;
|
|
25
|
+
t[11] !== c ? (a = c && /* @__PURE__ */ h(d.Arrow, { children: /* @__PURE__ */ h(d.ArrowTip, {}) }), t[11] = c, t[12] = a) : a = t[12];
|
|
26
|
+
let p;
|
|
27
|
+
t[13] !== l || t[14] !== i || t[15] !== g || t[16] !== a ? (p = /* @__PURE__ */ h(d.Positioner, { children: /* @__PURE__ */ C(d.Content, { ref: g, ...i, children: [
|
|
28
|
+
a,
|
|
29
|
+
l
|
|
30
|
+
] }) }), t[13] = l, t[14] = i, t[15] = g, t[16] = a, t[17] = p) : p = t[17];
|
|
31
|
+
let u;
|
|
32
|
+
t[18] !== n || t[19] !== w || t[20] !== p ? (u = /* @__PURE__ */ h(x, { disabled: w, container: n, children: p }), t[18] = n, t[19] = w, t[20] = p, t[21] = u) : u = t[21];
|
|
33
|
+
let T;
|
|
34
|
+
return t[22] !== s || t[23] !== f || t[24] !== u ? (T = /* @__PURE__ */ C(d.Root, { openDelay: 100, closeDelay: 100, ...s, children: [
|
|
35
|
+
f,
|
|
36
|
+
u
|
|
37
|
+
] }), t[22] = s, t[23] = f, t[24] = u, t[25] = T) : T = t[25], T;
|
|
38
|
+
});
|
|
39
|
+
function P(e) {
|
|
40
|
+
return typeof e == "string" ? e.trim().length === 0 : !1;
|
|
41
|
+
}
|
|
42
|
+
function b(e) {
|
|
43
|
+
if (e == null || e === !1)
|
|
44
|
+
return !0;
|
|
45
|
+
const o = A.Children.toArray(e);
|
|
46
|
+
return o.length === 0 ? !0 : o.every(P);
|
|
47
|
+
}
|
|
48
|
+
export {
|
|
49
|
+
$ as T
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=tooltip-Gm7PLwZG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip-Gm7PLwZG.js","sources":["../src/components/tooltip.tsx"],"sourcesContent":["import { Tooltip as ChakraTooltip, Portal } from \"@chakra-ui/react\";\nimport * as React from \"react\";\n\nexport interface TooltipProps extends ChakraTooltip.RootProps {\n children?: React.ReactElement;\n showArrow?: boolean;\n portalled?: boolean;\n portalRef?: React.RefObject<HTMLElement>;\n content: React.ReactNode;\n contentProps?: ChakraTooltip.ContentProps;\n disabled?: boolean;\n}\n\nexport const Tooltip = React.forwardRef<HTMLDivElement, TooltipProps>(function Tooltip(props, ref) {\n const { showArrow, children, disabled, portalled = true, content, contentProps, portalRef, ...rest } = props;\n\n const isEmptyContent = (node: React.ReactNode): boolean => {\n if (node === null || node === undefined || node === false) return true;\n const arr = React.Children.toArray(node);\n if (arr.length === 0) return true;\n return arr.every((child) => (typeof child === \"string\" ? child.trim().length === 0 : false));\n };\n\n if (disabled || isEmptyContent(content)) return children;\n\n return (\n <ChakraTooltip.Root openDelay={100} closeDelay={100} {...rest}>\n <ChakraTooltip.Trigger asChild>{children}</ChakraTooltip.Trigger>\n <Portal disabled={!portalled} container={portalRef}>\n <ChakraTooltip.Positioner>\n <ChakraTooltip.Content ref={ref} {...contentProps}>\n {showArrow && (\n <ChakraTooltip.Arrow>\n <ChakraTooltip.ArrowTip />\n </ChakraTooltip.Arrow>\n )}\n {content}\n </ChakraTooltip.Content>\n </ChakraTooltip.Positioner>\n </Portal>\n </ChakraTooltip.Root>\n );\n});\n"],"names":["Tooltip","React","forwardRef","props","ref","$","_c","children","content","contentProps","disabled","portalRef","rest","showArrow","t0","portalled","undefined","_temp2","t1","ChakraTooltip","t2","t3","jsx","t4","jsxs","t5","Portal","t6","_temp","child","trim","length","node","arr","Children","toArray","every"],"mappings":";;;;AAaO,MAAMA,IAAUC,EAAMC,WAAyC,SAAAC,GAAAC,GAAA;AAAA,QAAAC,IAAAC,EAAA,EAAA;AAAA,MAAAC,GAAAC,GAAAC,GAAAC,GAAAC,GAAAC,GAAAC,GAAAC;AAAA,EAAAT,SAAAF,KACpE;AAAA,IAAAU,WAAAA;AAAAA,IAAAN,UAAAA;AAAAA,IAAAG,UAAAA;AAAAA,IAAAK,WAAAD;AAAAA,IAAAN,SAAAA;AAAAA,IAAAC,cAAAA;AAAAA,IAAAE,WAAAA;AAAAA,IAAA,GAAAC;AAAAA,EAAAA,IAAuGT,GAAME,OAAAF,GAAAE,OAAAE,GAAAF,OAAAG,GAAAH,OAAAI,GAAAJ,OAAAK,GAAAL,OAAAM,GAAAN,OAAAO,GAAAP,OAAAQ,GAAAR,OAAAS,MAAAP,IAAAF,EAAA,CAAA,GAAAG,IAAAH,EAAA,CAAA,GAAAI,IAAAJ,EAAA,CAAA,GAAAK,IAAAL,EAAA,CAAA,GAAAM,IAAAN,EAAA,CAAA,GAAAO,IAAAP,EAAA,CAAA,GAAAQ,IAAAR,EAAA,CAAA,GAAAS,IAAAT,EAAA,CAAA;AAAtE,QAAAU,IAAAD,MAAAE,SAAA,KAAAF;AASvC,MAAIJ,KAPmBO,EAOQT,CAAO;AAAC,WAASD;AAAS,MAAAW;AAAA,EAAAb,SAAAE,KAIrDW,sBAAAC,EAAA,SAAA,EAAuB,SAAA,IAASZ,UAAAA,GAAS,GAAwBF,OAAAE,GAAAF,QAAAa,KAAAA,IAAAb,EAAA,EAAA;AAC/C,QAAAe,KAACL;AAAS,MAAAM;AAAA,EAAAhB,UAAAQ,KAGrBQ,IAAAR,uBACCM,EAAA,OAAA,EACE,UAAA,gBAAAG,mBACF,GACDjB,QAAAQ,GAAAR,QAAAgB,KAAAA,IAAAhB,EAAA,EAAA;AAAA,MAAAkB;AAAA,EAAAlB,EAAA,EAAA,MAAAG,KAAAH,EAAA,EAAA,MAAAI,KAAAJ,EAAA,EAAA,MAAAD,KAAAC,UAAAgB,KANLE,IAAA,gBAAAD,EAAAH,EAAA,YAAA,EACE,UAAA,gBAAAK,EAAAL,EAAA,SAAA,EAA4Bf,KAAAA,GAAG,GAAMK,GAClCY,UAAAA;AAAAA,IAAAA;AAAAA,IAKAb;AAAAA,EAAAA,EAAAA,CACH,EAAA,CACF,GAA2BH,QAAAG,GAAAH,QAAAI,GAAAJ,QAAAD,GAAAC,QAAAgB,GAAAhB,QAAAkB,KAAAA,IAAAlB,EAAA,EAAA;AAAA,MAAAoB;AAAA,EAAApB,EAAA,EAAA,MAAAM,KAAAN,UAAAe,KAAAf,EAAA,EAAA,MAAAkB,KAV7BE,sBAACC,GAAA,EAAiB,UAAAN,GAAuBT,WAAAA,GACvCY,UAAAA,GAUF,GAASlB,QAAAM,GAAAN,QAAAe,GAAAf,QAAAkB,GAAAlB,QAAAoB,KAAAA,IAAApB,EAAA,EAAA;AAAA,MAAAsB;AAAA,SAAAtB,EAAA,EAAA,MAAAO,KAAAP,UAAAa,KAAAb,EAAA,EAAA,MAAAoB,KAbXE,gCAA+B,gBAAiB,YAAA,KAAG,GAAMf,GACvDM,UAAAA;AAAAA,IAAAA;AAAAA,IACAO;AAAAA,EAAAA,GAYF,GAAqBpB,QAAAO,GAAAP,QAAAa,GAAAb,QAAAoB,GAAApB,QAAAsB,KAAAA,IAAAtB,EAAA,EAAA,GAdrBsB;AAcqB,CAExB;AA7BqE,SAAAC,EAAAC,GAAA;AAAA,SAOrC,OAAOA,KAAU,WAAWA,EAAKC,OAAOC,WAAY,IAApD;AAA6D;AAPxB,SAAAd,EAAAe,GAAA;AAIlE,MAAIA,KAAS,QAA8BA,MAAS;AAAK,WAAS;AAClE,QAAAC,IAAYhC,EAAKiC,SAASC,QAASH,CAAI;AACvC,SAAIC,EAAGF,WAAY,IAAU,KACtBE,EAAGG,MAAOR,CAA0E;AAAC;"}
|
package/{storybook-static/theme/applyThemePreference.d.ts → dist/utils/apply-theme-preference.d.ts}
RENAMED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export type ThemePreference = "light" | "dark";
|
|
2
2
|
export declare const applyThemePreference: (theme: ThemePreference) => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ThemePreference } from './
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ThemePreference } from './apply-theme-preference';
|
|
3
3
|
interface ThemePreferenceContextValue {
|
|
4
4
|
themePreference: ThemePreference;
|
|
5
5
|
setThemePreference: (preference: ThemePreference) => void;
|
|
@@ -10,6 +10,6 @@ interface ThemePreferenceProviderProps {
|
|
|
10
10
|
initialPreference?: ThemePreference;
|
|
11
11
|
}
|
|
12
12
|
export declare const getInitialThemePreference: () => "dark" | "light";
|
|
13
|
-
export declare const ThemePreferenceProvider: (props: ThemePreferenceProviderProps) =>
|
|
13
|
+
export declare const ThemePreferenceProvider: (props: ThemePreferenceProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export declare const useThemePreference: () => ThemePreferenceContextValue;
|
|
15
15
|
export {};
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pstdio/ui",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
7
10
|
"type": "module",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
8
12
|
"exports": {
|
|
9
13
|
".": {
|
|
10
14
|
"import": "./dist/index.js",
|
|
@@ -21,7 +25,8 @@
|
|
|
21
25
|
"./chat-ui": {
|
|
22
26
|
"import": "./dist/chat-ui.js",
|
|
23
27
|
"types": "./dist/components/chat-ui/index.d.ts"
|
|
24
|
-
}
|
|
28
|
+
},
|
|
29
|
+
"./style.css": "./dist/style.css"
|
|
25
30
|
},
|
|
26
31
|
"scripts": {
|
|
27
32
|
"build": "vite build",
|
|
@@ -29,7 +34,7 @@
|
|
|
29
34
|
"lint": "bunx biome check .",
|
|
30
35
|
"typegen:tokens": "chakra typegen ./src/theme/theme.ts",
|
|
31
36
|
"test": "echo 'no tests — use storybook for UI'",
|
|
32
|
-
"test-storybook": "
|
|
37
|
+
"test-storybook": "test-storybook",
|
|
33
38
|
"storybook": "storybook dev -p 6006",
|
|
34
39
|
"build-storybook": "storybook build",
|
|
35
40
|
"prepublishOnly": "bun run build"
|
|
@@ -75,7 +80,6 @@
|
|
|
75
80
|
},
|
|
76
81
|
"devDependencies": {
|
|
77
82
|
"@storybook/addon-themes": "^10.1.10",
|
|
78
|
-
"@storybook/addon-vitest": "^10.2.12",
|
|
79
83
|
"@storybook/react": "^10.1.9",
|
|
80
84
|
"@storybook/react-vite": "^10.1.9",
|
|
81
85
|
"@types/react": "^19.2.0",
|
|
@@ -88,9 +92,6 @@
|
|
|
88
92
|
"vite-plugin-dts": "^4.5.4",
|
|
89
93
|
"vite-plugin-externalize-deps": "^0.8.0",
|
|
90
94
|
"vite-plugin-svgr": "^4.3.0",
|
|
91
|
-
"
|
|
92
|
-
"playwright": "^1.58.2",
|
|
93
|
-
"@vitest/browser-playwright": "^4.0.18",
|
|
94
|
-
"@vitest/coverage-v8": "^4.0.18"
|
|
95
|
+
"@storybook/test-runner": "^0.22.0"
|
|
95
96
|
}
|
|
96
97
|
}
|
package/.storybook/main.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { dirname, resolve } from "node:path";
|
|
2
|
-
import { fileURLToPath } from "node:url";
|
|
3
|
-
import type { StorybookConfig } from "@storybook/react-vite";
|
|
4
|
-
import { mergeConfig } from "vite";
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* This function is used to resolve the absolute path of a package.
|
|
8
|
-
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
|
|
9
|
-
*/
|
|
10
|
-
function getAbsolutePath(value: string) {
|
|
11
|
-
return dirname(fileURLToPath(import.meta.resolve(`${value}/package.json`)));
|
|
12
|
-
}
|
|
13
|
-
const rootDir = dirname(fileURLToPath(import.meta.url));
|
|
14
|
-
const config: StorybookConfig = {
|
|
15
|
-
stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
|
16
|
-
addons: ["@storybook/addon-themes", getAbsolutePath("@storybook/addon-vitest")],
|
|
17
|
-
framework: getAbsolutePath("@storybook/react-vite"),
|
|
18
|
-
viteFinal: async (config) =>
|
|
19
|
-
mergeConfig(config, {
|
|
20
|
-
resolve: {
|
|
21
|
-
alias: {
|
|
22
|
-
"@": resolve(rootDir, "../src"),
|
|
23
|
-
$fonts: resolve(rootDir, "../public/font"),
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
}),
|
|
27
|
-
};
|
|
28
|
-
export default config;
|
package/.storybook/preview.tsx
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ChakraProvider } from "@chakra-ui/react";
|
|
2
|
-
import { withThemeByClassName } from "@storybook/addon-themes";
|
|
3
|
-
import type { Preview } from "@storybook/react-vite";
|
|
4
|
-
import { psTheme } from "../src/theme";
|
|
5
|
-
|
|
6
|
-
const preview: Preview = {
|
|
7
|
-
parameters: {
|
|
8
|
-
controls: {
|
|
9
|
-
matchers: {
|
|
10
|
-
color: /(background|color)$/i,
|
|
11
|
-
date: /Date$/i,
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
decorators: [
|
|
16
|
-
(Story) => (
|
|
17
|
-
<ChakraProvider value={psTheme}>
|
|
18
|
-
<Story />
|
|
19
|
-
</ChakraProvider>
|
|
20
|
-
),
|
|
21
|
-
withThemeByClassName({
|
|
22
|
-
defaultTheme: "light",
|
|
23
|
-
themes: { light: "light", dark: "dark" },
|
|
24
|
-
}),
|
|
25
|
-
],
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export default preview;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { setProjectAnnotations } from "@storybook/react-vite";
|
|
2
|
-
import * as projectAnnotations from "./preview";
|
|
3
|
-
|
|
4
|
-
// This is an important step to apply the right configuration when testing your stories.
|
|
5
|
-
// More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
|
|
6
|
-
setProjectAnnotations([projectAnnotations]);
|
package/src/components/alert.tsx
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Alert as ChakraAlert } from "@chakra-ui/react";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
|
|
4
|
-
export interface AlertProps extends Omit<ChakraAlert.RootProps, "title"> {
|
|
5
|
-
startElement?: React.ReactNode;
|
|
6
|
-
endElement?: React.ReactNode;
|
|
7
|
-
title?: React.ReactNode;
|
|
8
|
-
icon?: React.ReactElement;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const AlertMessage = React.forwardRef<HTMLDivElement, AlertProps>(function Alert(props, ref) {
|
|
12
|
-
const { title, children, icon, startElement, endElement, ...rest } = props;
|
|
13
|
-
return (
|
|
14
|
-
<ChakraAlert.Root ref={ref} {...rest}>
|
|
15
|
-
{startElement || <ChakraAlert.Indicator>{icon}</ChakraAlert.Indicator>}
|
|
16
|
-
{children ? (
|
|
17
|
-
<ChakraAlert.Content>
|
|
18
|
-
<ChakraAlert.Title>{title}</ChakraAlert.Title>
|
|
19
|
-
<ChakraAlert.Description>{children}</ChakraAlert.Description>
|
|
20
|
-
</ChakraAlert.Content>
|
|
21
|
-
) : (
|
|
22
|
-
<ChakraAlert.Title flex="1">{title}</ChakraAlert.Title>
|
|
23
|
-
)}
|
|
24
|
-
{endElement}
|
|
25
|
-
</ChakraAlert.Root>
|
|
26
|
-
);
|
|
27
|
-
});
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Box, Icon } from "@chakra-ui/react";
|
|
2
|
-
import { ChevronRight } from "lucide-react";
|
|
3
|
-
import type { ReactNode } from "react";
|
|
4
|
-
|
|
5
|
-
import { Breadcrumb } from "./breadcrumb";
|
|
6
|
-
|
|
7
|
-
type StoryFn = () => ReactNode;
|
|
8
|
-
|
|
9
|
-
const items = [
|
|
10
|
-
{ title: "Dashboard", url: "/" },
|
|
11
|
-
{ title: "Invoices", url: "/invoices" },
|
|
12
|
-
{ title: "Northwind Traders Q4 2024" },
|
|
13
|
-
];
|
|
14
|
-
|
|
15
|
-
const meta = {
|
|
16
|
-
title: "Components/Breadcrumb",
|
|
17
|
-
component: Breadcrumb,
|
|
18
|
-
decorators: [
|
|
19
|
-
(Story: StoryFn) => (
|
|
20
|
-
<Box padding="sm" background="bg">
|
|
21
|
-
<Story />
|
|
22
|
-
</Box>
|
|
23
|
-
),
|
|
24
|
-
],
|
|
25
|
-
args: {
|
|
26
|
-
items,
|
|
27
|
-
separator: "/",
|
|
28
|
-
separatorGap: "xs",
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export default meta;
|
|
33
|
-
|
|
34
|
-
export const Default = {};
|
|
35
|
-
|
|
36
|
-
export const IconSeparator = {
|
|
37
|
-
args: {
|
|
38
|
-
separator: <Icon as={ChevronRight} boxSize="12px" color="fg.muted" />,
|
|
39
|
-
},
|
|
40
|
-
};
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { Breadcrumb as ChakraBreadcrumb, type SystemStyleObject } from "@chakra-ui/react";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
|
|
4
|
-
export interface BreadcrumbItem {
|
|
5
|
-
title: React.ReactNode;
|
|
6
|
-
url?: string;
|
|
7
|
-
onClick?: () => void;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface BreadcrumbLinkProps {
|
|
11
|
-
to: string;
|
|
12
|
-
children: React.ReactNode;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface BreadcrumbProps extends ChakraBreadcrumb.RootProps {
|
|
16
|
-
separator?: React.ReactNode;
|
|
17
|
-
separatorGap?: SystemStyleObject["gap"];
|
|
18
|
-
items: BreadcrumbItem[];
|
|
19
|
-
linkComponent?: React.ComponentType<BreadcrumbLinkProps>;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export const Breadcrumb = React.forwardRef<HTMLDivElement, BreadcrumbProps>(function BreadcrumbRoot(props, ref) {
|
|
23
|
-
const { separator, separatorGap, items, linkComponent: LinkComponent, ...rest } = props;
|
|
24
|
-
|
|
25
|
-
return (
|
|
26
|
-
<ChakraBreadcrumb.Root ref={ref} {...rest}>
|
|
27
|
-
<ChakraBreadcrumb.List gap={separatorGap}>
|
|
28
|
-
{items.map((item, index) => {
|
|
29
|
-
const last = index === items.length - 1;
|
|
30
|
-
const isInteractive = Boolean(item.url || item.onClick);
|
|
31
|
-
let itemContent: React.ReactNode;
|
|
32
|
-
|
|
33
|
-
if (last && !isInteractive) {
|
|
34
|
-
itemContent = <ChakraBreadcrumb.CurrentLink>{item.title}</ChakraBreadcrumb.CurrentLink>;
|
|
35
|
-
} else if (item.url) {
|
|
36
|
-
itemContent = LinkComponent ? (
|
|
37
|
-
<ChakraBreadcrumb.Link asChild>
|
|
38
|
-
<LinkComponent to={item.url}>{item.title}</LinkComponent>
|
|
39
|
-
</ChakraBreadcrumb.Link>
|
|
40
|
-
) : (
|
|
41
|
-
<ChakraBreadcrumb.Link href={item.url}>{item.title}</ChakraBreadcrumb.Link>
|
|
42
|
-
);
|
|
43
|
-
} else if (item.onClick) {
|
|
44
|
-
itemContent = (
|
|
45
|
-
<ChakraBreadcrumb.Link as="button" type="button" onClick={item.onClick}>
|
|
46
|
-
{item.title}
|
|
47
|
-
</ChakraBreadcrumb.Link>
|
|
48
|
-
);
|
|
49
|
-
} else {
|
|
50
|
-
itemContent = <ChakraBreadcrumb.Link>{item.title}</ChakraBreadcrumb.Link>;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
return (
|
|
54
|
-
<ChakraBreadcrumb.Item key={index}>
|
|
55
|
-
{itemContent}
|
|
56
|
-
{last ? null : (
|
|
57
|
-
<ChakraBreadcrumb.Separator as="span" aria-hidden ml="xs">
|
|
58
|
-
{separator}
|
|
59
|
-
</ChakraBreadcrumb.Separator>
|
|
60
|
-
)}
|
|
61
|
-
</ChakraBreadcrumb.Item>
|
|
62
|
-
);
|
|
63
|
-
})}
|
|
64
|
-
</ChakraBreadcrumb.List>
|
|
65
|
-
</ChakraBreadcrumb.Root>
|
|
66
|
-
);
|
|
67
|
-
});
|