@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,35 @@
|
|
|
1
|
+
// Linker theme colors (coral theme)
|
|
2
|
+
|
|
3
|
+
// primary (Linker coral)
|
|
4
|
+
$color__primary--darker: #ad4a3d !default;
|
|
5
|
+
$color__primary--dark: #cc574a !default;
|
|
6
|
+
$color__primary: #ff6d5c !default;
|
|
7
|
+
$color__primary--light: #ff8173 !default;
|
|
8
|
+
$color__primary--lighter: #ffa399 !default;
|
|
9
|
+
$color__primary--lightest: #ffd1cc !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 (Linker blacks/grays)
|
|
20
|
+
$color__secondary--darker: #333 !default;
|
|
21
|
+
$color__secondary--dark: #666 !default;
|
|
22
|
+
$color__secondary: #000 !default;
|
|
23
|
+
$color__secondary--light: #999 !default;
|
|
24
|
+
$color__secondary--lighter: #ccc !default;
|
|
25
|
+
$color__secondary--lightest: #f2f2f2 !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
|
+
// NOTE: success, warning, danger, info inherit from default theme
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// Linker theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='linker'] {
|
|
6
|
+
// ===== PRIMARY COLORS (Linker coral) =====
|
|
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 (Linker blacks/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
|
+
// ===== TYPOGRAPHY (Anton + DM Sans) =====
|
|
23
|
+
--font__family--base: #{$font__family--base};
|
|
24
|
+
--font__family--highlight: #{$font__family--highlight};
|
|
25
|
+
|
|
26
|
+
// Button overrides (Linker-specific)
|
|
27
|
+
.ds-button {
|
|
28
|
+
--button__border-radius: 999px; // pill (full rounded)
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Linker theme typography
|
|
2
|
+
@import 'https://fonts.googleapis.com/css2?family=Anton&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__family--base: 'DM Sans', sans-serif !default;
|
|
6
|
+
$font__family--highlight: 'Anton', sans-serif !default;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// Oggi theme colors (green theme)
|
|
2
|
+
|
|
3
|
+
// primary (Oggi green)
|
|
4
|
+
$color__primary--darker: #4d880a !default;
|
|
5
|
+
$color__primary--dark: #000 !default;
|
|
6
|
+
$color__primary: #86c440 !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
|
|
20
|
+
$color__secondary--darker: #2e2e33 !default;
|
|
21
|
+
$color__secondary--dark: #757575 !default;
|
|
22
|
+
$color__secondary: #262836 !default;
|
|
23
|
+
$color__secondary--light: #f1f2f0 !default;
|
|
24
|
+
$color__secondary--lighter: #51577a !default;
|
|
25
|
+
$color__secondary--lightest: #fff !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
|
+
// Oggi theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='oggi'] {
|
|
6
|
+
// ===== PRIMARY COLORS (Oggi green) =====
|
|
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 =====
|
|
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 (Oggi-specific)
|
|
51
|
+
.ds-button {
|
|
52
|
+
--button-color__primary: var(--color__primary--dark);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// StreetGo theme colors (neon yellow theme)
|
|
2
|
+
|
|
3
|
+
// primary (StreetGo neon yellow)
|
|
4
|
+
$color__primary--darker: #4d880a !default;
|
|
5
|
+
$color__primary--dark: #000 !default;
|
|
6
|
+
$color__primary: #e4ff00 !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
|
|
20
|
+
$color__secondary--darker: #2e2e33 !default;
|
|
21
|
+
$color__secondary--dark: #757575 !default;
|
|
22
|
+
$color__secondary: #262836 !default;
|
|
23
|
+
$color__secondary--light: #f1f2f0 !default;
|
|
24
|
+
$color__secondary--lighter: #51577a !default;
|
|
25
|
+
$color__secondary--lightest: #000 !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
|
+
// StreetGo theme - CSS custom properties
|
|
2
|
+
@import 'colors';
|
|
3
|
+
@import 'typography';
|
|
4
|
+
|
|
5
|
+
[data-library='streetgo'] {
|
|
6
|
+
// ===== PRIMARY COLORS (StreetGo neon yellow) =====
|
|
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 =====
|
|
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 (StreetGo-specific)
|
|
51
|
+
.ds-button {
|
|
52
|
+
--button-color__primary: var(--color__primary--dark);
|
|
53
|
+
}
|
|
54
|
+
}
|