@bioturing/components 0.16.0 → 0.17.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.
Files changed (73) hide show
  1. package/dist/components/Badge/component.js +7 -20
  2. package/dist/components/Badge/component.js.map +1 -1
  3. package/dist/components/ColorSelect/component.js +138 -0
  4. package/dist/components/ColorSelect/component.js.map +1 -0
  5. package/dist/components/ColorSelect/style.css +1 -0
  6. package/dist/components/DragDrop/context.js +18 -0
  7. package/dist/components/DragDrop/context.js.map +1 -0
  8. package/dist/components/DragDrop/draggable.js +64 -0
  9. package/dist/components/DragDrop/draggable.js.map +1 -0
  10. package/dist/components/DragDrop/droppable.js +48 -0
  11. package/dist/components/DragDrop/droppable.js.map +1 -0
  12. package/dist/components/DragDrop/hooks.js +139 -0
  13. package/dist/components/DragDrop/hooks.js.map +1 -0
  14. package/dist/components/DragDrop/index.js +45 -0
  15. package/dist/components/DragDrop/index.js.map +1 -0
  16. package/dist/components/DragDrop/style.css +1 -0
  17. package/dist/components/IconButton/component.js +54 -43
  18. package/dist/components/IconButton/component.js.map +1 -1
  19. package/dist/components/IconButton/style.css +1 -1
  20. package/dist/components/Nav/context.js +7 -0
  21. package/dist/components/Nav/context.js.map +1 -0
  22. package/dist/components/Nav/group.js +16 -0
  23. package/dist/components/Nav/group.js.map +1 -0
  24. package/dist/components/Nav/heading.js +16 -0
  25. package/dist/components/Nav/heading.js.map +1 -0
  26. package/dist/components/Nav/index.js +13 -0
  27. package/dist/components/Nav/index.js.map +1 -0
  28. package/dist/components/Nav/item.js +36 -0
  29. package/dist/components/Nav/item.js.map +1 -0
  30. package/dist/components/Nav/style.css +1 -0
  31. package/dist/components/PopupPanel/component.js +69 -74
  32. package/dist/components/PopupPanel/component.js.map +1 -1
  33. package/dist/components/Stack/Stack.js +40 -34
  34. package/dist/components/Stack/Stack.js.map +1 -1
  35. package/dist/components/Stack/StackChild.js +59 -54
  36. package/dist/components/Stack/StackChild.js.map +1 -1
  37. package/dist/components/Tag/component.js +59 -24
  38. package/dist/components/Tag/component.js.map +1 -1
  39. package/dist/components/Tag/style.css +1 -1
  40. package/dist/components/ThemeProvider/component.js +18 -18
  41. package/dist/components/ThemeProvider/component.js.map +1 -1
  42. package/dist/components/ThemeProvider/style.css +1 -1
  43. package/dist/components/Toast/component.js +29 -35
  44. package/dist/components/Toast/component.js.map +1 -1
  45. package/dist/components/Tooltip/component.js +4 -22
  46. package/dist/components/Tooltip/component.js.map +1 -1
  47. package/dist/components/VerticalCollapsiblePanel/component.js +37 -37
  48. package/dist/components/VerticalCollapsiblePanel/component.js.map +1 -1
  49. package/dist/components/hooks/useCharts.js +19 -17
  50. package/dist/components/hooks/useCharts.js.map +1 -1
  51. package/dist/components/utils/colors.js +5 -0
  52. package/dist/components/utils/colors.js.map +1 -0
  53. package/dist/index.d.ts +724 -23
  54. package/dist/index.js +186 -162
  55. package/dist/index.js.map +1 -1
  56. package/dist/metadata.js +45 -7
  57. package/dist/metadata.js.map +1 -1
  58. package/dist/tailwind.css +1 -1
  59. package/dist/tokens/and-theme/tokens.js +13 -7
  60. package/dist/tokens/and-theme/tokens.js.map +1 -1
  61. package/dist/tokens/charts/{tokens.js → palettes/cloudscape.js} +22 -12
  62. package/dist/tokens/charts/palettes/cloudscape.js.map +1 -0
  63. package/dist/tokens/charts/palettes/colorbrewer.js +1525 -0
  64. package/dist/tokens/charts/palettes/colorbrewer.js.map +1 -0
  65. package/dist/tokens/charts/palettes/index.js +61 -0
  66. package/dist/tokens/charts/palettes/index.js.map +1 -0
  67. package/dist/tokens/charts/palettes/tableau.js +112 -0
  68. package/dist/tokens/charts/palettes/tableau.js.map +1 -0
  69. package/dist/tokens/utils.js.map +1 -1
  70. package/package.json +2 -2
  71. package/dist/tokens/charts/index.js +0 -18
  72. package/dist/tokens/charts/index.js.map +0 -1
  73. package/dist/tokens/charts/tokens.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"metadata.js","sources":["../src/metadata.ts"],"sourcesContent":["/**\n * Component metadata for the BioTuring Design System\n * This file provides information about all components including:\n * - name: Component name\n * - link: Documentation link\n * - base: What the component is based on (antd, base-ui, or custom)\n * - refinements: Whether the component has been refined beyond its base\n * - category: Component category for organization\n * - packages: Additional packages used by the component\n */\n\nexport type ComponentMetadata = {\n name: string;\n link: string;\n base: \"antd\" | \"base-ui\" | \"custom\";\n refinements: string[]; // Renamed from 'customized'\n category: ComponentCategory;\n packages?: string[];\n originalDocUrl?: string;\n description?: string;\n};\n\nexport type ComponentCategory =\n | \"Actions\"\n | \"General\"\n | \"Layout\"\n | \"Navigation\"\n | \"Data Entry\"\n | \"Data Display\"\n | \"Feedback\"\n | \"Overlay\"\n | \"Utility\";\n\nexport const componentMetadata = {\n Badge: {\n name: \"Badge\",\n link: \"/badge\",\n base: \"antd\",\n refinements: [\n \"Applies a BioTuring Design System specific CSS class `ds-badge`.\",\n \"Applies Ant Design's CSS variable class name to ensure proper theming context.\",\n \"Sets `display: inline-flex;` on the `ds-badge` class via `./style.css` for consistent layout.\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/badge\",\n description:\n \"Used for highlighting new or unread items, or to display a status.\",\n },\n Breadcrumb: {\n name: \"Breadcrumb\",\n link: \"/breadcrumb\",\n base: \"antd\",\n refinements: [\n \"Employs a custom `useItemRender` hook to allow icons (from `item.icon`) to be rendered alongside the title within each breadcrumb link.\",\n \"Introduces a `noWrap` boolean prop for responsive behavior: when true, breadcrumb items attempt to stay on a single line, with text overflow and ellipsis applied to truncatable items.\",\n \"Applies BioTuring Design System specific styling via `./style.css` for layout (flexbox-based), item spacing, icon integration, and responsive truncation.\",\n \"Exports styled `Breadcrumb.Item` and `Breadcrumb.Separator` sub-components.\",\n ],\n category: \"Navigation\",\n originalDocUrl: \"https://ant.design/components/breadcrumb\",\n description:\n \"Displays the path of the current page, allowing for easy navigation back to previous levels.\",\n },\n Button: {\n name: \"Button\",\n link: \"/button\",\n base: \"antd\",\n refinements: [],\n category: \"Actions\",\n originalDocUrl: \"https://ant.design/components/button\",\n description: \"A clickable element used to trigger an action.\",\n },\n Checkbox: {\n name: \"Checkbox\",\n link: \"/checkbox\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/checkbox\",\n description: \"Allows users to select one or more options from a set.\",\n },\n CodeBlock: {\n name: \"CodeBlock\",\n link: \"/code-block\",\n base: \"custom\",\n refinements: [\n \"Custom implementation for syntax highlighting using `prism-react-renderer`\",\n ],\n category: \"Data Display\",\n packages: [\"prism-react-renderer\"],\n description: \"Displays blocks of code with syntax highlighting.\",\n },\n Collapse: {\n name: \"Collapse\",\n link: \"/collapse\",\n base: \"antd\",\n refinements: [],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/collapse\",\n description: \"A content area that can be expanded or collapsed.\",\n },\n DropdownMenu: {\n name: \"DropdownMenu\",\n link: \"/dropdown-menu\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Menu components\",\n \"Provides a customizable dropdown menu experience\",\n ],\n category: \"Navigation\",\n packages: [\n \"@base-ui-components/react/menu\",\n \"@base-ui-components/react/utils\",\n ],\n originalDocUrl: \"https://base-ui.com/react/components/menu\",\n description:\n \"A menu that appears when a user interacts with a button or other control.\",\n },\n Empty: {\n name: \"Empty\",\n link: \"/empty\",\n base: \"antd\",\n refinements: [\n \"Replaces the default Ant Design illustration with a custom SVG icon (`EmptyIcon`) defined within the component.\",\n \"Introduces a `size` prop (`small`, `medium`, `large`, default `medium`) that controls the font-size of the custom `EmptyIcon`.\",\n \"Applies specific font-sizes for the icon based on the `size` prop (small: 2rem, medium: 3rem, large: 4rem) via `style.css`.\",\n \"The `small` size icon also has its color set to `var(--ds-color-base-solid)`.\",\n \"Adjusts the Ant Design Empty image container height to `auto` via `style.css`.\",\n \"Applies BioTuring Design System specific styling and CSS classes (e.g., `ds-empty`, `ds-empty-icon`).\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/empty\",\n description: \"Displays a placeholder when content is empty or unavailable.\",\n },\n Field: {\n name: \"Field\",\n link: \"/field\",\n base: \"custom\",\n refinements: [\n \"Custom component for form fields, providing layout and validation display\",\n ],\n category: \"Data Entry\",\n description:\n \"A custom component to structure form inputs with labels, help text, and validation messages.\",\n },\n Form: {\n name: \"Form\",\n link: \"/form\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/form\",\n description:\n \"Provides structure for data input, including layout, validation, and submission capabilities.\",\n },\n IconButton: {\n name: \"Icon Button\",\n link: \"/icon-button\",\n base: \"custom\",\n refinements: [\n \"Custom button component focused on displaying an icon\",\n \"Provides consistent styling for icon-only buttons\",\n ],\n category: \"Actions\",\n description:\n \"A button that primarily displays an icon, used for compact actions.\",\n },\n Input: {\n name: \"Input\",\n link: \"/input\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/input\",\n description: \"A basic text input field for user data entry.\",\n },\n Message: {\n name: \"Message\",\n link: \"/message\",\n base: \"antd\",\n refinements: [],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/message\",\n description:\n \"The Message component provides feedback in response to user operations. Unlike notification, messages are simpler and typically auto-dismiss after a short duration.\",\n },\n Modal: {\n name: \"Modal\",\n link: \"/modal\",\n base: \"antd\",\n refinements: [\n \"Added predefined sizes: `xsmall`, `small`, `medium`, `large`, `xlarge`, `xxlarge`, `fullscreen`\",\n \"Introduced a general `loading` state prop for the modal content\",\n \"Added `hideOkButton` and `hideCancelButton` props for straightforward visibility control of footer buttons\",\n \"Added `contentPadding` prop for direct control over modal body padding\",\n \"Enhanced header customization with `afterTitle`, `beforeCloseButton`, and `afterCloseButton` slots for additional elements or actions\",\n \"Implemented `defaultFixedHeaderFooter` behavior: header and footer become fixed when content overflows (controlled by internal overflow detection)\",\n \"Changed `centered` prop to default to `true`\",\n \"Introduced `type` prop (`default`, `info`, `success`, `error`, `warning`) influencing default behaviors like size\",\n \"Added `background` prop (`elevated`, `container`) for explicit control over modal background style, with size-dependent defaults\",\n \"Uses a custom `X` icon from `@bioturing/assets` as the default close button icon\",\n \"Provides `bodyScrollable` prop (defaults to true) to manage content scroll behavior within the modal body\",\n ],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/modal\",\n description:\n \"A modal dialog that appears in front of the app content to provide critical information or ask for a decision.\",\n },\n Popover: {\n name: \"Popover\",\n link: \"/popover\",\n base: \"antd\", // Retains AntD as 'base' because it aims for API compatibility\n refinements: [\n \"Refactored to use `@base-ui-components/react/popover` internally\",\n \"Maintains Ant Design API compatibility\",\n \"Custom prop mapping for placement and trigger to align with Base UI Popover\",\n \"Combined title and content props into a single node for Base UI Popover's content area\",\n ],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/popover\", // Original AntD doc for API reference\n description:\n \"A floating card popped by clicking or hovering that displays additional information.\",\n },\n PopupPanel: {\n name: \"PopupPanel\",\n link: \"/popup-panel\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Popover\",\n \"Resizable panel functionality\",\n \"Custom styling and behavior for panel-like popups\",\n ],\n category: \"Overlay\",\n packages: [\"react-use-resizable\", \"@base-ui-components/react/popover\"],\n originalDocUrl: \"https://base-ui.com/react/components/popover\",\n description:\n \"A specialized panel that pops up, often resizable, for displaying rich content or tools.\",\n },\n Radio: {\n name: \"Radio\",\n link: \"/radio\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/radio\",\n description: \"Allows users to select a single option from a set.\",\n },\n ScrollArea: {\n name: \"ScrollArea\",\n link: \"/scroll-area\",\n base: \"base-ui\",\n refinements: [\n \"Wraps `@base-ui-components/react/ScrollArea` to integrate with the BioTuring Design System.\",\n \"Provides consistent `classNames` prop pattern for styling different parts (viewport, scrollbar, thumb).\",\n \"Applies specific BioTuring Design System CSS classes (e.g., `ds-scroll-area`, `ds-scroll-area-viewport`, `ds-scroll-area-scrollbar`, `ds-scroll-area-thumb`) to Base UI component parts.\",\n \"Provides extensive custom styling via `./style.css` for the root, viewport (including `focus-visible` styles), scrollbar (opacity transitions on hover/scroll, orientation-based dimensions), and thumb (custom border-radius, background, and border colors using design tokens).\",\n ],\n category: \"Layout\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl: \"https://base-ui.com/react/components/scroll-area\",\n description:\n \"A scrollable container with custom scrollbars that blend with the design system.\",\n },\n Segmented: {\n name: \"Segmented\",\n link: \"/segmented\",\n base: \"antd\",\n refinements: [\n \"Structured as a typed `forwardRef` wrapper around the Ant Design Segmented component for type safety and consistency.\",\n \"Applies custom styles via `./style.css` to ensure proper alignment and sizing of item labels and icons within the segmented control (e.g., flex centering for labels and icons, default icon size).\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/segmented\",\n description:\n \"A set of buttons that allows users to switch between different views or options.\",\n },\n Select: {\n name: \"Select\",\n link: \"/select\",\n base: \"antd\",\n refinements: [\n \"Introduced `enhancePositioner` prop: Utilizes `@floating-ui/react` for robust dropdown positioning, allowing it to break out of overflow containers and intelligently place itself.\",\n \"Added `popupSize` prop (works with `enhancePositioner`): Controls the dropdown width with predefined sizes (e.g., `small`, `medium`, `large`), pixel values, or `fit-content`.\",\n \"Replaced default suffix icon with a custom `CaretDown` icon from `@bioturing/assets`.\",\n \"Customized multiple selection mode: Uses Ant Design `Checkbox` components for indicating selected items in the dropdown.\",\n \"Applied specific BioTuring Design System styling and CSS classes, including enhanced popup styles when `enhancePositioner` is active.\",\n ],\n category: \"Data Entry\",\n packages: [\"@floating-ui/react\", \"rc-select\"],\n originalDocUrl: \"https://ant.design/components/select\",\n description:\n \"A dropdown selection component for selecting values from a list of options.\",\n },\n Slider: {\n name: \"Slider\",\n link: \"/slider\",\n base: \"antd\",\n refinements: [\n \"Applies a BioTuring Design System specific CSS class `ds-slider`.\",\n \"Modifies the default behavior of the slider's tooltip by setting `tooltip.arrow` to `false` by default (Ant Design's default is true).\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/slider\",\n description:\n \"Allows users to select a value from a continuous or discrete range.\",\n },\n Spin: {\n name: \"Spin\",\n link: \"/spin\",\n base: \"antd\",\n refinements: [],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/spin\",\n description: \"Indicates a loading state.\",\n },\n Splitter: {\n name: \"Splitter\",\n link: \"/splitter\",\n base: \"antd\", // Assuming it's styled like AntD or uses AntD primitives\n refinements: [\n \"Custom component for creating resizable layouts, inspired by Ant Design styling\",\n ],\n category: \"Layout\",\n // originalDocUrl: \"https://ant.design/components/layout\", // AntD Layout could be a loose reference, but no direct 'Splitter' component.\n description:\n \"Splitter is used to divide and resize multiple elements in a container.\",\n },\n Stack: {\n name: \"Stack\",\n link: \"/stack\",\n base: \"custom\",\n refinements: [\n \"Custom component for creating horizontal or vertical layouts with consistent spacing\",\n \"Uses CSS classes for alignment and justification\",\n \"Provides StackChild component with useRender hook for flexible item control\",\n ],\n category: \"Layout\",\n description:\n \"A flexible layout component for arranging items in a row or column with consistent spacing.\",\n },\n Switch: {\n name: \"Switch\",\n link: \"/switch\",\n base: \"antd\",\n refinements: [\n \"Structured as a typed `forwardRef` wrapper around Ant Design's Switch component.\",\n \"Applies custom CSS to ensure `checkedChildren` and `unCheckedChildren` (e.g., icons, text) are properly centered within the switch handle.\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/switch\",\n description:\n \"A toggle switch for changing between two states, typically on or off.\",\n },\n Table: {\n name: \"Table\",\n link: \"/table\",\n base: \"antd\",\n refinements: [\n \"Applies BioTuring Design System specific styling via `./style.css`.\",\n \"Enhances the default Ant Design Table with additional features.\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/table\",\n description:\n \"A table displays rows of data, supporting features like sorting, filtering, and pagination.\",\n },\n Tag: {\n name: \"Tag\",\n link: \"/tag\",\n base: \"antd\",\n refinements: [\n \"Defaults to using the `X` icon (bold) from `@bioturing/assets` as the `closeIcon` if the tag is `closable` and no custom icon is provided.\",\n \"Introduces an `active` boolean prop (defaults to false).\",\n \"When `active={true}`, applies specific styling (background, border, text color using `--ds-color-primary` tokens) via a `data-active` attribute and `style.css`.\",\n \"Applies BioTuring Design System specific styling via `./style.css`, including base styles for alignment and consistent close icon coloring (`--ds-color-icon`).\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/tag\",\n description:\n \"Small UI elements for categorization, filtering, or highlighting items.\",\n },\n ThemeProvider: {\n name: \"ThemeProvider\",\n link: \"/theme-provider\",\n base: \"custom\",\n refinements: [\n \"Custom utility for managing application-wide themes\",\n \"Provides context for styling consistency\",\n ],\n category: \"Utility\",\n description:\n \"A utility component for providing theme context to its children, enabling consistent styling across the application.\",\n },\n Toast: {\n name: \"Toast\",\n link: \"/toast\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Toast components\",\n \"Customizable appearance and behavior for notifications\",\n ],\n category: \"Feedback\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl: \"https://base-ui.com/react/components/toast\",\n description:\n \"Displays brief, auto-expiring messages to provide feedback or alerts, similar to notifications but often less intrusive.\",\n },\n Tooltip: {\n name: \"Tooltip\",\n link: \"/tooltip\",\n base: \"antd\",\n refinements: [\n \"Defaults the `arrow` prop to `false`, hiding the tooltip arrow by default (Ant Design's default shows an arrow).\",\n \"Applies a BioTuring Design System specific CSS class `ds-tooltip`.\",\n \"Custom CSS sets `min-height: auto;` for the inner content, allowing tooltips to be shorter than Ant Design's default minimum height.\",\n ],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/tooltip\",\n description:\n \"A simple text popup tip that appears when a user hovers over an element.\",\n },\n Tour: {\n name: \"Tour\",\n link: \"/tour\",\n base: \"antd\",\n refinements: [\n \"Provides a custom default rendering for step indicators (`indicatorsRender`) if none is supplied. This includes a `current / total` text and visual dots for steps.\",\n \"Applies BioTuring Design System specific CSS classes (e.g., `ds-tour`) for extensive styling.\",\n \"Customizes typography for title, description, and indicator text using design system tokens.\",\n \"Adjusts layout and spacing for header, footer, and content within the tour description (paragraphs, lists, icons).\",\n \"Includes specific styling for the appearance of the custom default indicators (wrapper, summary text, active/inactive dots).\",\n ],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/tour\",\n description:\n \"A guided tour interface that leads users through specific features of an application.\",\n },\n Transition: {\n name: \"Transition\",\n link: \"/transition\",\n base: \"base-ui\",\n refinements: [\n \"Wraps Base UI utilities (e.g., `useTransitionStatus`, `useRender`) and custom hooks (e.g., `useAnimationsFinished`) to manage element enter/leave transitions.\",\n \"Accepts `starting` and `ending` props, which can be CSS class strings (for Tailwind) or style objects, to define transition states.\",\n \"Dynamically applies `starting`/`ending` styles and sets `data-starting`/`data-ending` attributes on the child element based on transition phase.\",\n \"Manages mounting/unmounting of children post-animation, with a `keepMounted` option, using a custom `useAnimationsFinished` hook.\",\n \"Provides a declarative API for CSS-based transitions.\",\n ],\n category: \"Utility\",\n packages: [\n \"@base-ui-components/react/use-render\",\n \"@base-ui-components/react/merge-props\",\n \"@base-ui-components/react/utils\",\n ],\n originalDocUrl: \"https://base-ui.com/react/components\", // General Base UI components link as specific utility pages might vary\n description:\n \"Provides utilities for applying CSS transitions and animations to components.\",\n },\n Typography: {\n name: \"Typography\",\n link: \"/typography\",\n base: \"antd\",\n refinements: [\n \"Extends Ant Design Typography with custom styles or additional text utilities\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/typography\",\n description:\n \"Typography is a component that provides a set of tools for working with text, including text alignment, font size, and font weight.\",\n },\n Tree: {\n name: \"Tree\",\n link: \"/tree\",\n base: \"antd\",\n refinements: [\n \"Utilizes rc-tree for core functionality\",\n \"Enhanced features like custom node rendering, drag-and-drop, or advanced filtering\",\n ],\n category: \"Data Display\",\n packages: [\"rc-tree\"],\n originalDocUrl: \"https://ant.design/components/tree\",\n description:\n \"A hierarchical list structure component that presents nested data clearly.\",\n },\n Truncate: {\n name: \"Truncate\",\n link: \"/truncate\",\n base: \"custom\",\n refinements: [\n \"Custom implementation for text truncation\",\n \"Supports middle and end truncation\",\n \"Configurable ellipsis and tooltip on hover\",\n \"Multi-line truncation with configurable number of lines\",\n \"Auto-height truncation that adapts to parent container size\",\n ],\n category: \"Data Display\",\n description:\n \"The Truncate component helps manage text overflow by truncating text elegantly and displaying an ellipsis. It supports truncation at the middle or end of the text.\",\n },\n Upload: {\n name: \"Upload\",\n link: \"/upload\",\n base: \"antd\",\n refinements: [\n \"Defaults to a custom `itemRender` function that utilizes a bespoke `UploadItem` component for the file list.\",\n \"`UploadItem` component features: file type icon, middle-truncated file name (using Truncate component), progress bar with status mapping, and a remove button.\",\n \"Added `showRemoveButton` prop (defaults to true) on the `Upload` component to control visibility of the remove action in `UploadItem`.\",\n \"`UploadItem` includes a slot for `extraActions` allowing additional custom controls per file.\",\n \"Provides a default `Button` with `CloudArrowUp` icon and 'Upload Files' text if no children are passed to `Upload`.\",\n \"Includes `Upload.Dragger` for drag-and-drop functionality, styled for the design system.\",\n \"Exports `Upload.Item` (the UploadItem component) for potential direct use.\",\n \"Applies BioTuring Design System specific styling and CSS classes.\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/upload\",\n description: \"Allows users to select and upload files.\",\n },\n VerticalCollapsiblePanel: {\n name: \"Vertical Collapsible Panel\",\n link: \"/vertical-collapsible-panel\",\n base: \"base-ui\",\n refinements: [\n \"Built upon `@base-ui-components/react` Collapsible components (`Collapsible.Root`, `Collapsible.Panel`).\",\n \"Manages open/closed state with a custom `useControlledState` hook for controlled/uncontrolled behavior.\",\n \"Features custom expand/collapse trigger icons (`MinusCircle`, `PlusCircle` from `@bioturing/assets`) via IconButton.\",\n \"Automatically truncates string titles using the `Truncate` component.\",\n \"Provides `afterTitle` and `actions` slots in the header for additional UI elements, visible when open.\",\n \"Integrates the BioTuring `Transition` component for smooth open/close animations of the panel body, managed with `useAnimationsFinished` hook.\",\n \"Offers a `contentPadding` prop (default `16px`) for customizable body padding via CSS variable `--ds-content-padding`.\",\n \"Extensive custom CSS for layout, typography, and a unique feature: header text displays vertically (`writing-mode: vertical-rl`) when collapsed.\",\n \"Supports `keepMounted` prop and applies Ant Design CSS variables for theming.\",\n ],\n category: \"Layout\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl:\n \"https://base-ui.com/react/components/vertical-collapsible-panel\", // Assuming this kebab-case name for Base UI docs\n description:\n \"A panel that can be collapsed or expanded vertically, often used in sidebars or for sectioning content.\",\n },\n} satisfies Record<string, ComponentMetadata>;\n\n/**\n * Get all components by category\n */\nexport const getComponentsByCategory = (): Record<\n ComponentCategory,\n ComponentMetadata[]\n> => {\n const categories: Record<ComponentCategory, ComponentMetadata[]> = {\n Actions: [],\n General: [],\n Layout: [],\n Navigation: [],\n \"Data Entry\": [],\n \"Data Display\": [],\n Feedback: [],\n Overlay: [],\n Utility: [],\n };\n\n Object.values(componentMetadata).forEach((component) => {\n categories[component.category].push(component);\n });\n\n // Sort components alphabetically within each category\n Object.keys(categories).forEach((category) => {\n categories[category as ComponentCategory].sort((a, b) =>\n a.name.localeCompare(b.name)\n );\n });\n\n return categories;\n};\n"],"names":["componentMetadata","getComponentsByCategory","categories","component","category","a","b"],"mappings":"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"}
1
+ {"version":3,"file":"metadata.js","sources":["../src/metadata.ts"],"sourcesContent":["/**\n * Component metadata for the BioTuring Design System\n * This file provides information about all components including:\n * - name: Component name\n * - link: Documentation link\n * - base: What the component is based on (antd, base-ui, or custom)\n * - refinements: Whether the component has been refined beyond its base\n * - category: Component category for organization\n * - packages: Additional packages used by the component\n */\n\nexport type ComponentMetadata = {\n name: string;\n link: string;\n base: \"antd\" | \"base-ui\" | \"custom\";\n refinements: string[]; // Renamed from 'customized'\n category: ComponentCategory;\n packages?: string[];\n originalDocUrl?: string;\n description?: string;\n};\n\nexport type ComponentCategory =\n | \"Actions\"\n | \"General\"\n | \"Layout\"\n | \"Navigation\"\n | \"Data Entry\"\n | \"Data Display\"\n | \"Feedback\"\n | \"Overlay\"\n | \"Utility\";\n\nexport const componentMetadata = {\n DragDrop: {\n name: \"DragDrop\",\n link: \"/drag-drop\",\n base: \"custom\",\n refinements: [\n \"Custom implementation for drag and drop functionality\",\n \"Type-safe with TypeScript generics\",\n \"Supports custom styling and rendering\",\n \"Provides Draggable and Droppable subcomponents\",\n \"Handles drag events with proper context management\",\n ],\n category: \"Data Entry\",\n description:\n \"A component for creating drag and drop interfaces with customizable draggable items and drop zones.\",\n },\n Badge: {\n name: \"Badge\",\n link: \"/badge\",\n base: \"antd\",\n refinements: [\n \"Applies a BioTuring Design System specific CSS class `ds-badge`.\",\n \"Applies Ant Design's CSS variable class name to ensure proper theming context.\",\n \"Sets `display: inline-flex;` on the `ds-badge` class via `./style.css` for consistent layout.\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/badge\",\n description:\n \"Used for highlighting new or unread items, or to display a status.\",\n },\n Breadcrumb: {\n name: \"Breadcrumb\",\n link: \"/breadcrumb\",\n base: \"antd\",\n refinements: [\n \"Employs a custom `useItemRender` hook to allow icons (from `item.icon`) to be rendered alongside the title within each breadcrumb link.\",\n \"Introduces a `noWrap` boolean prop for responsive behavior: when true, breadcrumb items attempt to stay on a single line, with text overflow and ellipsis applied to truncatable items.\",\n \"Applies BioTuring Design System specific styling via `./style.css` for layout (flexbox-based), item spacing, icon integration, and responsive truncation.\",\n \"Exports styled `Breadcrumb.Item` and `Breadcrumb.Separator` sub-components.\",\n ],\n category: \"Navigation\",\n originalDocUrl: \"https://ant.design/components/breadcrumb\",\n description:\n \"Displays the path of the current page, allowing for easy navigation back to previous levels.\",\n },\n Button: {\n name: \"Button\",\n link: \"/button\",\n base: \"antd\",\n refinements: [],\n category: \"Actions\",\n originalDocUrl: \"https://ant.design/components/button\",\n description: \"A clickable element used to trigger an action.\",\n },\n Checkbox: {\n name: \"Checkbox\",\n link: \"/checkbox\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/checkbox\",\n description: \"Allows users to select one or more options from a set.\",\n },\n CodeBlock: {\n name: \"CodeBlock\",\n link: \"/code-block\",\n base: \"custom\",\n refinements: [\n \"Custom implementation for syntax highlighting using `prism-react-renderer`\",\n ],\n category: \"Data Display\",\n packages: [\"prism-react-renderer\"],\n description: \"Displays blocks of code with syntax highlighting.\",\n },\n Collapse: {\n name: \"Collapse\",\n link: \"/collapse\",\n base: \"antd\",\n refinements: [],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/collapse\",\n description: \"A content area that can be expanded or collapsed.\",\n },\n DropdownMenu: {\n name: \"DropdownMenu\",\n link: \"/dropdown-menu\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Menu components\",\n \"Provides a customizable dropdown menu experience\",\n ],\n category: \"Navigation\",\n packages: [\n \"@base-ui-components/react/menu\",\n \"@base-ui-components/react/utils\",\n ],\n originalDocUrl: \"https://base-ui.com/react/components/menu\",\n description:\n \"A menu that appears when a user interacts with a button or other control.\",\n },\n Nav: {\n name: \"Nav\",\n link: \"/nav\",\n base: \"custom\",\n refinements: [\n \"Supports icon and label via a render prop pattern\",\n \"Manages hover state to reveal label when collapsed\",\n \"Supports active and collapsed/expanded (currentPanel) states\",\n \"Uses component-level CSS imports and custom transition classes\",\n ],\n category: \"Navigation\",\n description:\n \"A navigation item with icon and label, supporting active highlighting and hover reveal.\",\n },\n Empty: {\n name: \"Empty\",\n link: \"/empty\",\n base: \"antd\",\n refinements: [\n \"Replaces the default Ant Design illustration with a custom SVG icon (`EmptyIcon`) defined within the component.\",\n \"Introduces a `size` prop (`small`, `medium`, `large`, default `medium`) that controls the font-size of the custom `EmptyIcon`.\",\n \"Applies specific font-sizes for the icon based on the `size` prop (small: 2rem, medium: 3rem, large: 4rem) via `style.css`.\",\n \"The `small` size icon also has its color set to `var(--ds-color-base-solid)`.\",\n \"Adjusts the Ant Design Empty image container height to `auto` via `style.css`.\",\n \"Applies BioTuring Design System specific styling and CSS classes (e.g., `ds-empty`, `ds-empty-icon`).\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/empty\",\n description: \"Displays a placeholder when content is empty or unavailable.\",\n },\n Field: {\n name: \"Field\",\n link: \"/field\",\n base: \"custom\",\n refinements: [\n \"Custom component for form fields, providing layout and validation display\",\n ],\n category: \"Data Entry\",\n description:\n \"A custom component to structure form inputs with labels, help text, and validation messages.\",\n },\n Form: {\n name: \"Form\",\n link: \"/form\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/form\",\n description:\n \"Provides structure for data input, including layout, validation, and submission capabilities.\",\n },\n IconButton: {\n name: \"Icon Button\",\n link: \"/icon-button\",\n base: \"custom\",\n refinements: [\n \"Custom button component focused on displaying an icon\",\n \"Provides consistent styling for icon-only buttons\",\n ],\n category: \"Actions\",\n description:\n \"A button that primarily displays an icon, used for compact actions.\",\n },\n Input: {\n name: \"Input\",\n link: \"/input\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/input\",\n description: \"A basic text input field for user data entry.\",\n },\n Message: {\n name: \"Message\",\n link: \"/message\",\n base: \"antd\",\n refinements: [],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/message\",\n description:\n \"The Message component provides feedback in response to user operations. Unlike notification, messages are simpler and typically auto-dismiss after a short duration.\",\n },\n Modal: {\n name: \"Modal\",\n link: \"/modal\",\n base: \"antd\",\n refinements: [\n \"Added predefined sizes: `xsmall`, `small`, `medium`, `large`, `xlarge`, `xxlarge`, `fullscreen`\",\n \"Introduced a general `loading` state prop for the modal content\",\n \"Added `hideOkButton` and `hideCancelButton` props for straightforward visibility control of footer buttons\",\n \"Added `contentPadding` prop for direct control over modal body padding\",\n \"Enhanced header customization with `afterTitle`, `beforeCloseButton`, and `afterCloseButton` slots for additional elements or actions\",\n \"Implemented `defaultFixedHeaderFooter` behavior: header and footer become fixed when content overflows (controlled by internal overflow detection)\",\n \"Changed `centered` prop to default to `true`\",\n \"Introduced `type` prop (`default`, `info`, `success`, `error`, `warning`) influencing default behaviors like size\",\n \"Added `background` prop (`elevated`, `container`) for explicit control over modal background style, with size-dependent defaults\",\n \"Uses a custom `X` icon from `@bioturing/assets` as the default close button icon\",\n \"Provides `bodyScrollable` prop (defaults to true) to manage content scroll behavior within the modal body\",\n ],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/modal\",\n description:\n \"A modal dialog that appears in front of the app content to provide critical information or ask for a decision.\",\n },\n Popover: {\n name: \"Popover\",\n link: \"/popover\",\n base: \"antd\", // Retains AntD as 'base' because it aims for API compatibility\n refinements: [],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/popover\", // Original AntD doc for API reference\n description:\n \"A floating card popped by clicking or hovering that displays additional information.\",\n },\n PopupPanel: {\n name: \"PopupPanel\",\n link: \"/popup-panel\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Popover\",\n \"Resizable panel functionality\",\n \"Custom styling and behavior for panel-like popups\",\n ],\n category: \"Overlay\",\n packages: [\"react-use-resizable\", \"@base-ui-components/react/popover\"],\n originalDocUrl: \"https://base-ui.com/react/components/popover\",\n description:\n \"A specialized panel that pops up, often resizable, for displaying rich content or tools.\",\n },\n Radio: {\n name: \"Radio\",\n link: \"/radio\",\n base: \"antd\",\n refinements: [],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/radio\",\n description: \"Allows users to select a single option from a set.\",\n },\n ScrollArea: {\n name: \"ScrollArea\",\n link: \"/scroll-area\",\n base: \"base-ui\",\n refinements: [\n \"Wraps `@base-ui-components/react/ScrollArea` to integrate with the BioTuring Design System.\",\n \"Provides consistent `classNames` prop pattern for styling different parts (viewport, scrollbar, thumb).\",\n \"Applies specific BioTuring Design System CSS classes (e.g., `ds-scroll-area`, `ds-scroll-area-viewport`, `ds-scroll-area-scrollbar`, `ds-scroll-area-thumb`) to Base UI component parts.\",\n \"Provides extensive custom styling via `./style.css` for the root, viewport (including `focus-visible` styles), scrollbar (opacity transitions on hover/scroll, orientation-based dimensions), and thumb (custom border-radius, background, and border colors using design tokens).\",\n ],\n category: \"Layout\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl: \"https://base-ui.com/react/components/scroll-area\",\n description:\n \"A scrollable container with custom scrollbars that blend with the design system.\",\n },\n Segmented: {\n name: \"Segmented\",\n link: \"/segmented\",\n base: \"antd\",\n refinements: [\n \"Structured as a typed `forwardRef` wrapper around the Ant Design Segmented component for type safety and consistency.\",\n \"Applies custom styles via `./style.css` to ensure proper alignment and sizing of item labels and icons within the segmented control (e.g., flex centering for labels and icons, default icon size).\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/segmented\",\n description:\n \"A set of buttons that allows users to switch between different views or options.\",\n },\n Select: {\n name: \"Select\",\n link: \"/select\",\n base: \"antd\",\n refinements: [\n \"Introduced `enhancePositioner` prop: Utilizes `@floating-ui/react` for robust dropdown positioning, allowing it to break out of overflow containers and intelligently place itself.\",\n \"Added `popupSize` prop (works with `enhancePositioner`): Controls the dropdown width with predefined sizes (e.g., `small`, `medium`, `large`), pixel values, or `fit-content`.\",\n \"Replaced default suffix icon with a custom `CaretDown` icon from `@bioturing/assets`.\",\n \"Customized multiple selection mode: Uses Ant Design `Checkbox` components for indicating selected items in the dropdown.\",\n \"Applied specific BioTuring Design System styling and CSS classes, including enhanced popup styles when `enhancePositioner` is active.\",\n ],\n category: \"Data Entry\",\n packages: [\"@floating-ui/react\", \"rc-select\"],\n originalDocUrl: \"https://ant.design/components/select\",\n description:\n \"A dropdown selection component for selecting values from a list of options.\",\n },\n Slider: {\n name: \"Slider\",\n link: \"/slider\",\n base: \"antd\",\n refinements: [\n \"Applies a BioTuring Design System specific CSS class `ds-slider`.\",\n \"Modifies the default behavior of the slider's tooltip by setting `tooltip.arrow` to `false` by default (Ant Design's default is true).\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/slider\",\n description:\n \"Allows users to select a value from a continuous or discrete range.\",\n },\n Spin: {\n name: \"Spin\",\n link: \"/spin\",\n base: \"antd\",\n refinements: [],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/spin\",\n description: \"Indicates a loading state.\",\n },\n Splitter: {\n name: \"Splitter\",\n link: \"/splitter\",\n base: \"antd\", // Assuming it's styled like AntD or uses AntD primitives\n refinements: [\n \"Custom component for creating resizable layouts, inspired by Ant Design styling\",\n ],\n category: \"Layout\",\n // originalDocUrl: \"https://ant.design/components/layout\", // AntD Layout could be a loose reference, but no direct 'Splitter' component.\n description:\n \"Splitter is used to divide and resize multiple elements in a container.\",\n },\n Stack: {\n name: \"Stack\",\n link: \"/stack\",\n base: \"custom\",\n refinements: [\n \"Custom component for creating horizontal or vertical layouts with consistent spacing\",\n \"Uses CSS classes for alignment and justification\",\n \"Provides StackChild component with useRender hook for flexible item control\",\n ],\n category: \"Layout\",\n description:\n \"A flexible layout component for arranging items in a row or column with consistent spacing.\",\n },\n Switch: {\n name: \"Switch\",\n link: \"/switch\",\n base: \"antd\",\n refinements: [\n \"Structured as a typed `forwardRef` wrapper around Ant Design's Switch component.\",\n \"Applies custom CSS to ensure `checkedChildren` and `unCheckedChildren` (e.g., icons, text) are properly centered within the switch handle.\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/switch\",\n description:\n \"A toggle switch for changing between two states, typically on or off.\",\n },\n Table: {\n name: \"Table\",\n link: \"/table\",\n base: \"antd\",\n refinements: [\n \"Applies BioTuring Design System specific styling via `./style.css`.\",\n \"Enhances the default Ant Design Table with additional features.\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/table\",\n description:\n \"A table displays rows of data, supporting features like sorting, filtering, and pagination.\",\n },\n Tag: {\n name: \"Tag\",\n link: \"/tag\",\n base: \"antd\",\n refinements: [\n \"Defaults to using the `X` icon (bold) from `@bioturing/assets` as the `closeIcon` if the tag is `closable` and no custom icon is provided.\",\n \"Introduces an `active` boolean prop (defaults to false).\",\n \"When `active={true}`, applies specific styling (background, border, text color using `--ds-color-primary` tokens) via a `data-active` attribute and `style.css`.\",\n \"Applies BioTuring Design System specific styling via `./style.css`, including base styles for alignment and consistent close icon coloring (`--ds-color-icon`).\",\n \"Introduces a `size` prop with options `small`, `medium`, and `large` to control tag dimensions.\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/tag\",\n description:\n \"Small UI elements for categorization, filtering, or highlighting items.\",\n },\n ColorSelect: {\n name: \"ColorSelect\",\n link: \"/color-select\",\n base: \"antd\",\n refinements: [\n \"Combines Ant Design `ColorPicker` with a `Select`-like input for color selection.\",\n \"Supports preset colors via the `presetColors` prop and freeform hex input.\",\n \"Displays selected colors as closable `Tag`s with color swatches.\",\n \"Provides controlled/uncontrolled APIs (`value`/`defaultValue`, `open`/`defaultOpen`).\",\n \"Emits a `toast` notification on invalid color entries.\",\n \"Uses `Stack` for layout and `style.css` for BioTuring styling.\",\n ],\n category: \"Data Entry\",\n description:\n \"A combined color picker and selector allowing preset and custom color selection with tag display.\",\n },\n ThemeProvider: {\n name: \"ThemeProvider\",\n link: \"/theme-provider\",\n base: \"custom\",\n refinements: [\n \"Custom utility for managing application-wide themes\",\n \"Provides context for styling consistency\",\n ],\n category: \"Utility\",\n description:\n \"A utility component for providing theme context to its children, enabling consistent styling across the application.\",\n },\n Toast: {\n name: \"Toast\",\n link: \"/toast\",\n base: \"base-ui\",\n refinements: [\n \"Built with Base UI Toast components\",\n \"Customizable appearance and behavior for notifications\",\n ],\n category: \"Feedback\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl: \"https://base-ui.com/react/components/toast\",\n description:\n \"Displays brief, auto-expiring messages to provide feedback or alerts, similar to notifications but often less intrusive.\",\n },\n Tooltip: {\n name: \"Tooltip\",\n link: \"/tooltip\",\n base: \"antd\",\n refinements: [\n \"Defaults the `arrow` prop to `false`, hiding the tooltip arrow by default (Ant Design's default shows an arrow).\",\n \"Applies a BioTuring Design System specific CSS class `ds-tooltip`.\",\n \"Custom CSS sets `min-height: auto;` for the inner content, allowing tooltips to be shorter than Ant Design's default minimum height.\",\n ],\n category: \"Overlay\",\n originalDocUrl: \"https://ant.design/components/tooltip\",\n description:\n \"A simple text popup tip that appears when a user hovers over an element.\",\n },\n Tour: {\n name: \"Tour\",\n link: \"/tour\",\n base: \"antd\",\n refinements: [\n \"Provides a custom default rendering for step indicators (`indicatorsRender`) if none is supplied. This includes a `current / total` text and visual dots for steps.\",\n \"Applies BioTuring Design System specific CSS classes (e.g., `ds-tour`) for extensive styling.\",\n \"Customizes typography for title, description, and indicator text using design system tokens.\",\n \"Adjusts layout and spacing for header, footer, and content within the tour description (paragraphs, lists, icons).\",\n \"Includes specific styling for the appearance of the custom default indicators (wrapper, summary text, active/inactive dots).\",\n ],\n category: \"Feedback\",\n originalDocUrl: \"https://ant.design/components/tour\",\n description:\n \"A guided tour interface that leads users through specific features of an application.\",\n },\n Transition: {\n name: \"Transition\",\n link: \"/transition\",\n base: \"base-ui\",\n refinements: [\n \"Wraps Base UI utilities (e.g., `useTransitionStatus`, `useRender`) and custom hooks (e.g., `useAnimationsFinished`) to manage element enter/leave transitions.\",\n \"Accepts `starting` and `ending` props, which can be CSS class strings (for Tailwind) or style objects, to define transition states.\",\n \"Dynamically applies `starting`/`ending` styles and sets `data-starting`/`data-ending` attributes on the child element based on transition phase.\",\n \"Manages mounting/unmounting of children post-animation, with a `keepMounted` option, using a custom `useAnimationsFinished` hook.\",\n \"Provides a declarative API for CSS-based transitions.\",\n ],\n category: \"Utility\",\n packages: [\n \"@base-ui-components/react/use-render\",\n \"@base-ui-components/react/merge-props\",\n \"@base-ui-components/react/utils\",\n ],\n originalDocUrl: \"https://base-ui.com/react/components\", // General Base UI components link as specific utility pages might vary\n description:\n \"Provides utilities for applying CSS transitions and animations to components.\",\n },\n Typography: {\n name: \"Typography\",\n link: \"/typography\",\n base: \"antd\",\n refinements: [\n \"Extends Ant Design Typography with custom styles or additional text utilities\",\n ],\n category: \"Data Display\",\n originalDocUrl: \"https://ant.design/components/typography\",\n description:\n \"Typography is a component that provides a set of tools for working with text, including text alignment, font size, and font weight.\",\n },\n Tree: {\n name: \"Tree\",\n link: \"/tree\",\n base: \"antd\",\n refinements: [\n \"Utilizes rc-tree for core functionality\",\n \"Enhanced features like custom node rendering, drag-and-drop, or advanced filtering\",\n ],\n category: \"Data Display\",\n packages: [\"rc-tree\"],\n originalDocUrl: \"https://ant.design/components/tree\",\n description:\n \"A hierarchical list structure component that presents nested data clearly.\",\n },\n Truncate: {\n name: \"Truncate\",\n link: \"/truncate\",\n base: \"custom\",\n refinements: [\n \"Custom implementation for text truncation\",\n \"Supports middle and end truncation\",\n \"Configurable ellipsis and tooltip on hover\",\n \"Multi-line truncation with configurable number of lines\",\n \"Auto-height truncation that adapts to parent container size\",\n ],\n category: \"Data Display\",\n description:\n \"The Truncate component helps manage text overflow by truncating text elegantly and displaying an ellipsis. It supports truncation at the middle or end of the text.\",\n },\n Upload: {\n name: \"Upload\",\n link: \"/upload\",\n base: \"antd\",\n refinements: [\n \"Defaults to a custom `itemRender` function that utilizes a bespoke `UploadItem` component for the file list.\",\n \"`UploadItem` component features: file type icon, middle-truncated file name (using Truncate component), progress bar with status mapping, and a remove button.\",\n \"Added `showRemoveButton` prop (defaults to true) on the `Upload` component to control visibility of the remove action in `UploadItem`.\",\n \"`UploadItem` includes a slot for `extraActions` allowing additional custom controls per file.\",\n \"Provides a default `Button` with `CloudArrowUp` icon and 'Upload Files' text if no children are passed to `Upload`.\",\n \"Includes `Upload.Dragger` for drag-and-drop functionality, styled for the design system.\",\n \"Exports `Upload.Item` (the UploadItem component) for potential direct use.\",\n \"Applies BioTuring Design System specific styling and CSS classes.\",\n ],\n category: \"Data Entry\",\n originalDocUrl: \"https://ant.design/components/upload\",\n description: \"Allows users to select and upload files.\",\n },\n VerticalCollapsiblePanel: {\n name: \"Vertical Collapsible Panel\",\n link: \"/vertical-collapsible-panel\",\n base: \"base-ui\",\n refinements: [\n \"Built upon `@base-ui-components/react` Collapsible components (`Collapsible.Root`, `Collapsible.Panel`).\",\n \"Manages open/closed state with a custom `useControlledState` hook for controlled/uncontrolled behavior.\",\n \"Features custom expand/collapse trigger icons (`MinusCircle`, `PlusCircle` from `@bioturing/assets`) via IconButton.\",\n \"Automatically truncates string titles using the `Truncate` component.\",\n \"Provides `afterTitle` and `actions` slots in the header for additional UI elements, visible when open.\",\n \"Integrates the BioTuring `Transition` component for smooth open/close animations of the panel body, managed with `useAnimationsFinished` hook.\",\n \"Offers a `contentPadding` prop (default `16px`) for customizable body padding via CSS variable `--ds-content-padding`.\",\n \"Extensive custom CSS for layout, typography, and a unique feature: header text displays vertically (`writing-mode: vertical-rl`) when collapsed.\",\n \"Supports `keepMounted` prop and applies Ant Design CSS variables for theming.\",\n ],\n category: \"Layout\",\n packages: [\"@base-ui-components/react\"],\n originalDocUrl:\n \"https://base-ui.com/react/components/vertical-collapsible-panel\", // Assuming this kebab-case name for Base UI docs\n description:\n \"A panel that can be collapsed or expanded vertically, often used in sidebars or for sectioning content.\",\n },\n} satisfies Record<string, ComponentMetadata>;\n\n/**\n * Get all components by category\n */\nexport const getComponentsByCategory = (): Record<\n ComponentCategory,\n ComponentMetadata[]\n> => {\n const categories: Record<ComponentCategory, ComponentMetadata[]> = {\n Actions: [],\n General: [],\n Layout: [],\n Navigation: [],\n \"Data Entry\": [],\n \"Data Display\": [],\n Feedback: [],\n Overlay: [],\n Utility: [],\n };\n\n Object.values(componentMetadata).forEach((component) => {\n categories[component.category].push(component);\n });\n\n // Sort components alphabetically within each category\n Object.keys(categories).forEach((category) => {\n categories[category as ComponentCategory].sort((a, b) =>\n a.name.localeCompare(b.name)\n );\n });\n\n return categories;\n};\n"],"names":["componentMetadata","getComponentsByCategory","categories","component","category","a","b"],"mappings":"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"}
package/dist/tailwind.css CHANGED
@@ -1 +1 @@
1
- @theme inline{ --color-ds-color-primary: var(--ds-color-primary); --color-ds-color-primary-hover: var(--ds-color-primary-hover); --color-ds-color-primary-active: var(--ds-color-primary-active); --color-ds-color-primary-text: var(--ds-color-primary-text); --color-ds-color-primary-text-hover: var(--ds-color-primary-text-hover); --color-ds-color-primary-text-active: var(--ds-color-primary-text-active); --color-ds-color-primary-bg: var(--ds-color-primary-bg); --color-ds-color-primary-bg-hover: var(--ds-color-primary-bg-hover); --color-ds-color-primary-border: var(--ds-color-primary-border); --color-ds-color-primary-border-hover: var(--ds-color-primary-border-hover); --color-ds-color-warning: var(--ds-color-warning); --color-ds-color-warning-hover: var(--ds-color-warning-hover); --color-ds-color-warning-active: var(--ds-color-warning-active); --color-ds-color-warning-text: var(--ds-color-warning-text); --color-ds-color-warning-text-hover: var(--ds-color-warning-text-hover); --color-ds-color-warning-text-active: var(--ds-color-warning-text-active); --color-ds-color-warning-bg: var(--ds-color-warning-bg); --color-ds-color-warning-bg-hover: var(--ds-color-warning-bg-hover); --color-ds-color-warning-border: var(--ds-color-warning-border); --color-ds-color-warning-border-hover: var(--ds-color-warning-border-hover); --color-ds-color-success: var(--ds-color-success); --color-ds-color-success-hover: var(--ds-color-success-hover); --color-ds-color-success-active: var(--ds-color-success-active); --color-ds-color-success-text: var(--ds-color-success-text); --color-ds-color-success-text-hover: var(--ds-color-success-text-hover); --color-ds-color-success-text-active: var(--ds-color-success-text-active); --color-ds-color-success-bg: var(--ds-color-success-bg); --color-ds-color-success-bg-hover: var(--ds-color-success-bg-hover); --color-ds-color-success-border: var(--ds-color-success-border); --color-ds-color-success-border-hover: var(--ds-color-success-border-hover); --color-ds-color-error: var(--ds-color-error); --color-ds-color-error-hover: var(--ds-color-error-hover); --color-ds-color-error-active: var(--ds-color-error-active); --color-ds-color-error-text: var(--ds-color-error-text); --color-ds-color-error-text-hover: var(--ds-color-error-text-hover); --color-ds-color-error-text-active: var(--ds-color-error-text-active); --color-ds-color-error-bg: var(--ds-color-error-bg); --color-ds-color-error-bg-hover: var(--ds-color-error-bg-hover); --color-ds-color-error-border: var(--ds-color-error-border); --color-ds-color-error-border-hover: var(--ds-color-error-border-hover); --color-ds-color-text: var(--ds-color-text); --color-ds-color-text-secondary: var(--ds-color-text-secondary); --color-ds-color-text-tertiary: var(--ds-color-text-tertiary); --color-ds-color-text-quaternary: var(--ds-color-text-quaternary); --color-ds-color-bg-container: var(--ds-color-bg-container); --color-ds-color-bg-elevated: var(--ds-color-bg-elevated); --color-ds-color-bg-layout: var(--ds-color-bg-layout); --color-ds-color-bg-spotlight: var(--ds-color-bg-spotlight); --color-ds-color-bg-mask: var(--ds-color-bg-mask); --color-ds-color-fill: var(--ds-color-fill); --color-ds-color-fill-secondary: var(--ds-color-fill-secondary); --color-ds-color-fill-tertiary: var(--ds-color-fill-tertiary); --color-ds-color-fill-quaternary: var(--ds-color-fill-quaternary); --color-ds-color-fill-alter: var(--ds-color-fill-alter); --color-ds-color-border: var(--ds-color-border); --color-ds-color-border-secondary: var(--ds-color-border-secondary); --color-ds-color-split: var(--ds-color-split); --color-ds-color-text-placeholder: var(--ds-color-text-placeholder); --color-ds-color-text-disabled: var(--ds-color-text-disabled); --color-ds-color-text-heading: var(--ds-color-text-heading); --color-ds-color-text-label: var(--ds-color-text-label); --color-ds-color-text-description: var(--ds-color-text-description); --color-ds-color-text-light-solid: var(--ds-color-text-light-solid); --color-ds-color-highlight: var(--ds-color-highlight); --color-ds-color-bg-text-hover: var(--ds-color-bg-text-hover); --color-ds-color-bg-text-active: var(--ds-color-bg-text-active); --color-ds-color-icon: var(--ds-color-icon); --color-ds-color-icon-hover: var(--ds-color-icon-hover); --color-ds-color-bg-segment-active: var(--ds-color-bg-segment-active); --text-ds-sm: var(--ds-font-size-sm); --text-ds-md: var(--ds-font-size); --text-ds-lg: var(--ds-font-size-lg); --text-ds-xl: var(--ds-font-size-xl); --text-ds-sm--line-height: var(--ds-font-height-sm); --text-ds-md--line-height: var(--ds-font-height); --text-ds-lg--line-height: var(--ds-font-height-lg); --text-ds-xl--line-height: var(--ds-font-height-xl); --text-ds-h1: var(--ds-font-size-heading-1); --text-ds-h2: var(--ds-font-size-heading-2); --text-ds-h3: var(--ds-font-size-heading-3); --text-ds-h4: var(--ds-font-size-heading-4); --text-ds-h5: var(--ds-font-size-heading-5); --text-ds-h1--line-height: var(--ds-line-height-heading-1); --text-ds-h2--line-height: var(--ds-line-height-heading-2); --text-ds-h3--line-height: var(--ds-line-height-heading-3); --text-ds-h4--line-height: var(--ds-line-height-heading-4); --text-ds-h5--line-height: var(--ds-line-height-heading-5); --text-ds-h1--font-weight: 600; --text-ds-h2--font-weight: 600; --text-ds-h3--font-weight: 600; --text-ds-h4--font-weight: 600; --text-ds-h5--font-weight: 600; --text-ds-subheading: .75rem; --text-ds-subheading--line-height: 1rem; --text-ds-subheading--letter-spacing: .002em; --text-ds-subheading--font-weight: 500; --text-ds-subheading2: .625rem; --text-ds-subheading2--line-height: 1.4; --text-ds-subheading2--letter-spacing: .002em; --text-ds-subheading2--font-weight: 500; --font-sans: var(--ds-inter); --font-mono: var(--ds-roboto-mono); }.text-ds-subheading,.text-ds-subheading2{text-transform:uppercase}
1
+ @theme inline{ --color-ds-color-primary: var(--ds-color-primary); --color-ds-color-primary-hover: var(--ds-color-primary-hover); --color-ds-color-primary-active: var(--ds-color-primary-active); --color-ds-color-primary-text: var(--ds-color-primary-text); --color-ds-color-primary-text-hover: var(--ds-color-primary-text-hover); --color-ds-color-primary-text-active: var(--ds-color-primary-text-active); --color-ds-color-primary-bg: var(--ds-color-primary-bg); --color-ds-color-primary-bg-hover: var(--ds-color-primary-bg-hover); --color-ds-color-primary-border: var(--ds-color-primary-border); --color-ds-color-primary-border-hover: var(--ds-color-primary-border-hover); --color-ds-color-warning: var(--ds-color-warning); --color-ds-color-warning-hover: var(--ds-color-warning-hover); --color-ds-color-warning-active: var(--ds-color-warning-active); --color-ds-color-warning-text: var(--ds-color-warning-text); --color-ds-color-warning-text-hover: var(--ds-color-warning-text-hover); --color-ds-color-warning-text-active: var(--ds-color-warning-text-active); --color-ds-color-warning-bg: var(--ds-color-warning-bg); --color-ds-color-warning-bg-hover: var(--ds-color-warning-bg-hover); --color-ds-color-warning-border: var(--ds-color-warning-border); --color-ds-color-warning-border-hover: var(--ds-color-warning-border-hover); --color-ds-color-success: var(--ds-color-success); --color-ds-color-success-hover: var(--ds-color-success-hover); --color-ds-color-success-active: var(--ds-color-success-active); --color-ds-color-success-text: var(--ds-color-success-text); --color-ds-color-success-text-hover: var(--ds-color-success-text-hover); --color-ds-color-success-text-active: var(--ds-color-success-text-active); --color-ds-color-success-bg: var(--ds-color-success-bg); --color-ds-color-success-bg-hover: var(--ds-color-success-bg-hover); --color-ds-color-success-border: var(--ds-color-success-border); --color-ds-color-success-border-hover: var(--ds-color-success-border-hover); --color-ds-color-error: var(--ds-color-error); --color-ds-color-error-hover: var(--ds-color-error-hover); --color-ds-color-error-active: var(--ds-color-error-active); --color-ds-color-error-text: var(--ds-color-error-text); --color-ds-color-error-text-hover: var(--ds-color-error-text-hover); --color-ds-color-error-text-active: var(--ds-color-error-text-active); --color-ds-color-error-bg: var(--ds-color-error-bg); --color-ds-color-error-bg-hover: var(--ds-color-error-bg-hover); --color-ds-color-error-border: var(--ds-color-error-border); --color-ds-color-error-border-hover: var(--ds-color-error-border-hover); --color-ds-color-text: var(--ds-color-text); --color-ds-color-text-secondary: var(--ds-color-text-secondary); --color-ds-color-text-tertiary: var(--ds-color-text-tertiary); --color-ds-color-text-quaternary: var(--ds-color-text-quaternary); --color-ds-color-bg-container: var(--ds-color-bg-container); --color-ds-color-bg-elevated: var(--ds-color-bg-elevated); --color-ds-color-bg-layout: var(--ds-color-bg-layout); --color-ds-color-bg-spotlight: var(--ds-color-bg-spotlight); --color-ds-color-bg-mask: var(--ds-color-bg-mask); --color-ds-color-fill: var(--ds-color-fill); --color-ds-color-fill-secondary: var(--ds-color-fill-secondary); --color-ds-color-fill-tertiary: var(--ds-color-fill-tertiary); --color-ds-color-fill-quaternary: var(--ds-color-fill-quaternary); --color-ds-color-fill-alter: var(--ds-color-fill-alter); --color-ds-color-border: var(--ds-color-border); --color-ds-color-border-secondary: var(--ds-color-border-secondary); --color-ds-color-split: var(--ds-color-split); --color-ds-color-text-placeholder: var(--ds-color-text-placeholder); --color-ds-color-text-disabled: var(--ds-color-text-disabled); --color-ds-color-text-heading: var(--ds-color-text-heading); --color-ds-color-text-label: var(--ds-color-text-label); --color-ds-color-text-description: var(--ds-color-text-description); --color-ds-color-text-light-solid: var(--ds-color-text-light-solid); --color-ds-color-highlight: var(--ds-color-highlight); --color-ds-color-bg-text-hover: var(--ds-color-bg-text-hover); --color-ds-color-bg-text-active: var(--ds-color-bg-text-active); --color-ds-color-icon: var(--ds-color-icon); --color-ds-color-icon-hover: var(--ds-color-icon-hover); --color-ds-segment-color-bg-active: var(--ds-segment-color-bg-active); --text-ds-sm: var(--ds-font-size-sm); --text-ds-md: var(--ds-font-size); --text-ds-lg: var(--ds-font-size-lg); --text-ds-xl: var(--ds-font-size-xl); --text-ds-sm--line-height: var(--ds-font-height-sm); --text-ds-md--line-height: var(--ds-font-height); --text-ds-lg--line-height: var(--ds-font-height-lg); --text-ds-xl--line-height: var(--ds-font-height-xl); --text-ds-h1: var(--ds-font-size-heading-1); --text-ds-h2: var(--ds-font-size-heading-2); --text-ds-h3: var(--ds-font-size-heading-3); --text-ds-h4: var(--ds-font-size-heading-4); --text-ds-h5: var(--ds-font-size-heading-5); --text-ds-h1--line-height: var(--ds-line-height-heading-1); --text-ds-h2--line-height: var(--ds-line-height-heading-2); --text-ds-h3--line-height: var(--ds-line-height-heading-3); --text-ds-h4--line-height: var(--ds-line-height-heading-4); --text-ds-h5--line-height: var(--ds-line-height-heading-5); --text-ds-h1--font-weight: 600; --text-ds-h2--font-weight: 600; --text-ds-h3--font-weight: 600; --text-ds-h4--font-weight: 600; --text-ds-h5--font-weight: 600; --text-ds-subheading: .75rem; --text-ds-subheading--line-height: 1rem; --text-ds-subheading--letter-spacing: .002em; --text-ds-subheading--font-weight: 500; --text-ds-subheading2: .625rem; --text-ds-subheading2--line-height: 1.4; --text-ds-subheading2--letter-spacing: .002em; --text-ds-subheading2--font-weight: 500; --font-sans: var(--ds-inter); --font-mono: var(--ds-roboto-mono); }.text-ds-subheading,.text-ds-subheading2{text-transform:uppercase}
@@ -289,16 +289,22 @@ const o = {
289
289
  lineHeightSM: 16 / 12,
290
290
  fontWeightStrong: 600,
291
291
  boxShadow: "0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 6px rgba(0, 0, 0, 0.04), 0px 2px 10px rgba(0, 0, 0, 0.04)",
292
- boxShadowSecondary: "0px 0px 1px 0px var(--ds-color-border-modal), 0px 3px 6px 1px rgba(0, 0, 0, 0.08), 0px 6px 26px 2px rgba(0, 0, 0, 0.08), 0px 4px 52px 0px rgba(0, 0, 0, 0.05)",
292
+ boxShadowSecondary: "0px 0px 1px 0px var(--ds-modal-color-border), 0px 3px 6px 1px rgba(0, 0, 0, 0.08), 0px 6px 26px 2px rgba(0, 0, 0, 0.08), 0px 4px 52px 0px rgba(0, 0, 0, 0.05)",
293
293
  colorBgSpotlight: "rgba(0, 0, 0, 0.85)"
294
294
  }, l = {
295
295
  cssVar: !0,
296
296
  components: {
297
297
  Input: {
298
- // activeShadow: "",
298
+ activeBorderColor: "var(--ds-input-color-border-active)",
299
+ activeShadow: "var(--ds-input-shadow-active)",
300
+ errorActiveShadow: "var(--ds-input-shadow-error-active)",
301
+ warningActiveShadow: "var(--ds-input-shadow-warning-active)"
299
302
  },
300
303
  InputNumber: {
301
- // activeShadow: "",
304
+ activeBorderColor: "var(--ds-input-color-border-active)",
305
+ activeShadow: "var(--ds-input-shadow-active)",
306
+ errorActiveShadow: "var(--ds-input-shadow-error-active)",
307
+ warningActiveShadow: "var(--ds-input-shadow-warning-active)"
302
308
  },
303
309
  Button: {
304
310
  defaultShadow: void 0,
@@ -330,13 +336,13 @@ const o = {
330
336
  labelColor: "var(--ds-color-text)"
331
337
  }
332
338
  }
333
- }, t = {
339
+ }, e = {
334
340
  token: {
335
341
  ...r(o, "light"),
336
342
  ...a
337
343
  },
338
344
  ...l
339
- }, i = {
345
+ }, t = {
340
346
  token: {
341
347
  ...r(o, "dark"),
342
348
  ...a
@@ -345,7 +351,7 @@ const o = {
345
351
  };
346
352
  export {
347
353
  o as antdColorTokens,
348
- i as darkTheme,
349
- t as lightTheme
354
+ t as darkTheme,
355
+ e as lightTheme
350
356
  };
351
357
  //# sourceMappingURL=tokens.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tokens.js","sources":["../../../src/tokens/and-theme/tokens.ts"],"sourcesContent":["import { type ThemeConfig } from \"antd\";\nimport { getTokensByTheme, type ColorTokens } from \"../utils\";\n\n// Convert Figma variables to Ant Design tokens with light/dark variants\nexport const antdColorTokens: ColorTokens = {\n // Text colors\n colorText: {\n light: \"rgba(0, 0, 0, 0.88)\",\n dark: \"rgba(255, 255, 255, 0.85)\",\n },\n colorTextSecondary: {\n light: \"rgba(0, 0, 0, 0.65)\",\n dark: \"rgba(255, 255, 255, 0.65)\",\n },\n colorTextTertiary: {\n light: \"rgba(0, 0, 0, 0.45)\",\n dark: \"rgba(255, 255, 255, 0.45)\",\n },\n colorTextQuaternary: {\n light: \"rgba(0, 0, 0, 0.25)\",\n dark: \"rgba(255, 255, 255, 0.25)\",\n },\n // Primary colors\n colorPrimary: {\n light: \"#175CD3\",\n dark: \"#2E90FA\",\n },\n colorPrimaryBg: {\n light: \"#E9F2FF\",\n dark: \"#152137\",\n },\n colorPrimaryBgHover: {\n light: \"#D1E9FF\",\n dark: \"#112545\",\n },\n colorPrimaryBorder: {\n light: \"#84CAFF\",\n dark: \"#1C3959\",\n },\n colorPrimaryBorderHover: {\n light: \"#53B1FD\",\n dark: \"#204C7C\",\n },\n colorPrimaryHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorPrimaryActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n colorPrimaryTextHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorPrimaryTextActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n\n // Info colors\n colorInfo: {\n light: \"#175CD3\",\n dark: \"#2E90FA\",\n },\n colorInfoBg: {\n light: \"#E9F2FF\",\n dark: \"#152137\",\n },\n colorInfoBgHover: {\n light: \"#D1E9FF\",\n dark: \"#112545\",\n },\n colorInfoBorder: {\n light: \"#84CAFF\",\n dark: \"#1C3959\",\n },\n colorInfoBorderHover: {\n light: \"#53B1FD\",\n dark: \"#204C7C\",\n },\n colorInfoHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorInfoActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n colorInfoTextHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorInfoTextActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n\n // Success colors\n colorSuccess: {\n light: \"#4CB200\",\n dark: \"#389E0D\",\n },\n colorSuccessBg: {\n light: \"#F6FFF0\",\n dark: \"#162100\",\n },\n colorSuccessBgHover: {\n light: \"#D9F7BE\",\n dark: \"#1D2B00\",\n },\n colorSuccessBorder: {\n light: \"#B7EB8F\",\n dark: \"#274916\",\n },\n colorSuccessBorderHover: {\n light: \"#95DE64\",\n dark: \"#306317\",\n },\n colorSuccessHover: {\n light: \"#73D13D\",\n dark: \"#52C41A\",\n },\n colorSuccessActive: {\n light: \"#389E0D\",\n dark: \"#237804\",\n },\n colorSuccessTextHover: {\n light: \"#237804\",\n dark: \"#52C41A\",\n },\n colorSuccessTextActive: {\n light: \"#092B00\",\n dark: \"#237804\",\n },\n\n // Warning colors\n colorWarning: {\n light: \"#FA8C16\",\n dark: \"#D48806\",\n },\n colorWarningBg: {\n light: \"#FFF7E6\",\n dark: \"#281800\",\n },\n colorWarningBgHover: {\n light: \"#FFE7BA\",\n dark: \"#3D2200\",\n },\n colorWarningBorder: {\n light: \"#FFD591\",\n dark: \"#443B16\",\n },\n colorWarningBorderHover: {\n light: \"#FFC069\",\n dark: \"#594E1A\",\n },\n colorWarningHover: {\n light: \"#FFA940\",\n dark: \"#E8B339\",\n },\n colorWarningActive: {\n light: \"#D46B08\",\n dark: \"#AA7714\",\n },\n colorWarningTextHover: {\n light: \"#AD4E00\",\n dark: \"#E8B339\",\n },\n colorWarningTextActive: {\n light: \"#873800\",\n dark: \"#AA7714\",\n },\n\n // Error colors\n colorError: {\n light: \"#D92D20\",\n dark: \"#CF3D33\",\n },\n colorErrorBg: {\n light: \"#FEF3F2\",\n dark: \"#291414\",\n },\n colorErrorBgHover: {\n light: \"#FEE4E2\",\n dark: \"#411A18\",\n },\n colorErrorBorder: {\n light: \"#FDA29B\",\n dark: \"#562222\",\n },\n colorErrorBorderHover: {\n light: \"#F97066\",\n dark: \"#772A24\",\n },\n colorErrorHover: {\n light: \"#F04438\",\n dark: \"#E5695A\",\n },\n colorErrorActive: {\n light: \"#D92D20\",\n dark: \"#A3332B\",\n },\n colorErrorTextHover: {\n light: \"#F04438\",\n dark: \"#E5695A\",\n },\n colorErrorTextActive: {\n light: \"#D92D20\",\n dark: \"#A3332B\",\n },\n\n // Fill colors\n colorFill: {\n light: \"rgba(0, 0, 0, 0.15)\",\n dark: \"rgba(255, 255, 255, 0.15)\",\n },\n colorFillSecondary: {\n light: \"rgba(0, 0, 0, 0.06)\",\n dark: \"rgba(255, 255, 255, 0.06)\",\n },\n colorFillTertiary: {\n light: \"rgba(0, 0, 0, 0.04)\",\n dark: \"rgba(255, 255, 255, 0.04)\",\n },\n colorFillQuaternary: {\n light: \"rgba(0, 0, 0, 0.02)\",\n dark: \"rgba(255, 255, 255, 0.02)\",\n },\n colorFillAlter: {\n light: \"rgba(0, 0, 0, 0.02)\",\n dark: \"rgba(255, 255, 255, 0.02)\",\n },\n\n // Border colors\n colorBorder: {\n light: \"rgba(0, 0, 0, 0.16)\",\n dark: \"rgba(255, 255, 255, 0.16)\",\n },\n colorBorderSecondary: {\n light: \"rgba(0, 0, 0, 0.06)\",\n dark: \"rgba(255, 255, 255, 0.06)\",\n },\n\n // Icon colors\n colorIcon: {\n light: \"rgba(0, 0, 0, 0.58)\",\n dark: \"rgba(255, 255, 255, 0.58)\",\n },\n colorIconHover: {\n light: \"rgba(0, 0, 0, 0.88)\",\n dark: \"rgba(255, 255, 255, 0.88)\",\n },\n\n // Background colors\n colorBgContainer: {\n light: \"#FFFFFF\",\n dark: \"#26262C\",\n },\n colorBgElevated: {\n light: \"#FFFFFF\",\n dark: \"#2F2F37\",\n },\n colorBgLayout: {\n light: \"#F5F5F5\",\n dark: \"#1A1A1E\",\n },\n colorBgSpotlight: {\n light: \"rgba(0, 0, 0, 0.85)\",\n dark: \"#505D5D\",\n },\n colorBgMask: {\n light: \"rgba(0, 0, 0, 0.45)\",\n dark: \"rgba(0, 0, 0, 0.45)\",\n },\n colorBgBase: {\n light: \"#FFFFFF\",\n dark: \"#13131A\",\n },\n\n // Control\n controlOutline: {\n light: \"rgba(0, 0, 0, 0.12)\",\n dark: \"rgba(255, 255, 255, 0.12)\",\n },\n};\n\nconst sharedTokens: ThemeConfig[\"token\"] = {\n fontFamily: \"var(--ds-inter)\",\n fontFamilyCode: \"var(--ds-roboto-mono)\",\n fontSizeHeading1: 36,\n fontSizeHeading2: 30,\n fontSizeHeading3: 24,\n fontSizeHeading4: 20,\n fontSizeHeading5: 16,\n lineHeightHeading1: 40 / 36,\n lineHeightHeading2: 36 / 30,\n lineHeightHeading3: 32 / 24,\n lineHeightHeading4: 28 / 20,\n lineHeightHeading5: 24 / 16,\n lineHeight: 20 / 14,\n lineHeightLG: 24 / 16,\n lineHeightSM: 16 / 12,\n fontWeightStrong: 600,\n boxShadow:\n \"0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 6px rgba(0, 0, 0, 0.04), 0px 2px 10px rgba(0, 0, 0, 0.04)\",\n boxShadowSecondary:\n \"0px 0px 1px 0px var(--ds-color-border-modal), 0px 3px 6px 1px rgba(0, 0, 0, 0.08), 0px 6px 26px 2px rgba(0, 0, 0, 0.08), 0px 4px 52px 0px rgba(0, 0, 0, 0.05)\",\n colorBgSpotlight: \"rgba(0, 0, 0, 0.85)\",\n};\n\nconst sharedThemeConfig: ThemeConfig = {\n cssVar: true,\n components: {\n Input: {\n // activeShadow: \"\",\n },\n InputNumber: {\n // activeShadow: \"\",\n },\n Button: {\n defaultShadow: undefined,\n primaryShadow: undefined,\n dangerShadow: undefined,\n },\n Select: {},\n Segmented: {\n controlHeightLG: 36,\n controlHeightSM: 24,\n },\n Breadcrumb: {\n separatorColor: \"var(--ds-color-border)\",\n },\n Slider: {\n trackBg: \"var(--ds-color-primary)\",\n trackHoverBg: \"var(--ds-color-primary-hover)\",\n trackBgDisabled: \"var(--ds-color-text-disabled)\",\n railBg: \"var(--ds-control-outline)\",\n railHoverBg: \"var(--ds-color-border)\",\n handleColor: \"var(--ds-color-primary)\",\n handleActiveColor: \"var(--ds-color-primary-active)\",\n handleColorDisabled: \"var(--ds-color-text-disabled)\",\n dotBorderColor: \"var(--ds-color-primary)\",\n dotActiveBorderColor: \"var(--ds-color-primary-active)\",\n },\n Form: {\n itemMarginBottom: 16,\n labelColor: \"var(--ds-color-text)\",\n },\n },\n};\n\n// Export theme configurations\nexport const lightTheme: ThemeConfig = {\n token: {\n ...getTokensByTheme(antdColorTokens, \"light\"),\n ...sharedTokens,\n },\n ...sharedThemeConfig,\n};\n\nexport const darkTheme: ThemeConfig = {\n token: {\n ...getTokensByTheme(antdColorTokens, \"dark\"),\n ...sharedTokens,\n },\n ...sharedThemeConfig,\n};\n"],"names":["antdColorTokens","sharedTokens","sharedThemeConfig","lightTheme","getTokensByTheme","darkTheme"],"mappings":"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"}
1
+ {"version":3,"file":"tokens.js","sources":["../../../src/tokens/and-theme/tokens.ts"],"sourcesContent":["import { type ThemeConfig } from \"antd\";\nimport { getTokensByTheme } from \"../utils\";\nimport { ColorTokens } from \"../types\";\n\n// Convert Figma variables to Ant Design tokens with light/dark variants\nexport const antdColorTokens: ColorTokens = {\n // Text colors\n colorText: {\n light: \"rgba(0, 0, 0, 0.88)\",\n dark: \"rgba(255, 255, 255, 0.85)\",\n },\n colorTextSecondary: {\n light: \"rgba(0, 0, 0, 0.65)\",\n dark: \"rgba(255, 255, 255, 0.65)\",\n },\n colorTextTertiary: {\n light: \"rgba(0, 0, 0, 0.45)\",\n dark: \"rgba(255, 255, 255, 0.45)\",\n },\n colorTextQuaternary: {\n light: \"rgba(0, 0, 0, 0.25)\",\n dark: \"rgba(255, 255, 255, 0.25)\",\n },\n // Primary colors\n colorPrimary: {\n light: \"#175CD3\",\n dark: \"#2E90FA\",\n },\n colorPrimaryBg: {\n light: \"#E9F2FF\",\n dark: \"#152137\",\n },\n colorPrimaryBgHover: {\n light: \"#D1E9FF\",\n dark: \"#112545\",\n },\n colorPrimaryBorder: {\n light: \"#84CAFF\",\n dark: \"#1C3959\",\n },\n colorPrimaryBorderHover: {\n light: \"#53B1FD\",\n dark: \"#204C7C\",\n },\n colorPrimaryHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorPrimaryActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n colorPrimaryTextHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorPrimaryTextActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n\n // Info colors\n colorInfo: {\n light: \"#175CD3\",\n dark: \"#2E90FA\",\n },\n colorInfoBg: {\n light: \"#E9F2FF\",\n dark: \"#152137\",\n },\n colorInfoBgHover: {\n light: \"#D1E9FF\",\n dark: \"#112545\",\n },\n colorInfoBorder: {\n light: \"#84CAFF\",\n dark: \"#1C3959\",\n },\n colorInfoBorderHover: {\n light: \"#53B1FD\",\n dark: \"#204C7C\",\n },\n colorInfoHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorInfoActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n colorInfoTextHover: {\n light: \"#1570EF\",\n dark: \"#50A0E8\",\n },\n colorInfoTextActive: {\n light: \"#175CD3\",\n dark: \"#2565AB\",\n },\n\n // Success colors\n colorSuccess: {\n light: \"#4CB200\",\n dark: \"#389E0D\",\n },\n colorSuccessBg: {\n light: \"#F6FFF0\",\n dark: \"#162100\",\n },\n colorSuccessBgHover: {\n light: \"#D9F7BE\",\n dark: \"#1D2B00\",\n },\n colorSuccessBorder: {\n light: \"#B7EB8F\",\n dark: \"#274916\",\n },\n colorSuccessBorderHover: {\n light: \"#95DE64\",\n dark: \"#306317\",\n },\n colorSuccessHover: {\n light: \"#73D13D\",\n dark: \"#52C41A\",\n },\n colorSuccessActive: {\n light: \"#389E0D\",\n dark: \"#237804\",\n },\n colorSuccessTextHover: {\n light: \"#237804\",\n dark: \"#52C41A\",\n },\n colorSuccessTextActive: {\n light: \"#092B00\",\n dark: \"#237804\",\n },\n\n // Warning colors\n colorWarning: {\n light: \"#FA8C16\",\n dark: \"#D48806\",\n },\n colorWarningBg: {\n light: \"#FFF7E6\",\n dark: \"#281800\",\n },\n colorWarningBgHover: {\n light: \"#FFE7BA\",\n dark: \"#3D2200\",\n },\n colorWarningBorder: {\n light: \"#FFD591\",\n dark: \"#443B16\",\n },\n colorWarningBorderHover: {\n light: \"#FFC069\",\n dark: \"#594E1A\",\n },\n colorWarningHover: {\n light: \"#FFA940\",\n dark: \"#E8B339\",\n },\n colorWarningActive: {\n light: \"#D46B08\",\n dark: \"#AA7714\",\n },\n colorWarningTextHover: {\n light: \"#AD4E00\",\n dark: \"#E8B339\",\n },\n colorWarningTextActive: {\n light: \"#873800\",\n dark: \"#AA7714\",\n },\n\n // Error colors\n colorError: {\n light: \"#D92D20\",\n dark: \"#CF3D33\",\n },\n colorErrorBg: {\n light: \"#FEF3F2\",\n dark: \"#291414\",\n },\n colorErrorBgHover: {\n light: \"#FEE4E2\",\n dark: \"#411A18\",\n },\n colorErrorBorder: {\n light: \"#FDA29B\",\n dark: \"#562222\",\n },\n colorErrorBorderHover: {\n light: \"#F97066\",\n dark: \"#772A24\",\n },\n colorErrorHover: {\n light: \"#F04438\",\n dark: \"#E5695A\",\n },\n colorErrorActive: {\n light: \"#D92D20\",\n dark: \"#A3332B\",\n },\n colorErrorTextHover: {\n light: \"#F04438\",\n dark: \"#E5695A\",\n },\n colorErrorTextActive: {\n light: \"#D92D20\",\n dark: \"#A3332B\",\n },\n\n // Fill colors\n colorFill: {\n light: \"rgba(0, 0, 0, 0.15)\",\n dark: \"rgba(255, 255, 255, 0.15)\",\n },\n colorFillSecondary: {\n light: \"rgba(0, 0, 0, 0.06)\",\n dark: \"rgba(255, 255, 255, 0.06)\",\n },\n colorFillTertiary: {\n light: \"rgba(0, 0, 0, 0.04)\",\n dark: \"rgba(255, 255, 255, 0.04)\",\n },\n colorFillQuaternary: {\n light: \"rgba(0, 0, 0, 0.02)\",\n dark: \"rgba(255, 255, 255, 0.02)\",\n },\n colorFillAlter: {\n light: \"rgba(0, 0, 0, 0.02)\",\n dark: \"rgba(255, 255, 255, 0.02)\",\n },\n\n // Border colors\n colorBorder: {\n light: \"rgba(0, 0, 0, 0.16)\",\n dark: \"rgba(255, 255, 255, 0.16)\",\n },\n colorBorderSecondary: {\n light: \"rgba(0, 0, 0, 0.06)\",\n dark: \"rgba(255, 255, 255, 0.06)\",\n },\n\n // Icon colors\n colorIcon: {\n light: \"rgba(0, 0, 0, 0.58)\",\n dark: \"rgba(255, 255, 255, 0.58)\",\n },\n colorIconHover: {\n light: \"rgba(0, 0, 0, 0.88)\",\n dark: \"rgba(255, 255, 255, 0.88)\",\n },\n\n // Background colors\n colorBgContainer: {\n light: \"#FFFFFF\",\n dark: \"#26262C\",\n },\n colorBgElevated: {\n light: \"#FFFFFF\",\n dark: \"#2F2F37\",\n },\n colorBgLayout: {\n light: \"#F5F5F5\",\n dark: \"#1A1A1E\",\n },\n colorBgSpotlight: {\n light: \"rgba(0, 0, 0, 0.85)\",\n dark: \"#505D5D\",\n },\n colorBgMask: {\n light: \"rgba(0, 0, 0, 0.45)\",\n dark: \"rgba(0, 0, 0, 0.45)\",\n },\n colorBgBase: {\n light: \"#FFFFFF\",\n dark: \"#13131A\",\n },\n\n // Control\n controlOutline: {\n light: \"rgba(0, 0, 0, 0.12)\",\n dark: \"rgba(255, 255, 255, 0.12)\",\n },\n};\n\nconst sharedTokens: ThemeConfig[\"token\"] = {\n fontFamily: \"var(--ds-inter)\",\n fontFamilyCode: \"var(--ds-roboto-mono)\",\n fontSizeHeading1: 36,\n fontSizeHeading2: 30,\n fontSizeHeading3: 24,\n fontSizeHeading4: 20,\n fontSizeHeading5: 16,\n lineHeightHeading1: 40 / 36,\n lineHeightHeading2: 36 / 30,\n lineHeightHeading3: 32 / 24,\n lineHeightHeading4: 28 / 20,\n lineHeightHeading5: 24 / 16,\n lineHeight: 20 / 14,\n lineHeightLG: 24 / 16,\n lineHeightSM: 16 / 12,\n fontWeightStrong: 600,\n boxShadow:\n \"0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 6px rgba(0, 0, 0, 0.04), 0px 2px 10px rgba(0, 0, 0, 0.04)\",\n boxShadowSecondary:\n \"0px 0px 1px 0px var(--ds-modal-color-border), 0px 3px 6px 1px rgba(0, 0, 0, 0.08), 0px 6px 26px 2px rgba(0, 0, 0, 0.08), 0px 4px 52px 0px rgba(0, 0, 0, 0.05)\",\n colorBgSpotlight: \"rgba(0, 0, 0, 0.85)\",\n};\n\nconst sharedThemeConfig: ThemeConfig = {\n cssVar: true,\n components: {\n Input: {\n activeBorderColor: \"var(--ds-input-color-border-active)\",\n activeShadow: \"var(--ds-input-shadow-active)\",\n errorActiveShadow: \"var(--ds-input-shadow-error-active)\",\n warningActiveShadow: \"var(--ds-input-shadow-warning-active)\",\n },\n InputNumber: {\n activeBorderColor: \"var(--ds-input-color-border-active)\",\n activeShadow: \"var(--ds-input-shadow-active)\",\n errorActiveShadow: \"var(--ds-input-shadow-error-active)\",\n warningActiveShadow: \"var(--ds-input-shadow-warning-active)\",\n },\n Button: {\n defaultShadow: undefined,\n primaryShadow: undefined,\n dangerShadow: undefined,\n },\n Select: {},\n Segmented: {\n controlHeightLG: 36,\n controlHeightSM: 24,\n },\n Breadcrumb: {\n separatorColor: \"var(--ds-color-border)\",\n },\n Slider: {\n trackBg: \"var(--ds-color-primary)\",\n trackHoverBg: \"var(--ds-color-primary-hover)\",\n trackBgDisabled: \"var(--ds-color-text-disabled)\",\n railBg: \"var(--ds-control-outline)\",\n railHoverBg: \"var(--ds-color-border)\",\n handleColor: \"var(--ds-color-primary)\",\n handleActiveColor: \"var(--ds-color-primary-active)\",\n handleColorDisabled: \"var(--ds-color-text-disabled)\",\n dotBorderColor: \"var(--ds-color-primary)\",\n dotActiveBorderColor: \"var(--ds-color-primary-active)\",\n },\n Form: {\n itemMarginBottom: 16,\n labelColor: \"var(--ds-color-text)\",\n },\n },\n};\n\n// Export theme configurations\nexport const lightTheme: ThemeConfig = {\n token: {\n ...getTokensByTheme(antdColorTokens, \"light\"),\n ...sharedTokens,\n },\n ...sharedThemeConfig,\n};\n\nexport const darkTheme: ThemeConfig = {\n token: {\n ...getTokensByTheme(antdColorTokens, \"dark\"),\n ...sharedTokens,\n },\n ...sharedThemeConfig,\n};\n"],"names":["antdColorTokens","sharedTokens","sharedThemeConfig","lightTheme","getTokensByTheme","darkTheme"],"mappings":"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"}
@@ -1,6 +1,6 @@
1
- import { resolveColorTokens as a } from "../utils.js";
2
- import { antdColorTokens as r } from "../and-theme/tokens.js";
3
- const o = {
1
+ import { resolveColorTokens as e } from "../../utils.js";
2
+ import { antdColorTokens as a } from "../../and-theme/tokens.js";
3
+ const c = {
4
4
  colorChartsRed300: { light: "#ea7158", dark: "#d63f38" },
5
5
  colorChartsRed400: { light: "#dc5032", dark: "#ed5958" },
6
6
  colorChartsRed500: { light: "#d13313", dark: "#fe6e73" },
@@ -132,11 +132,11 @@ const o = {
132
132
  // colorChartsLineGrid: { light: "{colorGrey300}", dark: "{colorGrey600}" },
133
133
  // colorChartsLineTick: { light: "{colorGrey300}", dark: "{colorGrey600}" },
134
134
  // colorChartsLineAxis: { light: "{colorGrey300}", dark: "{colorGrey600}" },
135
- colorChartsStatusNeutral: r.colorTextSecondary,
136
- colorChartsThresholdNegative: r.colorError,
137
- colorChartsThresholdPositive: r.colorSuccess,
138
- colorChartsThresholdInfo: r.colorInfo,
139
- colorChartsThresholdNeutral: r.colorTextTertiary,
135
+ colorChartsStatusNeutral: a.colorTextSecondary,
136
+ colorChartsThresholdNegative: a.colorError,
137
+ colorChartsThresholdPositive: a.colorSuccess,
138
+ colorChartsThresholdInfo: a.colorInfo,
139
+ colorChartsThresholdNeutral: a.colorTextTertiary,
140
140
  colorChartsLineGrid: {
141
141
  light: "#DADADC",
142
142
  dark: "#434347"
@@ -200,9 +200,19 @@ const o = {
200
200
  colorChartsPaletteCategorical48: "{colorChartsTeal1000}",
201
201
  colorChartsPaletteCategorical49: "{colorChartsPurple1200}",
202
202
  colorChartsPaletteCategorical50: "{colorChartsOrange1000}"
203
- }, e = a(o);
203
+ }, o = e(c), t = Object.keys(o).filter(
204
+ (r) => r.startsWith("colorChartsPaletteCategorical")
205
+ ), s = t.reduce(
206
+ (r, l) => (r[l] = o[l], r),
207
+ {}
208
+ ), i = t.map(
209
+ (r) => o[r]
210
+ );
204
211
  export {
205
- e as chartColorTokens,
206
- o as rawChartColorTokens
212
+ t as categoricalChartColorKeys,
213
+ s as categoricalChartColorTokens,
214
+ i as categoricalChartsColors,
215
+ o as chartColorTokens,
216
+ c as rawChartColorTokens
207
217
  };
208
- //# sourceMappingURL=tokens.js.map
218
+ //# sourceMappingURL=cloudscape.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cloudscape.js","sources":["../../../../src/tokens/charts/palettes/cloudscape.ts"],"sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { resolveColorTokens } from \"../../utils\";\nimport { antdColorTokens } from \"../../and-theme\";\nimport { type ColorTokenValue } from \"../../types\";\n\nexport const rawChartColorTokens = {\n colorChartsRed300: { light: \"#ea7158\", dark: \"#d63f38\" },\n colorChartsRed400: { light: \"#dc5032\", dark: \"#ed5958\" },\n colorChartsRed500: { light: \"#d13313\", dark: \"#fe6e73\" },\n colorChartsRed600: { light: \"#ba2e0f\", dark: \"#ff8a8a\" },\n colorChartsRed700: { light: \"#a82a0c\", dark: \"#ffa09e\" },\n colorChartsRed800: { light: \"#972709\", dark: \"#ffb3b0\" },\n colorChartsRed900: { light: \"#892407\", dark: \"#ffc4c0\" },\n colorChartsRed1000: { light: \"#7d2105\", dark: \"#ffd2cf\" },\n colorChartsRed1100: { light: \"#721e03\", dark: \"#ffe0dd\" },\n colorChartsRed1200: { light: \"#671c00\", dark: \"#ffecea\" },\n colorChartsOrange300: { light: \"#e07941\", dark: \"#c55305\" },\n colorChartsOrange400: { light: \"#cc5f21\", dark: \"#de6923\" },\n colorChartsOrange500: { light: \"#bc4d01\", dark: \"#f27c36\" },\n colorChartsOrange600: { light: \"#a84401\", dark: \"#f89256\" },\n colorChartsOrange700: { light: \"#983c02\", dark: \"#fca572\" },\n colorChartsOrange800: { light: \"#8a3603\", dark: \"#ffb68b\" },\n colorChartsOrange900: { light: \"#7e3103\", dark: \"#ffc6a4\" },\n colorChartsOrange1000: { light: \"#732c02\", dark: \"#ffd4bb\" },\n colorChartsOrange1100: { light: \"#692801\", dark: \"#ffe1cf\" },\n colorChartsOrange1200: { light: \"#602400\", dark: \"#ffede2\" },\n colorChartsYellow300: { light: \"#b2911c\", dark: \"#977001\" },\n colorChartsYellow400: { light: \"#9c7b0b\", dark: \"#b08400\" },\n colorChartsYellow500: { light: \"#8a6b05\", dark: \"#c59600\" },\n colorChartsYellow600: { light: \"#7b5f04\", dark: \"#d3a61c\" },\n colorChartsYellow700: { light: \"#6f5504\", dark: \"#dfb52c\" },\n colorChartsYellow800: { light: \"#654d03\", dark: \"#eac33a\" },\n colorChartsYellow900: { light: \"#5d4503\", dark: \"#f1cf65\" },\n colorChartsYellow1000: { light: \"#553f03\", dark: \"#f7db8a\" },\n colorChartsYellow1100: { light: \"#4d3901\", dark: \"#fce5a8\" },\n colorChartsYellow1200: { light: \"#483300\", dark: \"#ffefc9\" },\n colorChartsGreen300: { light: \"#67a353\", dark: \"#48851a\" },\n colorChartsGreen400: { light: \"#41902c\", dark: \"#5a9b29\" },\n colorChartsGreen500: { light: \"#1f8104\", dark: \"#69ae34\" },\n colorChartsGreen600: { light: \"#1a7302\", dark: \"#7dbd4c\" },\n colorChartsGreen700: { light: \"#176702\", dark: \"#8fca61\" },\n colorChartsGreen800: { light: \"#145d02\", dark: \"#9fd673\" },\n colorChartsGreen900: { light: \"#125502\", dark: \"#b2df8d\" },\n colorChartsGreen1000: { light: \"#104d01\", dark: \"#c5e7a8\" },\n colorChartsGreen1100: { light: \"#0f4601\", dark: \"#d5efbe\" },\n colorChartsGreen1200: { light: \"#0d4000\", dark: \"#e4f7d5\" },\n colorChartsTeal300: { light: \"#2ea597\", dark: \"#018977\" },\n colorChartsTeal400: { light: \"#1c8e81\", dark: \"#009d89\" },\n colorChartsTeal500: { light: \"#0d7d70\", dark: \"#00b09b\" },\n colorChartsTeal600: { light: \"#096f64\", dark: \"#40bfa9\" },\n colorChartsTeal700: { light: \"#06645a\", dark: \"#5fccb7\" },\n colorChartsTeal800: { light: \"#045b52\", dark: \"#77d7c3\" },\n colorChartsTeal900: { light: \"#03524a\", dark: \"#94e0d0\" },\n colorChartsTeal1000: { light: \"#014b44\", dark: \"#ace9db\" },\n colorChartsTeal1100: { light: \"#01443e\", dark: \"#c2f0e6\" },\n colorChartsTeal1200: { light: \"#003e38\", dark: \"#d7f7f0\" },\n colorChartsBlue1300: { light: \"#529ccb\", dark: \"#00819c\" },\n colorChartsBlue1400: { light: \"#3184c2\", dark: \"#0497ba\" },\n colorChartsBlue1500: { light: \"#0273bb\", dark: \"#08aad2\" },\n colorChartsBlue1600: { light: \"#0166ab\", dark: \"#44b9dd\" },\n colorChartsBlue1700: { light: \"#015b9d\", dark: \"#63c6e7\" },\n colorChartsBlue1800: { light: \"#015292\", dark: \"#79d2f0\" },\n colorChartsBlue1900: { light: \"#014a87\", dark: \"#98dcf5\" },\n colorChartsBlue11000: { light: \"#01437d\", dark: \"#b3e4f8\" },\n colorChartsBlue11100: { light: \"#003c75\", dark: \"#caedfc\" },\n colorChartsBlue11200: { light: \"#00366d\", dark: \"#ddf4ff\" },\n colorChartsBlue2300: { light: \"#688ae8\", dark: \"#486de8\" },\n colorChartsBlue2400: { light: \"#5978e3\", dark: \"#6384f5\" },\n colorChartsBlue2500: { light: \"#4066df\", dark: \"#7698fe\" },\n colorChartsBlue2600: { light: \"#3759ce\", dark: \"#8ea9ff\" },\n colorChartsBlue2700: { light: \"#314fbf\", dark: \"#a2b8ff\" },\n colorChartsBlue2800: { light: \"#2c46b1\", dark: \"#b1c5ff\" },\n colorChartsBlue2900: { light: \"#273ea5\", dark: \"#c3d1ff\" },\n colorChartsBlue21000: { light: \"#23379b\", dark: \"#d2dcff\" },\n colorChartsBlue21100: { light: \"#1f3191\", dark: \"#dfe6ff\" },\n colorChartsBlue21200: { light: \"#1b2b88\", dark: \"#ecf0ff\" },\n colorChartsPurple300: { light: \"#a783e1\", dark: \"#8d59de\" },\n colorChartsPurple400: { light: \"#9469d6\", dark: \"#a173ea\" },\n colorChartsPurple500: { light: \"#8456ce\", dark: \"#b088f5\" },\n colorChartsPurple600: { light: \"#7749bf\", dark: \"#bf9bf9\" },\n colorChartsPurple700: { light: \"#6b40b2\", dark: \"#cbabfc\" },\n colorChartsPurple800: { light: \"#6237a7\", dark: \"#d6baff\" },\n colorChartsPurple900: { light: \"#59309d\", dark: \"#dfc8ff\" },\n colorChartsPurple1000: { light: \"#512994\", dark: \"#e8d5ff\" },\n colorChartsPurple1100: { light: \"#4a238b\", dark: \"#efe2ff\" },\n colorChartsPurple1200: { light: \"#431d84\", dark: \"#f5edff\" },\n colorChartsPink300: { light: \"#da7596\", dark: \"#c64a70\" },\n colorChartsPink400: { light: \"#ce567c\", dark: \"#d56889\" },\n colorChartsPink500: { light: \"#c33d69\", dark: \"#e07f9d\" },\n colorChartsPink600: { light: \"#b1325c\", dark: \"#eb92ad\" },\n colorChartsPink700: { light: \"#a32952\", dark: \"#f5a2bb\" },\n colorChartsPink800: { light: \"#962249\", dark: \"#ffb0c8\" },\n colorChartsPink900: { light: \"#8b1b42\", dark: \"#ffc1d4\" },\n colorChartsPink1000: { light: \"#81143b\", dark: \"#ffd1de\" },\n colorChartsPink1100: { light: \"#780d35\", dark: \"#ffdfe8\" },\n colorChartsPink1200: { light: \"#6f062f\", dark: \"#ffecf1\" },\n colorChartsStatusCritical: {\n light: \"{colorChartsRed1000}\",\n dark: \"{colorChartsRed300}\",\n },\n colorChartsStatusHigh: {\n light: \"{colorChartsRed600}\",\n dark: \"{colorChartsRed500}\",\n },\n colorChartsStatusMedium: {\n light: \"{colorChartsOrange400}\",\n dark: \"{colorChartsOrange600}\",\n },\n colorChartsStatusLow: {\n light: \"{colorChartsYellow300}\",\n dark: \"{colorChartsYellow700}\",\n },\n colorChartsStatusPositive: {\n light: \"{colorChartsGreen300}\",\n dark: \"{colorChartsGreen500}\",\n },\n colorChartsStatusInfo: {\n light: \"{colorChartsBlue1400}\",\n dark: \"{colorChartsBlue1500}\",\n },\n // colorChartsStatusNeutral: \"{colorGrey500}\",\n // colorChartsThresholdNegative: {\n // light: \"{colorRed600}\",\n // dark: \"{colorRed500}\",\n // },\n // colorChartsThresholdPositive: {\n // light: \"{colorGreen600}\",\n // dark: \"{colorGreen500}\",\n // },\n // colorChartsThresholdInfo: { light: \"{colorBlue600}\", dark: \"{colorBlue400}\" },\n // colorChartsThresholdNeutral: {\n // light: \"{colorGrey550}\",\n // dark: \"{colorGrey450}\",\n // },\n // colorChartsLineGrid: { light: \"{colorGrey300}\", dark: \"{colorGrey600}\" },\n // colorChartsLineTick: { light: \"{colorGrey300}\", dark: \"{colorGrey600}\" },\n // colorChartsLineAxis: { light: \"{colorGrey300}\", dark: \"{colorGrey600}\" },\n colorChartsStatusNeutral: antdColorTokens.colorTextSecondary,\n colorChartsThresholdNegative: antdColorTokens.colorError,\n colorChartsThresholdPositive: antdColorTokens.colorSuccess,\n colorChartsThresholdInfo: antdColorTokens.colorInfo,\n colorChartsThresholdNeutral: antdColorTokens.colorTextTertiary,\n colorChartsLineGrid: {\n light: \"#DADADC\",\n dark: \"#434347\",\n },\n colorChartsLineTick: \"{colorChartsLineGrid}\",\n colorChartsLineAxis: {\n light: \"#C8C8CB\",\n dark: \"#73737A\",\n },\n colorChartsLabelAxis: {\n light: \"#7C7C83\",\n dark: \"#898990\",\n },\n colorChartsPaletteCategorical1: \"{colorChartsBlue2300}\",\n colorChartsPaletteCategorical2: \"{colorChartsPink500}\",\n colorChartsPaletteCategorical3: \"{colorChartsTeal300}\",\n colorChartsPaletteCategorical4: \"{colorChartsPurple500}\",\n colorChartsPaletteCategorical5: \"{colorChartsOrange300}\",\n colorChartsPaletteCategorical6: \"{colorChartsBlue2600}\",\n colorChartsPaletteCategorical7: \"{colorChartsPink800}\",\n colorChartsPaletteCategorical8: \"{colorChartsTeal600}\",\n colorChartsPaletteCategorical9: \"{colorChartsPurple800}\",\n colorChartsPaletteCategorical10: \"{colorChartsOrange600}\",\n colorChartsPaletteCategorical11: \"{colorChartsBlue2900}\",\n colorChartsPaletteCategorical12: \"{colorChartsPink1100}\",\n colorChartsPaletteCategorical13: \"{colorChartsTeal900}\",\n colorChartsPaletteCategorical14: \"{colorChartsPurple1100}\",\n colorChartsPaletteCategorical15: \"{colorChartsOrange900}\",\n colorChartsPaletteCategorical16: \"{colorChartsBlue21200}\",\n colorChartsPaletteCategorical17: \"{colorChartsPink400}\",\n colorChartsPaletteCategorical18: \"{colorChartsTeal1200}\",\n colorChartsPaletteCategorical19: \"{colorChartsPurple400}\",\n colorChartsPaletteCategorical20: \"{colorChartsOrange1200}\",\n colorChartsPaletteCategorical21: \"{colorChartsBlue2500}\",\n colorChartsPaletteCategorical22: \"{colorChartsPink700}\",\n colorChartsPaletteCategorical23: \"{colorChartsTeal500}\",\n colorChartsPaletteCategorical24: \"{colorChartsPurple700}\",\n colorChartsPaletteCategorical25: \"{colorChartsOrange500}\",\n colorChartsPaletteCategorical26: \"{colorChartsBlue2800}\",\n colorChartsPaletteCategorical27: \"{colorChartsPink1000}\",\n colorChartsPaletteCategorical28: \"{colorChartsTeal800}\",\n colorChartsPaletteCategorical29: \"{colorChartsPurple1000}\",\n colorChartsPaletteCategorical30: \"{colorChartsOrange800}\",\n colorChartsPaletteCategorical31: \"{colorChartsBlue21100}\",\n colorChartsPaletteCategorical32: \"{colorChartsPink300}\",\n colorChartsPaletteCategorical33: \"{colorChartsTeal1100}\",\n colorChartsPaletteCategorical34: \"{colorChartsPurple300}\",\n colorChartsPaletteCategorical35: \"{colorChartsOrange1100}\",\n colorChartsPaletteCategorical36: \"{colorChartsBlue2400}\",\n colorChartsPaletteCategorical37: \"{colorChartsPink600}\",\n colorChartsPaletteCategorical38: \"{colorChartsTeal400}\",\n colorChartsPaletteCategorical39: \"{colorChartsPurple600}\",\n colorChartsPaletteCategorical40: \"{colorChartsOrange400}\",\n colorChartsPaletteCategorical41: \"{colorChartsBlue2700}\",\n colorChartsPaletteCategorical42: \"{colorChartsPink900}\",\n colorChartsPaletteCategorical43: \"{colorChartsTeal700}\",\n colorChartsPaletteCategorical44: \"{colorChartsPurple900}\",\n colorChartsPaletteCategorical45: \"{colorChartsOrange700}\",\n colorChartsPaletteCategorical46: \"{colorChartsBlue21000}\",\n colorChartsPaletteCategorical47: \"{colorChartsPink1200}\",\n colorChartsPaletteCategorical48: \"{colorChartsTeal1000}\",\n colorChartsPaletteCategorical49: \"{colorChartsPurple1200}\",\n colorChartsPaletteCategorical50: \"{colorChartsOrange1000}\",\n};\n\nexport const chartColorTokens = resolveColorTokens(rawChartColorTokens);\n\n// Categorical palette tokens for easy access\nexport const categoricalChartColorKeys = Object.keys(chartColorTokens).filter(\n (key) => key.startsWith(\"colorChartsPaletteCategorical\")\n) as Array<keyof typeof chartColorTokens>;\n\nexport const categoricalChartColorTokens = categoricalChartColorKeys.reduce(\n (acc, key) => {\n acc[key] = chartColorTokens[key];\n return acc;\n },\n {} as Record<keyof typeof chartColorTokens, ColorTokenValue>\n);\n\nexport const categoricalChartsColors = categoricalChartColorKeys.map(\n (key) => chartColorTokens[key]\n);\n"],"names":["rawChartColorTokens","antdColorTokens","chartColorTokens","resolveColorTokens","categoricalChartColorKeys","key","categoricalChartColorTokens","acc","categoricalChartsColors"],"mappings":"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"}