@lunit/design-system 1.0.0-a.1 → 1.0.0-a.3
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/.babelrc.json +16 -0
- package/dist/cjs/components/Alert/index.js +2 -0
- package/dist/cjs/components/Alert/index.js.map +1 -0
- package/dist/cjs/components/Button/index.js +2 -0
- package/dist/cjs/components/Button/index.js.map +1 -0
- package/dist/cjs/components/Checkbox/index.js +2 -0
- package/dist/cjs/components/Checkbox/index.js.map +1 -0
- package/dist/cjs/components/Chip/index.js +2 -0
- package/dist/cjs/components/Chip/index.js.map +1 -0
- package/dist/cjs/components/DataTable/index.js +2 -0
- package/dist/cjs/components/DataTable/index.js.map +1 -0
- package/dist/cjs/components/DatePicker/index.js +2 -0
- package/dist/cjs/components/DatePicker/index.js.map +1 -0
- package/dist/cjs/components/Dropdown/index.js +2 -0
- package/dist/cjs/components/Dropdown/index.js.map +1 -0
- package/dist/cjs/components/FormLabel/index.js +2 -0
- package/dist/cjs/components/FormLabel/index.js.map +1 -0
- package/dist/cjs/components/Modal/index.js +2 -0
- package/dist/cjs/components/Modal/index.js.map +1 -0
- package/dist/cjs/components/Radio/index.js +2 -0
- package/dist/cjs/components/Radio/index.js.map +1 -0
- package/dist/cjs/components/RadioGroup/index.js +2 -0
- package/dist/cjs/components/RadioGroup/index.js.map +1 -0
- package/dist/cjs/components/TextField/index.js +2 -0
- package/dist/cjs/components/TextField/index.js.map +1 -0
- package/dist/cjs/components/Toggle/index.js +2 -0
- package/dist/cjs/components/Toggle/index.js.map +1 -0
- package/dist/cjs/components/ToggleButton/index.js +2 -0
- package/dist/cjs/components/ToggleButton/index.js.map +1 -0
- package/dist/cjs/components/Tooltip/index.js +2 -0
- package/dist/cjs/components/Tooltip/index.js.map +1 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/components/Alert/Alert.js +19 -0
- package/dist/components/Alert/Alert.js.map +1 -0
- package/dist/components/Alert/Alert.styled.js +48 -0
- package/dist/components/Alert/Alert.styled.js.map +1 -0
- package/dist/components/Alert/Alert.types.js +2 -0
- package/dist/components/Alert/Alert.types.js.map +1 -0
- package/dist/components/Alert/Alert.utils..js +38 -0
- package/dist/components/Alert/Alert.utils..js.map +1 -0
- package/dist/components/Alert/index.js +1 -1
- package/dist/components/Alert/index.js.map +1 -1
- package/dist/components/Button/Button.js +9 -0
- package/dist/components/Button/Button.js.map +1 -0
- package/dist/components/Button/Button.styled.js +180 -0
- package/dist/components/Button/Button.styled.js.map +1 -0
- package/dist/components/Button/Button.types.js +2 -0
- package/dist/components/Button/Button.types.js.map +1 -0
- package/dist/components/Button/const.js +3 -0
- package/dist/components/Button/const.js.map +1 -0
- package/dist/components/Button/index.js +1 -1
- package/dist/components/Button/index.js.map +1 -1
- package/dist/components/Button/utils/getButtonPaddingBySizeAndKind.js +23 -0
- package/dist/components/Button/utils/getButtonPaddingBySizeAndKind.js.map +1 -0
- package/dist/components/Button/utils/getHoverStyle.js +7 -0
- package/dist/components/Button/utils/getHoverStyle.js.map +1 -0
- package/dist/components/Button/utils/getIconButtonPaddingBySizeAndKind.js +23 -0
- package/dist/components/Button/utils/getIconButtonPaddingBySizeAndKind.js.map +1 -0
- package/dist/components/Checkbox/Checkbox.js +49 -0
- package/dist/components/Checkbox/Checkbox.js.map +1 -0
- package/dist/components/Checkbox/index.js +1 -1
- package/dist/components/Checkbox/index.js.map +1 -1
- package/dist/components/Chip/Chip.js +70 -0
- package/dist/components/Chip/Chip.js.map +1 -0
- package/dist/components/Chip/Chip.styled.js +142 -0
- package/dist/components/Chip/Chip.styled.js.map +1 -0
- package/dist/components/Chip/Chip.types.js +2 -0
- package/dist/components/Chip/Chip.types.js.map +1 -0
- package/dist/components/Chip/consts.js +8 -0
- package/dist/components/Chip/consts.js.map +1 -0
- package/dist/components/Chip/index.js +1 -1
- package/dist/components/Chip/index.js.map +1 -1
- package/dist/components/DataTable/DataTable.js +7 -0
- package/dist/components/DataTable/DataTable.js.map +1 -0
- package/dist/components/DataTable/index.js +1 -1
- package/dist/components/DataTable/index.js.map +1 -1
- package/dist/components/DatePicker/DatePicker.js +7 -0
- package/dist/components/DatePicker/DatePicker.js.map +1 -0
- package/dist/components/DatePicker/index.js +1 -1
- package/dist/components/DatePicker/index.js.map +1 -1
- package/dist/components/Dropdown/Dropdown.js +7 -0
- package/dist/components/Dropdown/Dropdown.js.map +1 -0
- package/dist/components/Dropdown/index.js +1 -1
- package/dist/components/Dropdown/index.js.map +1 -1
- package/dist/components/FormLabel/FormLabel.js +7 -0
- package/dist/components/FormLabel/FormLabel.js.map +1 -0
- package/dist/components/FormLabel/FormLabel.styled.js +8 -0
- package/dist/components/FormLabel/FormLabel.styled.js.map +1 -0
- package/dist/components/FormLabel/index.js +1 -1
- package/dist/components/FormLabel/index.js.map +1 -1
- package/dist/components/Modal/Modal.js +7 -0
- package/dist/components/Modal/Modal.js.map +1 -0
- package/dist/components/Modal/index.js +1 -1
- package/dist/components/Modal/index.js.map +1 -1
- package/dist/components/Radio/Radio.js +43 -0
- package/dist/components/Radio/Radio.js.map +1 -0
- package/dist/components/Radio/index.js +1 -1
- package/dist/components/Radio/index.js.map +1 -1
- package/dist/components/RadioGroup/index.js +2 -1
- package/dist/components/RadioGroup/index.js.map +1 -1
- package/dist/components/TextField/TextField.js +19 -0
- package/dist/components/TextField/TextField.js.map +1 -0
- package/dist/components/TextField/TextField.style.js +245 -0
- package/dist/components/TextField/TextField.style.js.map +1 -0
- package/dist/components/TextField/TextField.types.js +2 -0
- package/dist/components/TextField/TextField.types.js.map +1 -0
- package/dist/components/TextField/TextFieldIcon.js +7 -0
- package/dist/components/TextField/TextFieldIcon.js.map +1 -0
- package/dist/components/TextField/index.js +1 -1
- package/dist/components/TextField/index.js.map +1 -1
- package/dist/components/Toast/Toast.js +26 -0
- package/dist/components/Toast/Toast.js.map +1 -0
- package/dist/components/Toast/Toast.styled.js +49 -0
- package/dist/components/Toast/Toast.styled.js.map +1 -0
- package/dist/components/Toast/Toast.types.js +2 -0
- package/dist/components/Toast/Toast.types.js.map +1 -0
- package/dist/components/Toast/Toast.utils.js +14 -0
- package/dist/components/Toast/Toast.utils.js.map +1 -0
- package/dist/components/Toast/index.js +2 -0
- package/dist/components/Toast/index.js.map +1 -0
- package/dist/components/Toggle/Toggle.js +13 -0
- package/dist/components/Toggle/Toggle.js.map +1 -0
- package/dist/components/Toggle/Toggle.styled.js +155 -0
- package/dist/components/Toggle/Toggle.styled.js.map +1 -0
- package/dist/components/Toggle/Toggle.types.js +2 -0
- package/dist/components/Toggle/Toggle.types.js.map +1 -0
- package/dist/components/Toggle/index.js +1 -1
- package/dist/components/Toggle/index.js.map +1 -1
- package/dist/components/ToggleButton/ToggleButton.js +12 -0
- package/dist/components/ToggleButton/ToggleButton.js.map +1 -0
- package/dist/components/ToggleButton/ToggleButton.styled.js +35 -0
- package/dist/components/ToggleButton/ToggleButton.styled.js.map +1 -0
- package/dist/components/ToggleButton/ToggleButton.types.js +2 -0
- package/dist/components/ToggleButton/ToggleButton.types.js.map +1 -0
- package/dist/components/ToggleButton/index.js +1 -1
- package/dist/components/ToggleButton/index.js.map +1 -1
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.js +7 -0
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.js.map +1 -0
- package/dist/components/ToggleButtonGroup/index.js +2 -0
- package/dist/components/ToggleButtonGroup/index.js.map +1 -0
- package/dist/components/Tooltip/Tooltip.js +7 -0
- package/dist/components/Tooltip/Tooltip.js.map +1 -0
- package/dist/components/Tooltip/index.js +1 -1
- package/dist/components/Tooltip/index.js.map +1 -1
- package/dist/components/index.js +7 -0
- package/dist/components/index.js.map +1 -0
- package/dist/foundation/Elevation/index.js +66 -0
- package/dist/foundation/Elevation/index.js.map +1 -0
- package/dist/foundation/Elevation/utils.js +9 -0
- package/dist/foundation/Elevation/utils.js.map +1 -0
- package/dist/foundation/Typography/index.js +62 -0
- package/dist/foundation/Typography/index.js.map +1 -0
- package/dist/foundation/Typography/tokens.js +155 -0
- package/dist/foundation/Typography/tokens.js.map +1 -0
- package/dist/foundation/colors/base/blue.js +26 -0
- package/dist/foundation/colors/base/blue.js.map +1 -0
- package/dist/foundation/colors/base/green.js +26 -0
- package/dist/foundation/colors/base/green.js.map +1 -0
- package/dist/foundation/colors/base/grey.js +52 -0
- package/dist/foundation/colors/base/grey.js.map +1 -0
- package/dist/foundation/colors/base/index.js +12 -0
- package/dist/foundation/colors/base/index.js.map +1 -0
- package/dist/foundation/colors/base/lunitGreen.js +26 -0
- package/dist/foundation/colors/base/lunitGreen.js.map +1 -0
- package/dist/foundation/colors/base/lunitTeal.js +26 -0
- package/dist/foundation/colors/base/lunitTeal.js.map +1 -0
- package/dist/foundation/colors/base/magenta.js +26 -0
- package/dist/foundation/colors/base/magenta.js.map +1 -0
- package/dist/foundation/colors/base/opacity.js +7 -0
- package/dist/foundation/colors/base/opacity.js.map +1 -0
- package/dist/foundation/colors/base/orange.js +26 -0
- package/dist/foundation/colors/base/orange.js.map +1 -0
- package/dist/foundation/colors/base/purple.js +26 -0
- package/dist/foundation/colors/base/purple.js.map +1 -0
- package/dist/foundation/colors/base/red.js +26 -0
- package/dist/foundation/colors/base/red.js.map +1 -0
- package/dist/foundation/colors/base/yellow.js +26 -0
- package/dist/foundation/colors/base/yellow.js.map +1 -0
- package/dist/foundation/colors/index.js +208 -0
- package/dist/foundation/colors/index.js.map +1 -0
- package/dist/foundation/colors/token/component.js +423 -0
- package/dist/foundation/colors/token/component.js.map +1 -0
- package/dist/foundation/colors/token/core.js +206 -0
- package/dist/foundation/colors/token/core.js.map +1 -0
- package/dist/foundation/colors/token/index.js +3 -0
- package/dist/foundation/colors/token/index.js.map +1 -0
- package/dist/foundation/colors/token/types.js +2 -0
- package/dist/foundation/colors/token/types.js.map +1 -0
- package/dist/foundation/colors/types.js +2 -0
- package/dist/foundation/colors/types.js.map +1 -0
- package/dist/foundation/index.js +13 -0
- package/dist/foundation/index.js.map +1 -0
- package/dist/foundation/spacing.js +2 -0
- package/dist/foundation/spacing.js.map +1 -0
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/dist/theme.js +39 -0
- package/dist/theme.js.map +1 -0
- package/dist/types/components/Alert/Alert.d.ts +4 -0
- package/dist/types/components/Alert/Alert.styled.d.ts +6 -0
- package/dist/types/components/Alert/Alert.types.d.ts +9 -0
- package/dist/types/components/Alert/Alert.utils..d.ts +4 -0
- package/dist/types/components/Button/Button.d.ts +3 -0
- package/dist/{components → types/components}/Button/Button.styled.d.ts +26 -2
- package/dist/{components → types/components}/Button/Button.types.d.ts +4 -4
- package/dist/types/components/Button/utils/getHoverStyle.d.ts +6 -0
- package/dist/types/components/Chip/Chip.styled.d.ts +79 -0
- package/dist/{components → types/components}/Chip/Chip.types.d.ts +1 -1
- package/dist/types/components/TextField/TextField.d.ts +3 -0
- package/dist/types/components/TextField/TextField.style.d.ts +9 -0
- package/dist/types/components/TextField/TextField.types.d.ts +29 -0
- package/dist/types/components/TextField/TextFieldIcon.d.ts +8 -0
- package/dist/types/components/TextField/index.d.ts +2 -0
- package/dist/types/components/Toast/Toast.d.ts +4 -0
- package/dist/types/components/Toast/Toast.styled.d.ts +1 -0
- package/dist/types/components/Toast/Toast.types.d.ts +4 -0
- package/dist/types/components/Toast/Toast.utils.d.ts +2 -0
- package/dist/types/components/Toast/index.d.ts +1 -0
- package/dist/{components → types/components}/ToggleButton/ToggleButton.styled.d.ts +1 -1
- package/dist/{components → types/components}/ToggleButton/ToggleButton.types.d.ts +4 -4
- package/dist/{foundation → types/foundation}/colors/base/grey.d.ts +16 -0
- package/dist/{foundation → types/foundation}/colors/base/lunitGreen.d.ts +2 -2
- package/dist/{foundation → types/foundation}/colors/base/lunitTeal.d.ts +2 -2
- package/dist/{foundation → types/foundation}/colors/index.d.ts +42 -9
- package/dist/{foundation → types/foundation}/colors/types.d.ts +1 -3
- package/dist/{foundation → types/foundation}/index.d.ts +37 -5
- package/dist/{index.d.ts → types/index.d.ts} +1 -0
- package/package.json +37 -23
- package/src/components/Alert/Alert.styled.ts +60 -0
- package/src/components/Alert/Alert.tsx +53 -0
- package/src/components/Alert/Alert.types.ts +10 -0
- package/src/components/Alert/Alert.utils..ts +41 -0
- package/src/components/Alert/index.ts +1 -0
- package/src/components/Button/Button.styled.ts +232 -0
- package/src/components/Button/Button.tsx +50 -0
- package/src/components/Button/Button.types.ts +25 -0
- package/src/components/Button/const.ts +2 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Button/utils/getButtonPaddingBySizeAndKind.ts +35 -0
- package/src/components/Button/utils/getHoverStyle.ts +7 -0
- package/src/components/Button/utils/getIconButtonPaddingBySizeAndKind.ts +38 -0
- package/src/components/Checkbox/Checkbox.tsx +67 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/Chip/Chip.styled.ts +164 -0
- package/src/components/Chip/Chip.tsx +132 -0
- package/src/components/Chip/Chip.types.ts +56 -0
- package/src/components/Chip/consts.ts +7 -0
- package/src/components/Chip/index.ts +1 -0
- package/src/components/DataTable/DataTable.tsx +8 -0
- package/src/components/DataTable/index.ts +1 -0
- package/src/components/DatePicker/DatePicker.tsx +8 -0
- package/src/components/DatePicker/index.ts +1 -0
- package/src/components/Dropdown/Dropdown.tsx +11 -0
- package/src/components/Dropdown/index.ts +1 -0
- package/src/components/FormLabel/FormLabel.styled.ts +8 -0
- package/src/components/FormLabel/FormLabel.tsx +9 -0
- package/src/components/FormLabel/index.ts +1 -0
- package/src/components/Modal/Modal.tsx +8 -0
- package/src/components/Modal/index.ts +1 -0
- package/src/components/Radio/Radio.tsx +58 -0
- package/src/components/Radio/index.ts +1 -0
- package/src/components/RadioGroup/index.ts +2 -0
- package/src/components/TextField/TextField.style.ts +316 -0
- package/src/components/TextField/TextField.tsx +80 -0
- package/src/components/TextField/TextField.types.ts +38 -0
- package/src/components/TextField/TextFieldIcon.tsx +24 -0
- package/src/components/TextField/index.ts +7 -0
- package/src/components/Toast/Toast.styled.ts +49 -0
- package/src/components/Toast/Toast.tsx +66 -0
- package/src/components/Toast/Toast.types.ts +14 -0
- package/src/components/Toast/Toast.utils.ts +15 -0
- package/src/components/Toast/index.tsx +1 -0
- package/src/components/Toggle/Toggle.styled.ts +162 -0
- package/src/components/Toggle/Toggle.tsx +18 -0
- package/src/components/Toggle/Toggle.types.ts +14 -0
- package/src/components/Toggle/index.ts +1 -0
- package/src/components/ToggleButton/ToggleButton.styled.ts +58 -0
- package/src/components/ToggleButton/ToggleButton.tsx +89 -0
- package/src/components/ToggleButton/ToggleButton.types.ts +25 -0
- package/src/components/ToggleButton/index.ts +1 -0
- package/src/components/ToggleButtonGroup/ToggleButtonGroup.tsx +13 -0
- package/src/components/ToggleButtonGroup/index.tsx +1 -0
- package/src/components/Tooltip/Tooltip.tsx +9 -0
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/index.ts +9 -0
- package/src/foundation/Elevation/index.ts +72 -0
- package/src/foundation/Elevation/utils.ts +11 -0
- package/src/foundation/Typography/index.ts +96 -0
- package/src/foundation/Typography/tokens.ts +162 -0
- package/src/foundation/colors/base/blue.ts +27 -0
- package/src/foundation/colors/base/green.ts +27 -0
- package/src/foundation/colors/base/grey.ts +53 -0
- package/src/foundation/colors/base/index.ts +11 -0
- package/src/foundation/colors/base/lunitGreen.ts +27 -0
- package/src/foundation/colors/base/lunitTeal.ts +27 -0
- package/src/foundation/colors/base/magenta.ts +27 -0
- package/src/foundation/colors/base/opacity.ts +6 -0
- package/src/foundation/colors/base/orange.ts +27 -0
- package/src/foundation/colors/base/purple.ts +27 -0
- package/src/foundation/colors/base/red.ts +27 -0
- package/src/foundation/colors/base/yellow.ts +27 -0
- package/src/foundation/colors/index.ts +256 -0
- package/src/foundation/colors/token/component.ts +430 -0
- package/src/foundation/colors/token/core.ts +211 -0
- package/src/foundation/colors/token/index.ts +2 -0
- package/src/foundation/colors/token/types.ts +8 -0
- package/src/foundation/colors/types.ts +83 -0
- package/src/foundation/index.ts +25 -0
- package/src/foundation/spacing.ts +3 -0
- package/src/index.ts +18 -0
- package/src/stories/components/Alert/Alert.stories.tsx +157 -0
- package/src/stories/components/Button/BasicButton.stories.tsx +168 -0
- package/src/stories/components/Button/IconButton.stories.tsx +139 -0
- package/src/stories/components/Button/Kind.stories.tsx +540 -0
- package/src/stories/components/Chip/Chip.stories.tsx +208 -0
- package/src/stories/components/DataTable/DataTable.stories.tsx +15 -0
- package/src/stories/components/DatePicker/DatePicker.stories.tsx +15 -0
- package/src/stories/components/Dropdown/Dropdown.stories.tsx +21 -0
- package/src/stories/components/Modal/Modal.stories.tsx +15 -0
- package/src/stories/components/SelectControl/Checkbox.stories.tsx +256 -0
- package/src/stories/components/SelectControl/RadioGroup.stories.tsx +68 -0
- package/src/stories/components/SelectControl/RadioStatus.stories.tsx +93 -0
- package/src/stories/components/SelectControl/Toggle.stories.tsx +443 -0
- package/src/stories/components/TextField/TextFieldMulti.stories.tsx +137 -0
- package/src/stories/components/TextField/TextFieldSingle.stories.tsx +283 -0
- package/src/stories/components/TextField/TextFieldSize.stories.tsx +134 -0
- package/src/stories/components/Toast/Toast.stories.tsx +152 -0
- package/src/stories/components/ToggleButton/Basic.stories.tsx +346 -0
- package/src/stories/components/ToggleButton/Group.stories.tsx +221 -0
- package/src/stories/components/ToggleButton/ToggleButtonKind.stories.tsx +708 -0
- package/src/stories/components/ToggleButton/WithIcon.stories.tsx +292 -0
- package/src/stories/components/Tooltip/Tooltip.stories.tsx +15 -0
- package/src/stories/foundation/Elevation/Elevation.stories.tsx +268 -0
- package/src/stories/foundation/Elevation/styled.ts +12 -0
- package/src/stories/foundation/Typography/Typography.mdx +76 -0
- package/src/stories/foundation/Typography/Typography.stories.tsx +101 -0
- package/src/stories/foundation/Typography/TypographyExamples.stories.tsx +44 -0
- package/src/stories/foundation/Typography/TypographyGroup.tsx +71 -0
- package/src/stories/foundation/Typography/const.ts +25 -0
- package/src/stories/foundation/colors/Colors.stories.tsx +66 -0
- package/src/stories/foundation/colors/Mui.stories.tsx +18 -0
- package/src/stories/foundation/colors/Token.inComponent.stories.tsx +167 -0
- package/src/stories/foundation/colors/TokenPaletteTable.stories.tsx +28 -0
- package/src/stories/foundation/colors/TokenPaletteTable.tsx +127 -0
- package/src/stories/foundation/colors/styled.ts +39 -0
- package/src/theme.ts +46 -0
- package/src/types.d.ts +4 -0
- package/tsconfig.build.json +2 -0
- package/dist/components/Alert/Alert.d.ts +0 -2
- package/dist/components/Button/Button.d.ts +0 -3
- package/dist/components/Chip/Chip.styled.d.ts +0 -41
- package/dist/components/HelloWorld/HelloWorld.d.ts +0 -28
- package/dist/components/TextField/TextField.d.ts +0 -2
- package/dist/components/TextField/index.d.ts +0 -1
- package/webpack.config.js +0 -51
- /package/dist/{components → types/components}/Alert/index.d.ts +0 -0
- /package/dist/{components → types/components}/Button/const.d.ts +0 -0
- /package/dist/{components → types/components}/Button/index.d.ts +0 -0
- /package/dist/{components → types/components}/Button/utils/getButtonPaddingBySizeAndKind.d.ts +0 -0
- /package/dist/{components → types/components}/Button/utils/getIconButtonPaddingBySizeAndKind.d.ts +0 -0
- /package/dist/{components → types/components}/Checkbox/Checkbox.d.ts +0 -0
- /package/dist/{components → types/components}/Checkbox/index.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/Chip.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/consts.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/index.d.ts +0 -0
- /package/dist/{components → types/components}/DataTable/DataTable.d.ts +0 -0
- /package/dist/{components → types/components}/DataTable/index.d.ts +0 -0
- /package/dist/{components → types/components}/DatePicker/DatePicker.d.ts +0 -0
- /package/dist/{components → types/components}/DatePicker/index.d.ts +0 -0
- /package/dist/{components → types/components}/Dropdown/Dropdown.d.ts +0 -0
- /package/dist/{components → types/components}/Dropdown/index.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/FormLabel.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/FormLabel.styled.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/index.d.ts +0 -0
- /package/dist/{components → types/components}/Modal/Modal.d.ts +0 -0
- /package/dist/{components → types/components}/Modal/index.d.ts +0 -0
- /package/dist/{components → types/components}/Radio/Radio.d.ts +0 -0
- /package/dist/{components → types/components}/Radio/index.d.ts +0 -0
- /package/dist/{components → types/components}/RadioGroup/index.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.styled.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.types.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/index.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButton/ToggleButton.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButton/index.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButtonGroup/ToggleButtonGroup.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButtonGroup/index.d.ts +0 -0
- /package/dist/{components → types/components}/Tooltip/Tooltip.d.ts +0 -0
- /package/dist/{components → types/components}/Tooltip/index.d.ts +0 -0
- /package/dist/{components → types/components}/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Elevation/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Elevation/utils.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Typography/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Typography/tokens.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/blue.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/green.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/magenta.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/opacity.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/orange.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/purple.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/red.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/yellow.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/component.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/core.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/types.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/spacing.d.ts +0 -0
- /package/dist/{theme.d.ts → types/theme.d.ts} +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const green = {
|
|
3
|
+
5: "#EBFFF0",
|
|
4
|
+
10: "#B4EFC4",
|
|
5
|
+
20: "#6FDC8C",
|
|
6
|
+
30: "#42BE65",
|
|
7
|
+
40: "#24A148",
|
|
8
|
+
50: "#198038",
|
|
9
|
+
60: "#0E6027",
|
|
10
|
+
70: "#044317",
|
|
11
|
+
80: "#022D0D",
|
|
12
|
+
90: "#071908",
|
|
13
|
+
};
|
|
14
|
+
export const greenText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=green.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"green.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/green.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export const grey = {
|
|
2
|
+
0: "#FFFFFF",
|
|
3
|
+
5: "#FAFAFB",
|
|
4
|
+
10: "#F1F1F4",
|
|
5
|
+
15: "#DFDFE2",
|
|
6
|
+
20: "#C6C6C8",
|
|
7
|
+
30: "#AFAFB1",
|
|
8
|
+
40: "#99999B",
|
|
9
|
+
50: "#747477",
|
|
10
|
+
60: "#626264",
|
|
11
|
+
70: "#4E4E50",
|
|
12
|
+
75: "#404042",
|
|
13
|
+
80: "#333336",
|
|
14
|
+
85: "#2D2D2F",
|
|
15
|
+
90: "#1F1F21",
|
|
16
|
+
95: "#111113",
|
|
17
|
+
100: "#000000",
|
|
18
|
+
};
|
|
19
|
+
export const greyText = {
|
|
20
|
+
0: grey[95],
|
|
21
|
+
5: grey[95],
|
|
22
|
+
10: grey[95],
|
|
23
|
+
15: grey[95],
|
|
24
|
+
20: grey[95],
|
|
25
|
+
30: grey[95],
|
|
26
|
+
40: grey[95],
|
|
27
|
+
50: grey[5],
|
|
28
|
+
60: grey[5],
|
|
29
|
+
70: grey[5],
|
|
30
|
+
80: grey[5],
|
|
31
|
+
85: grey[5],
|
|
32
|
+
90: grey[5],
|
|
33
|
+
95: grey[5],
|
|
34
|
+
100: grey[5],
|
|
35
|
+
};
|
|
36
|
+
export const greyForMUI = {
|
|
37
|
+
50: grey[5],
|
|
38
|
+
100: grey[10],
|
|
39
|
+
200: grey[20],
|
|
40
|
+
300: grey[30],
|
|
41
|
+
400: grey[40],
|
|
42
|
+
500: grey[50],
|
|
43
|
+
600: grey[60],
|
|
44
|
+
700: grey[70],
|
|
45
|
+
800: grey[80],
|
|
46
|
+
900: grey[90],
|
|
47
|
+
A100: "#F3F3F3",
|
|
48
|
+
A200: "#C7C7C7",
|
|
49
|
+
A400: "#9A9A9A",
|
|
50
|
+
A700: "#4F4F4F",
|
|
51
|
+
};
|
|
52
|
+
//# sourceMappingURL=grey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grey.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/grey.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,IAAI,GAAG;IAClB,CAAC,EAAE,SAAS;IACZ,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,GAAG,EAAE,SAAS;CACf,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,GAAG,EAAE,IAAI,CAAC,CAAC,CAAC;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,GAAG,EAAE,IAAI,CAAC,EAAE,CAAC;IACb,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;CAChB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./blue";
|
|
2
|
+
export * from "./green";
|
|
3
|
+
export * from "./grey";
|
|
4
|
+
export * from "./lunitGreen";
|
|
5
|
+
export * from "./lunitTeal";
|
|
6
|
+
export * from "./magenta";
|
|
7
|
+
export * from "./orange";
|
|
8
|
+
export * from "./red";
|
|
9
|
+
export * from "./yellow";
|
|
10
|
+
export * from "./purple";
|
|
11
|
+
export * from "./opacity";
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const lunit_green = {
|
|
3
|
+
5: "#F5FBE7",
|
|
4
|
+
10: "#EFF8BC",
|
|
5
|
+
20: "#E5F39E",
|
|
6
|
+
30: "#E1EE91",
|
|
7
|
+
40: "#DCEB7A",
|
|
8
|
+
50: "#D2EA60",
|
|
9
|
+
60: "#CEE559",
|
|
10
|
+
70: "#CADE5C",
|
|
11
|
+
80: "#BED358",
|
|
12
|
+
90: "#B1C953",
|
|
13
|
+
};
|
|
14
|
+
export const lunit_greenText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[95],
|
|
21
|
+
60: grey[95],
|
|
22
|
+
70: grey[95],
|
|
23
|
+
80: grey[95],
|
|
24
|
+
90: grey[95],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=lunitGreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lunitGreen.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/lunitGreen.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;CACb,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const lunit_teal = {
|
|
3
|
+
5: "#EAFAFF",
|
|
4
|
+
10: "#D1F7FF",
|
|
5
|
+
20: "#96EDFF",
|
|
6
|
+
30: "#30DFFC",
|
|
7
|
+
40: "#00C9EA",
|
|
8
|
+
50: "#01AED4",
|
|
9
|
+
60: "#048AB4",
|
|
10
|
+
70: "#016D8F",
|
|
11
|
+
80: "#05495F",
|
|
12
|
+
90: "#002930",
|
|
13
|
+
};
|
|
14
|
+
export const lunit_tealText = {
|
|
15
|
+
5: lunit_teal[90],
|
|
16
|
+
10: lunit_teal[90],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: lunit_teal[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=lunitTeal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lunitTeal.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/lunitTeal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,CAAC,EAAE,UAAU,CAAC,EAAE,CAAC;IACjB,EAAE,EAAE,UAAU,CAAC,EAAE,CAAC;IAClB,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,UAAU,CAAC,CAAC,CAAC;CAClB,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const magenta = {
|
|
3
|
+
5: "#FFF0F7",
|
|
4
|
+
10: "#FFD6E8",
|
|
5
|
+
20: "#FAB2D3",
|
|
6
|
+
30: "#F681B7",
|
|
7
|
+
40: "#FF50A0",
|
|
8
|
+
50: "#E41976",
|
|
9
|
+
60: "#9F1853",
|
|
10
|
+
70: "#740937",
|
|
11
|
+
80: "#57042A",
|
|
12
|
+
90: "#2A0A18",
|
|
13
|
+
};
|
|
14
|
+
export const magentaText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=magenta.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"magenta.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/magenta.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opacity.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/opacity.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,CAAC,EAAE,qBAAqB;IACxB,CAAC,EAAE,qBAAqB;IACxB,CAAC,EAAE,2BAA2B;IAC9B,CAAC,EAAE,2BAA2B;CAC/B,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const orange = {
|
|
3
|
+
5: "#FFF2E8",
|
|
4
|
+
10: "#FFD9BE",
|
|
5
|
+
20: "#FFB784",
|
|
6
|
+
30: "#FF9B54",
|
|
7
|
+
40: "#F58636",
|
|
8
|
+
50: "#D36210",
|
|
9
|
+
60: "#AB4800",
|
|
10
|
+
70: "#6F3209",
|
|
11
|
+
80: "#3E1A00",
|
|
12
|
+
90: "#231000",
|
|
13
|
+
};
|
|
14
|
+
export const orangeText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=orange.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orange.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/orange.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const purple = {
|
|
3
|
+
5: "#F6F2FF",
|
|
4
|
+
10: "#E6D7FF",
|
|
5
|
+
20: "#D4BBFF",
|
|
6
|
+
30: "#BE95FF",
|
|
7
|
+
40: "#9E6BF0",
|
|
8
|
+
50: "#7E41DA",
|
|
9
|
+
60: "#6B2FC1",
|
|
10
|
+
70: "#5D22B1",
|
|
11
|
+
80: "#441C7E",
|
|
12
|
+
90: "#1D0345",
|
|
13
|
+
};
|
|
14
|
+
export const purpleText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=purple.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"purple.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/purple.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const red = {
|
|
3
|
+
5: "#FFF1F1",
|
|
4
|
+
10: "#FFD7D9",
|
|
5
|
+
20: "#FFB3B8",
|
|
6
|
+
30: "#FF7077",
|
|
7
|
+
40: "#FA464F",
|
|
8
|
+
50: "#DA1E28",
|
|
9
|
+
60: "#A2191F",
|
|
10
|
+
70: "#750E13",
|
|
11
|
+
80: "#520408",
|
|
12
|
+
90: "#3E0600",
|
|
13
|
+
};
|
|
14
|
+
export const redText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=red.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"red.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/red.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,GAAG,GAAG;IACjB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
export const yellow = {
|
|
3
|
+
5: "#FCF4D6",
|
|
4
|
+
10: "#FFF9C7",
|
|
5
|
+
20: "#FFF296",
|
|
6
|
+
30: "#FFEA5D",
|
|
7
|
+
40: "#FFDE03",
|
|
8
|
+
50: "#E1B000",
|
|
9
|
+
60: "#A67B0E",
|
|
10
|
+
70: "#6E5002",
|
|
11
|
+
80: "#584106",
|
|
12
|
+
90: "#3B2B00",
|
|
13
|
+
};
|
|
14
|
+
export const yellowText = {
|
|
15
|
+
5: grey[95],
|
|
16
|
+
10: grey[95],
|
|
17
|
+
20: grey[95],
|
|
18
|
+
30: grey[95],
|
|
19
|
+
40: grey[95],
|
|
20
|
+
50: grey[5],
|
|
21
|
+
60: grey[5],
|
|
22
|
+
70: grey[5],
|
|
23
|
+
80: grey[5],
|
|
24
|
+
90: grey[5],
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=yellow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"yellow.js","sourceRoot":"","sources":["../../../../src/foundation/colors/base/yellow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;IACb,EAAE,EAAE,SAAS;CACd,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC;IACZ,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IACX,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;CACZ,CAAC"}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
// Main module for Foundation > Colors
|
|
2
|
+
import * as base from "./base";
|
|
3
|
+
import * as token from "./token";
|
|
4
|
+
const createCSSVariables = () => {
|
|
5
|
+
const cssVars = {};
|
|
6
|
+
for (let color in base) {
|
|
7
|
+
const baseColors = base[color];
|
|
8
|
+
for (let key in baseColors) {
|
|
9
|
+
if (baseColors.hasOwnProperty(key)) {
|
|
10
|
+
const varName = `--${color}_${key}`;
|
|
11
|
+
cssVars[varName] = baseColors[Number(key)];
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
return cssVars;
|
|
16
|
+
};
|
|
17
|
+
const createTokenColorVariables = (surface) => {
|
|
18
|
+
const cssVars = {};
|
|
19
|
+
for (let coreToken in token.tokenCoreColor) {
|
|
20
|
+
if (token.tokenCoreColor.hasOwnProperty(coreToken)) {
|
|
21
|
+
const varName = `--${coreToken}`;
|
|
22
|
+
const tokenValue = token.tokenCoreColor[coreToken][surface];
|
|
23
|
+
// 현재 tokenValue는 cssVariable과 rgba 값 2종류가 존재함. 이 종류에 따라서 var 사용 여부를 결정해주기 위해 if문을 추가하였으나,
|
|
24
|
+
// 차후 피그마에서 json 파일을 넘겨준 것을 스크립트화하는 작업이 끝나면 if문 자체가 사라질 예정.
|
|
25
|
+
if (tokenValue.charAt(0) === "-") {
|
|
26
|
+
cssVars[varName] = `var(${tokenValue})`;
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
cssVars[varName] = `${tokenValue}`;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
for (let componentGroup in token.tokenComponentColor) {
|
|
34
|
+
if (token.tokenComponentColor.hasOwnProperty(componentGroup)) {
|
|
35
|
+
const componentTokens = token.tokenComponentColor[componentGroup];
|
|
36
|
+
let tokenName;
|
|
37
|
+
for (tokenName in componentTokens) {
|
|
38
|
+
if (componentTokens.hasOwnProperty(tokenName)) {
|
|
39
|
+
const varName = `--${tokenName}`;
|
|
40
|
+
const tokenValue = componentTokens[tokenName][surface];
|
|
41
|
+
if (tokenValue.charAt(0) === "-") {
|
|
42
|
+
cssVars[varName] = `var(${tokenValue})`;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
cssVars[varName] = `${tokenValue}`;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return cssVars;
|
|
52
|
+
};
|
|
53
|
+
export const createColorCssBaseline = () => {
|
|
54
|
+
return {
|
|
55
|
+
":root": {
|
|
56
|
+
...createCSSVariables(),
|
|
57
|
+
...createTokenColorVariables("dark1"),
|
|
58
|
+
},
|
|
59
|
+
".light1": {
|
|
60
|
+
...createTokenColorVariables("light1"),
|
|
61
|
+
},
|
|
62
|
+
".light2": {
|
|
63
|
+
...createTokenColorVariables("light2"),
|
|
64
|
+
},
|
|
65
|
+
".dark1": {
|
|
66
|
+
...createTokenColorVariables("dark1"),
|
|
67
|
+
},
|
|
68
|
+
".dark2": {
|
|
69
|
+
...createTokenColorVariables("dark2"),
|
|
70
|
+
},
|
|
71
|
+
".dark3": {
|
|
72
|
+
...createTokenColorVariables("dark3"),
|
|
73
|
+
},
|
|
74
|
+
".dark4": {
|
|
75
|
+
...createTokenColorVariables("dark4"),
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
// TODO: TextColors 삭제하고 관련된 설정 수정하기
|
|
80
|
+
const lunitColors = (() => {
|
|
81
|
+
const ret = {};
|
|
82
|
+
for (const colorKey in base) {
|
|
83
|
+
if (base[`${colorKey}Text`]) {
|
|
84
|
+
const baseColors = base[colorKey];
|
|
85
|
+
const textColors = base[`${colorKey}Text`];
|
|
86
|
+
ret[colorKey] = {};
|
|
87
|
+
for (const key in baseColors) {
|
|
88
|
+
if (baseColors.hasOwnProperty(key)) {
|
|
89
|
+
const color = baseColors[Number(key)];
|
|
90
|
+
const textColor = textColors[Number(key)];
|
|
91
|
+
ret[colorKey][Number(key)] = {
|
|
92
|
+
light: color,
|
|
93
|
+
main: color,
|
|
94
|
+
dark: color,
|
|
95
|
+
contrastText: textColor,
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return ret;
|
|
102
|
+
})();
|
|
103
|
+
const paletteOptions = {
|
|
104
|
+
primary: {
|
|
105
|
+
main: base.lunit_teal[40], // core.text_primary.dark1
|
|
106
|
+
},
|
|
107
|
+
secondary: {
|
|
108
|
+
main: base.grey[50], // core.text_light.dark1
|
|
109
|
+
},
|
|
110
|
+
error: {
|
|
111
|
+
main: base.red[40], // core.text_error.dark1
|
|
112
|
+
},
|
|
113
|
+
warning: {
|
|
114
|
+
main: base.orange[40], // core.text_warning.dark1
|
|
115
|
+
},
|
|
116
|
+
info: {
|
|
117
|
+
main: base.blue[40], // core.text_info.dark1
|
|
118
|
+
},
|
|
119
|
+
success: {
|
|
120
|
+
main: base.green[40], // core.text_success.dark1
|
|
121
|
+
},
|
|
122
|
+
grey: base.greyForMUI,
|
|
123
|
+
lunit: lunitColors,
|
|
124
|
+
token: {
|
|
125
|
+
core: {
|
|
126
|
+
bg_01: "var(--bg_01)",
|
|
127
|
+
bg_02: "var(--bg_02)",
|
|
128
|
+
bg_03: "var(--bg_03)",
|
|
129
|
+
text_primary: "var(--text_primary)",
|
|
130
|
+
text_normal: "var(--text_normal)",
|
|
131
|
+
text_medium: "var(--text_medium)",
|
|
132
|
+
text_light: "var(--text_light)",
|
|
133
|
+
text_error: "var(--text_error)",
|
|
134
|
+
text_success: "var(--text_success)",
|
|
135
|
+
text_warning: "var(--text_warning)",
|
|
136
|
+
text_info: "var(--text_info)",
|
|
137
|
+
link_primary: "var(--link_primary)",
|
|
138
|
+
link_hover: "var(--link_hover)",
|
|
139
|
+
link_visited: "var(--link_visited)",
|
|
140
|
+
icon_error_02: "var(--icon_error_02)",
|
|
141
|
+
icon_success_02: "var(--icon_success_02)",
|
|
142
|
+
icon_warning_02: "var(--icon_warning_02)",
|
|
143
|
+
icon_info_02: "var(--icon_info_02)",
|
|
144
|
+
hover: "var(--hover)",
|
|
145
|
+
focused: "var(--focused)",
|
|
146
|
+
selected: "var(--selected)",
|
|
147
|
+
shadow_01: "var(--shadow_01)",
|
|
148
|
+
shadow_02: "var(--shadow_02)",
|
|
149
|
+
shadow_03: "var(--shadow_03)",
|
|
150
|
+
shadow_04: "var(--shadow_04)",
|
|
151
|
+
},
|
|
152
|
+
component: {
|
|
153
|
+
btn_contained_primary_bg: "var(--btn_contained_primary_bg)",
|
|
154
|
+
btn_contained_primary_text: "var(--btn_contained_primary_text)",
|
|
155
|
+
btn_contained_secondary_bg: "var(--btn_contained_secondary_bg)",
|
|
156
|
+
btn_contained_secondary_text: "var(--btn_contained_secondary_text)",
|
|
157
|
+
btn_contained_error_bg: "var(--btn_contained_error_bg)",
|
|
158
|
+
btn_contained_error_text: "var(--btn_contained_error_text)",
|
|
159
|
+
btn_outlined_primary_border: "var(--btn_outlined_primary_border)",
|
|
160
|
+
btn_outlined_primary_text: "var(--btn_outlined_primary_text)",
|
|
161
|
+
btn_ghost_primary_text: "var(--btn_ghost_primary_text)",
|
|
162
|
+
btn_ghost_secondary_text: "var(--btn_ghost_secondary_text)",
|
|
163
|
+
btn_ghost_error_text: "var(--btn_ghost_error_text)",
|
|
164
|
+
btn_selected_primary_bg: "var(--btn_selected_primary_bg)",
|
|
165
|
+
btn_selected_primary_text: "var(--btn_selected_primary_text)",
|
|
166
|
+
btn_selected_secondary_bg: "var(--btn_selected_secondary_bg)",
|
|
167
|
+
btn_selected_secondary_text: "var(--btn_selected_secondary_text)",
|
|
168
|
+
selectcontrol_on: "var(--selectcontrol_on)",
|
|
169
|
+
selectcontrol_off: "var(--selectcontrol_off)",
|
|
170
|
+
selectcontrol_handler: "var(--selectcontrol_handler)",
|
|
171
|
+
selectcontrol_handler_shadow: "var(--selectcontrol_handler_shadow)",
|
|
172
|
+
textfield_bg: "var(--textfield_bg)",
|
|
173
|
+
textfield_border_error: "var(--textfield_border_error)",
|
|
174
|
+
dropdown_divider_border: "var(--dropdown_divider_border)",
|
|
175
|
+
datatable_border_01: "var(--datatable_border_01)",
|
|
176
|
+
datatable_border_02: "var(--datatable_border_02)",
|
|
177
|
+
datatable_zebra: "var(--datatable_zebra)",
|
|
178
|
+
scrollbars_bg: "var(--scrollbars_bg)",
|
|
179
|
+
scrollbars_hover: "var(--scrollbars_hover)",
|
|
180
|
+
scrollbars_pressed: "var(--scrollbars_pressed)",
|
|
181
|
+
modal_overlay: "var(--modal_overlay)",
|
|
182
|
+
tooltip_bg: "var(--tooltip_bg)",
|
|
183
|
+
tooltip_text_normal: "var(--tooltip_text_normal)",
|
|
184
|
+
tooltip_text_medium: "var(--tooltip_text_medium)",
|
|
185
|
+
alert_error_bg: "var(--alert_error_bg)",
|
|
186
|
+
alert_error_border: "var(--alert_error_border)",
|
|
187
|
+
alert_success_bg: "var(--alert_success_bg)",
|
|
188
|
+
alert_success_border: "var(--alert_success_border)",
|
|
189
|
+
alert_info_bg: "var(--alert_info_bg)",
|
|
190
|
+
alert_info_border: "var(--alert_info_border)",
|
|
191
|
+
alert_warning_bg: "var(--alert_warning_bg)",
|
|
192
|
+
alert_warning_border: "var(--alert_warning_border)",
|
|
193
|
+
chip_primary_bg: "var(--chip_primary_bg)",
|
|
194
|
+
chip_primary_text: "var(--chip_primary_text)",
|
|
195
|
+
chip_secondary_bg: "var(--chip_secondary_bg)",
|
|
196
|
+
chip_secondary_text: "var(--chip_secondary_text)",
|
|
197
|
+
chip_error_bg: "var(--chip_error_bg)",
|
|
198
|
+
chip_error_text: "var(--chip_error_text)",
|
|
199
|
+
chip_warning_bg: "var(--chip_warning_bg)",
|
|
200
|
+
chip_warning_text: "var(--chip_warning_text)",
|
|
201
|
+
chip_success_bg: "var(--chip_success_bg)",
|
|
202
|
+
chip_success_text: "var(--chip_success_text)",
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
};
|
|
206
|
+
export { base };
|
|
207
|
+
export default paletteOptions;
|
|
208
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/foundation/colors/index.ts"],"names":[],"mappings":"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"}
|