@akad/design-system 0.2.0-beta.9 → 1.0.0-alpha.2
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/css/core.css +1 -0
- package/css/package.json +9 -1
- package/css/theme-aon.css +1 -0
- package/css/theme-bees.css +1 -0
- package/css/theme-bmc.css +1 -0
- package/css/theme-default.css +1 -0
- package/css/theme-linker.css +1 -0
- package/css/theme-oggi.css +1 -0
- package/css/theme-streetgo.css +1 -0
- package/package.json +1 -1
- package/react/package.json +1 -1
- package/react/react-lib.js +2717 -2911
- package/react/react-lib.umd.cjs +5 -5
- package/react/src/components/atoms/Button/Button.config.d.ts +106 -0
- package/react/{components → src/components}/atoms/Button/Button.d.ts +11 -7
- package/react/{components → src/components}/atoms/Button/Button.stories.d.ts +5 -5
- package/react/src/components/atoms/Button/index.d.ts +4 -0
- package/react/src/components/atoms/Caption/Caption.config.d.ts +6 -0
- package/react/{components → src/components}/atoms/Caption/Caption.stories.d.ts +2 -2
- package/react/src/components/atoms/Caption/index.d.ts +4 -0
- package/react/src/components/atoms/Card/Card.config.d.ts +92 -0
- package/react/{components → src/components}/atoms/Card/Card.d.ts +8 -4
- package/react/{components → src/components}/atoms/Card/Card.stories.d.ts +4 -4
- package/react/src/components/atoms/Card/index.d.ts +4 -0
- package/react/{components → src/components}/atoms/Checkbox/Checkbox.config.d.ts +18 -18
- package/react/src/components/atoms/Checkbox/Checkbox.stories.d.ts +23 -0
- package/react/src/components/atoms/Checkbox/index.d.ts +4 -0
- package/react/src/components/atoms/Heading/Heading.config.d.ts +22 -0
- package/react/src/components/atoms/Heading/Heading.stories.d.ts +48 -0
- package/react/src/components/atoms/Heading/index.d.ts +4 -0
- package/react/src/components/atoms/HorizontalRule/HorizontalRule.config.d.ts +30 -0
- package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.d.ts +2 -2
- package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.stories.d.ts +2 -2
- package/react/src/components/atoms/HorizontalRule/index.d.ts +4 -0
- package/react/src/components/atoms/Icon/Icon.config.d.ts +125 -0
- package/react/{components → src/components}/atoms/Icon/Icon.d.ts +4 -4
- package/react/src/components/atoms/Icon/Icon.stories.d.ts +19 -0
- package/react/src/components/atoms/Icon/index.d.ts +4 -0
- package/react/src/components/atoms/Input/Input.config.d.ts +146 -0
- package/react/{components → src/components}/atoms/Input/Input.stories.d.ts +4 -4
- package/react/src/components/atoms/Input/index.d.ts +4 -0
- package/react/src/components/atoms/Loading/Loading.config.d.ts +52 -0
- package/react/{components → src/components}/atoms/Loading/Loading.d.ts +1 -1
- package/react/{components → src/components}/atoms/Loading/Loading.stories.d.ts +2 -2
- package/react/src/components/atoms/Loading/index.d.ts +4 -0
- package/react/src/components/atoms/Option/Option.config.d.ts +53 -0
- package/react/{components → src/components}/atoms/Option/Option.stories.d.ts +2 -2
- package/react/src/components/atoms/Option/index.d.ts +4 -0
- package/react/src/components/atoms/Paragraph/Paragraph.config.d.ts +19 -0
- package/react/src/components/atoms/Paragraph/Paragraph.stories.d.ts +21 -0
- package/react/src/components/atoms/Paragraph/index.d.ts +4 -0
- package/react/src/components/atoms/Progress/Progress.config.d.ts +30 -0
- package/react/{components → src/components}/atoms/Progress/Progress.stories.d.ts +2 -2
- package/react/src/components/atoms/Progress/index.d.ts +4 -0
- package/react/src/components/atoms/Select/Select.config.d.ts +121 -0
- package/react/{components → src/components}/atoms/Select/Select.stories.d.ts +6 -6
- package/react/src/components/atoms/Select/index.d.ts +4 -0
- package/react/src/components/atoms/Subtitle/Subtitle.config.d.ts +18 -0
- package/react/src/components/atoms/Subtitle/Subtitle.stories.d.ts +23 -0
- package/react/src/components/atoms/Subtitle/index.d.ts +4 -0
- package/react/src/components/atoms/TextArea/TextArea.config.d.ts +128 -0
- package/react/{components → src/components}/atoms/TextArea/TextArea.d.ts +0 -1
- package/react/{components → src/components}/atoms/TextArea/TextArea.stories.d.ts +5 -5
- package/react/src/components/atoms/TextArea/index.d.ts +4 -0
- package/react/src/components/atoms/Tooltip/Tooltip.config.d.ts +41 -0
- package/react/{components → src/components}/atoms/Tooltip/Tooltip.d.ts +4 -2
- package/react/src/components/atoms/Tooltip/Tooltip.stories.d.ts +46 -0
- package/react/src/components/atoms/Tooltip/index.d.ts +4 -0
- package/react/src/components/bosons/Container/Container.config.d.ts +18 -0
- package/react/{components → src/components}/bosons/Container/Container.stories.d.ts +3 -3
- package/react/src/components/bosons/Container/index.d.ts +4 -0
- package/react/{components → src/components}/bosons/FlexLayout/FlexElement.config.d.ts +2 -2
- package/react/src/components/bosons/FlexLayout/FlexLayout.config.d.ts +95 -0
- package/react/src/components/bosons/FlexLayout/FlexLayout.stories.d.ts +20 -0
- package/react/src/components/bosons/FlexLayout/index.d.ts +8 -0
- package/react/{components → src/components}/bosons/GridLayout/GridElement.config.d.ts +2 -2
- package/react/{components → src/components}/bosons/GridLayout/GridElement.d.ts +6 -1
- package/react/src/components/bosons/GridLayout/GridLayout.config.d.ts +80 -0
- package/react/{components → src/components}/bosons/GridLayout/GridLayout.d.ts +3 -3
- package/react/{components → src/components}/bosons/GridLayout/GridLayout.stories.d.ts +3 -3
- package/react/src/components/bosons/GridLayout/index.d.ts +8 -0
- package/react/src/components/bosons/Spacer/Spacer.config.d.ts +24 -0
- package/react/{components → src/components}/bosons/Spacer/Spacer.stories.d.ts +4 -4
- package/react/src/components/bosons/Spacer/index.d.ts +4 -0
- package/react/src/components/bosons/Wrapper/Wrapper.config.d.ts +27 -0
- package/react/{components → src/components}/bosons/Wrapper/Wrapper.stories.d.ts +3 -3
- package/react/src/components/bosons/Wrapper/index.d.ts +4 -0
- package/react/src/components/index.d.ts +37 -0
- package/react/src/components/molecules/Accordion/Accordion.config.d.ts +31 -0
- package/react/{components → src/components}/molecules/Accordion/Accordion.d.ts +2 -2
- package/react/src/components/molecules/Accordion/Accordion.stories.d.ts +9 -0
- package/react/src/components/molecules/Accordion/AccordionItem.config.d.ts +28 -0
- package/react/{components → src/components}/molecules/Accordion/AccordionItem.d.ts +7 -1
- package/react/src/components/molecules/Accordion/index.d.ts +8 -0
- package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.config.d.ts +2 -2
- package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.stories.d.ts +2 -2
- package/react/src/components/molecules/ActiveTags/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/Carousel/Carousel.config.d.ts +2 -2
- package/react/src/components/molecules/Carousel/index.d.ts +4 -0
- package/react/src/components/molecules/EditableSelect/EditableSelect.config.d.ts +104 -0
- package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.d.ts +2 -2
- package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.stories.d.ts +3 -3
- package/react/src/components/molecules/EditableSelect/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/Indicator/Indicator.config.d.ts +3 -3
- package/react/{components → src/components}/molecules/Indicator/Indicator.stories.d.ts +2 -2
- package/react/src/components/molecules/Indicator/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.config.d.ts +3 -3
- package/react/src/components/molecules/InlineEditable/InlineEditable.stories.d.ts +17 -0
- package/react/src/components/molecules/InlineEditable/index.d.ts +4 -0
- package/react/src/components/molecules/Modal/Modal.config.d.ts +44 -0
- package/react/{components → src/components}/molecules/Modal/Modal.d.ts +3 -3
- package/react/{components → src/components}/molecules/Modal/Modal.stories.d.ts +7 -7
- package/react/src/components/molecules/Modal/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/Notification/Notification.config.d.ts +13 -32
- package/react/src/components/molecules/Notification/Notification.d.ts +22 -0
- package/react/src/components/molecules/Notification/Notification.stories.d.ts +95 -0
- package/react/src/components/molecules/Notification/index.d.ts +4 -0
- package/react/src/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +32 -0
- package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmation.stories.d.ts +4 -4
- package/react/src/components/molecules/PasswordConfirmation/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/Stepper/Stepper.config.d.ts +2 -2
- package/react/{components → src/components}/molecules/Stepper/Stepper.d.ts +7 -2
- package/react/{components → src/components}/molecules/Stepper/Stepper.stories.d.ts +2 -2
- package/react/src/components/molecules/Stepper/index.d.ts +4 -0
- package/react/{components/molecules/Table/Table.types.d.ts → src/components/molecules/Table/Table.config.d.ts} +23 -0
- package/react/{components → src/components}/molecules/Table/Table.d.ts +1 -1
- package/react/src/components/molecules/Table/Table.stories.d.ts +12 -0
- package/react/{components → src/components}/molecules/Table/TableRow.d.ts +1 -1
- package/react/{components → src/components}/molecules/Table/dataTable.mock.d.ts +1 -1
- package/react/src/components/molecules/Table/index.d.ts +4 -0
- package/react/{components → src/components}/molecules/Tabs/Tab.d.ts +1 -1
- package/react/src/components/molecules/Tabs/Tabs.config.d.ts +44 -0
- package/react/{components → src/components}/molecules/Tabs/Tabs.d.ts +11 -1
- package/react/{components → src/components}/molecules/Tabs/Tabs.stories.d.ts +3 -3
- package/react/src/components/molecules/Tabs/index.d.ts +4 -0
- package/react/src/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +28 -0
- package/react/src/components/organisms/NotificationList/NotificationList.config.d.ts +32 -0
- package/react/{components → src/components}/organisms/NotificationList/NotificationList.d.ts +2 -2
- package/react/{components → src/components}/organisms/NotificationList/NotificationList.stories.d.ts +3 -3
- package/react/src/components/organisms/NotificationList/index.d.ts +4 -0
- package/react/{components → src/components}/templates/SplitLayout/SplitLayout.config.d.ts +2 -2
- package/react/{components → src/components}/templates/TwoColumns/TwoColumns.config.d.ts +2 -2
- package/react/src/components/templates/TwoColumns/index.d.ts +4 -0
- package/react/src/enum/colorProps.d.ts +30 -0
- package/scss/core/base/index.scss +3 -0
- package/scss/core/base/reset.scss +27 -0
- package/scss/core/base/typography.scss +18 -0
- package/scss/core/components/atoms/button.scss +816 -0
- package/scss/core/components/atoms/caption.scss +13 -0
- package/scss/core/components/atoms/card.scss +24 -0
- package/scss/core/components/atoms/checkbox.scss +61 -0
- package/scss/core/components/atoms/heading.scss +69 -0
- package/scss/core/components/atoms/horizontal-rule.scss +27 -0
- package/scss/core/components/atoms/icon.scss +49 -0
- package/scss/core/components/atoms/input.scss +333 -0
- package/scss/core/components/atoms/loading.scss +120 -0
- package/scss/core/components/atoms/option.scss +78 -0
- package/scss/core/components/atoms/paragraph.scss +44 -0
- package/scss/core/components/atoms/progress.scss +32 -0
- package/scss/core/components/atoms/select.scss +253 -0
- package/scss/core/components/atoms/subtitle.scss +21 -0
- package/scss/core/components/atoms/textarea.scss +340 -0
- package/scss/core/components/atoms/tooltip.scss +197 -0
- package/scss/core/components/bosons/container.scss +5 -0
- package/scss/core/components/bosons/flex-layout.scss +45 -0
- package/scss/core/components/bosons/grid-layout.scss +76 -0
- package/scss/core/components/bosons/grid.scss +79 -0
- package/scss/core/components/bosons/spacer.scss +45 -0
- package/scss/core/components/bosons/wrapper.scss +32 -0
- package/scss/core/components/index.scss +49 -0
- package/scss/core/components/molecules/accordion.scss +93 -0
- package/scss/core/components/molecules/active-tags.scss +58 -0
- package/scss/core/components/molecules/carousel.scss +67 -0
- package/scss/core/components/molecules/editable-select.scss +141 -0
- package/scss/core/components/molecules/indicator.scss +37 -0
- package/scss/core/components/molecules/inline-editable.scss +23 -0
- package/scss/core/components/molecules/modal.scss +70 -0
- package/scss/core/components/molecules/notification.scss +109 -0
- package/scss/core/components/molecules/password-confirmation.scss +16 -0
- package/scss/core/components/molecules/stepper.scss +84 -0
- package/scss/core/components/molecules/table.scss +95 -0
- package/scss/core/components/molecules/tabs.scss +114 -0
- package/scss/core/components/molecules/theme-provider.scss +6 -0
- package/scss/core/components/organisms/notification-list.scss +77 -0
- package/scss/core/components/templates/split-layout.scss +51 -0
- package/scss/core/components/templates/two-columns.scss +30 -0
- package/scss/core/functions/breakpoints.scss +35 -0
- package/scss/core/functions/fonts.scss +17 -0
- package/scss/core/functions/index.scss +5 -0
- package/scss/core/functions/spacings.scss +8 -0
- package/scss/core/functions/tokens.scss +14 -0
- package/scss/core/helpers/borders.scss +105 -0
- package/scss/core/helpers/colors.scss +194 -0
- package/scss/core/helpers/display.scss +177 -0
- package/scss/core/helpers/elevation.scss +16 -0
- package/scss/core/helpers/index.scss +6 -0
- package/scss/core/helpers/order.scss +20 -0
- package/scss/core/index.scss +18 -0
- package/scss/core/mixins/breakpoints.scss +90 -0
- package/scss/core/mixins/grid.scss +8 -0
- package/scss/core/mixins/index.scss +5 -0
- package/scss/core/tokens/borders.scss +12 -0
- package/scss/core/tokens/breakpoints.scss +20 -0
- package/scss/core/tokens/icons.scss +2 -0
- package/scss/core/tokens/index.scss +8 -0
- package/scss/core/tokens/opacity.scss +6 -0
- package/scss/core/tokens/shadows.scss +15 -0
- package/scss/core/tokens/spacings.scss +41 -0
- package/scss/core/tokens/typography.scss +20 -0
- package/scss/themes/aon/colors.scss +83 -0
- package/scss/themes/aon/index.scss +54 -0
- package/scss/themes/aon/typography.scss +7 -0
- package/scss/themes/bees/colors.scss +32 -0
- package/scss/themes/bees/index.scss +51 -0
- package/scss/themes/bees/typography.scss +6 -0
- package/scss/themes/bmc/colors.scss +81 -0
- package/scss/themes/bmc/index.scss +54 -0
- package/scss/themes/bmc/typography.scss +5 -0
- package/scss/themes/default/colors.scss +109 -0
- package/scss/themes/default/index.scss +80 -0
- package/scss/themes/default/typography.scss +7 -0
- package/scss/themes/linker/colors.scss +35 -0
- package/scss/themes/linker/index.scss +30 -0
- package/scss/themes/linker/typography.scss +6 -0
- package/scss/themes/oggi/colors.scss +81 -0
- package/scss/themes/oggi/index.scss +54 -0
- package/scss/themes/oggi/typography.scss +5 -0
- package/scss/themes/streetgo/colors.scss +81 -0
- package/scss/themes/streetgo/index.scss +54 -0
- package/scss/themes/streetgo/typography.scss +5 -0
- package/css/aon-theme.css +0 -1
- package/css/bees-theme.css +0 -1
- package/css/bmc-theme.css +0 -1
- package/css/default-theme.css +0 -1
- package/css/linker-theme.css +0 -1
- package/css/oggi-theme.css +0 -1
- package/css/streetgo-theme.css +0 -1
- package/react/components/atoms/Button/Button.config.d.ts +0 -94
- package/react/components/atoms/Button/index.d.ts +0 -4
- package/react/components/atoms/Caption/Caption.config.d.ts +0 -6
- package/react/components/atoms/Caption/index.d.ts +0 -4
- package/react/components/atoms/Card/Card.config.d.ts +0 -76
- package/react/components/atoms/Card/index.d.ts +0 -4
- package/react/components/atoms/Checkbox/Checkbox.stories.d.ts +0 -23
- package/react/components/atoms/Checkbox/index.d.ts +0 -5
- package/react/components/atoms/Heading/Heading.config.d.ts +0 -23
- package/react/components/atoms/Heading/Heading.stories.d.ts +0 -48
- package/react/components/atoms/Heading/index.d.ts +0 -4
- package/react/components/atoms/HorizontalRule/HorizontalRule.config.d.ts +0 -32
- package/react/components/atoms/HorizontalRule/index.d.ts +0 -4
- package/react/components/atoms/Icon/Icon.config.d.ts +0 -129
- package/react/components/atoms/Icon/Icon.stories.d.ts +0 -19
- package/react/components/atoms/Icon/index.d.ts +0 -4
- package/react/components/atoms/Input/Input.config.d.ts +0 -151
- package/react/components/atoms/Input/index.d.ts +0 -4
- package/react/components/atoms/Loading/Loading.config.d.ts +0 -54
- package/react/components/atoms/Loading/index.d.ts +0 -4
- package/react/components/atoms/Option/Option.config.d.ts +0 -53
- package/react/components/atoms/Option/index.d.ts +0 -4
- package/react/components/atoms/Paragraph/Paragraph.config.d.ts +0 -20
- package/react/components/atoms/Paragraph/Paragraph.stories.d.ts +0 -21
- package/react/components/atoms/Paragraph/index.d.ts +0 -4
- package/react/components/atoms/Progress/Progress.config.d.ts +0 -31
- package/react/components/atoms/Progress/index.d.ts +0 -4
- package/react/components/atoms/Select/Select.config.d.ts +0 -125
- package/react/components/atoms/Select/index.d.ts +0 -4
- package/react/components/atoms/Subtitle/Subtitle.config.d.ts +0 -19
- package/react/components/atoms/Subtitle/Subtitle.stories.d.ts +0 -23
- package/react/components/atoms/Subtitle/index.d.ts +0 -4
- package/react/components/atoms/TextArea/TextArea.config.d.ts +0 -132
- package/react/components/atoms/TextArea/index.d.ts +0 -4
- package/react/components/atoms/Tooltip/Tooltip.config.d.ts +0 -38
- package/react/components/atoms/Tooltip/Tooltip.stories.d.ts +0 -46
- package/react/components/atoms/Tooltip/index.d.ts +0 -4
- package/react/components/bosons/Container/Container.config.d.ts +0 -18
- package/react/components/bosons/Container/index.d.ts +0 -4
- package/react/components/bosons/FlexLayout/FlexLayout.config.d.ts +0 -100
- package/react/components/bosons/FlexLayout/FlexLayout.stories.d.ts +0 -20
- package/react/components/bosons/FlexLayout/index.d.ts +0 -5
- package/react/components/bosons/GridLayout/GridLayout.config.d.ts +0 -82
- package/react/components/bosons/GridLayout/index.d.ts +0 -5
- package/react/components/bosons/Spacer/Spacer.config.d.ts +0 -25
- package/react/components/bosons/Spacer/index.d.ts +0 -4
- package/react/components/bosons/Wrapper/Wrapper.config.d.ts +0 -28
- package/react/components/bosons/Wrapper/index.d.ts +0 -4
- package/react/components/index.d.ts +0 -39
- package/react/components/molecules/Accordion/Accordion.config.d.ts +0 -25
- package/react/components/molecules/Accordion/Accordion.stories.d.ts +0 -9
- package/react/components/molecules/Accordion/AccordionItem.config.d.ts +0 -28
- package/react/components/molecules/Accordion/index.d.ts +0 -5
- package/react/components/molecules/ActiveTags/index.d.ts +0 -4
- package/react/components/molecules/Carousel/index.d.ts +0 -4
- package/react/components/molecules/EditableSelect/EditableSelect.config.d.ts +0 -105
- package/react/components/molecules/EditableSelect/index.d.ts +0 -4
- package/react/components/molecules/Indicator/index.d.ts +0 -4
- package/react/components/molecules/InlineEditable/InlineEditable.stories.d.ts +0 -17
- package/react/components/molecules/InlineEditable/index.d.ts +0 -4
- package/react/components/molecules/Modal/Modal.config.d.ts +0 -41
- package/react/components/molecules/Modal/index.d.ts +0 -4
- package/react/components/molecules/Notification/Notification.d.ts +0 -7
- package/react/components/molecules/Notification/Notification.stories.d.ts +0 -95
- package/react/components/molecules/Notification/index.d.ts +0 -5
- package/react/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +0 -32
- package/react/components/molecules/PasswordConfirmation/index.d.ts +0 -4
- package/react/components/molecules/Stepper/index.d.ts +0 -4
- package/react/components/molecules/Table/Table.config.d.ts +0 -23
- package/react/components/molecules/Table/Table.stories.d.ts +0 -12
- package/react/components/molecules/Table/index.d.ts +0 -5
- package/react/components/molecules/Tabs/Tabs.config.d.ts +0 -45
- package/react/components/molecules/Tabs/index.d.ts +0 -6
- package/react/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +0 -30
- package/react/components/organisms/NotificationList/NotificationList.config.d.ts +0 -33
- package/react/components/organisms/NotificationList/index.d.ts +0 -4
- package/react/components/templates/TwoColumns/index.d.ts +0 -5
- package/react/decorators/storybook.d.ts +0 -3
- package/react/decorators/storybook.test.d.ts +0 -1
- package/react/types/hooks/types.d.ts +0 -99
- package/react/types/types.d.ts +0 -43
- package/react/{components → src/components}/atoms/Button/Button.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Caption/Caption.d.ts +1 -1
- package/react/{components → src/components}/atoms/Caption/Caption.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Card/Card.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Checkbox/Checkbox.d.ts +1 -1
- package/react/{components → src/components}/atoms/Checkbox/Checkbox.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Heading/Heading.d.ts +1 -1
- package/react/{components → src/components}/atoms/Heading/Heading.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Icon/Icon.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Input/Input.d.ts +0 -0
- package/react/{components → src/components}/atoms/Input/Input.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Input/mask.d.ts +0 -0
- package/react/{components → src/components}/atoms/Loading/Loading.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Option/Option.d.ts +1 -1
- package/react/{components → src/components}/atoms/Option/Option.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Paragraph/Paragraph.d.ts +1 -1
- package/react/{components → src/components}/atoms/Paragraph/Paragraph.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Progress/Progress.d.ts +0 -0
- package/react/{components → src/components}/atoms/Progress/Progress.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Select/Select.d.ts +1 -1
- package/react/{components → src/components}/atoms/Select/Select.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Subtitle/Subtitle.d.ts +0 -0
- package/react/{components → src/components}/atoms/Subtitle/Subtitle.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/TextArea/TextArea.test.d.ts +0 -0
- package/react/{components → src/components}/atoms/Tooltip/Tooltip.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/Container/Container.d.ts +1 -1
- package/react/{components → src/components}/bosons/Container/Container.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/FlexLayout/FlexElement.d.ts +0 -0
- package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.d.ts +0 -0
- package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/GridLayout/GridElement.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/GridLayout/GridLayout.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/Spacer/Spacer.d.ts +0 -0
- package/react/{components → src/components}/bosons/Spacer/Spacer.test.d.ts +0 -0
- package/react/{components → src/components}/bosons/Wrapper/Wrapper.d.ts +0 -0
- package/react/{components → src/components}/bosons/Wrapper/Wrapper.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Accordion/Accordion.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.d.ts +0 -0
- package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Carousel/Carousel.d.ts +0 -0
- package/react/{components → src/components}/molecules/Carousel/Carousel.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Indicator/Indicator.d.ts +0 -0
- package/react/{components → src/components}/molecules/Indicator/Indicator.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.d.ts +1 -1
- package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Modal/Modal.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Notification/Notification.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmartion.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmation.d.ts +0 -0
- package/react/{components → src/components}/molecules/Stepper/Stepper.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Table/Table.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Tabs/Tab.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/Tabs/Tabs.test.d.ts +0 -0
- package/react/{components → src/components}/molecules/ThemeProvider/ThemeProvider.d.ts +1 -1
- /package/react/{components → src/components}/molecules/ThemeProvider/ThemeProvider.test.d.ts +0 -0
- /package/react/{components → src/components}/molecules/ThemeProvider/index.d.ts +0 -0
- /package/react/{components → src/components}/organisms/NotificationList/NotificationList.test.d.ts +0 -0
- /package/react/{components → src/components}/templates/SplitLayout/SplitLayout.d.ts +0 -0
- /package/react/{components → src/components}/templates/SplitLayout/SplitLayout.test.d.ts +0 -0
- /package/react/{components → src/components}/templates/SplitLayout/index.d.ts +0 -0
- /package/react/{components → src/components}/templates/TwoColumns/TwoColumns.d.ts +0 -0
- /package/react/{components → src/components}/templates/TwoColumns/TwoColumns.test.d.ts +0 -0
- /package/react/{main.d.ts → src/main.d.ts} +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Shadows (structural - compiled for performance)
|
|
2
|
+
// NOTE: Shadows are structural and don't change between themes
|
|
3
|
+
$shadow__color: #616161 !default;
|
|
4
|
+
$shadow__level--1:
|
|
5
|
+
0 1px 3px 0 rgba($shadow__color, 0.12),
|
|
6
|
+
0 1px 2px 0 rgba($shadow__color, 0.24) !default;
|
|
7
|
+
$shadow__level--2:
|
|
8
|
+
0 3px 6px 0 rgba($shadow__color, 0.15),
|
|
9
|
+
0 2px 4px 0 rgba($shadow__color, 0.12) !default;
|
|
10
|
+
$shadow__level--3:
|
|
11
|
+
0 10px 20px 0 rgba($shadow__color, 0.3),
|
|
12
|
+
0 3px 6px 0 rgba($shadow__color, 0.3) !default;
|
|
13
|
+
$shadow__level--4:
|
|
14
|
+
0 15px 25px 0 rgba($shadow__color, 0.15),
|
|
15
|
+
0 5px 10px 0 rgba($shadow__color, 0.05) !default;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* ===== Variations Spacing ==== */
|
|
2
|
+
$spacing--quark: 4px !default;
|
|
3
|
+
$spacing--nano: 8px !default;
|
|
4
|
+
$spacing--xxxs: 16px !default;
|
|
5
|
+
$spacing--xxs: 24px !default;
|
|
6
|
+
$spacing--xs: 32px !default;
|
|
7
|
+
$spacing--sm: 40px !default;
|
|
8
|
+
$spacing--md: 48px !default;
|
|
9
|
+
$spacing--lg: 56px !default;
|
|
10
|
+
$spacing--xl: 64px !default;
|
|
11
|
+
$spacing--xxl: 72px !default;
|
|
12
|
+
$spacing--xxxl: 80px !default;
|
|
13
|
+
$spacing: (
|
|
14
|
+
'quark': $spacing--quark,
|
|
15
|
+
'nano': $spacing--nano,
|
|
16
|
+
'xxxs': $spacing--xxxs,
|
|
17
|
+
'xxs': $spacing--xxs,
|
|
18
|
+
'xs': $spacing--xs,
|
|
19
|
+
'sm': $spacing--sm,
|
|
20
|
+
'md': $spacing--md,
|
|
21
|
+
'lg': $spacing--lg,
|
|
22
|
+
'xl': $spacing--xl,
|
|
23
|
+
'xxl': $spacing--xxl,
|
|
24
|
+
'xxxl': $spacing--xxxl,
|
|
25
|
+
) !default;
|
|
26
|
+
|
|
27
|
+
/* ===== Inset Spacing ==== */
|
|
28
|
+
$spacing__inset--quark: 4px !default;
|
|
29
|
+
$spacing__inset--nano: 8px !default;
|
|
30
|
+
$spacing__inset--xs: 16px !default;
|
|
31
|
+
$spacing__inset--sm: 24px !default;
|
|
32
|
+
$spacing__inset--md: 32px !default;
|
|
33
|
+
$spacing__inset--lg: 40px !default;
|
|
34
|
+
$spacing__inset: (
|
|
35
|
+
'quark': $spacing__inset--quark,
|
|
36
|
+
'nano': $spacing__inset--nano,
|
|
37
|
+
'xs': $spacing__inset--xs,
|
|
38
|
+
'sm': $spacing__inset--sm,
|
|
39
|
+
'md': $spacing__inset--md,
|
|
40
|
+
'lg': $spacing__inset--lg,
|
|
41
|
+
) !default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Typography tokens (structural - not theme-specific)
|
|
2
|
+
|
|
3
|
+
// Font sizes (same for all themes)
|
|
4
|
+
$font__size--xxs: 10px !default;
|
|
5
|
+
$font__size--xs: 12px !default;
|
|
6
|
+
$font__size--sm: 14px !default;
|
|
7
|
+
$font__size--md: 16px !default;
|
|
8
|
+
$font__size--lg: 20px !default;
|
|
9
|
+
$font__size--xl: 24px !default;
|
|
10
|
+
$font__size--xxl: 32px !default;
|
|
11
|
+
$font__size--xxxl: 40px !default;
|
|
12
|
+
$font__size--huge: 56px !default;
|
|
13
|
+
|
|
14
|
+
// Font weights (same for all themes)
|
|
15
|
+
$font__weight--extralight: 200 !default;
|
|
16
|
+
$font__weight--light: 300 !default;
|
|
17
|
+
$font__weight--regular: 400 !default;
|
|
18
|
+
$font__weight--medium: 500 !default;
|
|
19
|
+
$font__weight--semibold: 600 !default;
|
|
20
|
+
$font__weight--bold: 700 !default;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
// AON theme colors (red theme)
|
|
2
|
+
|
|
3
|
+
// primary (AON red)
|
|
4
|
+
$color__primary--darker: #b2100d !default;
|
|
5
|
+
$color__primary--dark: #cc1311 !default;
|
|
6
|
+
$color__primary: #e80300 !default;
|
|
7
|
+
$color__primary--light: #ef312f !default;
|
|
8
|
+
$color__primary--lighter: #fb8c8b !default;
|
|
9
|
+
$color__primary--lightest: #fcb7b7 !default;
|
|
10
|
+
$colors__primary: (
|
|
11
|
+
'darker': $color__primary--darker,
|
|
12
|
+
'dark': $color__primary--dark,
|
|
13
|
+
'default': $color__primary,
|
|
14
|
+
'light': $color__primary--light,
|
|
15
|
+
'lighter': $color__primary--lighter,
|
|
16
|
+
'lightest': $color__primary--lightest,
|
|
17
|
+
) !default;
|
|
18
|
+
|
|
19
|
+
// secondary (AON dark)
|
|
20
|
+
$color__secondary--darker: #141416 !default;
|
|
21
|
+
$color__secondary--dark: #1d1e26 !default;
|
|
22
|
+
$color__secondary: #262836 !default;
|
|
23
|
+
$color__secondary--light: #333751 !default;
|
|
24
|
+
$color__secondary--lighter: #51577a !default;
|
|
25
|
+
$color__secondary--lightest: #6e75a1 !default;
|
|
26
|
+
$colors__secondary: (
|
|
27
|
+
'darker': $color__secondary--darker,
|
|
28
|
+
'dark': $color__secondary--dark,
|
|
29
|
+
'default': $color__secondary,
|
|
30
|
+
'light': $color__secondary--light,
|
|
31
|
+
'lighter': $color__secondary--lighter,
|
|
32
|
+
'lightest': $color__secondary--lightest,
|
|
33
|
+
) !default;
|
|
34
|
+
|
|
35
|
+
// success
|
|
36
|
+
$color__success--dark: #007347 !default;
|
|
37
|
+
$color__success: #bde094 !default;
|
|
38
|
+
$color__success--light: #dbedc7 !default;
|
|
39
|
+
$color__success--lighter: #e6eddf !default;
|
|
40
|
+
$colors__success: (
|
|
41
|
+
'dark': $color__success--dark,
|
|
42
|
+
'default': $color__success,
|
|
43
|
+
'light': $color__success--light,
|
|
44
|
+
'lighter': $color__success--lighter,
|
|
45
|
+
) !default;
|
|
46
|
+
|
|
47
|
+
// warning
|
|
48
|
+
$color__warning--dark: #ffb81c !default;
|
|
49
|
+
$color__warning: #ffc766 !default;
|
|
50
|
+
$color__warning--light: #feebcb !default;
|
|
51
|
+
$color__warning--lighter: #fef5e5 !default;
|
|
52
|
+
$colors__warning: (
|
|
53
|
+
'dark': $color__warning--dark,
|
|
54
|
+
'default': $color__warning,
|
|
55
|
+
'light': $color__warning--light,
|
|
56
|
+
'lighter': $color__warning--lighter,
|
|
57
|
+
) !default;
|
|
58
|
+
|
|
59
|
+
// danger
|
|
60
|
+
$color__danger--dark: #b23b3c !default;
|
|
61
|
+
$color__danger: #fa5254 !default;
|
|
62
|
+
$color__danger--light: #fa898b !default;
|
|
63
|
+
$color__danger--lighter: #fad5d5 !default;
|
|
64
|
+
$colors__danger: (
|
|
65
|
+
'dark': $color__danger--dark,
|
|
66
|
+
'default': $color__danger,
|
|
67
|
+
'light': $color__danger--light,
|
|
68
|
+
'lighter': $color__danger--lighter,
|
|
69
|
+
) !default;
|
|
70
|
+
|
|
71
|
+
// info
|
|
72
|
+
$color__info--dark: #4021d9 !default;
|
|
73
|
+
$color__info: #7040ff !default;
|
|
74
|
+
$color__info--light: #d5ccff !default;
|
|
75
|
+
$color__info--lighter: #eae5ff !default;
|
|
76
|
+
$colors__info: (
|
|
77
|
+
'dark': $color__info--dark,
|
|
78
|
+
'default': $color__info,
|
|
79
|
+
'light': $color__info--light,
|
|
80
|
+
'lighter': $color__info--lighter,
|
|
81
|
+
) !default;
|
|
82
|
+
|
|
83
|
+
// neutral (inherit from default theme - not redefined in AON)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// AON theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='aon'] {
|
|
6
|
+
// ===== PRIMARY COLORS (AON red) =====
|
|
7
|
+
--color__primary--darker: #{$color__primary--darker};
|
|
8
|
+
--color__primary--dark: #{$color__primary--dark};
|
|
9
|
+
--color__primary: #{$color__primary};
|
|
10
|
+
--color__primary--light: #{$color__primary--light};
|
|
11
|
+
--color__primary--lighter: #{$color__primary--lighter};
|
|
12
|
+
--color__primary--lightest: #{$color__primary--lightest};
|
|
13
|
+
|
|
14
|
+
// ===== SECONDARY COLORS (AON dark) =====
|
|
15
|
+
--color__secondary--darker: #{$color__secondary--darker};
|
|
16
|
+
--color__secondary--dark: #{$color__secondary--dark};
|
|
17
|
+
--color__secondary: #{$color__secondary};
|
|
18
|
+
--color__secondary--light: #{$color__secondary--light};
|
|
19
|
+
--color__secondary--lighter: #{$color__secondary--lighter};
|
|
20
|
+
--color__secondary--lightest: #{$color__secondary--lightest};
|
|
21
|
+
|
|
22
|
+
// ===== SUCCESS COLORS =====
|
|
23
|
+
--color__success--dark: #{$color__success--dark};
|
|
24
|
+
--color__success: #{$color__success};
|
|
25
|
+
--color__success--light: #{$color__success--light};
|
|
26
|
+
--color__success--lighter: #{$color__success--lighter};
|
|
27
|
+
|
|
28
|
+
// ===== WARNING COLORS =====
|
|
29
|
+
--color__warning--dark: #{$color__warning--dark};
|
|
30
|
+
--color__warning: #{$color__warning};
|
|
31
|
+
--color__warning--light: #{$color__warning--light};
|
|
32
|
+
--color__warning--lighter: #{$color__warning--lighter};
|
|
33
|
+
|
|
34
|
+
// ===== DANGER COLORS =====
|
|
35
|
+
--color__danger--dark: #{$color__danger--dark};
|
|
36
|
+
--color__danger: #{$color__danger};
|
|
37
|
+
--color__danger--light: #{$color__danger--light};
|
|
38
|
+
--color__danger--lighter: #{$color__danger--lighter};
|
|
39
|
+
|
|
40
|
+
// ===== INFO COLORS =====
|
|
41
|
+
--color__info--dark: #{$color__info--dark};
|
|
42
|
+
--color__info: #{$color__info};
|
|
43
|
+
--color__info--light: #{$color__info--light};
|
|
44
|
+
--color__info--lighter: #{$color__info--lighter};
|
|
45
|
+
|
|
46
|
+
// ===== TYPOGRAPHY =====
|
|
47
|
+
--font__family--base: #{$font__family--base};
|
|
48
|
+
--font__family--highlight: #{$font__family--highlight};
|
|
49
|
+
|
|
50
|
+
// Button overrides (AON-specific)
|
|
51
|
+
.ds-button {
|
|
52
|
+
--button__border-radius: 999px; // pill (full rounded)
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// AON theme typography (only font-families - sizes/weights in core)
|
|
2
|
+
@import 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap';
|
|
3
|
+
@import 'https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap';
|
|
4
|
+
|
|
5
|
+
// Font families (theme-specific)
|
|
6
|
+
$font__family--base: 'Inter', sans-serif !default;
|
|
7
|
+
$font__family--highlight: 'Inter', sans-serif !default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// Bees Bank theme colors (gradient theme)
|
|
2
|
+
|
|
3
|
+
// brand gradient
|
|
4
|
+
$brand-gradiant: linear-gradient(
|
|
5
|
+
46.18deg,
|
|
6
|
+
#ff0 19.1%,
|
|
7
|
+
#f9ff07 24.26%,
|
|
8
|
+
#ecff1c 31.63%,
|
|
9
|
+
#d5ff3e 40.47%,
|
|
10
|
+
#b5ff6d 50.78%,
|
|
11
|
+
#8cffaa 61.84%,
|
|
12
|
+
#5cfff3 73.62%,
|
|
13
|
+
#55fffe 75.83%
|
|
14
|
+
) !default;
|
|
15
|
+
|
|
16
|
+
// primary (Bees gradient)
|
|
17
|
+
$color__primary--darker: #8e9911 !default;
|
|
18
|
+
$color__primary--dark: #ecff1c !default;
|
|
19
|
+
$color__primary: $brand-gradiant !default;
|
|
20
|
+
$color__primary--light: #f0ff49 !default;
|
|
21
|
+
$color__primary--lighter: #f6ff8e !default;
|
|
22
|
+
$color__primary--lightest: #fbffd2 !default;
|
|
23
|
+
$colors__primary: (
|
|
24
|
+
'darker': $color__primary--darker,
|
|
25
|
+
'dark': $color__primary--dark,
|
|
26
|
+
'default': $color__primary,
|
|
27
|
+
'light': $color__primary--light,
|
|
28
|
+
'lighter': $color__primary--lighter,
|
|
29
|
+
'lightest': $color__primary--lightest,
|
|
30
|
+
) !default;
|
|
31
|
+
|
|
32
|
+
// NOTE: secondary, neutral, success, warning, danger, info inherit from default theme
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// Bees Bank theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='bees'] {
|
|
6
|
+
// ===== PRIMARY COLORS (Bees gradient) =====
|
|
7
|
+
--color__primary--darker: #{$color__primary--darker};
|
|
8
|
+
--color__primary--dark: #{$color__primary--dark};
|
|
9
|
+
--color__primary: #{$color__primary};
|
|
10
|
+
--color__primary--light: #{$color__primary--light};
|
|
11
|
+
--color__primary--lighter: #{$color__primary--lighter};
|
|
12
|
+
--color__primary--lightest: #{$color__primary--lightest};
|
|
13
|
+
|
|
14
|
+
// ===== TYPOGRAPHY (Barlow + Work Sans) =====
|
|
15
|
+
--font__family--base: #{$font__family--base};
|
|
16
|
+
--font__family--highlight: #{$font__family--highlight};
|
|
17
|
+
|
|
18
|
+
// Button overrides (Bees-specific)
|
|
19
|
+
.ds-button {
|
|
20
|
+
// Sass var overrides
|
|
21
|
+
--button__text-transform: uppercase;
|
|
22
|
+
--button__letter-spacing: 1px;
|
|
23
|
+
--button__border-width: 2px;
|
|
24
|
+
|
|
25
|
+
// Color overrides (inverted scheme)
|
|
26
|
+
--button-background-color__primary: var(--color__neutral--100);
|
|
27
|
+
--button-color__primary: var(--color__neutral--00);
|
|
28
|
+
--button-color__primary--hover: var(--color__neutral--100);
|
|
29
|
+
--button-color__primary--active: var(--color__neutral--100);
|
|
30
|
+
--button-background-color__primary--hover: var(--color__primary);
|
|
31
|
+
--button-background-color__primary--active: var(--color__primary--dark);
|
|
32
|
+
|
|
33
|
+
// Outline inverted
|
|
34
|
+
--button-color__primary-outline: var(--color__neutral--100);
|
|
35
|
+
--button-color__primary-outline--active: var(--color__neutral--100);
|
|
36
|
+
--button-background-color__primary-outline--hover: var(--color__primary);
|
|
37
|
+
--button-background-color__primary-outline--active: var(
|
|
38
|
+
--color__primary--light
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
// Text variant (NOT inverted - uses normal colors)
|
|
42
|
+
--button-color__primary-text: var(--color__primary);
|
|
43
|
+
--button-color__primary-text--active: var(--color__primary--dark);
|
|
44
|
+
--button-background-color__primary-text--hover: var(
|
|
45
|
+
--color__primary--lighter
|
|
46
|
+
);
|
|
47
|
+
--button-background-color__primary-text--active: var(
|
|
48
|
+
--color__primary--light
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Bees Bank theme typography
|
|
2
|
+
@import 'https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap';
|
|
3
|
+
@import 'https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap';
|
|
4
|
+
|
|
5
|
+
$font__family--base: 'Work Sans', sans-serif !default;
|
|
6
|
+
$font__family--highlight: 'Barlow', sans-serif !default;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// BMC theme colors (yellow/black/gray theme)
|
|
2
|
+
|
|
3
|
+
// primary (BMC yellow/black/gray)
|
|
4
|
+
$color__primary--darker: #ffb81c !default;
|
|
5
|
+
$color__primary--dark: #000 !default;
|
|
6
|
+
$color__primary: #f5f5f5 !default;
|
|
7
|
+
$color__primary--light: #f3f9ec !default;
|
|
8
|
+
$color__primary--lighter: #fb8c8b !default;
|
|
9
|
+
$color__primary--lightest: #fcb7b7 !default;
|
|
10
|
+
$colors__primary: (
|
|
11
|
+
'darker': $color__primary--darker,
|
|
12
|
+
'dark': $color__primary--dark,
|
|
13
|
+
'default': $color__primary,
|
|
14
|
+
'light': $color__primary--light,
|
|
15
|
+
'lighter': $color__primary--lighter,
|
|
16
|
+
'lightest': $color__primary--lightest,
|
|
17
|
+
) !default;
|
|
18
|
+
|
|
19
|
+
// secondary (BMC grays)
|
|
20
|
+
$color__secondary--darker: #2e2e33 !default;
|
|
21
|
+
$color__secondary--dark: #757575 !default;
|
|
22
|
+
$color__secondary: #262836 !default;
|
|
23
|
+
$color__secondary--light: #babdb6 !default;
|
|
24
|
+
$color__secondary--lighter: #51577a !default;
|
|
25
|
+
$color__secondary--lightest: #f5f5f5 !default;
|
|
26
|
+
$colors__secondary: (
|
|
27
|
+
'darker': $color__secondary--darker,
|
|
28
|
+
'dark': $color__secondary--dark,
|
|
29
|
+
'default': $color__secondary,
|
|
30
|
+
'light': $color__secondary--light,
|
|
31
|
+
'lighter': $color__secondary--lighter,
|
|
32
|
+
'lightest': $color__secondary--lightest,
|
|
33
|
+
) !default;
|
|
34
|
+
|
|
35
|
+
// success
|
|
36
|
+
$color__success--dark: #007347 !default;
|
|
37
|
+
$color__success: #bde094 !default;
|
|
38
|
+
$color__success--light: #dbedc7 !default;
|
|
39
|
+
$color__success--lighter: #e6eddf !default;
|
|
40
|
+
$colors__success: (
|
|
41
|
+
'dark': $color__success--dark,
|
|
42
|
+
'default': $color__success,
|
|
43
|
+
'light': $color__success--light,
|
|
44
|
+
'lighter': $color__success--lighter,
|
|
45
|
+
) !default;
|
|
46
|
+
|
|
47
|
+
// warning
|
|
48
|
+
$color__warning--dark: #ffb81c !default;
|
|
49
|
+
$color__warning: #ffc766 !default;
|
|
50
|
+
$color__warning--light: #feebcb !default;
|
|
51
|
+
$color__warning--lighter: #fef5e5 !default;
|
|
52
|
+
$colors__warning: (
|
|
53
|
+
'dark': $color__warning--dark,
|
|
54
|
+
'default': $color__warning,
|
|
55
|
+
'light': $color__warning--light,
|
|
56
|
+
'lighter': $color__warning--lighter,
|
|
57
|
+
) !default;
|
|
58
|
+
|
|
59
|
+
// danger
|
|
60
|
+
$color__danger--dark: #b23b3c !default;
|
|
61
|
+
$color__danger: #fa5254 !default;
|
|
62
|
+
$color__danger--light: #fa898b !default;
|
|
63
|
+
$color__danger--lighter: #fad5d5 !default;
|
|
64
|
+
$colors__danger: (
|
|
65
|
+
'dark': $color__danger--dark,
|
|
66
|
+
'default': $color__danger,
|
|
67
|
+
'light': $color__danger--light,
|
|
68
|
+
'lighter': $color__danger--lighter,
|
|
69
|
+
) !default;
|
|
70
|
+
|
|
71
|
+
// info
|
|
72
|
+
$color__info--dark: #4021d9 !default;
|
|
73
|
+
$color__info: #7040ff !default;
|
|
74
|
+
$color__info--light: #d5ccff !default;
|
|
75
|
+
$color__info--lighter: #eae5ff !default;
|
|
76
|
+
$colors__info: (
|
|
77
|
+
'dark': $color__info--dark,
|
|
78
|
+
'default': $color__info,
|
|
79
|
+
'light': $color__info--light,
|
|
80
|
+
'lighter': $color__info--lighter,
|
|
81
|
+
) !default;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// BMC theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='bmc'] {
|
|
6
|
+
// ===== PRIMARY COLORS (BMC yellow/black/gray) =====
|
|
7
|
+
--color__primary--darker: #{$color__primary--darker};
|
|
8
|
+
--color__primary--dark: #{$color__primary--dark};
|
|
9
|
+
--color__primary: #{$color__primary};
|
|
10
|
+
--color__primary--light: #{$color__primary--light};
|
|
11
|
+
--color__primary--lighter: #{$color__primary--lighter};
|
|
12
|
+
--color__primary--lightest: #{$color__primary--lightest};
|
|
13
|
+
|
|
14
|
+
// ===== SECONDARY COLORS (BMC grays) =====
|
|
15
|
+
--color__secondary--darker: #{$color__secondary--darker};
|
|
16
|
+
--color__secondary--dark: #{$color__secondary--dark};
|
|
17
|
+
--color__secondary: #{$color__secondary};
|
|
18
|
+
--color__secondary--light: #{$color__secondary--light};
|
|
19
|
+
--color__secondary--lighter: #{$color__secondary--lighter};
|
|
20
|
+
--color__secondary--lightest: #{$color__secondary--lightest};
|
|
21
|
+
|
|
22
|
+
// ===== SUCCESS COLORS =====
|
|
23
|
+
--color__success--dark: #{$color__success--dark};
|
|
24
|
+
--color__success: #{$color__success};
|
|
25
|
+
--color__success--light: #{$color__success--light};
|
|
26
|
+
--color__success--lighter: #{$color__success--lighter};
|
|
27
|
+
|
|
28
|
+
// ===== WARNING COLORS =====
|
|
29
|
+
--color__warning--dark: #{$color__warning--dark};
|
|
30
|
+
--color__warning: #{$color__warning};
|
|
31
|
+
--color__warning--light: #{$color__warning--light};
|
|
32
|
+
--color__warning--lighter: #{$color__warning--lighter};
|
|
33
|
+
|
|
34
|
+
// ===== DANGER COLORS =====
|
|
35
|
+
--color__danger--dark: #{$color__danger--dark};
|
|
36
|
+
--color__danger: #{$color__danger};
|
|
37
|
+
--color__danger--light: #{$color__danger--light};
|
|
38
|
+
--color__danger--lighter: #{$color__danger--lighter};
|
|
39
|
+
|
|
40
|
+
// ===== INFO COLORS =====
|
|
41
|
+
--color__info--dark: #{$color__info--dark};
|
|
42
|
+
--color__info: #{$color__info};
|
|
43
|
+
--color__info--light: #{$color__info--light};
|
|
44
|
+
--color__info--lighter: #{$color__info--lighter};
|
|
45
|
+
|
|
46
|
+
// ===== TYPOGRAPHY (Roboto Condensed) =====
|
|
47
|
+
--font__family--base: #{$font__family--base};
|
|
48
|
+
--font__family--highlight: #{$font__family--highlight};
|
|
49
|
+
|
|
50
|
+
// Button overrides (BMC-specific)
|
|
51
|
+
.ds-button {
|
|
52
|
+
--button-color__primary: var(--color__primary--dark);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
// Default theme color definitions (from default/tokens/global/colors.scss)
|
|
2
|
+
|
|
3
|
+
// primary
|
|
4
|
+
$color__primary--darker: #720028 !default;
|
|
5
|
+
$color__primary--dark: #b2003f !default;
|
|
6
|
+
$color__primary: #e3175e !default;
|
|
7
|
+
$color__primary--light: #faaec9 !default;
|
|
8
|
+
$color__primary--lighter: #ffd9e6 !default;
|
|
9
|
+
$color__primary--lightest: #ffebf1 !default;
|
|
10
|
+
$colors__primary: (
|
|
11
|
+
'darker': $color__primary--darker,
|
|
12
|
+
'dark': $color__primary--dark,
|
|
13
|
+
'default': $color__primary,
|
|
14
|
+
'light': $color__primary--light,
|
|
15
|
+
'lighter': $color__primary--lighter,
|
|
16
|
+
'lightest': $color__primary--lightest,
|
|
17
|
+
) !default;
|
|
18
|
+
|
|
19
|
+
// secondary
|
|
20
|
+
$color__secondary--darker: #001d40 !default;
|
|
21
|
+
$color__secondary--dark: #062854 !default;
|
|
22
|
+
$color__secondary: #1c4173 !default;
|
|
23
|
+
$color__secondary--light: #7c97b8 !default;
|
|
24
|
+
$color__secondary--lighter: #dee7f1 !default;
|
|
25
|
+
$color__secondary--lightest: #ebf1f7 !default;
|
|
26
|
+
$colors__secondary: (
|
|
27
|
+
'darker': $color__secondary--darker,
|
|
28
|
+
'dark': $color__secondary--dark,
|
|
29
|
+
'default': $color__secondary,
|
|
30
|
+
'light': $color__secondary--light,
|
|
31
|
+
'lighter': $color__secondary--lighter,
|
|
32
|
+
'lightest': $color__secondary--lightest,
|
|
33
|
+
) !default;
|
|
34
|
+
|
|
35
|
+
// neutral
|
|
36
|
+
$color__neutral--00: #fff !default;
|
|
37
|
+
$color__neutral--05: #fafafa !default;
|
|
38
|
+
$color__neutral--10: #f5f5f5 !default;
|
|
39
|
+
$color__neutral--20: #eee !default;
|
|
40
|
+
$color__neutral--30: #e0e0e0 !default;
|
|
41
|
+
$color__neutral--40: #bdbdbd !default;
|
|
42
|
+
$color__neutral--50: #9e9e9e !default;
|
|
43
|
+
$color__neutral--60: #757575 !default;
|
|
44
|
+
$color__neutral--70: #616161 !default;
|
|
45
|
+
$color__neutral--80: #424242 !default;
|
|
46
|
+
$color__neutral--90: #212121 !default;
|
|
47
|
+
$color__neutral--100: #1f1b1c !default;
|
|
48
|
+
$colors__neutral: (
|
|
49
|
+
'00': $color__neutral--00,
|
|
50
|
+
'05': $color__neutral--05,
|
|
51
|
+
'10': $color__neutral--10,
|
|
52
|
+
'20': $color__neutral--20,
|
|
53
|
+
'30': $color__neutral--30,
|
|
54
|
+
'40': $color__neutral--40,
|
|
55
|
+
'50': $color__neutral--50,
|
|
56
|
+
'60': $color__neutral--60,
|
|
57
|
+
'70': $color__neutral--70,
|
|
58
|
+
'80': $color__neutral--80,
|
|
59
|
+
'90': $color__neutral--90,
|
|
60
|
+
'100': $color__neutral--100,
|
|
61
|
+
) !default;
|
|
62
|
+
|
|
63
|
+
// success
|
|
64
|
+
$color__success--dark: #319c00 !default;
|
|
65
|
+
$color__success: #70c24a !default;
|
|
66
|
+
$color__success--light: #a9e88b !default;
|
|
67
|
+
$color__success--lighter: #e5ffd9 !default;
|
|
68
|
+
$colors__success: (
|
|
69
|
+
'dark': $color__success--dark,
|
|
70
|
+
'default': $color__success,
|
|
71
|
+
'light': $color__success--light,
|
|
72
|
+
'lighter': $color__success--lighter,
|
|
73
|
+
) !default;
|
|
74
|
+
|
|
75
|
+
// warning
|
|
76
|
+
$color__warning--dark: #c78800 !default;
|
|
77
|
+
$color__warning: #e6a100 !default;
|
|
78
|
+
$color__warning--light: #ffda91 !default;
|
|
79
|
+
$color__warning--lighter: #fff3da !default;
|
|
80
|
+
$colors__warning: (
|
|
81
|
+
'dark': $color__warning--dark,
|
|
82
|
+
'default': $color__warning,
|
|
83
|
+
'light': $color__warning--light,
|
|
84
|
+
'lighter': $color__warning--lighter,
|
|
85
|
+
) !default;
|
|
86
|
+
|
|
87
|
+
// danger
|
|
88
|
+
$color__danger--dark: #a00505 !default;
|
|
89
|
+
$color__danger: #e01b1b !default;
|
|
90
|
+
$color__danger--light: #ff7171 !default;
|
|
91
|
+
$color__danger--lighter: #ffc0c0 !default;
|
|
92
|
+
$colors__danger: (
|
|
93
|
+
'dark': $color__danger--dark,
|
|
94
|
+
'default': $color__danger,
|
|
95
|
+
'light': $color__danger--light,
|
|
96
|
+
'lighter': $color__danger--lighter,
|
|
97
|
+
) !default;
|
|
98
|
+
|
|
99
|
+
// info
|
|
100
|
+
$color__info--dark: #039 !default;
|
|
101
|
+
$color__info: #04c !default;
|
|
102
|
+
$color__info--light: #1a66ff !default;
|
|
103
|
+
$color__info--lighter: #e6eeff !default;
|
|
104
|
+
$colors__info: (
|
|
105
|
+
'dark': $color__info--dark,
|
|
106
|
+
'default': $color__info,
|
|
107
|
+
'light': $color__info--light,
|
|
108
|
+
'lighter': $color__info--lighter,
|
|
109
|
+
) !default;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// Default theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
// ===== GLOBAL (Light mode) =====
|
|
7
|
+
--background__color: var(--color__neutral--00);
|
|
8
|
+
--background__color--backdrop: var(--color__neutral--10);
|
|
9
|
+
--background__color--content: var(--background__color);
|
|
10
|
+
--text__color: var(--color__neutral--80);
|
|
11
|
+
|
|
12
|
+
// ===== PRIMARY COLORS =====
|
|
13
|
+
--color__primary--darker: #{$color__primary--darker};
|
|
14
|
+
--color__primary--dark: #{$color__primary--dark};
|
|
15
|
+
--color__primary: #{$color__primary};
|
|
16
|
+
--color__primary--light: #{$color__primary--light};
|
|
17
|
+
--color__primary--lighter: #{$color__primary--lighter};
|
|
18
|
+
--color__primary--lightest: #{$color__primary--lightest};
|
|
19
|
+
|
|
20
|
+
// ===== SECONDARY COLORS =====
|
|
21
|
+
--color__secondary--darker: #{$color__secondary--darker};
|
|
22
|
+
--color__secondary--dark: #{$color__secondary--dark};
|
|
23
|
+
--color__secondary: #{$color__secondary};
|
|
24
|
+
--color__secondary--light: #{$color__secondary--light};
|
|
25
|
+
--color__secondary--lighter: #{$color__secondary--lighter};
|
|
26
|
+
--color__secondary--lightest: #{$color__secondary--lightest};
|
|
27
|
+
|
|
28
|
+
// ===== NEUTRAL COLORS =====
|
|
29
|
+
--color__neutral--00: #{$color__neutral--00};
|
|
30
|
+
--color__neutral--05: #{$color__neutral--05};
|
|
31
|
+
--color__neutral--10: #{$color__neutral--10};
|
|
32
|
+
--color__neutral--20: #{$color__neutral--20};
|
|
33
|
+
--color__neutral--30: #{$color__neutral--30};
|
|
34
|
+
--color__neutral--40: #{$color__neutral--40};
|
|
35
|
+
--color__neutral--50: #{$color__neutral--50};
|
|
36
|
+
--color__neutral--60: #{$color__neutral--60};
|
|
37
|
+
--color__neutral--70: #{$color__neutral--70};
|
|
38
|
+
--color__neutral--80: #{$color__neutral--80};
|
|
39
|
+
--color__neutral--90: #{$color__neutral--90};
|
|
40
|
+
--color__neutral--100: #{$color__neutral--100};
|
|
41
|
+
|
|
42
|
+
// ===== SUCCESS COLORS =====
|
|
43
|
+
--color__success--dark: #{$color__success--dark};
|
|
44
|
+
--color__success: #{$color__success};
|
|
45
|
+
--color__success--light: #{$color__success--light};
|
|
46
|
+
--color__success--lighter: #{$color__success--lighter};
|
|
47
|
+
|
|
48
|
+
// ===== WARNING COLORS =====
|
|
49
|
+
--color__warning--dark: #{$color__warning--dark};
|
|
50
|
+
--color__warning: #{$color__warning};
|
|
51
|
+
--color__warning--light: #{$color__warning--light};
|
|
52
|
+
--color__warning--lighter: #{$color__warning--lighter};
|
|
53
|
+
|
|
54
|
+
// ===== DANGER COLORS =====
|
|
55
|
+
--color__danger--dark: #{$color__danger--dark};
|
|
56
|
+
--color__danger: #{$color__danger};
|
|
57
|
+
--color__danger--light: #{$color__danger--light};
|
|
58
|
+
--color__danger--lighter: #{$color__danger--lighter};
|
|
59
|
+
|
|
60
|
+
// ===== INFO COLORS =====
|
|
61
|
+
--color__info--dark: #{$color__info--dark};
|
|
62
|
+
--color__info: #{$color__info};
|
|
63
|
+
--color__info--light: #{$color__info--light};
|
|
64
|
+
--color__info--lighter: #{$color__info--lighter};
|
|
65
|
+
|
|
66
|
+
// ===== TYPOGRAPHY =====
|
|
67
|
+
--font__family--base: #{$font__family--base};
|
|
68
|
+
--font__family--highlight: #{$font__family--highlight};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// ===== DARK MODE (Future Implementation) =====
|
|
72
|
+
[data-theme='dark'] {
|
|
73
|
+
// ===== GLOBAL =====
|
|
74
|
+
--background__color: var(--color__neutral--90);
|
|
75
|
+
--background__color--backdrop: var(--color__neutral--100);
|
|
76
|
+
--background__color--content: var(--background__color);
|
|
77
|
+
--text__color: var(--color__neutral--10);
|
|
78
|
+
|
|
79
|
+
// NOTE: Component-specific dark mode vars to be added in future (checkbox, input, textarea, accordion, tabs, etc.)
|
|
80
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Default theme typography (only font-families - sizes/weights in core)
|
|
2
|
+
@import 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap';
|
|
3
|
+
@import 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap';
|
|
4
|
+
|
|
5
|
+
// Font families (theme-specific)
|
|
6
|
+
$font__family--base: 'Open Sans' !default;
|
|
7
|
+
$font__family--highlight: 'Poppins' !default;
|