armtek-uikit-react 1.0.2 → 1.0.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/lib/Adornment/package.json +7 -0
- package/lib/Alert/package.json +7 -0
- package/lib/Avatar/package.json +7 -0
- package/lib/AvatarGroup/package.json +6 -0
- package/lib/Badge/package.json +7 -0
- package/lib/Button/package.json +7 -7
- package/lib/ButtonGroup/package.json +6 -0
- package/lib/ButtonIcon/package.json +6 -0
- package/lib/Card/package.json +7 -0
- package/lib/Checkbox/package.json +6 -0
- package/lib/Chip/package.json +7 -0
- package/lib/DateField/package.json +6 -0
- package/lib/DatePicker/package.json +6 -0
- package/lib/DateService/package.json +6 -0
- package/lib/HelperText/package.json +6 -0
- package/lib/Interval/package.json +6 -0
- package/lib/IntervalSlide/package.json +6 -0
- package/lib/ListItem/package.json +6 -0
- package/lib/Loader/package.json +7 -0
- package/lib/Logo/package.json +7 -0
- package/lib/Password/package.json +6 -0
- package/lib/Period/package.json +6 -0
- package/lib/PeriodSelect/package.json +6 -0
- package/lib/Radio/package.json +6 -0
- package/lib/Rating/package.json +6 -0
- package/lib/RcSlider/package.json +6 -0
- package/lib/Select/package.json +6 -0
- package/lib/Slider/package.json +7 -0
- package/lib/Status/package.json +7 -0
- package/lib/StepItem/package.json +6 -0
- package/lib/StepItemIcon/package.json +6 -0
- package/lib/Stepper/package.json +7 -0
- package/lib/Switch/package.json +6 -0
- package/lib/TextArea/package.json +6 -0
- package/lib/TextField/package.json +6 -0
- package/lib/TimeField/package.json +6 -0
- package/lib/TimePicker/package.json +6 -0
- package/lib/Tooltip/package.json +7 -0
- package/lib/cjs/Adornment/Adornment.d.ts +7 -0
- package/lib/cjs/Adornment/Adornment.js +47 -0
- package/lib/cjs/Adornment/Adornment.module.scss +18 -0
- package/lib/cjs/Alert/Alert.d.ts +10 -0
- package/lib/cjs/Alert/Alert.js +46 -0
- package/lib/cjs/Alert/Alert.module.scss +38 -0
- package/lib/cjs/Avatar/Avatar.d.ts +13 -0
- package/lib/cjs/Avatar/Avatar.js +50 -0
- package/lib/cjs/Avatar/Avatar.module.scss +82 -0
- package/lib/cjs/Avatar/AvatarGroup.d.ts +8 -0
- package/lib/cjs/Avatar/AvatarGroup.js +34 -0
- package/lib/cjs/Avatar/AvatarGroup.module.scss +48 -0
- package/lib/cjs/Badge/Badge.d.ts +11 -0
- package/lib/cjs/Badge/Badge.js +34 -0
- package/lib/cjs/Badge/Badge.module.scss +83 -0
- package/lib/cjs/Button/Button.css +3 -0
- package/lib/cjs/{ui/Button → Button}/Button.d.ts +1 -1
- package/lib/cjs/{ui/Button → Button}/Button.js +4 -5
- package/lib/cjs/{ui/Button → Button}/Button.module.scss +1 -1
- package/lib/cjs/Card/Card.d.ts +4 -0
- package/lib/cjs/Card/Card.js +19 -0
- package/lib/cjs/Card/Card.module.scss +7 -0
- package/lib/cjs/Chip/Chip.d.ts +13 -0
- package/lib/cjs/Chip/Chip.js +41 -0
- package/lib/cjs/Chip/Chip.module.scss +96 -0
- package/lib/cjs/Form/Checkbox/Checkbox.d.ts +12 -0
- package/lib/cjs/Form/Checkbox/Checkbox.js +53 -0
- package/lib/cjs/Form/Checkbox/Checkbox.module.scss +297 -0
- package/lib/cjs/Form/Checkbox/Radio.d.ts +3 -0
- package/lib/cjs/Form/Checkbox/Radio.js +21 -0
- package/lib/cjs/Form/DateField/DateField.d.ts +26 -0
- package/lib/cjs/Form/DateField/DateField.js +71 -0
- package/lib/cjs/Form/DateField/DateField.module.scss +1 -0
- package/lib/cjs/Form/DateField/TimeField.d.ts +3 -0
- package/lib/cjs/Form/DateField/TimeField.js +19 -0
- package/lib/cjs/Form/DatePicker/DatePicker.d.ts +7 -0
- package/lib/cjs/Form/DatePicker/DatePicker.js +49 -0
- package/lib/cjs/Form/DatePicker/DatePicker.module.scss +7 -0
- package/lib/cjs/Form/DatePicker/PeriodSelect.d.ts +2 -0
- package/lib/cjs/Form/DatePicker/PeriodSelect.js +29 -0
- package/lib/cjs/Form/DatePicker/TimePicker.d.ts +2 -0
- package/lib/cjs/Form/DatePicker/TimePicker.js +28 -0
- package/lib/cjs/Form/DatePicker/styles.css +766 -0
- package/lib/cjs/Form/Interval/Interval.d.ts +21 -0
- package/lib/cjs/Form/Interval/Interval.js +98 -0
- package/lib/cjs/Form/Interval/Interval.module.scss +35 -0
- package/lib/cjs/Form/Interval/IntervalSlide.d.ts +4 -0
- package/lib/cjs/Form/Interval/IntervalSlide.js +48 -0
- package/lib/cjs/Form/Password/Password.d.ts +12 -0
- package/lib/cjs/Form/Password/Password.js +46 -0
- package/lib/cjs/Form/Password/Password.module.scss +2 -0
- package/lib/cjs/Form/Period/Period.d.ts +15 -0
- package/lib/cjs/Form/Period/Period.js +69 -0
- package/lib/cjs/Form/Period/Period.module.scss +10 -0
- package/lib/cjs/Form/Rating/Rating.d.ts +10 -0
- package/lib/cjs/Form/Rating/Rating.js +54 -0
- package/lib/cjs/Form/Rating/Rating.module.scss +19 -0
- package/lib/cjs/Form/Select/Select.d.ts +23 -0
- package/lib/cjs/Form/Select/Select.js +139 -0
- package/lib/cjs/Form/Select/Select.module.scss +26 -0
- package/lib/cjs/Form/Switch/Switch.d.ts +7 -0
- package/lib/cjs/Form/Switch/Switch.js +30 -0
- package/lib/cjs/Form/Switch/Switch.module.scss +69 -0
- package/lib/cjs/Form/TextArea/TextArea.d.ts +4 -0
- package/lib/cjs/Form/TextArea/TextArea.js +46 -0
- package/lib/cjs/Form/TextArea/TextArea.module.scss +15 -0
- package/lib/cjs/Form/TextField/TextField.d.ts +40 -0
- package/lib/cjs/Form/TextField/TextField.js +152 -0
- package/lib/cjs/Form/TextField/TextField.module.scss +160 -0
- package/lib/cjs/List/ListItem.d.ts +10 -0
- package/lib/cjs/List/ListItem.js +60 -0
- package/lib/cjs/List/ListItem.module.scss +34 -0
- package/lib/cjs/Loader/Loader.d.ts +6 -0
- package/lib/cjs/Loader/Loader.js +120 -0
- package/lib/cjs/Loader/Loader.module.scss +37 -0
- package/lib/cjs/Logo/Logo.d.ts +12 -0
- package/lib/cjs/Logo/Logo.js +102 -0
- package/lib/cjs/Logo/Logo.module.scss +29 -0
- package/lib/cjs/Slider/RcSlider.d.ts +2 -0
- package/lib/cjs/Slider/RcSlider.js +9 -0
- package/lib/cjs/Slider/Slider.d.ts +8 -0
- package/lib/cjs/Slider/Slider.js +34 -0
- package/lib/cjs/Slider/Slider.module.scss +6 -0
- package/lib/cjs/Slider/style.css +281 -0
- package/lib/cjs/Status/Status.d.ts +10 -0
- package/lib/cjs/Status/Status.js +31 -0
- package/lib/cjs/Status/Status.module.scss +45 -0
- package/lib/cjs/Stepper/StepItem.d.ts +14 -0
- package/lib/cjs/Stepper/StepItem.js +56 -0
- package/lib/cjs/Stepper/StepItem.module.scss +67 -0
- package/lib/cjs/Stepper/StepItemIcon.d.ts +11 -0
- package/lib/cjs/Stepper/StepItemIcon.js +40 -0
- package/lib/cjs/Stepper/StepItemIcon.module.scss +47 -0
- package/lib/cjs/Stepper/Stepper.d.ts +11 -0
- package/lib/cjs/Stepper/Stepper.js +45 -0
- package/lib/cjs/Stepper/Stepper.module.scss +34 -0
- package/lib/cjs/Tooltip/Tooltip.d.ts +7 -0
- package/lib/cjs/Tooltip/Tooltip.js +32 -0
- package/lib/cjs/Tooltip/Tooltip.module.scss +18 -0
- package/lib/cjs/Typography/HelperText/HelperText.d.ts +6 -0
- package/lib/cjs/Typography/HelperText/HelperText.js +28 -0
- package/lib/cjs/Typography/HelperText/HelperText.module.scss +10 -0
- package/lib/cjs/assets/fonts.scss +0 -18
- package/lib/cjs/assets/global.css +36 -0
- package/lib/cjs/assets/styles.scss +0 -10
- package/lib/cjs/index.d.ts +29 -29
- package/lib/cjs/index.js +30 -2
- package/lib/dist/armtek-uikit-react-index.js +293 -293
- package/lib/dist/armtek-uikit-react-index.min.js +1 -1
- package/lib/esm/Adornment/Adornment.d.ts +7 -0
- package/lib/esm/Adornment/Adornment.js +40 -0
- package/lib/esm/Adornment/Adornment.module.scss +18 -0
- package/lib/esm/Alert/Alert.d.ts +10 -0
- package/lib/esm/Alert/Alert.js +41 -0
- package/lib/esm/Alert/Alert.module.scss +38 -0
- package/lib/esm/Avatar/Avatar.d.ts +13 -0
- package/lib/esm/Avatar/Avatar.js +45 -0
- package/lib/esm/Avatar/Avatar.module.scss +82 -0
- package/lib/esm/Avatar/AvatarGroup.d.ts +8 -0
- package/lib/esm/Avatar/AvatarGroup.js +29 -0
- package/lib/esm/Avatar/AvatarGroup.module.scss +48 -0
- package/lib/esm/Badge/Badge.d.ts +11 -0
- package/lib/esm/Badge/Badge.js +29 -0
- package/lib/esm/Badge/Badge.module.scss +83 -0
- package/lib/esm/Button/Button.css +3 -0
- package/lib/esm/{ui/Button → Button}/Button.d.ts +1 -1
- package/lib/esm/{ui/Button → Button}/Button.js +5 -5
- package/lib/esm/{ui/Button → Button}/Button.module.scss +1 -1
- package/lib/esm/Card/Card.d.ts +4 -0
- package/lib/esm/Card/Card.js +13 -0
- package/lib/esm/Card/Card.module.scss +7 -0
- package/lib/esm/Chip/Chip.d.ts +13 -0
- package/lib/esm/Chip/Chip.js +36 -0
- package/lib/esm/Chip/Chip.module.scss +96 -0
- package/lib/esm/Form/Checkbox/Checkbox.d.ts +12 -0
- package/lib/esm/Form/Checkbox/Checkbox.js +49 -0
- package/lib/esm/Form/Checkbox/Checkbox.module.scss +297 -0
- package/lib/esm/Form/Checkbox/Radio.d.ts +3 -0
- package/lib/esm/Form/Checkbox/Radio.js +15 -0
- package/lib/esm/Form/DateField/DateField.d.ts +26 -0
- package/lib/esm/Form/DateField/DateField.js +66 -0
- package/lib/esm/Form/DateField/DateField.module.scss +1 -0
- package/lib/esm/Form/DateField/TimeField.d.ts +3 -0
- package/lib/esm/Form/DateField/TimeField.js +13 -0
- package/lib/esm/Form/DatePicker/DatePicker.d.ts +7 -0
- package/lib/esm/Form/DatePicker/DatePicker.js +41 -0
- package/lib/esm/Form/DatePicker/DatePicker.module.scss +7 -0
- package/lib/esm/Form/DatePicker/PeriodSelect.d.ts +2 -0
- package/lib/esm/Form/DatePicker/PeriodSelect.js +24 -0
- package/lib/esm/Form/DatePicker/TimePicker.d.ts +2 -0
- package/lib/esm/Form/DatePicker/TimePicker.js +23 -0
- package/lib/esm/Form/DatePicker/styles.css +766 -0
- package/lib/esm/Form/Interval/Interval.d.ts +21 -0
- package/lib/esm/Form/Interval/Interval.js +94 -0
- package/lib/esm/Form/Interval/Interval.module.scss +35 -0
- package/lib/esm/Form/Interval/IntervalSlide.d.ts +4 -0
- package/lib/esm/Form/Interval/IntervalSlide.js +44 -0
- package/lib/esm/Form/Password/Password.d.ts +12 -0
- package/lib/esm/Form/Password/Password.js +41 -0
- package/lib/esm/Form/Password/Password.module.scss +2 -0
- package/lib/esm/Form/Period/Period.d.ts +15 -0
- package/lib/esm/Form/Period/Period.js +65 -0
- package/lib/esm/Form/Period/Period.module.scss +10 -0
- package/lib/esm/Form/Rating/Rating.d.ts +10 -0
- package/lib/esm/Form/Rating/Rating.js +50 -0
- package/lib/esm/Form/Rating/Rating.module.scss +19 -0
- package/lib/esm/Form/Select/Select.d.ts +23 -0
- package/lib/esm/Form/Select/Select.js +135 -0
- package/lib/esm/Form/Select/Select.module.scss +26 -0
- package/lib/esm/Form/Switch/Switch.d.ts +7 -0
- package/lib/esm/Form/Switch/Switch.js +25 -0
- package/lib/esm/Form/Switch/Switch.module.scss +69 -0
- package/lib/esm/Form/TextArea/TextArea.d.ts +4 -0
- package/lib/esm/Form/TextArea/TextArea.js +41 -0
- package/lib/esm/Form/TextArea/TextArea.module.scss +15 -0
- package/lib/esm/Form/TextField/TextField.d.ts +40 -0
- package/lib/esm/Form/TextField/TextField.js +147 -0
- package/lib/esm/Form/TextField/TextField.module.scss +160 -0
- package/lib/esm/List/ListItem.d.ts +10 -0
- package/lib/esm/List/ListItem.js +53 -0
- package/lib/esm/List/ListItem.module.scss +34 -0
- package/lib/esm/Loader/Loader.d.ts +6 -0
- package/lib/esm/Loader/Loader.js +115 -0
- package/lib/esm/Loader/Loader.module.scss +37 -0
- package/lib/esm/Logo/Logo.d.ts +12 -0
- package/lib/esm/Logo/Logo.js +97 -0
- package/lib/esm/Logo/Logo.module.scss +29 -0
- package/lib/esm/Slider/RcSlider.d.ts +2 -0
- package/lib/esm/Slider/RcSlider.js +2 -0
- package/lib/esm/Slider/Slider.d.ts +8 -0
- package/lib/esm/Slider/Slider.js +29 -0
- package/lib/esm/Slider/Slider.module.scss +6 -0
- package/lib/esm/Slider/style.css +281 -0
- package/lib/esm/Status/Status.d.ts +10 -0
- package/lib/esm/Status/Status.js +26 -0
- package/lib/esm/Status/Status.module.scss +45 -0
- package/lib/esm/Stepper/StepItem.d.ts +14 -0
- package/lib/esm/Stepper/StepItem.js +51 -0
- package/lib/esm/Stepper/StepItem.module.scss +67 -0
- package/lib/esm/Stepper/StepItemIcon.d.ts +11 -0
- package/lib/esm/Stepper/StepItemIcon.js +34 -0
- package/lib/esm/Stepper/StepItemIcon.module.scss +47 -0
- package/lib/esm/Stepper/Stepper.d.ts +11 -0
- package/lib/esm/Stepper/Stepper.js +40 -0
- package/lib/esm/Stepper/Stepper.module.scss +34 -0
- package/lib/esm/Tooltip/Tooltip.d.ts +7 -0
- package/lib/esm/Tooltip/Tooltip.js +28 -0
- package/lib/esm/Tooltip/Tooltip.module.scss +18 -0
- package/lib/esm/Typography/HelperText/HelperText.d.ts +6 -0
- package/lib/esm/Typography/HelperText/HelperText.js +22 -0
- package/lib/esm/Typography/HelperText/HelperText.module.scss +10 -0
- package/lib/esm/assets/fonts.scss +0 -18
- package/lib/esm/assets/global.css +36 -0
- package/lib/esm/assets/styles.scss +0 -10
- package/lib/esm/index.d.ts +29 -29
- package/lib/esm/index.js +15 -1
- package/lib/helpers/package.json +6 -0
- package/lib/theme/package.json +6 -0
- package/lib/useClickOutside/package.json +6 -0
- package/package.json +6 -2
- package/lib/cjs/assets/index.d.ts +0 -16
- package/lib/cjs/ui/Button/style.css +0 -299
- package/lib/esm/assets/index.d.ts +0 -16
- package/lib/esm/ui/Button/style.css +0 -299
- /package/lib/cjs/{ui/Button → Button}/ButtonGroup.d.ts +0 -0
- /package/lib/cjs/{ui/Button → Button}/ButtonGroup.js +0 -0
- /package/lib/cjs/{ui/Button → Button}/ButtonIcon.d.ts +0 -0
- /package/lib/cjs/{ui/Button → Button}/ButtonIcon.js +0 -0
- /package/lib/cjs/{shared/hooks → hooks}/useClickOutside.d.ts +0 -0
- /package/lib/cjs/{shared/hooks → hooks}/useClickOutside.js +0 -0
- /package/lib/cjs/{shared/services → services}/DateService.d.ts +0 -0
- /package/lib/cjs/{shared/services → services}/DateService.js +0 -0
- /package/lib/esm/{ui/Button → Button}/ButtonGroup.d.ts +0 -0
- /package/lib/esm/{ui/Button → Button}/ButtonGroup.js +0 -0
- /package/lib/esm/{ui/Button → Button}/ButtonIcon.d.ts +0 -0
- /package/lib/esm/{ui/Button → Button}/ButtonIcon.js +0 -0
- /package/lib/esm/{shared/hooks → hooks}/useClickOutside.d.ts +0 -0
- /package/lib/esm/{shared/hooks → hooks}/useClickOutside.js +0 -0
- /package/lib/esm/{shared/services → services}/DateService.d.ts +0 -0
- /package/lib/esm/{shared/services → services}/DateService.js +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "armtek-uikit-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Armtek UIKit for React",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
7
7
|
"types": "lib/esm/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
|
-
"lib"
|
|
9
|
+
"lib",
|
|
10
|
+
"README.md"
|
|
10
11
|
],
|
|
11
12
|
"scripts": {
|
|
12
13
|
"start": "storybook dev -p 3000",
|
|
@@ -77,10 +78,13 @@
|
|
|
77
78
|
"html-webpack-plugin": "^5.5.3",
|
|
78
79
|
"modify-source-webpack-plugin": "^4.1.0",
|
|
79
80
|
"prettier": "^3.0.1",
|
|
81
|
+
"read-pkg-up": "^10.1.0",
|
|
82
|
+
"rimraf": "^5.0.4",
|
|
80
83
|
"sass": "^1.65.1",
|
|
81
84
|
"sass-loader": "^13.3.2",
|
|
82
85
|
"storybook": "^7.2.3",
|
|
83
86
|
"style-loader": "^3.3.3",
|
|
87
|
+
"tiny-glob": "^0.2.9",
|
|
84
88
|
"ts-loader": "^9.4.4",
|
|
85
89
|
"typescript": "^5.1.6",
|
|
86
90
|
"webpack": "^5.88.2",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import Alert from '../ui/Alert/Alert';
|
|
2
|
-
import Avatar from '../ui/Avatar/Avatar';
|
|
3
|
-
import AvatarGroup from '../ui/Avatar/AvatarGroup';
|
|
4
|
-
import Badge from '../ui/Badge/Badge';
|
|
5
|
-
import Button from '../ui/Button/Button';
|
|
6
|
-
import ButtonIcon from '../ui/Button/ButtonIcon';
|
|
7
|
-
import Card from '../ui/Card/Card';
|
|
8
|
-
import Chip from '../ui/Chip/Chip';
|
|
9
|
-
import ListItem from '../ui/List/ListItem';
|
|
10
|
-
import Loader from '../ui/Loader/Loader';
|
|
11
|
-
import Logo from '../ui/Logo/Logo';
|
|
12
|
-
import Slider from '../ui/Slider/Slider';
|
|
13
|
-
import Status from '../ui/Status/Status';
|
|
14
|
-
import Stepper from '../ui/Stepper/Stepper';
|
|
15
|
-
import Tooltip from '../ui/Tooltip/Tooltip';
|
|
16
|
-
export { Alert, Avatar, AvatarGroup, Badge, Button, ButtonIcon, Card, Chip, ListItem, Loader, Logo, Slider, Status, Stepper, Tooltip, };
|
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
.text_error {
|
|
2
|
-
color: #cc2935;
|
|
3
|
-
}
|
|
4
|
-
.text_success {
|
|
5
|
-
color: #0bd998;
|
|
6
|
-
}
|
|
7
|
-
.adornmentContainer {
|
|
8
|
-
display: flex;
|
|
9
|
-
}
|
|
10
|
-
.adornmentContainer_end {
|
|
11
|
-
margin-left: auto;
|
|
12
|
-
}
|
|
13
|
-
.adornment_end + * {
|
|
14
|
-
margin-left: 8px;
|
|
15
|
-
}
|
|
16
|
-
.adornment_start + * {
|
|
17
|
-
margin-left: 8px;
|
|
18
|
-
}
|
|
19
|
-
.button {
|
|
20
|
-
outline: none;
|
|
21
|
-
border: 1px solid transparent;
|
|
22
|
-
border-radius: 4px;
|
|
23
|
-
text-transform: uppercase;
|
|
24
|
-
padding: 8px 24px;
|
|
25
|
-
cursor: pointer;
|
|
26
|
-
transition: 0.3s all ease;
|
|
27
|
-
font-weight: 500;
|
|
28
|
-
font-size: 16px;
|
|
29
|
-
height: 56px;
|
|
30
|
-
display: flex;
|
|
31
|
-
align-items: center;
|
|
32
|
-
justify-content: center;
|
|
33
|
-
}
|
|
34
|
-
.button:disabled {
|
|
35
|
-
cursor: initial;
|
|
36
|
-
}
|
|
37
|
-
.button_contained.button_primary {
|
|
38
|
-
color: #fff;
|
|
39
|
-
background: #0d46ff;
|
|
40
|
-
}
|
|
41
|
-
.button_contained.button_primary:hover {
|
|
42
|
-
background: #0b3cd9;
|
|
43
|
-
}
|
|
44
|
-
.button_contained.button_primary:active {
|
|
45
|
-
background: #406dff;
|
|
46
|
-
}
|
|
47
|
-
.button_contained.button_primary:disabled {
|
|
48
|
-
background: #0b3cd9;
|
|
49
|
-
}
|
|
50
|
-
.button_contained.button_secondary {
|
|
51
|
-
background: #ff7f00;
|
|
52
|
-
color: #fff;
|
|
53
|
-
}
|
|
54
|
-
.button_contained.button_secondary:hover {
|
|
55
|
-
background: #d96c00;
|
|
56
|
-
}
|
|
57
|
-
.button_contained.button_secondary:active {
|
|
58
|
-
background: #ff9426;
|
|
59
|
-
}
|
|
60
|
-
.button_contained.button_secondary:disabled {
|
|
61
|
-
background: #ffa140;
|
|
62
|
-
}
|
|
63
|
-
.button_contained.button_neutral {
|
|
64
|
-
background: #4d5359;
|
|
65
|
-
}
|
|
66
|
-
.button_contained.button_neutral:hover {
|
|
67
|
-
background: #40454a;
|
|
68
|
-
}
|
|
69
|
-
.button_contained.button_neutral:active {
|
|
70
|
-
background: #6c757d;
|
|
71
|
-
}
|
|
72
|
-
.button_contained.button_neutral:disabled {
|
|
73
|
-
background: #ffa140;
|
|
74
|
-
}
|
|
75
|
-
.button_contained.button_black {
|
|
76
|
-
background: #212529;
|
|
77
|
-
}
|
|
78
|
-
.button_contained.button_black:hover {
|
|
79
|
-
background: #40454a;
|
|
80
|
-
}
|
|
81
|
-
.button_contained.button_black:active {
|
|
82
|
-
background: #6c757d;
|
|
83
|
-
}
|
|
84
|
-
.button_contained.button_black:disabled {
|
|
85
|
-
background: #ffa140;
|
|
86
|
-
}
|
|
87
|
-
.button_outlined {
|
|
88
|
-
background: transparent;
|
|
89
|
-
}
|
|
90
|
-
.button_outlined.button_primary {
|
|
91
|
-
color: #0d46ff;
|
|
92
|
-
border-color: #0d46ff;
|
|
93
|
-
background: transparent;
|
|
94
|
-
}
|
|
95
|
-
.button_outlined.button_primary:hover {
|
|
96
|
-
background: rgba(13, 70, 255, 0.1);
|
|
97
|
-
}
|
|
98
|
-
.button_outlined.button_primary:active {
|
|
99
|
-
background: #d9e2ff;
|
|
100
|
-
}
|
|
101
|
-
.button_outlined.button_primary:disabled {
|
|
102
|
-
color: #0b3cd9;
|
|
103
|
-
border-color: #0b3cd9;
|
|
104
|
-
}
|
|
105
|
-
.button_outlined.button_secondary {
|
|
106
|
-
border-color: #ff7f00;
|
|
107
|
-
color: #ff7f00;
|
|
108
|
-
}
|
|
109
|
-
.button_outlined.button_secondary:hover {
|
|
110
|
-
background: rgba(255, 127, 0, 0.1);
|
|
111
|
-
}
|
|
112
|
-
.button_outlined.button_secondary:active {
|
|
113
|
-
background: #ffe6cc;
|
|
114
|
-
}
|
|
115
|
-
.button_outlined.button_secondary:disabled {
|
|
116
|
-
color: #0b3cd9;
|
|
117
|
-
border-color: #0b3cd9;
|
|
118
|
-
}
|
|
119
|
-
.button_outlined.button_neutral, .button_outlined.button_black {
|
|
120
|
-
border-color: #212529;
|
|
121
|
-
color: #212529;
|
|
122
|
-
}
|
|
123
|
-
.button_outlined.button_neutral:hover, .button_outlined.button_black:hover {
|
|
124
|
-
background: rgba(77, 83, 89, 0.1);
|
|
125
|
-
}
|
|
126
|
-
.button_outlined.button_neutral:active, .button_outlined.button_black:active {
|
|
127
|
-
background: #d3dae1;
|
|
128
|
-
}
|
|
129
|
-
.button_outlined.button_neutral:disabled, .button_outlined.button_black:disabled {
|
|
130
|
-
color: #9aa4ae;
|
|
131
|
-
border-color: #9aa4ae;
|
|
132
|
-
}
|
|
133
|
-
.button_transparent {
|
|
134
|
-
background: transparent;
|
|
135
|
-
}
|
|
136
|
-
.button_transparent.button_primary {
|
|
137
|
-
color: #0d46ff;
|
|
138
|
-
background: transparent;
|
|
139
|
-
}
|
|
140
|
-
.button_transparent.button_primary:hover {
|
|
141
|
-
background: rgba(13, 70, 255, 0.1);
|
|
142
|
-
}
|
|
143
|
-
.button_transparent.button_primary:active {
|
|
144
|
-
background: #d9e2ff;
|
|
145
|
-
}
|
|
146
|
-
.button_transparent.button_primary:disabled {
|
|
147
|
-
color: #0b3cd9;
|
|
148
|
-
background: none;
|
|
149
|
-
}
|
|
150
|
-
.button_transparent.button_secondary {
|
|
151
|
-
color: #ff7f00;
|
|
152
|
-
}
|
|
153
|
-
.button_transparent.button_secondary:hover {
|
|
154
|
-
background: rgba(255, 127, 0, 0.1);
|
|
155
|
-
}
|
|
156
|
-
.button_transparent.button_secondary:active {
|
|
157
|
-
background: #ffe6cc;
|
|
158
|
-
}
|
|
159
|
-
.button_transparent.button_secondary:disabled {
|
|
160
|
-
color: #0b3cd9;
|
|
161
|
-
background: none;
|
|
162
|
-
}
|
|
163
|
-
.button_transparent.button_neutral, .button_transparent.button_black {
|
|
164
|
-
color: #212529;
|
|
165
|
-
}
|
|
166
|
-
.button_transparent.button_neutral:hover, .button_transparent.button_black:hover {
|
|
167
|
-
background: rgba(77, 83, 89, 0.1);
|
|
168
|
-
}
|
|
169
|
-
.button_transparent.button_neutral:active, .button_transparent.button_black:active {
|
|
170
|
-
background: #d3dae1;
|
|
171
|
-
}
|
|
172
|
-
.button_transparent.button_neutral:disabled, .button_transparent.button_black:disabled {
|
|
173
|
-
color: #9aa4ae;
|
|
174
|
-
background: none;
|
|
175
|
-
}
|
|
176
|
-
.button__adornment {
|
|
177
|
-
font-size: inherit;
|
|
178
|
-
}
|
|
179
|
-
.button__adornment_end {
|
|
180
|
-
margin-left: 8px;
|
|
181
|
-
}
|
|
182
|
-
.button__adornment_start {
|
|
183
|
-
margin-right: 8px;
|
|
184
|
-
}
|
|
185
|
-
.button_large {
|
|
186
|
-
height: 42px;
|
|
187
|
-
font-size: 15px;
|
|
188
|
-
}
|
|
189
|
-
.button_medium {
|
|
190
|
-
height: 36px;
|
|
191
|
-
font-size: 14px;
|
|
192
|
-
}
|
|
193
|
-
.button_small {
|
|
194
|
-
height: 30px;
|
|
195
|
-
font-size: 13px;
|
|
196
|
-
}
|
|
197
|
-
.button_icon {
|
|
198
|
-
padding: 8px;
|
|
199
|
-
width: 56px;
|
|
200
|
-
border-radius: 50%;
|
|
201
|
-
display: flex;
|
|
202
|
-
align-items: center;
|
|
203
|
-
justify-content: center;
|
|
204
|
-
font-size: 30px;
|
|
205
|
-
}
|
|
206
|
-
.button_icon.button_large {
|
|
207
|
-
width: 42px;
|
|
208
|
-
font-size: 24px;
|
|
209
|
-
}
|
|
210
|
-
.button_icon.button_medium {
|
|
211
|
-
width: 36px;
|
|
212
|
-
font-size: 20px;
|
|
213
|
-
}
|
|
214
|
-
.button_icon.button_small {
|
|
215
|
-
width: 30px;
|
|
216
|
-
padding: 4px;
|
|
217
|
-
font-size: 16px;
|
|
218
|
-
}
|
|
219
|
-
.button_group {
|
|
220
|
-
display: flex;
|
|
221
|
-
align-items: center;
|
|
222
|
-
}
|
|
223
|
-
.button_group_inline {
|
|
224
|
-
flex-direction: row;
|
|
225
|
-
}
|
|
226
|
-
.button_group_column {
|
|
227
|
-
flex-direction: column;
|
|
228
|
-
}
|
|
229
|
-
.button_grouped_inline {
|
|
230
|
-
border-radius: 0;
|
|
231
|
-
}
|
|
232
|
-
.button_grouped_inline:first-child {
|
|
233
|
-
border-top-left-radius: 4px;
|
|
234
|
-
border-bottom-left-radius: 4px;
|
|
235
|
-
}
|
|
236
|
-
.button_grouped_inline:last-child {
|
|
237
|
-
border-top-right-radius: 4px;
|
|
238
|
-
border-bottom-right-radius: 4px;
|
|
239
|
-
}
|
|
240
|
-
.button_grouped_inline.button_contained.button_primary + * {
|
|
241
|
-
border-left-color: #0b3cd9;
|
|
242
|
-
}
|
|
243
|
-
.button_grouped_inline.button_contained.button_secondary + * {
|
|
244
|
-
border-left-color: #0b3cd9;
|
|
245
|
-
}
|
|
246
|
-
.button_grouped_inline.button_contained.button_neutral + * {
|
|
247
|
-
border-left-color: #40454a;
|
|
248
|
-
}
|
|
249
|
-
.button_grouped_inline.button_contained.button_black + * {
|
|
250
|
-
border-left-color: #40454a;
|
|
251
|
-
}
|
|
252
|
-
.button_grouped_inline.button_outlined.button_primary + * {
|
|
253
|
-
border-left-color: #0b3cd9;
|
|
254
|
-
}
|
|
255
|
-
.button_grouped_inline.button_outlined.button_primary:not(:last-child) {
|
|
256
|
-
border-right: 0;
|
|
257
|
-
}
|
|
258
|
-
.button_grouped_inline.button_outlined.button_secondary + * {
|
|
259
|
-
border-left-color: #ff7f00;
|
|
260
|
-
}
|
|
261
|
-
.button_grouped_inline.button_outlined.button_secondary:not(:last-child) {
|
|
262
|
-
border-right: 0;
|
|
263
|
-
}
|
|
264
|
-
.button_grouped_inline.button_outlined.button_neutral + * {
|
|
265
|
-
border-left-color: #4d5359;
|
|
266
|
-
}
|
|
267
|
-
.button_grouped_inline.button_outlined.button_neutral:not(:last-child) {
|
|
268
|
-
border-right: 0;
|
|
269
|
-
}
|
|
270
|
-
.button_grouped_inline.button_outlined.button_black + * {
|
|
271
|
-
border-left-color: #4d5359;
|
|
272
|
-
}
|
|
273
|
-
.button_grouped_inline.button_outlined.button_black:not(:last-child) {
|
|
274
|
-
border-right: 0;
|
|
275
|
-
}
|
|
276
|
-
.button_grouped_inline.button_transparent.button_primary + * {
|
|
277
|
-
border-left-color: #dfe2e6;
|
|
278
|
-
}
|
|
279
|
-
.button_grouped_inline.button_transparent.button_secondary + * {
|
|
280
|
-
border-left-color: #dfe2e6;
|
|
281
|
-
}
|
|
282
|
-
.button_grouped_inline.button_transparent.button_neutral + * {
|
|
283
|
-
border-left-color: #dfe2e6;
|
|
284
|
-
}
|
|
285
|
-
.button_grouped_inline.button_transparent.button_black + * {
|
|
286
|
-
border-left-color: #dfe2e6;
|
|
287
|
-
}
|
|
288
|
-
.button_grouped_column {
|
|
289
|
-
border-radius: 0;
|
|
290
|
-
}
|
|
291
|
-
.button_grouped_column:first-child {
|
|
292
|
-
border-top-left-radius: 4px;
|
|
293
|
-
border-top-right-radius: 4px;
|
|
294
|
-
}
|
|
295
|
-
.button_grouped_column:last-child {
|
|
296
|
-
border-bottom-left-radius: 4px;
|
|
297
|
-
border-bottom-right-radius: 4px;
|
|
298
|
-
}
|
|
299
|
-
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import Alert from '../ui/Alert/Alert';
|
|
2
|
-
import Avatar from '../ui/Avatar/Avatar';
|
|
3
|
-
import AvatarGroup from '../ui/Avatar/AvatarGroup';
|
|
4
|
-
import Badge from '../ui/Badge/Badge';
|
|
5
|
-
import Button from '../ui/Button/Button';
|
|
6
|
-
import ButtonIcon from '../ui/Button/ButtonIcon';
|
|
7
|
-
import Card from '../ui/Card/Card';
|
|
8
|
-
import Chip from '../ui/Chip/Chip';
|
|
9
|
-
import ListItem from '../ui/List/ListItem';
|
|
10
|
-
import Loader from '../ui/Loader/Loader';
|
|
11
|
-
import Logo from '../ui/Logo/Logo';
|
|
12
|
-
import Slider from '../ui/Slider/Slider';
|
|
13
|
-
import Status from '../ui/Status/Status';
|
|
14
|
-
import Stepper from '../ui/Stepper/Stepper';
|
|
15
|
-
import Tooltip from '../ui/Tooltip/Tooltip';
|
|
16
|
-
export { Alert, Avatar, AvatarGroup, Badge, Button, ButtonIcon, Card, Chip, ListItem, Loader, Logo, Slider, Status, Stepper, Tooltip, };
|
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
.text_error {
|
|
2
|
-
color: #cc2935;
|
|
3
|
-
}
|
|
4
|
-
.text_success {
|
|
5
|
-
color: #0bd998;
|
|
6
|
-
}
|
|
7
|
-
.adornmentContainer {
|
|
8
|
-
display: flex;
|
|
9
|
-
}
|
|
10
|
-
.adornmentContainer_end {
|
|
11
|
-
margin-left: auto;
|
|
12
|
-
}
|
|
13
|
-
.adornment_end + * {
|
|
14
|
-
margin-left: 8px;
|
|
15
|
-
}
|
|
16
|
-
.adornment_start + * {
|
|
17
|
-
margin-left: 8px;
|
|
18
|
-
}
|
|
19
|
-
.button {
|
|
20
|
-
outline: none;
|
|
21
|
-
border: 1px solid transparent;
|
|
22
|
-
border-radius: 4px;
|
|
23
|
-
text-transform: uppercase;
|
|
24
|
-
padding: 8px 24px;
|
|
25
|
-
cursor: pointer;
|
|
26
|
-
transition: 0.3s all ease;
|
|
27
|
-
font-weight: 500;
|
|
28
|
-
font-size: 16px;
|
|
29
|
-
height: 56px;
|
|
30
|
-
display: flex;
|
|
31
|
-
align-items: center;
|
|
32
|
-
justify-content: center;
|
|
33
|
-
}
|
|
34
|
-
.button:disabled {
|
|
35
|
-
cursor: initial;
|
|
36
|
-
}
|
|
37
|
-
.button_contained.button_primary {
|
|
38
|
-
color: #fff;
|
|
39
|
-
background: #0d46ff;
|
|
40
|
-
}
|
|
41
|
-
.button_contained.button_primary:hover {
|
|
42
|
-
background: #0b3cd9;
|
|
43
|
-
}
|
|
44
|
-
.button_contained.button_primary:active {
|
|
45
|
-
background: #406dff;
|
|
46
|
-
}
|
|
47
|
-
.button_contained.button_primary:disabled {
|
|
48
|
-
background: #0b3cd9;
|
|
49
|
-
}
|
|
50
|
-
.button_contained.button_secondary {
|
|
51
|
-
background: #ff7f00;
|
|
52
|
-
color: #fff;
|
|
53
|
-
}
|
|
54
|
-
.button_contained.button_secondary:hover {
|
|
55
|
-
background: #d96c00;
|
|
56
|
-
}
|
|
57
|
-
.button_contained.button_secondary:active {
|
|
58
|
-
background: #ff9426;
|
|
59
|
-
}
|
|
60
|
-
.button_contained.button_secondary:disabled {
|
|
61
|
-
background: #ffa140;
|
|
62
|
-
}
|
|
63
|
-
.button_contained.button_neutral {
|
|
64
|
-
background: #4d5359;
|
|
65
|
-
}
|
|
66
|
-
.button_contained.button_neutral:hover {
|
|
67
|
-
background: #40454a;
|
|
68
|
-
}
|
|
69
|
-
.button_contained.button_neutral:active {
|
|
70
|
-
background: #6c757d;
|
|
71
|
-
}
|
|
72
|
-
.button_contained.button_neutral:disabled {
|
|
73
|
-
background: #ffa140;
|
|
74
|
-
}
|
|
75
|
-
.button_contained.button_black {
|
|
76
|
-
background: #212529;
|
|
77
|
-
}
|
|
78
|
-
.button_contained.button_black:hover {
|
|
79
|
-
background: #40454a;
|
|
80
|
-
}
|
|
81
|
-
.button_contained.button_black:active {
|
|
82
|
-
background: #6c757d;
|
|
83
|
-
}
|
|
84
|
-
.button_contained.button_black:disabled {
|
|
85
|
-
background: #ffa140;
|
|
86
|
-
}
|
|
87
|
-
.button_outlined {
|
|
88
|
-
background: transparent;
|
|
89
|
-
}
|
|
90
|
-
.button_outlined.button_primary {
|
|
91
|
-
color: #0d46ff;
|
|
92
|
-
border-color: #0d46ff;
|
|
93
|
-
background: transparent;
|
|
94
|
-
}
|
|
95
|
-
.button_outlined.button_primary:hover {
|
|
96
|
-
background: rgba(13, 70, 255, 0.1);
|
|
97
|
-
}
|
|
98
|
-
.button_outlined.button_primary:active {
|
|
99
|
-
background: #d9e2ff;
|
|
100
|
-
}
|
|
101
|
-
.button_outlined.button_primary:disabled {
|
|
102
|
-
color: #0b3cd9;
|
|
103
|
-
border-color: #0b3cd9;
|
|
104
|
-
}
|
|
105
|
-
.button_outlined.button_secondary {
|
|
106
|
-
border-color: #ff7f00;
|
|
107
|
-
color: #ff7f00;
|
|
108
|
-
}
|
|
109
|
-
.button_outlined.button_secondary:hover {
|
|
110
|
-
background: rgba(255, 127, 0, 0.1);
|
|
111
|
-
}
|
|
112
|
-
.button_outlined.button_secondary:active {
|
|
113
|
-
background: #ffe6cc;
|
|
114
|
-
}
|
|
115
|
-
.button_outlined.button_secondary:disabled {
|
|
116
|
-
color: #0b3cd9;
|
|
117
|
-
border-color: #0b3cd9;
|
|
118
|
-
}
|
|
119
|
-
.button_outlined.button_neutral, .button_outlined.button_black {
|
|
120
|
-
border-color: #212529;
|
|
121
|
-
color: #212529;
|
|
122
|
-
}
|
|
123
|
-
.button_outlined.button_neutral:hover, .button_outlined.button_black:hover {
|
|
124
|
-
background: rgba(77, 83, 89, 0.1);
|
|
125
|
-
}
|
|
126
|
-
.button_outlined.button_neutral:active, .button_outlined.button_black:active {
|
|
127
|
-
background: #d3dae1;
|
|
128
|
-
}
|
|
129
|
-
.button_outlined.button_neutral:disabled, .button_outlined.button_black:disabled {
|
|
130
|
-
color: #9aa4ae;
|
|
131
|
-
border-color: #9aa4ae;
|
|
132
|
-
}
|
|
133
|
-
.button_transparent {
|
|
134
|
-
background: transparent;
|
|
135
|
-
}
|
|
136
|
-
.button_transparent.button_primary {
|
|
137
|
-
color: #0d46ff;
|
|
138
|
-
background: transparent;
|
|
139
|
-
}
|
|
140
|
-
.button_transparent.button_primary:hover {
|
|
141
|
-
background: rgba(13, 70, 255, 0.1);
|
|
142
|
-
}
|
|
143
|
-
.button_transparent.button_primary:active {
|
|
144
|
-
background: #d9e2ff;
|
|
145
|
-
}
|
|
146
|
-
.button_transparent.button_primary:disabled {
|
|
147
|
-
color: #0b3cd9;
|
|
148
|
-
background: none;
|
|
149
|
-
}
|
|
150
|
-
.button_transparent.button_secondary {
|
|
151
|
-
color: #ff7f00;
|
|
152
|
-
}
|
|
153
|
-
.button_transparent.button_secondary:hover {
|
|
154
|
-
background: rgba(255, 127, 0, 0.1);
|
|
155
|
-
}
|
|
156
|
-
.button_transparent.button_secondary:active {
|
|
157
|
-
background: #ffe6cc;
|
|
158
|
-
}
|
|
159
|
-
.button_transparent.button_secondary:disabled {
|
|
160
|
-
color: #0b3cd9;
|
|
161
|
-
background: none;
|
|
162
|
-
}
|
|
163
|
-
.button_transparent.button_neutral, .button_transparent.button_black {
|
|
164
|
-
color: #212529;
|
|
165
|
-
}
|
|
166
|
-
.button_transparent.button_neutral:hover, .button_transparent.button_black:hover {
|
|
167
|
-
background: rgba(77, 83, 89, 0.1);
|
|
168
|
-
}
|
|
169
|
-
.button_transparent.button_neutral:active, .button_transparent.button_black:active {
|
|
170
|
-
background: #d3dae1;
|
|
171
|
-
}
|
|
172
|
-
.button_transparent.button_neutral:disabled, .button_transparent.button_black:disabled {
|
|
173
|
-
color: #9aa4ae;
|
|
174
|
-
background: none;
|
|
175
|
-
}
|
|
176
|
-
.button__adornment {
|
|
177
|
-
font-size: inherit;
|
|
178
|
-
}
|
|
179
|
-
.button__adornment_end {
|
|
180
|
-
margin-left: 8px;
|
|
181
|
-
}
|
|
182
|
-
.button__adornment_start {
|
|
183
|
-
margin-right: 8px;
|
|
184
|
-
}
|
|
185
|
-
.button_large {
|
|
186
|
-
height: 42px;
|
|
187
|
-
font-size: 15px;
|
|
188
|
-
}
|
|
189
|
-
.button_medium {
|
|
190
|
-
height: 36px;
|
|
191
|
-
font-size: 14px;
|
|
192
|
-
}
|
|
193
|
-
.button_small {
|
|
194
|
-
height: 30px;
|
|
195
|
-
font-size: 13px;
|
|
196
|
-
}
|
|
197
|
-
.button_icon {
|
|
198
|
-
padding: 8px;
|
|
199
|
-
width: 56px;
|
|
200
|
-
border-radius: 50%;
|
|
201
|
-
display: flex;
|
|
202
|
-
align-items: center;
|
|
203
|
-
justify-content: center;
|
|
204
|
-
font-size: 30px;
|
|
205
|
-
}
|
|
206
|
-
.button_icon.button_large {
|
|
207
|
-
width: 42px;
|
|
208
|
-
font-size: 24px;
|
|
209
|
-
}
|
|
210
|
-
.button_icon.button_medium {
|
|
211
|
-
width: 36px;
|
|
212
|
-
font-size: 20px;
|
|
213
|
-
}
|
|
214
|
-
.button_icon.button_small {
|
|
215
|
-
width: 30px;
|
|
216
|
-
padding: 4px;
|
|
217
|
-
font-size: 16px;
|
|
218
|
-
}
|
|
219
|
-
.button_group {
|
|
220
|
-
display: flex;
|
|
221
|
-
align-items: center;
|
|
222
|
-
}
|
|
223
|
-
.button_group_inline {
|
|
224
|
-
flex-direction: row;
|
|
225
|
-
}
|
|
226
|
-
.button_group_column {
|
|
227
|
-
flex-direction: column;
|
|
228
|
-
}
|
|
229
|
-
.button_grouped_inline {
|
|
230
|
-
border-radius: 0;
|
|
231
|
-
}
|
|
232
|
-
.button_grouped_inline:first-child {
|
|
233
|
-
border-top-left-radius: 4px;
|
|
234
|
-
border-bottom-left-radius: 4px;
|
|
235
|
-
}
|
|
236
|
-
.button_grouped_inline:last-child {
|
|
237
|
-
border-top-right-radius: 4px;
|
|
238
|
-
border-bottom-right-radius: 4px;
|
|
239
|
-
}
|
|
240
|
-
.button_grouped_inline.button_contained.button_primary + * {
|
|
241
|
-
border-left-color: #0b3cd9;
|
|
242
|
-
}
|
|
243
|
-
.button_grouped_inline.button_contained.button_secondary + * {
|
|
244
|
-
border-left-color: #0b3cd9;
|
|
245
|
-
}
|
|
246
|
-
.button_grouped_inline.button_contained.button_neutral + * {
|
|
247
|
-
border-left-color: #40454a;
|
|
248
|
-
}
|
|
249
|
-
.button_grouped_inline.button_contained.button_black + * {
|
|
250
|
-
border-left-color: #40454a;
|
|
251
|
-
}
|
|
252
|
-
.button_grouped_inline.button_outlined.button_primary + * {
|
|
253
|
-
border-left-color: #0b3cd9;
|
|
254
|
-
}
|
|
255
|
-
.button_grouped_inline.button_outlined.button_primary:not(:last-child) {
|
|
256
|
-
border-right: 0;
|
|
257
|
-
}
|
|
258
|
-
.button_grouped_inline.button_outlined.button_secondary + * {
|
|
259
|
-
border-left-color: #ff7f00;
|
|
260
|
-
}
|
|
261
|
-
.button_grouped_inline.button_outlined.button_secondary:not(:last-child) {
|
|
262
|
-
border-right: 0;
|
|
263
|
-
}
|
|
264
|
-
.button_grouped_inline.button_outlined.button_neutral + * {
|
|
265
|
-
border-left-color: #4d5359;
|
|
266
|
-
}
|
|
267
|
-
.button_grouped_inline.button_outlined.button_neutral:not(:last-child) {
|
|
268
|
-
border-right: 0;
|
|
269
|
-
}
|
|
270
|
-
.button_grouped_inline.button_outlined.button_black + * {
|
|
271
|
-
border-left-color: #4d5359;
|
|
272
|
-
}
|
|
273
|
-
.button_grouped_inline.button_outlined.button_black:not(:last-child) {
|
|
274
|
-
border-right: 0;
|
|
275
|
-
}
|
|
276
|
-
.button_grouped_inline.button_transparent.button_primary + * {
|
|
277
|
-
border-left-color: #dfe2e6;
|
|
278
|
-
}
|
|
279
|
-
.button_grouped_inline.button_transparent.button_secondary + * {
|
|
280
|
-
border-left-color: #dfe2e6;
|
|
281
|
-
}
|
|
282
|
-
.button_grouped_inline.button_transparent.button_neutral + * {
|
|
283
|
-
border-left-color: #dfe2e6;
|
|
284
|
-
}
|
|
285
|
-
.button_grouped_inline.button_transparent.button_black + * {
|
|
286
|
-
border-left-color: #dfe2e6;
|
|
287
|
-
}
|
|
288
|
-
.button_grouped_column {
|
|
289
|
-
border-radius: 0;
|
|
290
|
-
}
|
|
291
|
-
.button_grouped_column:first-child {
|
|
292
|
-
border-top-left-radius: 4px;
|
|
293
|
-
border-top-right-radius: 4px;
|
|
294
|
-
}
|
|
295
|
-
.button_grouped_column:last-child {
|
|
296
|
-
border-bottom-left-radius: 4px;
|
|
297
|
-
border-bottom-right-radius: 4px;
|
|
298
|
-
}
|
|
299
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|