@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,2067 @@
|
|
|
1
|
+
import { defineSlotRecipe as l, defineRecipe as a, defineLayerStyles as r, defineTextStyles as s, defineConfig as t, createSystem as i, defaultConfig as u } from "@chakra-ui/react";
|
|
2
|
+
import { alertAnatomy as d, dialogAnatomy as b, drawerAnatomy as c, fieldsetAnatomy as n, menuAnatomy as v, popoverAnatomy as g, tooltipAnatomy as p } from "@chakra-ui/react/anatomy";
|
|
3
|
+
import { progressCircleSlotRecipe as o } from "@chakra-ui/react/theme";
|
|
4
|
+
const m = {
|
|
5
|
+
"*::selection": {
|
|
6
|
+
bg: {
|
|
7
|
+
base: "bg.accent-secondary.blue-medium",
|
|
8
|
+
_dark: "bg.accent-secondary.blue-medium"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
":root": {
|
|
12
|
+
"--focus-border": "blue.border",
|
|
13
|
+
"--separator-border": "transparent !important"
|
|
14
|
+
},
|
|
15
|
+
html: {
|
|
16
|
+
height: "100%",
|
|
17
|
+
width: "100%",
|
|
18
|
+
overflow: "hidden"
|
|
19
|
+
},
|
|
20
|
+
body: {
|
|
21
|
+
height: "100%",
|
|
22
|
+
width: "100%",
|
|
23
|
+
fontFamily: "body",
|
|
24
|
+
fontWeight: "regular",
|
|
25
|
+
fontSize: "md",
|
|
26
|
+
bg: "bg",
|
|
27
|
+
color: "fg",
|
|
28
|
+
borderColor: "border",
|
|
29
|
+
overflow: "hidden"
|
|
30
|
+
},
|
|
31
|
+
"#root": {
|
|
32
|
+
height: "100%",
|
|
33
|
+
width: "100%",
|
|
34
|
+
display: "flex"
|
|
35
|
+
},
|
|
36
|
+
".sash": {
|
|
37
|
+
zIndex: "docked"
|
|
38
|
+
},
|
|
39
|
+
"@media (min-width: 2560px)": {
|
|
40
|
+
html: {
|
|
41
|
+
fontSize: "1.25rem"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"@media (min-width: 3840px)": {
|
|
45
|
+
html: {
|
|
46
|
+
fontSize: "1.5rem"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}, h = {
|
|
50
|
+
DEFAULT: {
|
|
51
|
+
value: "#0A0D15"
|
|
52
|
+
},
|
|
53
|
+
50: {
|
|
54
|
+
value: "#FFFFFF"
|
|
55
|
+
},
|
|
56
|
+
75: {
|
|
57
|
+
value: "#FCFCFC"
|
|
58
|
+
},
|
|
59
|
+
100: {
|
|
60
|
+
value: "#F9F9F9"
|
|
61
|
+
},
|
|
62
|
+
200: {
|
|
63
|
+
value: "#F5F5F5"
|
|
64
|
+
},
|
|
65
|
+
300: {
|
|
66
|
+
value: "#EAEAEA"
|
|
67
|
+
},
|
|
68
|
+
400: {
|
|
69
|
+
value: "#C5C5C7"
|
|
70
|
+
},
|
|
71
|
+
500: {
|
|
72
|
+
value: "#797D83"
|
|
73
|
+
},
|
|
74
|
+
600: {
|
|
75
|
+
value: "#5A5F67"
|
|
76
|
+
},
|
|
77
|
+
700: {
|
|
78
|
+
value: "#444750"
|
|
79
|
+
},
|
|
80
|
+
750: {
|
|
81
|
+
value: "#33363E"
|
|
82
|
+
},
|
|
83
|
+
800: {
|
|
84
|
+
value: "#22252C"
|
|
85
|
+
},
|
|
86
|
+
850: {
|
|
87
|
+
value: "#1A1C21"
|
|
88
|
+
},
|
|
89
|
+
900: {
|
|
90
|
+
value: "#0A0D15"
|
|
91
|
+
},
|
|
92
|
+
1e3: {
|
|
93
|
+
value: "#000000"
|
|
94
|
+
}
|
|
95
|
+
}, k = {
|
|
96
|
+
DEFAULT: {
|
|
97
|
+
value: "#5098FF"
|
|
98
|
+
},
|
|
99
|
+
50: {
|
|
100
|
+
value: "#EEF5FF"
|
|
101
|
+
},
|
|
102
|
+
100: {
|
|
103
|
+
value: "#D2E4FF"
|
|
104
|
+
},
|
|
105
|
+
200: {
|
|
106
|
+
value: "#A8CBFE"
|
|
107
|
+
},
|
|
108
|
+
300: {
|
|
109
|
+
value: "#81B4FE"
|
|
110
|
+
},
|
|
111
|
+
400: {
|
|
112
|
+
value: "#6CA9FF"
|
|
113
|
+
},
|
|
114
|
+
500: {
|
|
115
|
+
value: "#5098FF"
|
|
116
|
+
},
|
|
117
|
+
600: {
|
|
118
|
+
value: "#2B82FF"
|
|
119
|
+
},
|
|
120
|
+
700: {
|
|
121
|
+
value: "#0E6EF6"
|
|
122
|
+
},
|
|
123
|
+
800: {
|
|
124
|
+
value: "#0652C3"
|
|
125
|
+
},
|
|
126
|
+
900: {
|
|
127
|
+
value: "#002862"
|
|
128
|
+
}
|
|
129
|
+
}, x = {
|
|
130
|
+
DEFAULT: {
|
|
131
|
+
value: "#3A4BE4"
|
|
132
|
+
},
|
|
133
|
+
25: {
|
|
134
|
+
value: "#F0F1FF"
|
|
135
|
+
},
|
|
136
|
+
50: {
|
|
137
|
+
value: "#E0E3FF"
|
|
138
|
+
},
|
|
139
|
+
100: {
|
|
140
|
+
value: "#BEC4FF"
|
|
141
|
+
},
|
|
142
|
+
200: {
|
|
143
|
+
value: "#97A2FF"
|
|
144
|
+
},
|
|
145
|
+
300: {
|
|
146
|
+
value: "#6A78F8"
|
|
147
|
+
},
|
|
148
|
+
400: {
|
|
149
|
+
value: "#4E5FF3"
|
|
150
|
+
},
|
|
151
|
+
500: {
|
|
152
|
+
value: "#3A4BE4"
|
|
153
|
+
},
|
|
154
|
+
600: {
|
|
155
|
+
value: "#2A3CD7"
|
|
156
|
+
},
|
|
157
|
+
700: {
|
|
158
|
+
value: "#202FB8"
|
|
159
|
+
},
|
|
160
|
+
800: {
|
|
161
|
+
value: "#131F87"
|
|
162
|
+
},
|
|
163
|
+
900: {
|
|
164
|
+
value: "#0A125A"
|
|
165
|
+
}
|
|
166
|
+
}, F = {
|
|
167
|
+
DEFAULT: {
|
|
168
|
+
value: "#E054EC"
|
|
169
|
+
},
|
|
170
|
+
25: {
|
|
171
|
+
value: "#FDF0FF"
|
|
172
|
+
},
|
|
173
|
+
50: {
|
|
174
|
+
value: "#FCE1FF"
|
|
175
|
+
},
|
|
176
|
+
100: {
|
|
177
|
+
value: "#F5CBF9"
|
|
178
|
+
},
|
|
179
|
+
200: {
|
|
180
|
+
value: "#F6B4FC"
|
|
181
|
+
},
|
|
182
|
+
300: {
|
|
183
|
+
value: "#F69AFF"
|
|
184
|
+
},
|
|
185
|
+
400: {
|
|
186
|
+
value: "#EF81FA"
|
|
187
|
+
},
|
|
188
|
+
500: {
|
|
189
|
+
value: "#E054EC"
|
|
190
|
+
},
|
|
191
|
+
600: {
|
|
192
|
+
value: "#B636C1"
|
|
193
|
+
},
|
|
194
|
+
700: {
|
|
195
|
+
value: "#951BA0"
|
|
196
|
+
},
|
|
197
|
+
800: {
|
|
198
|
+
value: "#6F0C78"
|
|
199
|
+
},
|
|
200
|
+
900: {
|
|
201
|
+
value: "#520659"
|
|
202
|
+
}
|
|
203
|
+
}, f = {
|
|
204
|
+
DEFAULT: {
|
|
205
|
+
value: "#FBD8CE"
|
|
206
|
+
},
|
|
207
|
+
50: {
|
|
208
|
+
value: "#FFF2EC"
|
|
209
|
+
},
|
|
210
|
+
100: {
|
|
211
|
+
value: "#FCE1DA"
|
|
212
|
+
},
|
|
213
|
+
200: {
|
|
214
|
+
value: "#FBD8CE"
|
|
215
|
+
},
|
|
216
|
+
300: {
|
|
217
|
+
value: "#F7C4B8"
|
|
218
|
+
},
|
|
219
|
+
400: {
|
|
220
|
+
value: "#F3AA9A"
|
|
221
|
+
},
|
|
222
|
+
500: {
|
|
223
|
+
value: "#EB8A75"
|
|
224
|
+
},
|
|
225
|
+
600: {
|
|
226
|
+
value: "#D17059"
|
|
227
|
+
},
|
|
228
|
+
700: {
|
|
229
|
+
value: "#A85646"
|
|
230
|
+
},
|
|
231
|
+
800: {
|
|
232
|
+
value: "#7B3F34"
|
|
233
|
+
},
|
|
234
|
+
900: {
|
|
235
|
+
value: "#522923"
|
|
236
|
+
}
|
|
237
|
+
}, y = {
|
|
238
|
+
DEFAULT: {
|
|
239
|
+
value: "#FF3232"
|
|
240
|
+
},
|
|
241
|
+
50: {
|
|
242
|
+
value: "#FFE0E3"
|
|
243
|
+
},
|
|
244
|
+
100: {
|
|
245
|
+
value: "#FFCCCC"
|
|
246
|
+
},
|
|
247
|
+
200: {
|
|
248
|
+
value: "#FDA8A8"
|
|
249
|
+
},
|
|
250
|
+
300: {
|
|
251
|
+
value: "#FF8B8B"
|
|
252
|
+
},
|
|
253
|
+
400: {
|
|
254
|
+
value: "#FF6B6B"
|
|
255
|
+
},
|
|
256
|
+
500: {
|
|
257
|
+
value: "#FF3232"
|
|
258
|
+
},
|
|
259
|
+
600: {
|
|
260
|
+
value: "#DE1D1D"
|
|
261
|
+
},
|
|
262
|
+
700: {
|
|
263
|
+
value: "#BA1313"
|
|
264
|
+
},
|
|
265
|
+
800: {
|
|
266
|
+
value: "#8E0E0E"
|
|
267
|
+
},
|
|
268
|
+
900: {
|
|
269
|
+
value: "#580707"
|
|
270
|
+
}
|
|
271
|
+
}, _ = {
|
|
272
|
+
DEFAULT: {
|
|
273
|
+
value: "#EB9D2A"
|
|
274
|
+
},
|
|
275
|
+
50: {
|
|
276
|
+
value: "#FDF3E5"
|
|
277
|
+
},
|
|
278
|
+
100: {
|
|
279
|
+
value: "#FAE6C8"
|
|
280
|
+
},
|
|
281
|
+
200: {
|
|
282
|
+
value: "#F7D6A6"
|
|
283
|
+
},
|
|
284
|
+
300: {
|
|
285
|
+
value: "#F3C683"
|
|
286
|
+
},
|
|
287
|
+
400: {
|
|
288
|
+
value: "#EB9D2A"
|
|
289
|
+
},
|
|
290
|
+
500: {
|
|
291
|
+
value: "#CF8A25"
|
|
292
|
+
},
|
|
293
|
+
600: {
|
|
294
|
+
value: "#B37720"
|
|
295
|
+
},
|
|
296
|
+
700: {
|
|
297
|
+
value: "#92611A"
|
|
298
|
+
},
|
|
299
|
+
800: {
|
|
300
|
+
value: "#714B14"
|
|
301
|
+
},
|
|
302
|
+
900: {
|
|
303
|
+
value: "#52370F"
|
|
304
|
+
}
|
|
305
|
+
}, E = {
|
|
306
|
+
DEFAULT: {
|
|
307
|
+
value: "#FFD643"
|
|
308
|
+
},
|
|
309
|
+
50: {
|
|
310
|
+
value: "#FFF7D9"
|
|
311
|
+
},
|
|
312
|
+
100: {
|
|
313
|
+
value: "#FFEEB3"
|
|
314
|
+
},
|
|
315
|
+
200: {
|
|
316
|
+
value: "#FFE792"
|
|
317
|
+
},
|
|
318
|
+
300: {
|
|
319
|
+
value: "#FFDE67"
|
|
320
|
+
},
|
|
321
|
+
400: {
|
|
322
|
+
value: "#FFD643"
|
|
323
|
+
},
|
|
324
|
+
500: {
|
|
325
|
+
value: "#FFC909"
|
|
326
|
+
},
|
|
327
|
+
600: {
|
|
328
|
+
value: "#E4B200"
|
|
329
|
+
},
|
|
330
|
+
700: {
|
|
331
|
+
value: "#C69B00"
|
|
332
|
+
},
|
|
333
|
+
800: {
|
|
334
|
+
value: "#9D7A00"
|
|
335
|
+
},
|
|
336
|
+
900: {
|
|
337
|
+
value: "#644E00"
|
|
338
|
+
}
|
|
339
|
+
}, C = {
|
|
340
|
+
DEFAULT: {
|
|
341
|
+
value: "#2DD665"
|
|
342
|
+
},
|
|
343
|
+
50: {
|
|
344
|
+
value: "#CFFFDF"
|
|
345
|
+
},
|
|
346
|
+
100: {
|
|
347
|
+
value: "#ACFBC7"
|
|
348
|
+
},
|
|
349
|
+
200: {
|
|
350
|
+
value: "#86F3AB"
|
|
351
|
+
},
|
|
352
|
+
300: {
|
|
353
|
+
value: "#61EA8F"
|
|
354
|
+
},
|
|
355
|
+
400: {
|
|
356
|
+
value: "#2DD665"
|
|
357
|
+
},
|
|
358
|
+
500: {
|
|
359
|
+
value: "#0AB744"
|
|
360
|
+
},
|
|
361
|
+
600: {
|
|
362
|
+
value: "#029232"
|
|
363
|
+
},
|
|
364
|
+
700: {
|
|
365
|
+
value: "#007126"
|
|
366
|
+
},
|
|
367
|
+
800: {
|
|
368
|
+
value: "#00511B"
|
|
369
|
+
},
|
|
370
|
+
900: {
|
|
371
|
+
value: "#003110"
|
|
372
|
+
}
|
|
373
|
+
}, S = {
|
|
374
|
+
DEFAULT: {
|
|
375
|
+
value: "#3EECC4"
|
|
376
|
+
},
|
|
377
|
+
50: {
|
|
378
|
+
value: "#C9FFF3"
|
|
379
|
+
},
|
|
380
|
+
100: {
|
|
381
|
+
value: "#9EFBE6"
|
|
382
|
+
},
|
|
383
|
+
200: {
|
|
384
|
+
value: "#6DF4D5"
|
|
385
|
+
},
|
|
386
|
+
300: {
|
|
387
|
+
value: "#3EECC4"
|
|
388
|
+
},
|
|
389
|
+
400: {
|
|
390
|
+
value: "#16DFB0"
|
|
391
|
+
},
|
|
392
|
+
500: {
|
|
393
|
+
value: "#12C69C"
|
|
394
|
+
},
|
|
395
|
+
600: {
|
|
396
|
+
value: "#10A884"
|
|
397
|
+
},
|
|
398
|
+
700: {
|
|
399
|
+
value: "#0C8367"
|
|
400
|
+
},
|
|
401
|
+
800: {
|
|
402
|
+
value: "#096C55"
|
|
403
|
+
},
|
|
404
|
+
900: {
|
|
405
|
+
value: "#024F3D"
|
|
406
|
+
}
|
|
407
|
+
}, A = {
|
|
408
|
+
DEFAULT: {
|
|
409
|
+
value: "#5CDCFF"
|
|
410
|
+
},
|
|
411
|
+
50: {
|
|
412
|
+
value: "#DAF7FE"
|
|
413
|
+
},
|
|
414
|
+
100: {
|
|
415
|
+
value: "#ADEDFF"
|
|
416
|
+
},
|
|
417
|
+
200: {
|
|
418
|
+
value: "#85E4FF"
|
|
419
|
+
},
|
|
420
|
+
300: {
|
|
421
|
+
value: "#5CDCFF"
|
|
422
|
+
},
|
|
423
|
+
400: {
|
|
424
|
+
value: "#30D2FF"
|
|
425
|
+
},
|
|
426
|
+
500: {
|
|
427
|
+
value: "#00C0F5"
|
|
428
|
+
},
|
|
429
|
+
600: {
|
|
430
|
+
value: "#03AAD7"
|
|
431
|
+
},
|
|
432
|
+
700: {
|
|
433
|
+
value: "#0095BE"
|
|
434
|
+
},
|
|
435
|
+
800: {
|
|
436
|
+
value: "#007A9B"
|
|
437
|
+
},
|
|
438
|
+
900: {
|
|
439
|
+
value: "#005B73"
|
|
440
|
+
}
|
|
441
|
+
}, D = {
|
|
442
|
+
DEFAULT: {
|
|
443
|
+
value: "#8B47FF"
|
|
444
|
+
},
|
|
445
|
+
50: {
|
|
446
|
+
value: "#EFE6FF"
|
|
447
|
+
},
|
|
448
|
+
100: {
|
|
449
|
+
value: "#D8C2FF"
|
|
450
|
+
},
|
|
451
|
+
200: {
|
|
452
|
+
value: "#BE99FF"
|
|
453
|
+
},
|
|
454
|
+
300: {
|
|
455
|
+
value: "#A36DFF"
|
|
456
|
+
},
|
|
457
|
+
400: {
|
|
458
|
+
value: "#8B47FF"
|
|
459
|
+
},
|
|
460
|
+
500: {
|
|
461
|
+
value: "#7223F9"
|
|
462
|
+
},
|
|
463
|
+
600: {
|
|
464
|
+
value: "#5A00F5"
|
|
465
|
+
},
|
|
466
|
+
700: {
|
|
467
|
+
value: "#4600C0"
|
|
468
|
+
},
|
|
469
|
+
800: {
|
|
470
|
+
value: "#310086"
|
|
471
|
+
},
|
|
472
|
+
900: {
|
|
473
|
+
value: "#1E0050"
|
|
474
|
+
}
|
|
475
|
+
}, w = {
|
|
476
|
+
DEFAULT: {
|
|
477
|
+
value: "#F4F2EC"
|
|
478
|
+
},
|
|
479
|
+
50: {
|
|
480
|
+
value: "#FCF7EF"
|
|
481
|
+
},
|
|
482
|
+
100: {
|
|
483
|
+
value: "#F4F2EC"
|
|
484
|
+
},
|
|
485
|
+
200: {
|
|
486
|
+
value: "#E8CECE"
|
|
487
|
+
},
|
|
488
|
+
300: {
|
|
489
|
+
value: "#E8CECE"
|
|
490
|
+
},
|
|
491
|
+
400: {
|
|
492
|
+
value: "#E8CECE"
|
|
493
|
+
},
|
|
494
|
+
500: {
|
|
495
|
+
value: "#E8CECE"
|
|
496
|
+
},
|
|
497
|
+
600: {
|
|
498
|
+
value: "#E8CECE"
|
|
499
|
+
},
|
|
500
|
+
700: {
|
|
501
|
+
value: "#E8CECE"
|
|
502
|
+
},
|
|
503
|
+
800: {
|
|
504
|
+
value: "#E8CECE"
|
|
505
|
+
},
|
|
506
|
+
900: {
|
|
507
|
+
value: "#E8CECE"
|
|
508
|
+
}
|
|
509
|
+
}, z = {
|
|
510
|
+
sand: w,
|
|
511
|
+
blacks: h,
|
|
512
|
+
blue: k,
|
|
513
|
+
sapphire: x,
|
|
514
|
+
pink: F,
|
|
515
|
+
peach: f,
|
|
516
|
+
red: y,
|
|
517
|
+
orange: _,
|
|
518
|
+
yellow: E,
|
|
519
|
+
green: C,
|
|
520
|
+
teal: S,
|
|
521
|
+
cyan: A,
|
|
522
|
+
purple: D
|
|
523
|
+
}, B = {
|
|
524
|
+
display: {
|
|
525
|
+
value: "'Playfair Display', serif"
|
|
526
|
+
},
|
|
527
|
+
brand: {
|
|
528
|
+
value: "Onest, sans-serif"
|
|
529
|
+
},
|
|
530
|
+
heading: {
|
|
531
|
+
value: "Onest, sans-serif"
|
|
532
|
+
},
|
|
533
|
+
label: {
|
|
534
|
+
value: "Onest, sans-serif"
|
|
535
|
+
},
|
|
536
|
+
body: {
|
|
537
|
+
value: "Inter, sans-serif"
|
|
538
|
+
}
|
|
539
|
+
}, L = {
|
|
540
|
+
xs: {
|
|
541
|
+
value: "0.625rem"
|
|
542
|
+
},
|
|
543
|
+
// 10px
|
|
544
|
+
sm: {
|
|
545
|
+
value: "0.75rem"
|
|
546
|
+
},
|
|
547
|
+
// 12px
|
|
548
|
+
md: {
|
|
549
|
+
value: "0.875rem"
|
|
550
|
+
},
|
|
551
|
+
// 14px
|
|
552
|
+
lg: {
|
|
553
|
+
value: "1rem"
|
|
554
|
+
},
|
|
555
|
+
// 16px
|
|
556
|
+
xl: {
|
|
557
|
+
value: "1.125rem"
|
|
558
|
+
},
|
|
559
|
+
// 18px
|
|
560
|
+
"2xl": {
|
|
561
|
+
value: "1.25rem"
|
|
562
|
+
},
|
|
563
|
+
// 20px
|
|
564
|
+
"3xl": {
|
|
565
|
+
value: "1.5rem"
|
|
566
|
+
},
|
|
567
|
+
// 24px
|
|
568
|
+
"3.5xl": {
|
|
569
|
+
value: "1.75rem"
|
|
570
|
+
},
|
|
571
|
+
// 28px
|
|
572
|
+
"4xl": {
|
|
573
|
+
value: "2.25rem"
|
|
574
|
+
},
|
|
575
|
+
// 36px
|
|
576
|
+
"5xl": {
|
|
577
|
+
value: "3rem"
|
|
578
|
+
},
|
|
579
|
+
// 48px
|
|
580
|
+
"6xl": {
|
|
581
|
+
value: "4.375rem"
|
|
582
|
+
},
|
|
583
|
+
// 70px
|
|
584
|
+
"7xl": {
|
|
585
|
+
value: "5.25rem"
|
|
586
|
+
},
|
|
587
|
+
// 84px
|
|
588
|
+
"icon-xs": {
|
|
589
|
+
value: "0.875rem"
|
|
590
|
+
},
|
|
591
|
+
// 14px
|
|
592
|
+
"icon-sm": {
|
|
593
|
+
value: "1rem"
|
|
594
|
+
},
|
|
595
|
+
// 16px
|
|
596
|
+
"icon-md": {
|
|
597
|
+
value: "1.25rem"
|
|
598
|
+
},
|
|
599
|
+
// 20px
|
|
600
|
+
"icon-lg": {
|
|
601
|
+
value: "1.25rem"
|
|
602
|
+
}
|
|
603
|
+
// 20px
|
|
604
|
+
}, R = {
|
|
605
|
+
regular: {
|
|
606
|
+
value: 400
|
|
607
|
+
},
|
|
608
|
+
medium: {
|
|
609
|
+
value: 500
|
|
610
|
+
},
|
|
611
|
+
semibold: {
|
|
612
|
+
value: 600
|
|
613
|
+
},
|
|
614
|
+
bold: {
|
|
615
|
+
value: 700
|
|
616
|
+
}
|
|
617
|
+
}, e = {
|
|
618
|
+
// 0px
|
|
619
|
+
25: "0.125rem",
|
|
620
|
+
// 2px
|
|
621
|
+
50: "0.25rem",
|
|
622
|
+
// 4px
|
|
623
|
+
100: "0.5rem",
|
|
624
|
+
// 8px
|
|
625
|
+
150: "0.75rem",
|
|
626
|
+
// 12px
|
|
627
|
+
200: "1rem",
|
|
628
|
+
// 20px
|
|
629
|
+
300: "1.5rem",
|
|
630
|
+
// 24px
|
|
631
|
+
400: "2rem",
|
|
632
|
+
// 32px
|
|
633
|
+
500: "2.5rem",
|
|
634
|
+
// 40px
|
|
635
|
+
600: "3rem",
|
|
636
|
+
// 48px
|
|
637
|
+
700: "3.5rem",
|
|
638
|
+
// 56px
|
|
639
|
+
800: "4rem",
|
|
640
|
+
// 64px
|
|
641
|
+
900: "4.5rem",
|
|
642
|
+
// 96px
|
|
643
|
+
1600: "8rem"
|
|
644
|
+
}, W = {
|
|
645
|
+
none: {
|
|
646
|
+
value: "0"
|
|
647
|
+
},
|
|
648
|
+
"2xs": {
|
|
649
|
+
value: e[50]
|
|
650
|
+
},
|
|
651
|
+
xs: {
|
|
652
|
+
value: e[100]
|
|
653
|
+
},
|
|
654
|
+
sm: {
|
|
655
|
+
value: e[150]
|
|
656
|
+
},
|
|
657
|
+
md: {
|
|
658
|
+
value: e[200]
|
|
659
|
+
},
|
|
660
|
+
lg: {
|
|
661
|
+
value: e[300]
|
|
662
|
+
},
|
|
663
|
+
xl: {
|
|
664
|
+
value: e[400]
|
|
665
|
+
},
|
|
666
|
+
"2xl": {
|
|
667
|
+
value: e[500]
|
|
668
|
+
},
|
|
669
|
+
"3xl": {
|
|
670
|
+
value: e[600]
|
|
671
|
+
},
|
|
672
|
+
"3.5xl": {
|
|
673
|
+
value: e[700]
|
|
674
|
+
},
|
|
675
|
+
"4xl": {
|
|
676
|
+
value: e[800]
|
|
677
|
+
},
|
|
678
|
+
"4.5xl": {
|
|
679
|
+
value: e[900]
|
|
680
|
+
},
|
|
681
|
+
"5xl": {
|
|
682
|
+
value: e[1600]
|
|
683
|
+
}
|
|
684
|
+
}, H = {
|
|
685
|
+
none: {
|
|
686
|
+
value: "0"
|
|
687
|
+
},
|
|
688
|
+
"2xs": {
|
|
689
|
+
value: e[25]
|
|
690
|
+
},
|
|
691
|
+
xs: {
|
|
692
|
+
value: e[50]
|
|
693
|
+
},
|
|
694
|
+
sm: {
|
|
695
|
+
value: e[100]
|
|
696
|
+
},
|
|
697
|
+
md: {
|
|
698
|
+
value: e[150]
|
|
699
|
+
},
|
|
700
|
+
lg: {
|
|
701
|
+
value: e[200]
|
|
702
|
+
},
|
|
703
|
+
xl: {
|
|
704
|
+
value: e[400]
|
|
705
|
+
},
|
|
706
|
+
full: {
|
|
707
|
+
value: "100%"
|
|
708
|
+
}
|
|
709
|
+
}, T = l({
|
|
710
|
+
slots: d.keys(),
|
|
711
|
+
base: {
|
|
712
|
+
root: {
|
|
713
|
+
pt: "xs",
|
|
714
|
+
pb: "xs"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
}), U = a({
|
|
718
|
+
base: {
|
|
719
|
+
borderRadius: "sm",
|
|
720
|
+
transition: "all 0.1s ease-in-out",
|
|
721
|
+
fontFamily: "label",
|
|
722
|
+
fontWeight: "500",
|
|
723
|
+
color: "fg",
|
|
724
|
+
bg: "bg",
|
|
725
|
+
borderColor: "border.muted",
|
|
726
|
+
_disabled: {
|
|
727
|
+
opacity: 1,
|
|
728
|
+
color: "fg.subtle",
|
|
729
|
+
bg: "bg.muted",
|
|
730
|
+
_hover: {
|
|
731
|
+
bg: "bg.muted"
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
_loading: {
|
|
735
|
+
opacity: 1,
|
|
736
|
+
color: "fg.subtle",
|
|
737
|
+
bg: "bg.muted",
|
|
738
|
+
_hover: {
|
|
739
|
+
bg: "bg.muted"
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
variants: {
|
|
744
|
+
variant: {
|
|
745
|
+
"display-primary": {
|
|
746
|
+
bg: "blacks.900",
|
|
747
|
+
color: "fg.inverted",
|
|
748
|
+
borderRadius: "xl",
|
|
749
|
+
outline: "none",
|
|
750
|
+
border: "none",
|
|
751
|
+
_hover: {
|
|
752
|
+
bg: "blacks.800"
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"display-outline": {
|
|
756
|
+
bg: "transparent",
|
|
757
|
+
color: "fg",
|
|
758
|
+
borderRadius: "xl",
|
|
759
|
+
border: "2px solid {fg}",
|
|
760
|
+
_hover: {
|
|
761
|
+
bg: "bg.muted"
|
|
762
|
+
},
|
|
763
|
+
_active: {
|
|
764
|
+
bg: "bg.emphasized"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"display-ghost": {
|
|
768
|
+
bg: "transparent",
|
|
769
|
+
color: "fg",
|
|
770
|
+
borderRadius: "xl",
|
|
771
|
+
_hover: {
|
|
772
|
+
bg: "bg.muted"
|
|
773
|
+
},
|
|
774
|
+
_active: {
|
|
775
|
+
bg: "bg.emphasized"
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"display-link": {
|
|
779
|
+
bg: "transparent",
|
|
780
|
+
color: "fg",
|
|
781
|
+
border: "none",
|
|
782
|
+
borderRadius: "xl",
|
|
783
|
+
_hover: {
|
|
784
|
+
textDecoration: "underline"
|
|
785
|
+
},
|
|
786
|
+
_active: {
|
|
787
|
+
textDecoration: "underline"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
primary: {
|
|
791
|
+
color: "blacks.1000",
|
|
792
|
+
bg: "bg.accent-primary.medium",
|
|
793
|
+
border: "none",
|
|
794
|
+
_hover: {
|
|
795
|
+
bg: "bg.accent-primary.light"
|
|
796
|
+
},
|
|
797
|
+
_active: {
|
|
798
|
+
bg: "bg.accent-primary.medium"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
secondary: {
|
|
802
|
+
color: "fg",
|
|
803
|
+
bg: "bg",
|
|
804
|
+
border: "2px solid border.muted",
|
|
805
|
+
_hover: {
|
|
806
|
+
bg: "bg.muted"
|
|
807
|
+
},
|
|
808
|
+
_active: {
|
|
809
|
+
bg: "bg.emphasized"
|
|
810
|
+
},
|
|
811
|
+
_disabled: {
|
|
812
|
+
opacity: 1,
|
|
813
|
+
color: "fg.subtle",
|
|
814
|
+
borderColor: "border.muted"
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
outline: {
|
|
818
|
+
color: "fg",
|
|
819
|
+
bg: "bg",
|
|
820
|
+
border: "border.muted",
|
|
821
|
+
_hover: {
|
|
822
|
+
bg: "bg.muted"
|
|
823
|
+
},
|
|
824
|
+
_active: {
|
|
825
|
+
bg: "bg.emphasized"
|
|
826
|
+
},
|
|
827
|
+
_disabled: {
|
|
828
|
+
opacity: 1,
|
|
829
|
+
color: "fg.subtle",
|
|
830
|
+
borderColor: "border.muted"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
ghost: {
|
|
834
|
+
color: "fg",
|
|
835
|
+
bg: "transparent",
|
|
836
|
+
border: "none",
|
|
837
|
+
_hover: {
|
|
838
|
+
bg: "bg.muted"
|
|
839
|
+
},
|
|
840
|
+
_active: {
|
|
841
|
+
bg: "bg.emphasized"
|
|
842
|
+
},
|
|
843
|
+
_disabled: {
|
|
844
|
+
bg: "transparent",
|
|
845
|
+
_hover: {
|
|
846
|
+
bg: "transparent"
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
size: {
|
|
852
|
+
"2xl": {
|
|
853
|
+
px: "1.5rem",
|
|
854
|
+
h: "3.5rem",
|
|
855
|
+
textStyle: "label/L/medium"
|
|
856
|
+
},
|
|
857
|
+
lg: {
|
|
858
|
+
px: "1rem",
|
|
859
|
+
h: "3rem",
|
|
860
|
+
textStyle: "label/M/medium"
|
|
861
|
+
},
|
|
862
|
+
md: {
|
|
863
|
+
textStyle: "label/M/medium"
|
|
864
|
+
},
|
|
865
|
+
sm: {
|
|
866
|
+
px: "0.5rem",
|
|
867
|
+
h: "2rem",
|
|
868
|
+
textStyle: "label/S/medium"
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
defaultVariants: {
|
|
873
|
+
size: "md",
|
|
874
|
+
variant: "outline"
|
|
875
|
+
}
|
|
876
|
+
}), M = l({
|
|
877
|
+
slots: b.keys(),
|
|
878
|
+
base: {
|
|
879
|
+
content: {
|
|
880
|
+
bg: "bg"
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}), V = a({
|
|
884
|
+
base: {
|
|
885
|
+
borderColor: "border"
|
|
886
|
+
}
|
|
887
|
+
}), X = l({
|
|
888
|
+
slots: c.keys(),
|
|
889
|
+
base: {
|
|
890
|
+
header: {
|
|
891
|
+
fontWeight: "medium",
|
|
892
|
+
textStyle: "label/M/medium",
|
|
893
|
+
p: "xs"
|
|
894
|
+
},
|
|
895
|
+
content: {
|
|
896
|
+
bg: "bg"
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
}), I = l({
|
|
900
|
+
slots: ["preview", "input", "textarea"],
|
|
901
|
+
base: {
|
|
902
|
+
preview: {
|
|
903
|
+
textStyle: "label/L/medium",
|
|
904
|
+
borderRadius: "2xs",
|
|
905
|
+
focusRingColor: "border",
|
|
906
|
+
py: "0",
|
|
907
|
+
lineHeight: "1.5rem",
|
|
908
|
+
transitionProperty: "common",
|
|
909
|
+
transitionDuration: "normal",
|
|
910
|
+
_hover: {
|
|
911
|
+
bg: "bg.muted"
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
input: {
|
|
915
|
+
textStyle: "label/L/medium",
|
|
916
|
+
borderRadius: "2xs",
|
|
917
|
+
focusRingColor: "border",
|
|
918
|
+
py: "0",
|
|
919
|
+
lineHeight: "1.5rem",
|
|
920
|
+
transitionProperty: "common",
|
|
921
|
+
transitionDuration: "normal",
|
|
922
|
+
bg: "bg",
|
|
923
|
+
width: "auto",
|
|
924
|
+
_focusVisible: {
|
|
925
|
+
boxShadow: "none"
|
|
926
|
+
},
|
|
927
|
+
_placeholder: {
|
|
928
|
+
color: "fg.muted"
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
textarea: {
|
|
932
|
+
textStyle: "label/L/medium",
|
|
933
|
+
borderRadius: "2xs",
|
|
934
|
+
focusRingColor: "border",
|
|
935
|
+
py: "0",
|
|
936
|
+
transitionProperty: "common",
|
|
937
|
+
transitionDuration: "normal",
|
|
938
|
+
bg: "bg.muted",
|
|
939
|
+
width: "auto",
|
|
940
|
+
_focusVisible: {
|
|
941
|
+
boxShadow: "none"
|
|
942
|
+
},
|
|
943
|
+
_placeholder: {
|
|
944
|
+
color: "fg.muted"
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
}), P = l({
|
|
949
|
+
slots: n.keys(),
|
|
950
|
+
base: {
|
|
951
|
+
legend: {
|
|
952
|
+
mb: "2xs"
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
}), O = a({
|
|
956
|
+
base: {
|
|
957
|
+
px: "sm",
|
|
958
|
+
borderRadius: "sm",
|
|
959
|
+
border: "1px solid",
|
|
960
|
+
transition: "border-color 0.2s ease-in-out",
|
|
961
|
+
bg: "bg",
|
|
962
|
+
color: "fg",
|
|
963
|
+
borderColor: "border.muted",
|
|
964
|
+
_hover: {
|
|
965
|
+
borderColor: "border"
|
|
966
|
+
},
|
|
967
|
+
_active: {
|
|
968
|
+
borderColor: "blue.border"
|
|
969
|
+
},
|
|
970
|
+
_focus: {
|
|
971
|
+
borderColor: "blue.border"
|
|
972
|
+
},
|
|
973
|
+
_focusVisible: {
|
|
974
|
+
borderColor: "blue.border"
|
|
975
|
+
},
|
|
976
|
+
_placeholder: {
|
|
977
|
+
color: "fg.subtle"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
variants: {
|
|
981
|
+
size: {
|
|
982
|
+
sm: {
|
|
983
|
+
h: "2rem"
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
}), $ = l({
|
|
988
|
+
slots: v.keys(),
|
|
989
|
+
base: {
|
|
990
|
+
itemGroupLabel: {
|
|
991
|
+
ml: "{2xs}",
|
|
992
|
+
textStyle: "label/S/regular",
|
|
993
|
+
fontWeight: "normal",
|
|
994
|
+
color: "fg.muted"
|
|
995
|
+
},
|
|
996
|
+
item: {
|
|
997
|
+
bg: "bg.menu-item.default",
|
|
998
|
+
color: "fg.menu-item.default",
|
|
999
|
+
textStyle: "label/M/regular",
|
|
1000
|
+
px: "0.5rem",
|
|
1001
|
+
h: "2.25rem",
|
|
1002
|
+
_hover: {
|
|
1003
|
+
bg: "bg.menu-item.hover"
|
|
1004
|
+
},
|
|
1005
|
+
_focus: {
|
|
1006
|
+
bg: "bg.menu-item.focus"
|
|
1007
|
+
},
|
|
1008
|
+
_active: {
|
|
1009
|
+
bg: "bg.menu-item.selected"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
content: {
|
|
1013
|
+
display: "flex",
|
|
1014
|
+
flexDirection: "column",
|
|
1015
|
+
gap: "2xs",
|
|
1016
|
+
borderRadius: "sm",
|
|
1017
|
+
py: "xs",
|
|
1018
|
+
bg: "bg",
|
|
1019
|
+
borderWidth: "1px",
|
|
1020
|
+
borderStyle: "solid",
|
|
1021
|
+
borderColor: "border.muted",
|
|
1022
|
+
boxShadow: "low",
|
|
1023
|
+
zIndex: "dropdown",
|
|
1024
|
+
textStyle: "label/M/regular"
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
}), q = l({
|
|
1028
|
+
slots: g.keys(),
|
|
1029
|
+
base: {
|
|
1030
|
+
positioner: {
|
|
1031
|
+
_focus: {
|
|
1032
|
+
boxShadow: "none !important"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
closeTrigger: {
|
|
1036
|
+
textStyle: "label/M/medium",
|
|
1037
|
+
color: "fg"
|
|
1038
|
+
},
|
|
1039
|
+
arrow: {
|
|
1040
|
+
bg: "background-primary !important",
|
|
1041
|
+
borderColor: "button-secondary-stroke"
|
|
1042
|
+
},
|
|
1043
|
+
content: {
|
|
1044
|
+
gap: "8px",
|
|
1045
|
+
py: "xs",
|
|
1046
|
+
borderRadius: "12px",
|
|
1047
|
+
bg: "bg",
|
|
1048
|
+
borderColor: "border",
|
|
1049
|
+
_focus: {
|
|
1050
|
+
boxShadow: "none !important"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
title: {
|
|
1054
|
+
borderBottom: "none",
|
|
1055
|
+
textStyle: "label/M/medium",
|
|
1056
|
+
bg: "bg"
|
|
1057
|
+
},
|
|
1058
|
+
body: {
|
|
1059
|
+
textStyle: "primary"
|
|
1060
|
+
},
|
|
1061
|
+
footer: {}
|
|
1062
|
+
},
|
|
1063
|
+
variants: {
|
|
1064
|
+
variant: {
|
|
1065
|
+
responsive: {
|
|
1066
|
+
content: {
|
|
1067
|
+
width: "unset"
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
size: {
|
|
1072
|
+
"2xl": {
|
|
1073
|
+
content: {
|
|
1074
|
+
width: "2xl"
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
}), G = o.variants?.size ?? {}, Y = {
|
|
1080
|
+
...o,
|
|
1081
|
+
variants: {
|
|
1082
|
+
...o.variants,
|
|
1083
|
+
size: {
|
|
1084
|
+
...G,
|
|
1085
|
+
"2xs": {
|
|
1086
|
+
circle: {
|
|
1087
|
+
"--size": "14px",
|
|
1088
|
+
"--thickness": "2px"
|
|
1089
|
+
},
|
|
1090
|
+
valueText: {
|
|
1091
|
+
textStyle: "2xs"
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
}, j = a({
|
|
1097
|
+
base: {
|
|
1098
|
+
"--start-color": "fg",
|
|
1099
|
+
"--end-color": "fg.muted"
|
|
1100
|
+
}
|
|
1101
|
+
}), J = a({
|
|
1102
|
+
base: {
|
|
1103
|
+
paddingX: "sm",
|
|
1104
|
+
paddingY: "xs",
|
|
1105
|
+
opacity: "1",
|
|
1106
|
+
outline: "none",
|
|
1107
|
+
color: "fg",
|
|
1108
|
+
border: "1px solid",
|
|
1109
|
+
transition: "border-color 0.2s ease-in-out",
|
|
1110
|
+
borderColor: "border.muted",
|
|
1111
|
+
_hover: {
|
|
1112
|
+
borderColor: "border"
|
|
1113
|
+
},
|
|
1114
|
+
_active: {
|
|
1115
|
+
borderColor: "blue.border"
|
|
1116
|
+
},
|
|
1117
|
+
_focus: {
|
|
1118
|
+
borderColor: "blue.border"
|
|
1119
|
+
},
|
|
1120
|
+
_focusVisible: {
|
|
1121
|
+
borderColor: "blue.border"
|
|
1122
|
+
},
|
|
1123
|
+
_placeholder: {
|
|
1124
|
+
color: "fg.subtle"
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
}), K = l({
|
|
1128
|
+
slots: p.keys(),
|
|
1129
|
+
base: {
|
|
1130
|
+
content: {
|
|
1131
|
+
bg: "bg.inverted",
|
|
1132
|
+
color: "fg.inverted"
|
|
1133
|
+
},
|
|
1134
|
+
arrow: {
|
|
1135
|
+
bg: "bg.inverted"
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
}), N = {
|
|
1139
|
+
DEFAULT: {
|
|
1140
|
+
value: {
|
|
1141
|
+
base: "1px solid {colors.blacks.400}",
|
|
1142
|
+
_dark: "1px solid {colors.blacks.600}"
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
muted: {
|
|
1146
|
+
value: {
|
|
1147
|
+
base: "1px solid {colors.blacks.300}",
|
|
1148
|
+
_dark: "1px solid {colors.blacks.700}"
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
subtle: {
|
|
1152
|
+
value: {
|
|
1153
|
+
base: "1px solid {colors.blacks.300}",
|
|
1154
|
+
_dark: "1px solid {colors.blacks.50}"
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
inverted: {
|
|
1158
|
+
value: {
|
|
1159
|
+
base: "1px solid {colors.blacks.400}",
|
|
1160
|
+
_dark: "1px solid {colors.blacks.600}"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
accent: {
|
|
1164
|
+
value: {
|
|
1165
|
+
base: "1px solid {colors.blue.700}",
|
|
1166
|
+
_dark: "1px solid {colors.blue.200}"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"accent-light": {
|
|
1170
|
+
value: {
|
|
1171
|
+
base: "1px solid {colors.blue.200}",
|
|
1172
|
+
_dark: "1px solid {colors.blue.900}"
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
}, Q = {
|
|
1176
|
+
DEFAULT: {
|
|
1177
|
+
value: {
|
|
1178
|
+
base: "{colors.blacks.800}",
|
|
1179
|
+
_dark: "{colors.blacks.200}"
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1182
|
+
muted: {
|
|
1183
|
+
value: {
|
|
1184
|
+
base: "{colors.blacks.500}",
|
|
1185
|
+
_dark: "{colors.blacks.500}"
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
subtle: {
|
|
1189
|
+
value: {
|
|
1190
|
+
base: "{colors.blacks.400}",
|
|
1191
|
+
_dark: "{colors.blacks.600}"
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
inverted: {
|
|
1195
|
+
value: {
|
|
1196
|
+
base: "{colors.blacks.50}",
|
|
1197
|
+
_dark: "{colors.blacks.800}"
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
success: {
|
|
1201
|
+
value: {
|
|
1202
|
+
base: "{colors.green.400}",
|
|
1203
|
+
_dark: "{colors.green.400}"
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
error: {
|
|
1207
|
+
value: {
|
|
1208
|
+
base: "{colors.red.400}",
|
|
1209
|
+
_dark: "{colors.red.400}"
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
accent: {
|
|
1213
|
+
"pink-dark": {
|
|
1214
|
+
value: {
|
|
1215
|
+
base: "{colors.pink.700}",
|
|
1216
|
+
_dark: "{colors.pink.50}"
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"green-dark": {
|
|
1221
|
+
value: {
|
|
1222
|
+
base: "{colors.green.700}",
|
|
1223
|
+
_dark: "{colors.green.50}"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"blue-dark": {
|
|
1227
|
+
value: {
|
|
1228
|
+
base: "{colors.sapphire.700}",
|
|
1229
|
+
_dark: "{colors.sapphire.100}"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
"blue-very-dark": {
|
|
1233
|
+
value: {
|
|
1234
|
+
base: "{colors.sapphire.900}",
|
|
1235
|
+
_dark: "{colors.sapphire.800}"
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
button: {
|
|
1239
|
+
primary: {
|
|
1240
|
+
default: {
|
|
1241
|
+
value: {
|
|
1242
|
+
base: "{colors.blacks.200}",
|
|
1243
|
+
_dark: "{colors.blacks.200}"
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
1246
|
+
disabled: {
|
|
1247
|
+
value: "{colors.fg.subtle}"
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"menu-item": {
|
|
1252
|
+
default: {
|
|
1253
|
+
value: "{colors.fg}"
|
|
1254
|
+
},
|
|
1255
|
+
secondary: {
|
|
1256
|
+
value: "{colors.fg.muted}"
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
}, Z = {
|
|
1260
|
+
DEFAULT: {
|
|
1261
|
+
value: {
|
|
1262
|
+
base: "{colors.blacks.50}",
|
|
1263
|
+
_dark: "{colors.blacks.900}"
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
muted: {
|
|
1267
|
+
value: {
|
|
1268
|
+
base: "{colors.blacks.200}",
|
|
1269
|
+
_dark: "{colors.blacks.800}"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
subtle: {
|
|
1273
|
+
value: {
|
|
1274
|
+
base: "{colors.blacks.75}",
|
|
1275
|
+
_dark: "{colors.blacks.850}"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
code: {
|
|
1279
|
+
value: {
|
|
1280
|
+
base: "{colors.blacks.50}",
|
|
1281
|
+
_dark: "{colors.blacks.800}"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
emphasized: {
|
|
1285
|
+
value: {
|
|
1286
|
+
base: "{colors.blacks.50}",
|
|
1287
|
+
_dark: "{colors.blacks.600}"
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
inverted: {
|
|
1291
|
+
value: {
|
|
1292
|
+
base: "{colors.blacks.800}",
|
|
1293
|
+
_dark: "{colors.blacks.100}"
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1296
|
+
panel: {
|
|
1297
|
+
value: {
|
|
1298
|
+
base: "{colors.blacks.100}",
|
|
1299
|
+
_dark: "{colors.blacks.850}"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
dark: {
|
|
1303
|
+
value: {
|
|
1304
|
+
base: "{colors.blacks.900}",
|
|
1305
|
+
_dark: "{colors.blacks.900}"
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
white: {
|
|
1309
|
+
value: {
|
|
1310
|
+
base: "{colors.blacks.50}",
|
|
1311
|
+
_dark: "{colors.blacks.50}"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
button: {
|
|
1315
|
+
primary: {
|
|
1316
|
+
default: {
|
|
1317
|
+
value: "{colors.bg.accent-primary.default}"
|
|
1318
|
+
},
|
|
1319
|
+
hover: {
|
|
1320
|
+
value: "{colors.bg.accent-primary.hover}"
|
|
1321
|
+
},
|
|
1322
|
+
pressed: {
|
|
1323
|
+
value: "{colors.bg.accent-primary.pressed}"
|
|
1324
|
+
},
|
|
1325
|
+
disabled: {
|
|
1326
|
+
value: "{colors.bg.muted}"
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
"menu-item": {
|
|
1331
|
+
default: {
|
|
1332
|
+
value: "{colors.bg}"
|
|
1333
|
+
},
|
|
1334
|
+
hover: {
|
|
1335
|
+
value: "{colors.bg.muted}"
|
|
1336
|
+
},
|
|
1337
|
+
focus: {
|
|
1338
|
+
value: "{colors.bg.muted}"
|
|
1339
|
+
},
|
|
1340
|
+
selected: {
|
|
1341
|
+
value: "{colors.bg.muted}"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
display: {
|
|
1345
|
+
"very-light": {
|
|
1346
|
+
value: {
|
|
1347
|
+
base: "{colors.sand.50}",
|
|
1348
|
+
_dark: "{colors.blacks.1000}"
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"accent-primary": {
|
|
1353
|
+
default: {
|
|
1354
|
+
value: {
|
|
1355
|
+
base: "{colors.orange.100}",
|
|
1356
|
+
_dark: "{colors.orange.300}"
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1359
|
+
hover: {
|
|
1360
|
+
value: {
|
|
1361
|
+
base: "{colors.orange.200}",
|
|
1362
|
+
_dark: "{colors.orange.200}"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
pressed: {
|
|
1366
|
+
value: {
|
|
1367
|
+
base: "{colors.orange.300}",
|
|
1368
|
+
_dark: "{colors.orange.100}"
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
"very-light": {
|
|
1372
|
+
value: {
|
|
1373
|
+
base: "{colors.orange.100}",
|
|
1374
|
+
_dark: "{colors.blacks.1000}"
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
light: {
|
|
1378
|
+
value: {
|
|
1379
|
+
base: "{colors.orange.100}",
|
|
1380
|
+
_dark: "{colors.orange.300}"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
medium: {
|
|
1384
|
+
value: {
|
|
1385
|
+
base: "{colors.orange.200}",
|
|
1386
|
+
_dark: "{colors.orange.200}"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
dark: {
|
|
1390
|
+
value: {
|
|
1391
|
+
base: "{colors.orange.300}",
|
|
1392
|
+
_dark: "{colors.orange.100}"
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"accent-secondary": {
|
|
1397
|
+
"grey-dark": {
|
|
1398
|
+
value: {
|
|
1399
|
+
base: "{colors.blacks.50}",
|
|
1400
|
+
_dark: "{colors.blacks.1000}"
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"grey-light": {
|
|
1404
|
+
value: {
|
|
1405
|
+
base: "{colors.blacks.100}",
|
|
1406
|
+
_dark: "{colors.blacks.900}"
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1409
|
+
"red-very-light": {
|
|
1410
|
+
value: {
|
|
1411
|
+
base: "{colors.red.50}",
|
|
1412
|
+
_dark: "{colors.red.100}"
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"red-light": {
|
|
1416
|
+
value: {
|
|
1417
|
+
base: "{colors.red.100}",
|
|
1418
|
+
_dark: "{colors.red.100}"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
"pink-light": {
|
|
1422
|
+
value: {
|
|
1423
|
+
base: "{colors.pink.50}",
|
|
1424
|
+
_dark: "{colors.pink.700}"
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"pink-medium": {
|
|
1428
|
+
value: {
|
|
1429
|
+
base: "{colors.pink.100}",
|
|
1430
|
+
_dark: "{colors.pink.800}"
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1433
|
+
"blue-very-light": {
|
|
1434
|
+
value: {
|
|
1435
|
+
base: "{colors.blue.25}",
|
|
1436
|
+
_dark: "{colors.blue.50}"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"blue-light": {
|
|
1440
|
+
value: {
|
|
1441
|
+
base: "{colors.blue.50}",
|
|
1442
|
+
_dark: "{colors.blue.700}"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"blue-medium": {
|
|
1446
|
+
value: {
|
|
1447
|
+
base: "{colors.blue.100}",
|
|
1448
|
+
_dark: "{colors.blue.800}"
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
"blue-dark": {
|
|
1452
|
+
value: {
|
|
1453
|
+
base: "{colors.blue.700}",
|
|
1454
|
+
_dark: "{colors.blue.200}"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"cyan-light": {
|
|
1458
|
+
value: {
|
|
1459
|
+
base: "{colors.cyan.50}",
|
|
1460
|
+
_dark: "{colors.cyan.100}"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"green-light": {
|
|
1464
|
+
value: {
|
|
1465
|
+
base: "{colors.green.50}",
|
|
1466
|
+
_dark: "{colors.sapphire.50}"
|
|
1467
|
+
}
|
|
1468
|
+
},
|
|
1469
|
+
"yellow-light": {
|
|
1470
|
+
value: {
|
|
1471
|
+
base: "{colors.yellow.50}",
|
|
1472
|
+
_dark: "{colors.yellow.100}"
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
"yellow-medium": {
|
|
1476
|
+
value: {
|
|
1477
|
+
base: "{colors.yellow.100}",
|
|
1478
|
+
_dark: "{colors.yellow.200}"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"sand-light": {
|
|
1482
|
+
value: {
|
|
1483
|
+
base: "{colors.sand.100}",
|
|
1484
|
+
_dark: "{colors.sand.100}"
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
}, ee = {
|
|
1489
|
+
DEFAULT: {
|
|
1490
|
+
value: {
|
|
1491
|
+
base: "{colors.blacks.400}",
|
|
1492
|
+
_dark: "{colors.blacks.600}"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
muted: {
|
|
1496
|
+
value: {
|
|
1497
|
+
base: "{colors.blacks.300}",
|
|
1498
|
+
_dark: "{colors.blacks.700}"
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
subtle: {
|
|
1502
|
+
value: {
|
|
1503
|
+
base: "{colors.blacks.300}",
|
|
1504
|
+
_dark: "{colors.blacks.50}"
|
|
1505
|
+
}
|
|
1506
|
+
},
|
|
1507
|
+
inverted: {
|
|
1508
|
+
value: {
|
|
1509
|
+
base: "{colors.blacks.400}",
|
|
1510
|
+
_dark: "{colors.blacks.600}"
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"accent-light": {
|
|
1514
|
+
value: {
|
|
1515
|
+
base: "{colors.blue.200}",
|
|
1516
|
+
_dark: "{colors.blue.900}"
|
|
1517
|
+
}
|
|
1518
|
+
},
|
|
1519
|
+
accent: {
|
|
1520
|
+
value: {
|
|
1521
|
+
base: "{colors.blue.700}",
|
|
1522
|
+
_dark: "{colors.blue.200}"
|
|
1523
|
+
}
|
|
1524
|
+
},
|
|
1525
|
+
button: {
|
|
1526
|
+
primary: {
|
|
1527
|
+
value: "{colors.border.muted}"
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
}, le = {
|
|
1531
|
+
border: {
|
|
1532
|
+
value: {
|
|
1533
|
+
base: "{colors.blue.700}",
|
|
1534
|
+
_dark: "{colors.blue.200}"
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
}, ae = {
|
|
1538
|
+
text: {
|
|
1539
|
+
primary: {
|
|
1540
|
+
value: {
|
|
1541
|
+
base: "{colors.blacks.800}",
|
|
1542
|
+
_dark: "{colors.blacks.200}"
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
secondary: {
|
|
1546
|
+
value: {
|
|
1547
|
+
base: "{colors.blacks.600}",
|
|
1548
|
+
_dark: "{colors.blacks.500}"
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
grid: {
|
|
1553
|
+
value: {
|
|
1554
|
+
base: "{colors.blacks.300}",
|
|
1555
|
+
_dark: "{colors.blacks.800}"
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
axis: {
|
|
1559
|
+
value: {
|
|
1560
|
+
base: "{colors.blacks.700}",
|
|
1561
|
+
_dark: "{colors.blacks.300}"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
categorical: {
|
|
1565
|
+
1: {
|
|
1566
|
+
value: {
|
|
1567
|
+
base: "{colors.blue.300}",
|
|
1568
|
+
_dark: "{colors.blue.300}"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
2: {
|
|
1572
|
+
value: {
|
|
1573
|
+
base: "{colors.orange.500}",
|
|
1574
|
+
_dark: "{colors.orange.500}"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
3: {
|
|
1578
|
+
value: {
|
|
1579
|
+
base: "{colors.purple.700}",
|
|
1580
|
+
_dark: "{colors.purple.700}"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
4: {
|
|
1584
|
+
value: {
|
|
1585
|
+
base: "{colors.red.500}",
|
|
1586
|
+
_dark: "{colors.red.600}"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
5: {
|
|
1590
|
+
value: {
|
|
1591
|
+
base: "{colors.pink.500}",
|
|
1592
|
+
_dark: "{colors.pink.500}"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
6: {
|
|
1596
|
+
value: {
|
|
1597
|
+
base: "{colors.cyan.800}",
|
|
1598
|
+
_dark: "{colors.green.500}"
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
7: {
|
|
1602
|
+
value: {
|
|
1603
|
+
base: "{colors.red.200}",
|
|
1604
|
+
_dark: "{colors.cyan.700}"
|
|
1605
|
+
}
|
|
1606
|
+
}
|
|
1607
|
+
},
|
|
1608
|
+
sequential: {
|
|
1609
|
+
blue: {
|
|
1610
|
+
"low-3": {
|
|
1611
|
+
value: {
|
|
1612
|
+
base: "{colors.blue.200}",
|
|
1613
|
+
_dark: "{colors.blue.800}"
|
|
1614
|
+
}
|
|
1615
|
+
},
|
|
1616
|
+
"low-2": {
|
|
1617
|
+
value: {
|
|
1618
|
+
base: "{colors.blue.300}",
|
|
1619
|
+
_dark: "{colors.blue.700}"
|
|
1620
|
+
}
|
|
1621
|
+
},
|
|
1622
|
+
"low-1": {
|
|
1623
|
+
value: {
|
|
1624
|
+
base: "{colors.blue.400}",
|
|
1625
|
+
_dark: "{colors.blue.600}"
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
default: {
|
|
1629
|
+
value: {
|
|
1630
|
+
base: "{colors.blue.500}",
|
|
1631
|
+
_dark: "{colors.blue.500}"
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
"high-1": {
|
|
1635
|
+
value: {
|
|
1636
|
+
base: "{colors.blue.600}",
|
|
1637
|
+
_dark: "{colors.blue.400}"
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
"high-2": {
|
|
1641
|
+
value: {
|
|
1642
|
+
base: "{colors.blue.700}",
|
|
1643
|
+
_dark: "{colors.blue.300}"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"high-3": {
|
|
1647
|
+
value: {
|
|
1648
|
+
base: "{colors.blue.800}",
|
|
1649
|
+
_dark: "{colors.blue.200}"
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
},
|
|
1653
|
+
red: {
|
|
1654
|
+
"low-3": {
|
|
1655
|
+
value: {
|
|
1656
|
+
base: "{colors.red.200}",
|
|
1657
|
+
_dark: "{colors.red.800}"
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
"low-2": {
|
|
1661
|
+
value: {
|
|
1662
|
+
base: "{colors.red.300}",
|
|
1663
|
+
_dark: "{colors.red.700}"
|
|
1664
|
+
}
|
|
1665
|
+
},
|
|
1666
|
+
"low-1": {
|
|
1667
|
+
value: {
|
|
1668
|
+
base: "{colors.red.400}",
|
|
1669
|
+
_dark: "{colors.red.600}"
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
default: {
|
|
1673
|
+
value: {
|
|
1674
|
+
base: "{colors.red.500}",
|
|
1675
|
+
_dark: "{colors.red.500}"
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
"high-1": {
|
|
1679
|
+
value: {
|
|
1680
|
+
base: "{colors.red.600}",
|
|
1681
|
+
_dark: "{colors.red.400}"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"high-2": {
|
|
1685
|
+
value: {
|
|
1686
|
+
base: "{colors.red.700}",
|
|
1687
|
+
_dark: "{colors.red.300}"
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
"high-3": {
|
|
1691
|
+
value: {
|
|
1692
|
+
base: "{colors.red.800}",
|
|
1693
|
+
_dark: "{colors.red.200}"
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1698
|
+
}, oe = {
|
|
1699
|
+
selectable: {
|
|
1700
|
+
primary: {
|
|
1701
|
+
value: {
|
|
1702
|
+
base: "{colors.blacks.800}",
|
|
1703
|
+
_dark: "{colors.blacks.800}"
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
}, re = {
|
|
1708
|
+
fg: Q,
|
|
1709
|
+
bg: Z,
|
|
1710
|
+
border: ee,
|
|
1711
|
+
blue: le,
|
|
1712
|
+
vis: ae,
|
|
1713
|
+
text: oe
|
|
1714
|
+
}, se = r({
|
|
1715
|
+
modal: {
|
|
1716
|
+
value: {
|
|
1717
|
+
paddingInline: "xs",
|
|
1718
|
+
paddingBlock: "sm",
|
|
1719
|
+
borderRadius: "sm",
|
|
1720
|
+
bg: "bg",
|
|
1721
|
+
border: "1px solid",
|
|
1722
|
+
borderColor: "border",
|
|
1723
|
+
boxShadow: "mid"
|
|
1724
|
+
}
|
|
1725
|
+
}
|
|
1726
|
+
}), te = {
|
|
1727
|
+
"low-light": {
|
|
1728
|
+
value: "0px 2px 4px 0px rgba(0, 0, 0, 0.10)"
|
|
1729
|
+
},
|
|
1730
|
+
"mid-light": {
|
|
1731
|
+
value: "0px 6px 12px 0px rgba(0, 0, 0, 0.10)"
|
|
1732
|
+
},
|
|
1733
|
+
"high-light": {
|
|
1734
|
+
value: "0px 12px 24px 0px rgba(0, 0, 0, 0.10)"
|
|
1735
|
+
},
|
|
1736
|
+
"low-dark": {
|
|
1737
|
+
value: "0px 2px 4px 0px rgba(0, 0, 0, 0.45)"
|
|
1738
|
+
},
|
|
1739
|
+
"mid-dark": {
|
|
1740
|
+
value: "0px 6px 12px 0px rgba(0, 0, 0, 0.5)"
|
|
1741
|
+
},
|
|
1742
|
+
"high-dark": {
|
|
1743
|
+
value: "0px 12px 24px 0px rgba(0, 0, 0, 0.55)"
|
|
1744
|
+
},
|
|
1745
|
+
"desktop-icon-label-text-light": {
|
|
1746
|
+
value: "0px 1px 3px rgba(15, 23, 42, 0.45)"
|
|
1747
|
+
},
|
|
1748
|
+
"desktop-icon-label-text-dark": {
|
|
1749
|
+
value: "0px 1px 3px rgba(8, 15, 35, 0.75)"
|
|
1750
|
+
},
|
|
1751
|
+
"desktop-icon-label-text-selected-light": {
|
|
1752
|
+
value: "0px 1px 3px rgba(37, 99, 235, 0.55)"
|
|
1753
|
+
},
|
|
1754
|
+
"desktop-icon-label-text-selected-dark": {
|
|
1755
|
+
value: "0px 2px 4px rgba(37, 99, 235, 0.75)"
|
|
1756
|
+
}
|
|
1757
|
+
}, ie = {
|
|
1758
|
+
low: {
|
|
1759
|
+
value: {
|
|
1760
|
+
base: "{shadows.low-light}",
|
|
1761
|
+
_dark: "{shadows.low-dark}"
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
mid: {
|
|
1765
|
+
value: {
|
|
1766
|
+
base: "{shadows.mid-light}",
|
|
1767
|
+
_dark: "{shadows.mid-dark}"
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
high: {
|
|
1771
|
+
value: {
|
|
1772
|
+
base: "{shadows.high-light}",
|
|
1773
|
+
_dark: "{shadows.high-dark}"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"desktop-icon-label": {
|
|
1777
|
+
value: {
|
|
1778
|
+
base: "{shadows.desktop-icon-label-text-light}",
|
|
1779
|
+
_dark: "{shadows.desktop-icon-label-text-dark}"
|
|
1780
|
+
}
|
|
1781
|
+
},
|
|
1782
|
+
"desktop-icon-label-selected": {
|
|
1783
|
+
value: {
|
|
1784
|
+
base: "{shadows.desktop-icon-label-text-selected-light}",
|
|
1785
|
+
_dark: "{shadows.desktop-icon-label-text-selected-dark}"
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
}, ue = s({
|
|
1789
|
+
brand: {
|
|
1790
|
+
value: {
|
|
1791
|
+
fontFamily: "brand",
|
|
1792
|
+
fontSize: "3xl",
|
|
1793
|
+
fontWeight: "500"
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
"heading/display/L": {
|
|
1797
|
+
value: {
|
|
1798
|
+
fontFamily: "display",
|
|
1799
|
+
fontWeight: "600",
|
|
1800
|
+
fontSize: ["5xl", "5xl", "5xl", "6xl"],
|
|
1801
|
+
lineHeight: "120%"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"heading/display/M": {
|
|
1805
|
+
value: {
|
|
1806
|
+
fontFamily: "display",
|
|
1807
|
+
fontWeight: "600",
|
|
1808
|
+
fontSize: ["4xl", "5xl"],
|
|
1809
|
+
lineHeight: "120%"
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
"heading/display/S": {
|
|
1813
|
+
value: {
|
|
1814
|
+
fontFamily: "display",
|
|
1815
|
+
fontWeight: "600",
|
|
1816
|
+
fontSize: ["3xl", "4xl"],
|
|
1817
|
+
lineHeight: "120%"
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
"heading/XL": {
|
|
1821
|
+
value: {
|
|
1822
|
+
fontFamily: "heading",
|
|
1823
|
+
fontSize: "5xl",
|
|
1824
|
+
fontWeight: "500",
|
|
1825
|
+
lineHeight: "120%"
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
"heading/L": {
|
|
1829
|
+
value: {
|
|
1830
|
+
fontFamily: "heading",
|
|
1831
|
+
fontSize: "4xl",
|
|
1832
|
+
fontWeight: "500",
|
|
1833
|
+
lineHeight: "110%"
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
"heading/M": {
|
|
1837
|
+
value: {
|
|
1838
|
+
fontFamily: "heading",
|
|
1839
|
+
fontSize: "3xl",
|
|
1840
|
+
fontWeight: "500",
|
|
1841
|
+
lineHeight: "120%"
|
|
1842
|
+
}
|
|
1843
|
+
},
|
|
1844
|
+
"heading/S": {
|
|
1845
|
+
value: {
|
|
1846
|
+
fontFamily: "heading",
|
|
1847
|
+
fontSize: "2xl",
|
|
1848
|
+
fontWeight: "500",
|
|
1849
|
+
lineHeight: "120%"
|
|
1850
|
+
}
|
|
1851
|
+
},
|
|
1852
|
+
"label/XL/regular": {
|
|
1853
|
+
value: {
|
|
1854
|
+
fontFamily: "label",
|
|
1855
|
+
fontSize: "2xl",
|
|
1856
|
+
fontWeight: "400",
|
|
1857
|
+
lineHeight: "150%",
|
|
1858
|
+
letterSpacing: "0.16px"
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
"label/L/regular": {
|
|
1862
|
+
value: {
|
|
1863
|
+
fontFamily: "label",
|
|
1864
|
+
fontSize: "lg",
|
|
1865
|
+
fontWeight: "400",
|
|
1866
|
+
lineHeight: "20px",
|
|
1867
|
+
letterSpacing: "0.16px"
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
"label/L/medium": {
|
|
1871
|
+
value: {
|
|
1872
|
+
fontFamily: "label",
|
|
1873
|
+
fontSize: "lg",
|
|
1874
|
+
fontWeight: "500",
|
|
1875
|
+
lineHeight: "20px",
|
|
1876
|
+
letterSpacing: "0.16px"
|
|
1877
|
+
}
|
|
1878
|
+
},
|
|
1879
|
+
"label/L/medium/underline": {
|
|
1880
|
+
value: {
|
|
1881
|
+
textDecoration: "underline",
|
|
1882
|
+
fontFamily: "label",
|
|
1883
|
+
fontSize: "lg",
|
|
1884
|
+
fontWeight: "500",
|
|
1885
|
+
lineHeight: "20px",
|
|
1886
|
+
letterSpacing: "0.16px"
|
|
1887
|
+
}
|
|
1888
|
+
},
|
|
1889
|
+
"label/L/medium/uppercase": {
|
|
1890
|
+
value: {
|
|
1891
|
+
letterSpacing: "0.089rem",
|
|
1892
|
+
fontFamily: "label",
|
|
1893
|
+
fontWeight: "600",
|
|
1894
|
+
fontSize: "lg",
|
|
1895
|
+
lineHeight: "150%",
|
|
1896
|
+
textTransform: "uppercase",
|
|
1897
|
+
color: "fg.muted"
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1900
|
+
"label/M/regular": {
|
|
1901
|
+
value: {
|
|
1902
|
+
fontFamily: "label",
|
|
1903
|
+
fontSize: "md",
|
|
1904
|
+
fontWeight: "400",
|
|
1905
|
+
lineHeight: "150%",
|
|
1906
|
+
letterSpacing: "0.14px"
|
|
1907
|
+
}
|
|
1908
|
+
},
|
|
1909
|
+
"label/M/regular/underline": {
|
|
1910
|
+
value: {
|
|
1911
|
+
fontFamily: "label",
|
|
1912
|
+
fontSize: "md",
|
|
1913
|
+
fontWeight: "400",
|
|
1914
|
+
lineHeight: "150%",
|
|
1915
|
+
textDecoration: "underline",
|
|
1916
|
+
letterSpacing: "0.14px"
|
|
1917
|
+
}
|
|
1918
|
+
},
|
|
1919
|
+
"label/M/medium": {
|
|
1920
|
+
value: {
|
|
1921
|
+
fontFamily: "label",
|
|
1922
|
+
fontSize: "md",
|
|
1923
|
+
fontWeight: "500",
|
|
1924
|
+
lineHeight: "150%",
|
|
1925
|
+
letterSpacing: "0.14px"
|
|
1926
|
+
}
|
|
1927
|
+
},
|
|
1928
|
+
"label/S/regular": {
|
|
1929
|
+
value: {
|
|
1930
|
+
fontFamily: "label",
|
|
1931
|
+
fontSize: "sm",
|
|
1932
|
+
fontWeight: "400",
|
|
1933
|
+
lineHeight: "150%",
|
|
1934
|
+
letterSpacing: "0.12px"
|
|
1935
|
+
}
|
|
1936
|
+
},
|
|
1937
|
+
"label/S/medium": {
|
|
1938
|
+
value: {
|
|
1939
|
+
fontFamily: "label",
|
|
1940
|
+
fontSize: "sm",
|
|
1941
|
+
fontWeight: "500",
|
|
1942
|
+
lineHeight: "150%",
|
|
1943
|
+
letterSpacing: "0.12px"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
"label/S/italic": {
|
|
1947
|
+
value: {
|
|
1948
|
+
fontFamily: "label",
|
|
1949
|
+
fontSize: "sm",
|
|
1950
|
+
fontWeight: "400",
|
|
1951
|
+
lineHeight: "150%",
|
|
1952
|
+
letterSpacing: "0.12px",
|
|
1953
|
+
fontStyle: "italic"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
"label/XS": {
|
|
1957
|
+
value: {
|
|
1958
|
+
fontFamily: "label",
|
|
1959
|
+
fontSize: "xs",
|
|
1960
|
+
fontWeight: "400",
|
|
1961
|
+
lineHeight: "150%",
|
|
1962
|
+
letterSpacing: "0.1px"
|
|
1963
|
+
}
|
|
1964
|
+
},
|
|
1965
|
+
"paragraph/M/regular": {
|
|
1966
|
+
value: {
|
|
1967
|
+
fontFamily: "body",
|
|
1968
|
+
fontSize: "md",
|
|
1969
|
+
fontWeight: "400",
|
|
1970
|
+
lineHeight: "171%",
|
|
1971
|
+
letterSpacing: "0.14px"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
"paragraph/M/medium": {
|
|
1975
|
+
value: {
|
|
1976
|
+
fontFamily: "body",
|
|
1977
|
+
fontSize: "md",
|
|
1978
|
+
fontWeight: "500",
|
|
1979
|
+
lineHeight: "171%",
|
|
1980
|
+
letterSpacing: "0.14px"
|
|
1981
|
+
}
|
|
1982
|
+
},
|
|
1983
|
+
"paragraph/L/regular": {
|
|
1984
|
+
value: {
|
|
1985
|
+
fontFamily: "body",
|
|
1986
|
+
fontSize: "lg",
|
|
1987
|
+
fontWeight: "400",
|
|
1988
|
+
lineHeight: "150%",
|
|
1989
|
+
letterSpacing: "0.14px"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"paragraph/L/medium": {
|
|
1993
|
+
value: {
|
|
1994
|
+
fontFamily: "body",
|
|
1995
|
+
fontSize: "lg",
|
|
1996
|
+
fontWeight: "500",
|
|
1997
|
+
lineHeight: "150%",
|
|
1998
|
+
letterSpacing: "0.14px"
|
|
1999
|
+
}
|
|
2000
|
+
},
|
|
2001
|
+
"paragraph/XL/regular": {
|
|
2002
|
+
value: {
|
|
2003
|
+
fontFamily: "body",
|
|
2004
|
+
fontWeight: "400",
|
|
2005
|
+
lineHeight: "150%",
|
|
2006
|
+
fontSize: ["xl", "2xl"],
|
|
2007
|
+
color: "fg",
|
|
2008
|
+
letterSpacing: "0.14px"
|
|
2009
|
+
}
|
|
2010
|
+
},
|
|
2011
|
+
"paragraph/XL/medium": {
|
|
2012
|
+
value: {
|
|
2013
|
+
fontFamily: "body",
|
|
2014
|
+
fontWeight: "500",
|
|
2015
|
+
lineHeight: "150%",
|
|
2016
|
+
fontSize: ["xl", "2xl"],
|
|
2017
|
+
color: "fg",
|
|
2018
|
+
letterSpacing: "0.14px"
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
}), de = t({
|
|
2022
|
+
globalCss: m,
|
|
2023
|
+
theme: {
|
|
2024
|
+
breakpoints: {
|
|
2025
|
+
"3xl": "2560px",
|
|
2026
|
+
"4xl": "3840px"
|
|
2027
|
+
},
|
|
2028
|
+
textStyles: ue,
|
|
2029
|
+
layerStyles: se,
|
|
2030
|
+
recipes: {
|
|
2031
|
+
button: U,
|
|
2032
|
+
divider: V,
|
|
2033
|
+
input: O,
|
|
2034
|
+
skeleton: j,
|
|
2035
|
+
textarea: J
|
|
2036
|
+
},
|
|
2037
|
+
tokens: {
|
|
2038
|
+
colors: z,
|
|
2039
|
+
fonts: B,
|
|
2040
|
+
fontSizes: L,
|
|
2041
|
+
fontWeights: R,
|
|
2042
|
+
radii: H,
|
|
2043
|
+
shadows: te,
|
|
2044
|
+
spacing: W
|
|
2045
|
+
},
|
|
2046
|
+
semanticTokens: {
|
|
2047
|
+
colors: re,
|
|
2048
|
+
borders: N,
|
|
2049
|
+
shadows: ie
|
|
2050
|
+
},
|
|
2051
|
+
slotRecipes: {
|
|
2052
|
+
alert: T,
|
|
2053
|
+
drawer: X,
|
|
2054
|
+
tooltip: K,
|
|
2055
|
+
popover: q,
|
|
2056
|
+
menu: $,
|
|
2057
|
+
editable: I,
|
|
2058
|
+
form: P,
|
|
2059
|
+
dialog: M,
|
|
2060
|
+
progressCircle: Y
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
}), ve = i(u, de);
|
|
2064
|
+
export {
|
|
2065
|
+
ve as t
|
|
2066
|
+
};
|
|
2067
|
+
//# sourceMappingURL=theme-C7CIuIPZ.js.map
|