@mich8060/unified-design-system 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.lib.md +103 -0
- package/README.md +265 -0
- package/dist/LICENSE +21 -0
- package/dist/README.md +103 -0
- package/dist/package.json +49 -0
- package/dist/styles.css +20544 -0
- package/dist/uds-components.es.js +67031 -0
- package/dist/uds-components.es.js.map +1 -0
- package/dist/uds-components.umd.js +67048 -0
- package/dist/uds-components.umd.js.map +1 -0
- package/package.json +158 -0
- package/src/styles/_typography.scss +932 -0
- package/src/styles/_utilities.scss +3738 -0
- package/src/styles/_variables.scss +620 -0
- package/src/styles/prism-custom.css +204 -0
- package/src/styles/prism-custom.scss +205 -0
- package/src/styles/tokens.css +1463 -0
- package/src/styles/tokens.scss +1116 -0
- package/src/ui/Accordion/Accordion.ai.md +69 -0
- package/src/ui/Accordion/Accordion.scss +87 -0
- package/src/ui/Accordion/Accordion.spec.ts +25 -0
- package/src/ui/Accordion/Accordion.stories.tsx +46 -0
- package/src/ui/Accordion/Accordion.test.tsx +54 -0
- package/src/ui/Accordion/Accordion.tsx +73 -0
- package/src/ui/Accordion/Accordion.types.ts +15 -0
- package/src/ui/Accordion/index.js +1 -0
- package/src/ui/ActionMenu/ActionMenu.ai.md +106 -0
- package/src/ui/ActionMenu/ActionMenu.jsx +437 -0
- package/src/ui/ActionMenu/ActionMenu.scss +252 -0
- package/src/ui/ActionMenu/ActionMenu.spec.ts +12 -0
- package/src/ui/ActionMenu/ActionMenu.stories.jsx +14 -0
- package/src/ui/ActionMenu/ActionMenu.stories.tsx +124 -0
- package/src/ui/ActionMenu/ActionMenu.test.tsx +1 -0
- package/src/ui/ActionMenu/ActionMenu.tsx +6 -0
- package/src/ui/ActionMenu/ActionMenu.types.ts +3 -0
- package/src/ui/ActionMenu/index.js +1 -0
- package/src/ui/Avatar/Avatar.ai.md +54 -0
- package/src/ui/Avatar/Avatar.jsx +49 -0
- package/src/ui/Avatar/Avatar.scss +87 -0
- package/src/ui/Avatar/Avatar.spec.ts +12 -0
- package/src/ui/Avatar/Avatar.stories.jsx +14 -0
- package/src/ui/Avatar/Avatar.stories.tsx +14 -0
- package/src/ui/Avatar/Avatar.test.tsx +1 -0
- package/src/ui/Avatar/Avatar.tsx +6 -0
- package/src/ui/Avatar/Avatar.types.ts +3 -0
- package/src/ui/Avatar/index.js +1 -0
- package/src/ui/Badge/Badge.ai.md +37 -0
- package/src/ui/Badge/Badge.jsx +64 -0
- package/src/ui/Badge/Badge.scss +84 -0
- package/src/ui/Badge/Badge.spec.ts +12 -0
- package/src/ui/Badge/Badge.stories.jsx +14 -0
- package/src/ui/Badge/Badge.stories.tsx +14 -0
- package/src/ui/Badge/Badge.test.tsx +1 -0
- package/src/ui/Badge/Badge.tsx +6 -0
- package/src/ui/Badge/Badge.types.ts +3 -0
- package/src/ui/Badge/index.js +1 -0
- package/src/ui/Branding/Branding.ai.md +81 -0
- package/src/ui/Branding/Branding.jsx +127 -0
- package/src/ui/Branding/Branding.scss +57 -0
- package/src/ui/Branding/Branding.spec.ts +12 -0
- package/src/ui/Branding/Branding.stories.jsx +14 -0
- package/src/ui/Branding/Branding.stories.tsx +14 -0
- package/src/ui/Branding/Branding.test.tsx +1 -0
- package/src/ui/Branding/Branding.tsx +6 -0
- package/src/ui/Branding/Branding.types.ts +3 -0
- package/src/ui/Branding/index.js +1 -0
- package/src/ui/Breadcrumb/Breadcrumb.ai.md +50 -0
- package/src/ui/Breadcrumb/Breadcrumb.jsx +167 -0
- package/src/ui/Breadcrumb/Breadcrumb.scss +46 -0
- package/src/ui/Breadcrumb/Breadcrumb.spec.ts +12 -0
- package/src/ui/Breadcrumb/Breadcrumb.stories.jsx +26 -0
- package/src/ui/Breadcrumb/Breadcrumb.stories.tsx +14 -0
- package/src/ui/Breadcrumb/Breadcrumb.test.tsx +1 -0
- package/src/ui/Breadcrumb/Breadcrumb.tsx +6 -0
- package/src/ui/Breadcrumb/Breadcrumb.types.ts +3 -0
- package/src/ui/Breadcrumb/index.js +2 -0
- package/src/ui/Button/Button.ai.md +122 -0
- package/src/ui/Button/Button.figma.tsx +49 -0
- package/src/ui/Button/Button.scss +188 -0
- package/src/ui/Button/Button.spec.ts +52 -0
- package/src/ui/Button/Button.stories.tsx +199 -0
- package/src/ui/Button/Button.test.tsx +85 -0
- package/src/ui/Button/Button.tsx +131 -0
- package/src/ui/Button/Button.types.ts +32 -0
- package/src/ui/Button/index.js +1 -0
- package/src/ui/Calendar/Calendar.ai.md +151 -0
- package/src/ui/Calendar/Calendar.jsx +504 -0
- package/src/ui/Calendar/Calendar.scss +451 -0
- package/src/ui/Calendar/Calendar.spec.ts +12 -0
- package/src/ui/Calendar/Calendar.stories.jsx +14 -0
- package/src/ui/Calendar/Calendar.stories.tsx +14 -0
- package/src/ui/Calendar/Calendar.test.tsx +1 -0
- package/src/ui/Calendar/Calendar.tsx +6 -0
- package/src/ui/Calendar/Calendar.types.ts +3 -0
- package/src/ui/Calendar/index.js +1 -0
- package/src/ui/Card/Card.ai.md +41 -0
- package/src/ui/Card/Card.jsx +25 -0
- package/src/ui/Card/Card.scss +47 -0
- package/src/ui/Card/Card.spec.ts +12 -0
- package/src/ui/Card/Card.stories.jsx +28 -0
- package/src/ui/Card/Card.stories.tsx +14 -0
- package/src/ui/Card/Card.test.tsx +1 -0
- package/src/ui/Card/Card.tsx +6 -0
- package/src/ui/Card/Card.types.ts +3 -0
- package/src/ui/Card/index.js +1 -0
- package/src/ui/Checkbox/Checkbox.ai.md +50 -0
- package/src/ui/Checkbox/Checkbox.jsx +73 -0
- package/src/ui/Checkbox/Checkbox.scss +115 -0
- package/src/ui/Checkbox/Checkbox.spec.ts +12 -0
- package/src/ui/Checkbox/Checkbox.stories.jsx +14 -0
- package/src/ui/Checkbox/Checkbox.stories.tsx +14 -0
- package/src/ui/Checkbox/Checkbox.test.tsx +1 -0
- package/src/ui/Checkbox/Checkbox.tsx +6 -0
- package/src/ui/Checkbox/Checkbox.types.ts +3 -0
- package/src/ui/Checkbox/index.js +1 -0
- package/src/ui/Chip/Chip.ai.md +43 -0
- package/src/ui/Chip/Chip.jsx +102 -0
- package/src/ui/Chip/Chip.scss +118 -0
- package/src/ui/Chip/Chip.spec.ts +12 -0
- package/src/ui/Chip/Chip.stories.jsx +14 -0
- package/src/ui/Chip/Chip.stories.tsx +14 -0
- package/src/ui/Chip/Chip.test.tsx +1 -0
- package/src/ui/Chip/Chip.tsx +6 -0
- package/src/ui/Chip/Chip.types.ts +3 -0
- package/src/ui/Chip/index.js +1 -0
- package/src/ui/Datepicker/Datepicker.ai.md +45 -0
- package/src/ui/Datepicker/Datepicker.jsx +330 -0
- package/src/ui/Datepicker/Datepicker.scss +206 -0
- package/src/ui/Datepicker/Datepicker.spec.ts +12 -0
- package/src/ui/Datepicker/Datepicker.stories.jsx +14 -0
- package/src/ui/Datepicker/Datepicker.stories.tsx +14 -0
- package/src/ui/Datepicker/Datepicker.test.tsx +1 -0
- package/src/ui/Datepicker/Datepicker.tsx +6 -0
- package/src/ui/Datepicker/Datepicker.types.ts +3 -0
- package/src/ui/Datepicker/index.js +2 -0
- package/src/ui/Divider/Divider.ai.md +34 -0
- package/src/ui/Divider/Divider.jsx +89 -0
- package/src/ui/Divider/Divider.scss +116 -0
- package/src/ui/Divider/Divider.spec.ts +12 -0
- package/src/ui/Divider/Divider.stories.jsx +14 -0
- package/src/ui/Divider/Divider.stories.tsx +14 -0
- package/src/ui/Divider/Divider.test.tsx +1 -0
- package/src/ui/Divider/Divider.tsx +6 -0
- package/src/ui/Divider/Divider.types.ts +3 -0
- package/src/ui/Divider/index.js +1 -0
- package/src/ui/DotStatus/DotStatus.ai.md +36 -0
- package/src/ui/DotStatus/DotStatus.jsx +64 -0
- package/src/ui/DotStatus/DotStatus.scss +87 -0
- package/src/ui/DotStatus/DotStatus.spec.ts +12 -0
- package/src/ui/DotStatus/DotStatus.stories.jsx +14 -0
- package/src/ui/DotStatus/DotStatus.stories.tsx +14 -0
- package/src/ui/DotStatus/DotStatus.test.tsx +1 -0
- package/src/ui/DotStatus/DotStatus.tsx +6 -0
- package/src/ui/DotStatus/DotStatus.types.ts +3 -0
- package/src/ui/DotStatus/index.js +1 -0
- package/src/ui/Dropdown/Dropdown.ai.md +118 -0
- package/src/ui/Dropdown/Dropdown.scss +129 -0
- package/src/ui/Dropdown/Dropdown.spec.ts +54 -0
- package/src/ui/Dropdown/Dropdown.stories.tsx +59 -0
- package/src/ui/Dropdown/Dropdown.test.tsx +37 -0
- package/src/ui/Dropdown/Dropdown.tsx +119 -0
- package/src/ui/Dropdown/Dropdown.types.ts +25 -0
- package/src/ui/Dropdown/index.js +1 -0
- package/src/ui/EventCard/EventCard.ai.md +101 -0
- package/src/ui/EventCard/EventCard.jsx +92 -0
- package/src/ui/EventCard/EventCard.scss +186 -0
- package/src/ui/EventCard/EventCard.spec.ts +12 -0
- package/src/ui/EventCard/EventCard.stories.jsx +14 -0
- package/src/ui/EventCard/EventCard.stories.tsx +14 -0
- package/src/ui/EventCard/EventCard.test.tsx +1 -0
- package/src/ui/EventCard/EventCard.tsx +6 -0
- package/src/ui/EventCard/EventCard.types.ts +3 -0
- package/src/ui/EventCard/index.js +1 -0
- package/src/ui/Field/Field.ai.md +69 -0
- package/src/ui/Field/Field.jsx +89 -0
- package/src/ui/Field/Field.scss +76 -0
- package/src/ui/Field/Field.spec.ts +12 -0
- package/src/ui/Field/Field.stories.jsx +14 -0
- package/src/ui/Field/Field.stories.tsx +14 -0
- package/src/ui/Field/Field.test.tsx +1 -0
- package/src/ui/Field/Field.tsx +6 -0
- package/src/ui/Field/Field.types.ts +3 -0
- package/src/ui/Field/index.js +1 -0
- package/src/ui/FileUpload/FileUpload.ai.md +38 -0
- package/src/ui/FileUpload/FileUpload.figma.tsx +28 -0
- package/src/ui/FileUpload/FileUpload.jsx +153 -0
- package/src/ui/FileUpload/FileUpload.scss +78 -0
- package/src/ui/FileUpload/FileUpload.spec.ts +12 -0
- package/src/ui/FileUpload/FileUpload.stories.jsx +14 -0
- package/src/ui/FileUpload/FileUpload.stories.tsx +14 -0
- package/src/ui/FileUpload/FileUpload.test.tsx +1 -0
- package/src/ui/FileUpload/FileUpload.tsx +6 -0
- package/src/ui/FileUpload/FileUpload.types.ts +3 -0
- package/src/ui/FileUpload/index.js +2 -0
- package/src/ui/Flex/Flex.ai.md +130 -0
- package/src/ui/Flex/Flex.jsx +53 -0
- package/src/ui/Flex/Flex.scss +119 -0
- package/src/ui/Flex/Flex.spec.ts +12 -0
- package/src/ui/Flex/Flex.stories.jsx +14 -0
- package/src/ui/Flex/Flex.stories.tsx +14 -0
- package/src/ui/Flex/Flex.test.tsx +1 -0
- package/src/ui/Flex/Flex.tsx +6 -0
- package/src/ui/Flex/Flex.types.ts +3 -0
- package/src/ui/Flex/index.js +1 -0
- package/src/ui/Icon/Icon.ai.md +46 -0
- package/src/ui/Icon/Icon.figma.tsx +22 -0
- package/src/ui/Icon/Icon.jsx +47 -0
- package/src/ui/Icon/Icon.scss +1 -0
- package/src/ui/Icon/Icon.spec.ts +12 -0
- package/src/ui/Icon/Icon.stories.jsx +14 -0
- package/src/ui/Icon/Icon.stories.tsx +14 -0
- package/src/ui/Icon/Icon.test.tsx +1 -0
- package/src/ui/Icon/Icon.tsx +6 -0
- package/src/ui/Icon/Icon.types.ts +3 -0
- package/src/ui/Icon/index.js +1 -0
- package/src/ui/ImageAspect/ImageAspect.ai.md +37 -0
- package/src/ui/ImageAspect/ImageAspect.jsx +56 -0
- package/src/ui/ImageAspect/ImageAspect.scss +62 -0
- package/src/ui/ImageAspect/ImageAspect.spec.ts +12 -0
- package/src/ui/ImageAspect/ImageAspect.stories.jsx +14 -0
- package/src/ui/ImageAspect/ImageAspect.stories.tsx +14 -0
- package/src/ui/ImageAspect/ImageAspect.test.tsx +1 -0
- package/src/ui/ImageAspect/ImageAspect.tsx +6 -0
- package/src/ui/ImageAspect/ImageAspect.types.ts +3 -0
- package/src/ui/ImageAspect/index.js +1 -0
- package/src/ui/Input/Input.ai.md +89 -0
- package/src/ui/Input/Input.figma.tsx +35 -0
- package/src/ui/Input/Input.scss +126 -0
- package/src/ui/Input/Input.spec.ts +54 -0
- package/src/ui/Input/Input.stories.tsx +72 -0
- package/src/ui/Input/Input.test.tsx +70 -0
- package/src/ui/Input/Input.tsx +91 -0
- package/src/ui/Input/Input.types.ts +22 -0
- package/src/ui/Input/index.js +2 -0
- package/src/ui/Key/Key.ai.md +31 -0
- package/src/ui/Key/Key.jsx +37 -0
- package/src/ui/Key/Key.scss +31 -0
- package/src/ui/Key/Key.spec.ts +12 -0
- package/src/ui/Key/Key.stories.jsx +14 -0
- package/src/ui/Key/Key.stories.tsx +14 -0
- package/src/ui/Key/Key.test.tsx +1 -0
- package/src/ui/Key/Key.tsx +6 -0
- package/src/ui/Key/Key.types.ts +3 -0
- package/src/ui/Key/index.js +1 -0
- package/src/ui/Menu/Menu.jsx +232 -0
- package/src/ui/Menu/Menu.scss +370 -0
- package/src/ui/Menu/Menu.spec.ts +12 -0
- package/src/ui/Menu/Menu.stories.jsx +41 -0
- package/src/ui/Menu/Menu.stories.tsx +14 -0
- package/src/ui/Menu/Menu.test.tsx +1 -0
- package/src/ui/Menu/Menu.tsx +6 -0
- package/src/ui/Menu/Menu.types.ts +3 -0
- package/src/ui/Menu/index.js +1 -0
- package/src/ui/MicroCalendar/MicroCalendar.ai.md +35 -0
- package/src/ui/MicroCalendar/MicroCalendar.jsx +393 -0
- package/src/ui/MicroCalendar/MicroCalendar.scss +289 -0
- package/src/ui/MicroCalendar/MicroCalendar.spec.ts +12 -0
- package/src/ui/MicroCalendar/MicroCalendar.stories.jsx +14 -0
- package/src/ui/MicroCalendar/MicroCalendar.stories.tsx +14 -0
- package/src/ui/MicroCalendar/MicroCalendar.test.tsx +1 -0
- package/src/ui/MicroCalendar/MicroCalendar.tsx +6 -0
- package/src/ui/MicroCalendar/MicroCalendar.types.ts +3 -0
- package/src/ui/MicroCalendar/index.js +1 -0
- package/src/ui/Modal/Modal.ai.md +150 -0
- package/src/ui/Modal/Modal.jsx +173 -0
- package/src/ui/Modal/Modal.scss +179 -0
- package/src/ui/Modal/Modal.spec.ts +12 -0
- package/src/ui/Modal/Modal.stories.jsx +14 -0
- package/src/ui/Modal/Modal.stories.tsx +14 -0
- package/src/ui/Modal/Modal.test.tsx +1 -0
- package/src/ui/Modal/Modal.tsx +6 -0
- package/src/ui/Modal/Modal.types.ts +3 -0
- package/src/ui/Modal/index.js +1 -0
- package/src/ui/Pagination/Pagination.ai.md +30 -0
- package/src/ui/Pagination/Pagination.jsx +237 -0
- package/src/ui/Pagination/Pagination.scss +182 -0
- package/src/ui/Pagination/Pagination.spec.ts +12 -0
- package/src/ui/Pagination/Pagination.stories.jsx +14 -0
- package/src/ui/Pagination/Pagination.stories.tsx +14 -0
- package/src/ui/Pagination/Pagination.test.tsx +1 -0
- package/src/ui/Pagination/Pagination.tsx +6 -0
- package/src/ui/Pagination/Pagination.types.ts +3 -0
- package/src/ui/Pagination/index.js +1 -0
- package/src/ui/PillToggle/PillToggle.ai.md +44 -0
- package/src/ui/PillToggle/PillToggle.jsx +56 -0
- package/src/ui/PillToggle/PillToggle.scss +84 -0
- package/src/ui/PillToggle/PillToggle.spec.ts +12 -0
- package/src/ui/PillToggle/PillToggle.stories.jsx +14 -0
- package/src/ui/PillToggle/PillToggle.stories.tsx +14 -0
- package/src/ui/PillToggle/PillToggle.test.tsx +1 -0
- package/src/ui/PillToggle/PillToggle.tsx +6 -0
- package/src/ui/PillToggle/PillToggle.types.ts +3 -0
- package/src/ui/PillToggle/index.js +1 -0
- package/src/ui/Playground/Playground.ai.md +96 -0
- package/src/ui/Playground/Playground.jsx +524 -0
- package/src/ui/Playground/Playground.scss +310 -0
- package/src/ui/Playground/Playground.spec.ts +12 -0
- package/src/ui/Playground/Playground.stories.jsx +14 -0
- package/src/ui/Playground/Playground.stories.tsx +14 -0
- package/src/ui/Playground/Playground.test.tsx +1 -0
- package/src/ui/Playground/Playground.tsx +6 -0
- package/src/ui/Playground/Playground.types.ts +3 -0
- package/src/ui/Playground/index.js +2 -0
- package/src/ui/ProgressCircle/ProgressCircle.ai.md +36 -0
- package/src/ui/ProgressCircle/ProgressCircle.jsx +147 -0
- package/src/ui/ProgressCircle/ProgressCircle.scss +143 -0
- package/src/ui/ProgressCircle/ProgressCircle.spec.ts +12 -0
- package/src/ui/ProgressCircle/ProgressCircle.stories.jsx +14 -0
- package/src/ui/ProgressCircle/ProgressCircle.stories.tsx +14 -0
- package/src/ui/ProgressCircle/ProgressCircle.test.tsx +1 -0
- package/src/ui/ProgressCircle/ProgressCircle.tsx +6 -0
- package/src/ui/ProgressCircle/ProgressCircle.types.ts +3 -0
- package/src/ui/ProgressCircle/index.js +1 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.ai.md +27 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.jsx +92 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.scss +133 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.spec.ts +12 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.stories.jsx +14 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.stories.tsx +14 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.test.tsx +1 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.tsx +6 -0
- package/src/ui/ProgressIndicator/ProgressIndicator.types.ts +3 -0
- package/src/ui/ProgressIndicator/index.js +1 -0
- package/src/ui/Radio/Radio.ai.md +53 -0
- package/src/ui/Radio/Radio.jsx +57 -0
- package/src/ui/Radio/Radio.scss +89 -0
- package/src/ui/Radio/Radio.spec.ts +12 -0
- package/src/ui/Radio/Radio.stories.jsx +14 -0
- package/src/ui/Radio/Radio.stories.tsx +14 -0
- package/src/ui/Radio/Radio.test.tsx +1 -0
- package/src/ui/Radio/Radio.tsx +6 -0
- package/src/ui/Radio/Radio.types.ts +3 -0
- package/src/ui/Radio/index.js +1 -0
- package/src/ui/Slider/Slider.ai.md +33 -0
- package/src/ui/Slider/Slider.jsx +283 -0
- package/src/ui/Slider/Slider.scss +156 -0
- package/src/ui/Slider/Slider.spec.ts +12 -0
- package/src/ui/Slider/Slider.stories.jsx +14 -0
- package/src/ui/Slider/Slider.stories.tsx +14 -0
- package/src/ui/Slider/Slider.test.tsx +1 -0
- package/src/ui/Slider/Slider.tsx +6 -0
- package/src/ui/Slider/Slider.types.ts +3 -0
- package/src/ui/Slider/index.js +1 -0
- package/src/ui/Status/Status.ai.md +36 -0
- package/src/ui/Status/Status.jsx +66 -0
- package/src/ui/Status/Status.scss +90 -0
- package/src/ui/Status/Status.spec.ts +12 -0
- package/src/ui/Status/Status.stories.jsx +14 -0
- package/src/ui/Status/Status.stories.tsx +14 -0
- package/src/ui/Status/Status.test.tsx +1 -0
- package/src/ui/Status/Status.tsx +6 -0
- package/src/ui/Status/Status.types.ts +3 -0
- package/src/ui/Status/index.js +1 -0
- package/src/ui/Steps/Steps.ai.md +56 -0
- package/src/ui/Steps/Steps.jsx +201 -0
- package/src/ui/Steps/Steps.scss +240 -0
- package/src/ui/Steps/Steps.spec.ts +12 -0
- package/src/ui/Steps/Steps.stories.jsx +14 -0
- package/src/ui/Steps/Steps.stories.tsx +14 -0
- package/src/ui/Steps/Steps.test.tsx +1 -0
- package/src/ui/Steps/Steps.tsx +6 -0
- package/src/ui/Steps/Steps.types.ts +3 -0
- package/src/ui/Steps/index.js +1 -0
- package/src/ui/Table/Table.ai.md +108 -0
- package/src/ui/Table/Table.jsx +143 -0
- package/src/ui/Table/Table.scss +90 -0
- package/src/ui/Table/Table.spec.ts +12 -0
- package/src/ui/Table/Table.stories.jsx +14 -0
- package/src/ui/Table/Table.stories.tsx +14 -0
- package/src/ui/Table/Table.test.tsx +1 -0
- package/src/ui/Table/Table.tsx +6 -0
- package/src/ui/Table/Table.types.ts +3 -0
- package/src/ui/Table/index.js +1 -0
- package/src/ui/Tabs/TabItem.jsx +80 -0
- package/src/ui/Tabs/Tabs.ai.md +52 -0
- package/src/ui/Tabs/Tabs.figma.tsx +30 -0
- package/src/ui/Tabs/Tabs.jsx +318 -0
- package/src/ui/Tabs/Tabs.scss +164 -0
- package/src/ui/Tabs/Tabs.spec.ts +12 -0
- package/src/ui/Tabs/Tabs.stories.jsx +18 -0
- package/src/ui/Tabs/Tabs.stories.tsx +14 -0
- package/src/ui/Tabs/Tabs.test.tsx +1 -0
- package/src/ui/Tabs/Tabs.tsx +6 -0
- package/src/ui/Tabs/Tabs.types.ts +3 -0
- package/src/ui/Tabs/index.js +3 -0
- package/src/ui/Tag/Tag.ai.md +59 -0
- package/src/ui/Tag/Tag.figma.tsx +29 -0
- package/src/ui/Tag/Tag.jsx +93 -0
- package/src/ui/Tag/Tag.scss +258 -0
- package/src/ui/Tag/Tag.spec.ts +12 -0
- package/src/ui/Tag/Tag.stories.jsx +14 -0
- package/src/ui/Tag/Tag.stories.tsx +14 -0
- package/src/ui/Tag/Tag.test.tsx +1 -0
- package/src/ui/Tag/Tag.tsx +6 -0
- package/src/ui/Tag/Tag.types.ts +3 -0
- package/src/ui/Tag/index.js +2 -0
- package/src/ui/Textarea/Textarea.ai.md +40 -0
- package/src/ui/Textarea/Textarea.figma.tsx +35 -0
- package/src/ui/Textarea/Textarea.jsx +68 -0
- package/src/ui/Textarea/Textarea.scss +71 -0
- package/src/ui/Textarea/Textarea.spec.ts +12 -0
- package/src/ui/Textarea/Textarea.stories.jsx +14 -0
- package/src/ui/Textarea/Textarea.stories.tsx +14 -0
- package/src/ui/Textarea/Textarea.test.tsx +1 -0
- package/src/ui/Textarea/Textarea.tsx +6 -0
- package/src/ui/Textarea/Textarea.types.ts +3 -0
- package/src/ui/Textarea/index.js +2 -0
- package/src/ui/Toast/Toast.ai.md +47 -0
- package/src/ui/Toast/Toast.jsx +75 -0
- package/src/ui/Toast/Toast.scss +132 -0
- package/src/ui/Toast/Toast.spec.ts +12 -0
- package/src/ui/Toast/Toast.stories.jsx +14 -0
- package/src/ui/Toast/Toast.stories.tsx +14 -0
- package/src/ui/Toast/Toast.test.tsx +1 -0
- package/src/ui/Toast/Toast.tsx +6 -0
- package/src/ui/Toast/Toast.types.ts +3 -0
- package/src/ui/Toast/index.js +2 -0
- package/src/ui/Toggle/Toggle.ai.md +37 -0
- package/src/ui/Toggle/Toggle.jsx +73 -0
- package/src/ui/Toggle/Toggle.scss +139 -0
- package/src/ui/Toggle/Toggle.spec.ts +12 -0
- package/src/ui/Toggle/Toggle.stories.jsx +14 -0
- package/src/ui/Toggle/Toggle.stories.tsx +14 -0
- package/src/ui/Toggle/Toggle.test.tsx +1 -0
- package/src/ui/Toggle/Toggle.tsx +6 -0
- package/src/ui/Toggle/Toggle.types.ts +3 -0
- package/src/ui/Toggle/index.js +1 -0
- package/src/ui/Tooltip/Tooltip.ai.md +33 -0
- package/src/ui/Tooltip/Tooltip.figma.tsx +24 -0
- package/src/ui/Tooltip/Tooltip.jsx +125 -0
- package/src/ui/Tooltip/Tooltip.scss +80 -0
- package/src/ui/Tooltip/Tooltip.spec.ts +12 -0
- package/src/ui/Tooltip/Tooltip.stories.jsx +14 -0
- package/src/ui/Tooltip/Tooltip.stories.tsx +14 -0
- package/src/ui/Tooltip/Tooltip.test.tsx +1 -0
- package/src/ui/Tooltip/Tooltip.tsx +6 -0
- package/src/ui/Tooltip/Tooltip.types.ts +3 -0
- package/src/ui/Tooltip/index.js +2 -0
- package/src/ui/UDS/UDS.jsx +52 -0
- package/src/ui/UDS/UDS.scss +49 -0
- package/src/ui/UDS/UDS.spec.ts +12 -0
- package/src/ui/UDS/UDS.stories.jsx +22 -0
- package/src/ui/UDS/UDS.stories.tsx +14 -0
- package/src/ui/UDS/UDS.test.tsx +1 -0
- package/src/ui/UDS/UDS.tsx +6 -0
- package/src/ui/UDS/UDS.types.ts +3 -0
- package/src/ui/UDS/index.js +1 -0
- package/src/ui/_spec/createMetaFromSpec.ts +35 -0
- package/src/ui/_spec/createStoryArgsFromSpec.ts +8 -0
- package/src/ui/_spec/generated/spec-props-reference.md +55 -0
- package/src/ui/_spec/specStorySync.test.ts +73 -0
- package/src/ui/_spec/types.ts +21 -0
- package/src/ui/index.js +66 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
/* Prism.js Custom Theme - Code Syntax Highlighting */
|
|
2
|
+
.code-block {
|
|
3
|
+
background: var(--uds-code-bg, #111828);
|
|
4
|
+
border-radius: var(--uds-radius-8, 8px);
|
|
5
|
+
padding: var(--uds-spacing-16, 16px);
|
|
6
|
+
overflow-x: auto;
|
|
7
|
+
margin: var(--uds-spacing-16, 16px) 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.code-block code[class*=language-],
|
|
11
|
+
.code-block pre[class*=language-] {
|
|
12
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
13
|
+
background: none;
|
|
14
|
+
font-family: var(--uds-font-family-mono, Monaco, Menlo, "Ubuntu Mono", monospace);
|
|
15
|
+
font-size: var(--uds-font-size-14, 14px);
|
|
16
|
+
line-height: var(--uds-line-20, 20px);
|
|
17
|
+
text-align: left;
|
|
18
|
+
white-space: pre;
|
|
19
|
+
word-spacing: normal;
|
|
20
|
+
word-break: normal;
|
|
21
|
+
word-wrap: normal;
|
|
22
|
+
tab-size: 2;
|
|
23
|
+
hyphens: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
code[class*=language-],
|
|
27
|
+
pre[class*=language-] {
|
|
28
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
29
|
+
background: var(--uds-code-bg, #111828);
|
|
30
|
+
font-family: var(--uds-font-family-mono, Monaco, Menlo, "Ubuntu Mono", monospace);
|
|
31
|
+
font-size: var(--uds-font-size-14, 14px);
|
|
32
|
+
line-height: var(--uds-line-20, 20px);
|
|
33
|
+
text-align: left;
|
|
34
|
+
white-space: pre;
|
|
35
|
+
word-spacing: normal;
|
|
36
|
+
word-break: normal;
|
|
37
|
+
word-wrap: normal;
|
|
38
|
+
tab-size: 2;
|
|
39
|
+
hyphens: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
pre[class*=language-] {
|
|
43
|
+
padding: var(--uds-spacing-16, 16px);
|
|
44
|
+
margin: var(--uds-spacing-16, 16px) 0;
|
|
45
|
+
overflow: auto;
|
|
46
|
+
border-radius: var(--uds-radius-8, 8px);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
:not(pre) > code[class*=language-] {
|
|
50
|
+
padding: 0.1em 0.3em;
|
|
51
|
+
border-radius: var(--uds-radius-4, 4px);
|
|
52
|
+
white-space: normal;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/* Token Colors */
|
|
56
|
+
.token.comment,
|
|
57
|
+
.token.prolog,
|
|
58
|
+
.token.doctype,
|
|
59
|
+
.token.cdata {
|
|
60
|
+
color: var(--uds-code-comment, #6b7380);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.token.punctuation {
|
|
64
|
+
color: var(--uds-code-punctuation, #9ca2ae);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.token.namespace {
|
|
68
|
+
opacity: 0.7;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.token.property,
|
|
72
|
+
.token.tag,
|
|
73
|
+
.token.boolean,
|
|
74
|
+
.token.number,
|
|
75
|
+
.token.constant,
|
|
76
|
+
.token.symbol,
|
|
77
|
+
.token.deleted {
|
|
78
|
+
color: var(--uds-code-number, #fbbf24);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.token.selector,
|
|
82
|
+
.token.attr-name,
|
|
83
|
+
.token.string,
|
|
84
|
+
.token.char,
|
|
85
|
+
.token.builtin,
|
|
86
|
+
.token.inserted {
|
|
87
|
+
color: var(--uds-code-string, #34d399);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.token.operator,
|
|
91
|
+
.token.entity,
|
|
92
|
+
.token.url,
|
|
93
|
+
.language-css .token.string,
|
|
94
|
+
.style .token.string {
|
|
95
|
+
color: var(--uds-code-operator, #fb7286);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.token.atrule,
|
|
99
|
+
.token.attr-value,
|
|
100
|
+
.token.keyword {
|
|
101
|
+
color: var(--uds-code-keyword, #38bdf8);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.token.function,
|
|
105
|
+
.token.class-name {
|
|
106
|
+
color: var(--uds-code-function, #a78bfa);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.token.regex,
|
|
110
|
+
.token.important,
|
|
111
|
+
.token.variable {
|
|
112
|
+
color: var(--uds-code-class, #e879f9);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.token.important,
|
|
116
|
+
.token.bold {
|
|
117
|
+
font-weight: bold;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.token.italic {
|
|
121
|
+
font-style: italic;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.token.entity {
|
|
125
|
+
cursor: help;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* Line Numbers */
|
|
129
|
+
pre[class*=language-].line-numbers {
|
|
130
|
+
position: relative;
|
|
131
|
+
padding-left: 3.8em;
|
|
132
|
+
counter-reset: linenumber;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
pre[class*=language-].line-numbers > code {
|
|
136
|
+
position: relative;
|
|
137
|
+
white-space: inherit;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.line-numbers .line-numbers-rows {
|
|
141
|
+
position: absolute;
|
|
142
|
+
pointer-events: none;
|
|
143
|
+
top: 0;
|
|
144
|
+
font-size: 100%;
|
|
145
|
+
left: -3.8em;
|
|
146
|
+
width: 3em;
|
|
147
|
+
letter-spacing: -1px;
|
|
148
|
+
border-right: 1px solid var(--uds-border-tertiary, #333);
|
|
149
|
+
user-select: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.line-numbers-rows > span {
|
|
153
|
+
display: block;
|
|
154
|
+
counter-increment: linenumber;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.line-numbers-rows > span:before {
|
|
158
|
+
content: counter(linenumber);
|
|
159
|
+
color: var(--uds-code-comment, #6b7380);
|
|
160
|
+
display: block;
|
|
161
|
+
padding-right: 0.8em;
|
|
162
|
+
text-align: right;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* Toolbar */
|
|
166
|
+
div.code-toolbar {
|
|
167
|
+
position: relative;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
div.code-toolbar > .toolbar {
|
|
171
|
+
position: absolute;
|
|
172
|
+
top: 0.3em;
|
|
173
|
+
right: 0.2em;
|
|
174
|
+
transition: opacity 0.3s ease-in-out;
|
|
175
|
+
opacity: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
div.code-toolbar:hover > .toolbar {
|
|
179
|
+
opacity: 1;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
div.code-toolbar > .toolbar > .toolbar-item {
|
|
183
|
+
display: inline-block;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
div.code-toolbar > .toolbar > .toolbar-item > a,
|
|
187
|
+
div.code-toolbar > .toolbar > .toolbar-item > button,
|
|
188
|
+
div.code-toolbar > .toolbar > .toolbar-item > span {
|
|
189
|
+
color: var(--uds-code-comment, #6b7380);
|
|
190
|
+
font-size: var(--uds-font-size-12, 12px);
|
|
191
|
+
padding: 0 0.5em;
|
|
192
|
+
background: var(--uds-surface-tertiary, #1f2937);
|
|
193
|
+
border-radius: var(--uds-radius-4, 4px);
|
|
194
|
+
cursor: pointer;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
|
|
198
|
+
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
|
|
199
|
+
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
|
|
200
|
+
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
|
|
201
|
+
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
|
|
202
|
+
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
|
|
203
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
204
|
+
}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/* Prism.js Custom Theme - Code Syntax Highlighting */
|
|
2
|
+
|
|
3
|
+
.code-block {
|
|
4
|
+
background: var(--uds-code-bg, #111828);
|
|
5
|
+
border-radius: var(--uds-radius-8, 8px);
|
|
6
|
+
padding: var(--uds-spacing-16, 16px);
|
|
7
|
+
overflow-x: auto;
|
|
8
|
+
margin: var(--uds-spacing-16, 16px) 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.code-block code[class*="language-"],
|
|
12
|
+
.code-block pre[class*="language-"] {
|
|
13
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
14
|
+
background: none;
|
|
15
|
+
font-family: var(--uds-font-family-mono, Monaco, Menlo, "Ubuntu Mono", monospace);
|
|
16
|
+
font-size: var(--uds-font-size-14, 14px);
|
|
17
|
+
line-height: var(--uds-line-20, 20px);
|
|
18
|
+
text-align: left;
|
|
19
|
+
white-space: pre;
|
|
20
|
+
word-spacing: normal;
|
|
21
|
+
word-break: normal;
|
|
22
|
+
word-wrap: normal;
|
|
23
|
+
tab-size: 2;
|
|
24
|
+
hyphens: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
code[class*="language-"],
|
|
28
|
+
pre[class*="language-"] {
|
|
29
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
30
|
+
background: var(--uds-code-bg, #111828);
|
|
31
|
+
font-family: var(--uds-font-family-mono, Monaco, Menlo, "Ubuntu Mono", monospace);
|
|
32
|
+
font-size: var(--uds-font-size-14, 14px);
|
|
33
|
+
line-height: var(--uds-line-20, 20px);
|
|
34
|
+
text-align: left;
|
|
35
|
+
white-space: pre;
|
|
36
|
+
word-spacing: normal;
|
|
37
|
+
word-break: normal;
|
|
38
|
+
word-wrap: normal;
|
|
39
|
+
tab-size: 2;
|
|
40
|
+
hyphens: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
pre[class*="language-"] {
|
|
44
|
+
padding: var(--uds-spacing-16, 16px);
|
|
45
|
+
margin: var(--uds-spacing-16, 16px) 0;
|
|
46
|
+
overflow: auto;
|
|
47
|
+
border-radius: var(--uds-radius-8, 8px);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
:not(pre) > code[class*="language-"] {
|
|
51
|
+
padding: 0.1em 0.3em;
|
|
52
|
+
border-radius: var(--uds-radius-4, 4px);
|
|
53
|
+
white-space: normal;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Token Colors */
|
|
57
|
+
.token.comment,
|
|
58
|
+
.token.prolog,
|
|
59
|
+
.token.doctype,
|
|
60
|
+
.token.cdata {
|
|
61
|
+
color: var(--uds-code-comment, #6b7380);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.token.punctuation {
|
|
65
|
+
color: var(--uds-code-punctuation, #9ca2ae);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.token.namespace {
|
|
69
|
+
opacity: 0.7;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.token.property,
|
|
73
|
+
.token.tag,
|
|
74
|
+
.token.boolean,
|
|
75
|
+
.token.number,
|
|
76
|
+
.token.constant,
|
|
77
|
+
.token.symbol,
|
|
78
|
+
.token.deleted {
|
|
79
|
+
color: var(--uds-code-number, #fbbf24);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.token.selector,
|
|
83
|
+
.token.attr-name,
|
|
84
|
+
.token.string,
|
|
85
|
+
.token.char,
|
|
86
|
+
.token.builtin,
|
|
87
|
+
.token.inserted {
|
|
88
|
+
color: var(--uds-code-string, #34d399);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.token.operator,
|
|
92
|
+
.token.entity,
|
|
93
|
+
.token.url,
|
|
94
|
+
.language-css .token.string,
|
|
95
|
+
.style .token.string {
|
|
96
|
+
color: var(--uds-code-operator, #fb7286);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.token.atrule,
|
|
100
|
+
.token.attr-value,
|
|
101
|
+
.token.keyword {
|
|
102
|
+
color: var(--uds-code-keyword, #38bdf8);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.token.function,
|
|
106
|
+
.token.class-name {
|
|
107
|
+
color: var(--uds-code-function, #a78bfa);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.token.regex,
|
|
111
|
+
.token.important,
|
|
112
|
+
.token.variable {
|
|
113
|
+
color: var(--uds-code-class, #e879f9);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.token.important,
|
|
117
|
+
.token.bold {
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.token.italic {
|
|
122
|
+
font-style: italic;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.token.entity {
|
|
126
|
+
cursor: help;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/* Line Numbers */
|
|
130
|
+
pre[class*="language-"].line-numbers {
|
|
131
|
+
position: relative;
|
|
132
|
+
padding-left: 3.8em;
|
|
133
|
+
counter-reset: linenumber;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
pre[class*="language-"].line-numbers > code {
|
|
137
|
+
position: relative;
|
|
138
|
+
white-space: inherit;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.line-numbers .line-numbers-rows {
|
|
142
|
+
position: absolute;
|
|
143
|
+
pointer-events: none;
|
|
144
|
+
top: 0;
|
|
145
|
+
font-size: 100%;
|
|
146
|
+
left: -3.8em;
|
|
147
|
+
width: 3em;
|
|
148
|
+
letter-spacing: -1px;
|
|
149
|
+
border-right: 1px solid var(--uds-border-tertiary, #333);
|
|
150
|
+
user-select: none;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.line-numbers-rows > span {
|
|
154
|
+
display: block;
|
|
155
|
+
counter-increment: linenumber;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.line-numbers-rows > span:before {
|
|
159
|
+
content: counter(linenumber);
|
|
160
|
+
color: var(--uds-code-comment, #6b7380);
|
|
161
|
+
display: block;
|
|
162
|
+
padding-right: 0.8em;
|
|
163
|
+
text-align: right;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Toolbar */
|
|
167
|
+
div.code-toolbar {
|
|
168
|
+
position: relative;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
div.code-toolbar > .toolbar {
|
|
172
|
+
position: absolute;
|
|
173
|
+
top: 0.3em;
|
|
174
|
+
right: 0.2em;
|
|
175
|
+
transition: opacity 0.3s ease-in-out;
|
|
176
|
+
opacity: 0;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
div.code-toolbar:hover > .toolbar {
|
|
180
|
+
opacity: 1;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
div.code-toolbar > .toolbar > .toolbar-item {
|
|
184
|
+
display: inline-block;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
div.code-toolbar > .toolbar > .toolbar-item > a,
|
|
188
|
+
div.code-toolbar > .toolbar > .toolbar-item > button,
|
|
189
|
+
div.code-toolbar > .toolbar > .toolbar-item > span {
|
|
190
|
+
color: var(--uds-code-comment, #6b7380);
|
|
191
|
+
font-size: var(--uds-font-size-12, 12px);
|
|
192
|
+
padding: 0 0.5em;
|
|
193
|
+
background: var(--uds-surface-tertiary, #1f2937);
|
|
194
|
+
border-radius: var(--uds-radius-4, 4px);
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
|
|
199
|
+
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
|
|
200
|
+
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
|
|
201
|
+
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
|
|
202
|
+
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
|
|
203
|
+
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
|
|
204
|
+
color: var(--uds-code-fg, #f3f4f6);
|
|
205
|
+
}
|