@woosmap/ui 4.34.0-beta.0 → 4.34.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/Button/Button.js +6 -3
- package/src/components/Button/ButtonSwitch.js +1 -1
- package/src/components/Card/Card.js +1 -1
- package/src/components/Card/Card.styl +2 -2
- package/src/components/Card/SimpleCard.js +2 -0
- package/src/components/Demo/skeletondemo.styl +1 -1
- package/src/components/Dropdown/Dropdown.js +1 -1
- package/src/components/Flash/Flash.js +1 -1
- package/src/components/Flash/Flash.styl +7 -7
- package/src/components/Icon/Icon.js +19 -5
- package/src/components/Icon/icon-story.styl +4 -3
- package/src/components/Input/Input.js +4 -4
- package/src/components/Label/Label.js +8 -1
- package/src/components/Label/Label.styl +5 -5
- package/src/components/Modal/Modal.styl +1 -1
- package/src/components/ServiceMessage/ServiceMessage.styl +2 -2
- package/src/components/SnackBar/SnackBar.styl +1 -1
- package/src/components/Stepper/Stepper.styl +1 -1
- package/src/icons/alphabetical-order-reversed.svg +1 -0
- package/src/icons/clock-reversed.svg +1 -0
- package/src/icons/clock.svg +1 -1
- package/src/icons/dot.svg +1 -0
- package/src/icons/time.svg +1 -0
- package/src/icons/view-card.svg +1 -0
- package/src/icons/view-list.svg +1 -0
- package/src/styles/console/button.styl +46 -43
- package/src/styles/console/icon.styl +4 -2
- package/src/styles/console/input.styl +1 -1
- package/src/styles/console/mixins.styl +1 -1
- package/.idea/encodings.xml +0 -6
- package/.idea/inspectionProfiles/Project_Default.xml +0 -18
- package/.idea/inspectionProfiles/profiles_settings.xml +0 -6
- package/.idea/misc.xml +0 -4
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -6
- package/.idea/ui.iml +0 -15
- package/.idea/vcs.xml +0 -6
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export default class Button extends Component {
|
|
|
15
15
|
size,
|
|
16
16
|
type,
|
|
17
17
|
icon,
|
|
18
|
+
isFillIcon,
|
|
18
19
|
iconSize,
|
|
19
20
|
isBtnIcon,
|
|
20
21
|
className,
|
|
@@ -40,10 +41,10 @@ export default class Button extends Component {
|
|
|
40
41
|
isNotification ? 'btn--notification' : null,
|
|
41
42
|
{ 'btn--loading': isLoading },
|
|
42
43
|
{ 'btn--no-label': !label },
|
|
43
|
-
{ 'btn--custom-icon-size': iconSize && iconSize !==
|
|
44
|
+
{ 'btn--custom-icon-size': iconSize && iconSize !== 22 },
|
|
44
45
|
className
|
|
45
46
|
);
|
|
46
|
-
let iconComponent = icon ? <Icon size={iconSize} icon={icon} /> : null;
|
|
47
|
+
let iconComponent = icon ? <Icon isFill={isFillIcon} size={iconSize} icon={icon} /> : null;
|
|
47
48
|
if (isLoading) {
|
|
48
49
|
iconComponent = <Icon icon="load" />;
|
|
49
50
|
}
|
|
@@ -77,12 +78,13 @@ Button.defaultProps = {
|
|
|
77
78
|
className: '',
|
|
78
79
|
label: '',
|
|
79
80
|
icon: null,
|
|
80
|
-
iconSize:
|
|
81
|
+
iconSize: 22,
|
|
81
82
|
isLoading: false,
|
|
82
83
|
active: false,
|
|
83
84
|
onClick: null,
|
|
84
85
|
iconRight: false,
|
|
85
86
|
isNotification: false,
|
|
87
|
+
isFillIcon: false,
|
|
86
88
|
};
|
|
87
89
|
|
|
88
90
|
Button.propTypes = {
|
|
@@ -119,4 +121,5 @@ Button.propTypes = {
|
|
|
119
121
|
children: PropTypes.node,
|
|
120
122
|
iconRight: PropTypes.bool,
|
|
121
123
|
isNotification: PropTypes.bool,
|
|
124
|
+
isFillIcon: PropTypes.bool,
|
|
122
125
|
};
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
font-size $fontSizeSmall - .1
|
|
192
192
|
margin-top -.5rem
|
|
193
193
|
.icon
|
|
194
|
-
|
|
194
|
+
stroke $logo5
|
|
195
195
|
&__footer
|
|
196
196
|
color $dark40
|
|
197
197
|
&--small
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
.card--traffic &
|
|
273
273
|
background $traffic
|
|
274
274
|
.icon
|
|
275
|
-
|
|
275
|
+
stroke $light
|
|
276
276
|
&__image
|
|
277
277
|
flex-grow 1
|
|
278
278
|
flex-shrink 0
|
|
@@ -6,7 +6,7 @@ import Icon from '../Icon/Icon';
|
|
|
6
6
|
export default class Flash extends Component {
|
|
7
7
|
render() {
|
|
8
8
|
const { children, icon, inverse, fill, type, shadowed, testId, ...rest } = this.props;
|
|
9
|
-
const iconComponent = icon ? <Icon
|
|
9
|
+
const iconComponent = icon ? <Icon icon={icon} /> : null;
|
|
10
10
|
return (
|
|
11
11
|
<div
|
|
12
12
|
className={cl(
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
min-height $buttonHeight
|
|
12
12
|
padding .9rem $padding
|
|
13
13
|
.icon
|
|
14
|
-
|
|
14
|
+
stroke $secondary
|
|
15
15
|
flex-shrink 0
|
|
16
16
|
&--shadowed
|
|
17
17
|
box-shadow 0 0 1rem $dark8
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
&.flash--inverse
|
|
31
31
|
color $flashSuccess
|
|
32
32
|
.icon
|
|
33
|
-
|
|
33
|
+
stroke $flashSuccess
|
|
34
34
|
|
|
35
35
|
&--tip
|
|
36
36
|
&:not(.flash--inverse)
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
&.flash--inverse
|
|
40
40
|
color $flashTipInverse
|
|
41
41
|
.icon
|
|
42
|
-
|
|
42
|
+
stroke $flashTipInverse
|
|
43
43
|
|
|
44
44
|
&--howto
|
|
45
45
|
&:not(.flash--inverse)
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
&.flash--inverse
|
|
49
49
|
color $flashHowto
|
|
50
50
|
.icon
|
|
51
|
-
|
|
51
|
+
stroke $flashHowto
|
|
52
52
|
|
|
53
53
|
&--warning
|
|
54
54
|
&:not(.flash--inverse)
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
&.flash--inverse
|
|
58
58
|
color $flashWarning
|
|
59
59
|
.icon
|
|
60
|
-
|
|
60
|
+
stroke $flashWarning
|
|
61
61
|
|
|
62
62
|
&--error
|
|
63
63
|
&:not(.flash--inverse)
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
&.flash--inverse
|
|
67
67
|
color $flashError
|
|
68
68
|
.icon
|
|
69
|
-
|
|
69
|
+
stroke $flashError
|
|
70
70
|
|
|
71
71
|
&--info
|
|
72
72
|
&:not(.flash--inverse)
|
|
@@ -75,4 +75,4 @@
|
|
|
75
75
|
&.flash--inverse
|
|
76
76
|
color $flashInfo
|
|
77
77
|
.icon
|
|
78
|
-
|
|
78
|
+
stroke $flashInfo
|
|
@@ -120,6 +120,7 @@ import { ReactComponent as AdminKey } from '../../icons/admin-key.svg';
|
|
|
120
120
|
import { ReactComponent as AdminTool } from '../../icons/admin-tool.svg';
|
|
121
121
|
import { ReactComponent as Agenda } from '../../icons/agenda.svg';
|
|
122
122
|
import { ReactComponent as AlphabeticalOrder } from '../../icons/alphabetical-order.svg';
|
|
123
|
+
import { ReactComponent as AlphabeticalOrderReversed } from '../../icons/alphabetical-order-reversed.svg';
|
|
123
124
|
import { ReactComponent as ArrowBotton } from '../../icons/arrow-bottom.svg';
|
|
124
125
|
import { ReactComponent as ArrowLeft } from '../../icons/arrow-left.svg';
|
|
125
126
|
import { ReactComponent as ArrowRight } from '../../icons/arrow-right.svg';
|
|
@@ -134,6 +135,7 @@ import { ReactComponent as CaretTop } from '../../icons/caret-top.svg';
|
|
|
134
135
|
import { ReactComponent as Charts } from '../../icons/charts.svg';
|
|
135
136
|
import { ReactComponent as Check } from '../../icons/check.svg';
|
|
136
137
|
import { ReactComponent as Clock } from '../../icons/clock.svg';
|
|
138
|
+
import { ReactComponent as ClockReversed } from '../../icons/clock-reversed.svg';
|
|
137
139
|
import { ReactComponent as Close } from '../../icons/close.svg';
|
|
138
140
|
import { ReactComponent as Code } from '../../icons/code.svg';
|
|
139
141
|
import { ReactComponent as Company } from '../../icons/company.svg';
|
|
@@ -143,6 +145,7 @@ import { ReactComponent as Dashboard } from '../../icons/dashboard.svg';
|
|
|
143
145
|
import { ReactComponent as Delete } from '../../icons/delete.svg';
|
|
144
146
|
import { ReactComponent as Documentation } from '../../icons/documentation.svg';
|
|
145
147
|
import { ReactComponent as Dollar } from '../../icons/dollar.svg';
|
|
148
|
+
import { ReactComponent as Dot } from '../../icons/dot.svg';
|
|
146
149
|
import { ReactComponent as DotFill } from '../../icons/dot-fill.svg';
|
|
147
150
|
import { ReactComponent as Edit } from '../../icons/edit.svg';
|
|
148
151
|
import { ReactComponent as Email } from '../../icons/email.svg';
|
|
@@ -152,7 +155,6 @@ import { ReactComponent as Expand } from '../../icons/expand.svg';
|
|
|
152
155
|
import { ReactComponent as Export } from '../../icons/export.svg';
|
|
153
156
|
import { ReactComponent as Flag } from '../../icons/flag.svg';
|
|
154
157
|
import { ReactComponent as Forbidden } from '../../icons/forbidden.svg';
|
|
155
|
-
|
|
156
158
|
import { ReactComponent as Globe } from '../../icons/globe.svg';
|
|
157
159
|
import { ReactComponent as Hourglass } from '../../icons/hourglass.svg';
|
|
158
160
|
import { ReactComponent as Import } from '../../icons/import.svg';
|
|
@@ -181,7 +183,10 @@ import { ReactComponent as StarFilled } from '../../icons/star-filled.svg';
|
|
|
181
183
|
import { ReactComponent as Support } from '../../icons/support.svg';
|
|
182
184
|
import { ReactComponent as Switch } from '../../icons/switch.svg';
|
|
183
185
|
import { ReactComponent as Team } from '../../icons/team.svg';
|
|
186
|
+
import { ReactComponent as Time } from '../../icons/time.svg';
|
|
184
187
|
import { ReactComponent as User } from '../../icons/user.svg';
|
|
188
|
+
import { ReactComponent as ViewCard } from '../../icons/view-card.svg';
|
|
189
|
+
import { ReactComponent as ViewList } from '../../icons/view-list.svg';
|
|
185
190
|
import { ReactComponent as Warning } from '../../icons/warning.svg';
|
|
186
191
|
import { ReactComponent as Woosmap } from '../../icons/woosmap.svg';
|
|
187
192
|
import { ReactComponent as Address } from '../../icons/address.svg';
|
|
@@ -189,6 +194,7 @@ import { ReactComponent as Distance } from '../../icons/distance.svg';
|
|
|
189
194
|
import { ReactComponent as Geolocation } from '../../icons/geolocation.svg';
|
|
190
195
|
import { ReactComponent as Localities } from '../../icons/localities.svg';
|
|
191
196
|
import { ReactComponent as Map } from '../../icons/map.svg';
|
|
197
|
+
|
|
192
198
|
import { ReactComponent as Merchant } from '../../icons/merchant.svg';
|
|
193
199
|
import { ReactComponent as Stores } from '../../icons/stores.svg';
|
|
194
200
|
import { ReactComponent as Traffic } from '../../icons/traffic.svg';
|
|
@@ -428,6 +434,7 @@ const ConsoleIcons = {
|
|
|
428
434
|
'administration-tool': AdministrationTool,
|
|
429
435
|
agenda: Agenda,
|
|
430
436
|
'alphabetical-order': AlphabeticalOrder,
|
|
437
|
+
'alphabetical-order-reversed': AlphabeticalOrdedReversef,
|
|
431
438
|
'arrow-bottom': ArrowBotton,
|
|
432
439
|
'arrow-left': ArrowLeft,
|
|
433
440
|
'arrow-right': ArrowRight,
|
|
@@ -442,6 +449,7 @@ const ConsoleIcons = {
|
|
|
442
449
|
charts: Charts,
|
|
443
450
|
check: Check,
|
|
444
451
|
clock: Clock,
|
|
452
|
+
'clock-reversed': ClockReversed,
|
|
445
453
|
close: Close,
|
|
446
454
|
code: Code,
|
|
447
455
|
company: Company,
|
|
@@ -451,6 +459,7 @@ const ConsoleIcons = {
|
|
|
451
459
|
delete: Delete,
|
|
452
460
|
documentation: Documentation,
|
|
453
461
|
dollar: Dollar,
|
|
462
|
+
dot: Dot,
|
|
454
463
|
'dot-fill': DotFill,
|
|
455
464
|
edit: Edit,
|
|
456
465
|
email: Email,
|
|
@@ -493,7 +502,10 @@ const ConsoleIcons = {
|
|
|
493
502
|
support: Support,
|
|
494
503
|
switch: Switch,
|
|
495
504
|
team: Team,
|
|
505
|
+
time: Time,
|
|
496
506
|
user: User,
|
|
507
|
+
'view-card': ViewCard,
|
|
508
|
+
'view-list': ViewList,
|
|
497
509
|
warning: Warning,
|
|
498
510
|
woosmap: Woosmap,
|
|
499
511
|
|
|
@@ -624,12 +636,12 @@ const Icons = {
|
|
|
624
636
|
|
|
625
637
|
class Icon extends Component {
|
|
626
638
|
render() {
|
|
627
|
-
const { icon, size, className, title, testId } = this.props;
|
|
639
|
+
const { icon, size, className, isFill, title, testId } = this.props;
|
|
628
640
|
const IconComponent = Object.keys(Icons).includes(icon) ? Icons[icon] : Woosmap;
|
|
629
|
-
|
|
641
|
+
const classes = cl('icon', { 'icon--fill': isFill }, className);
|
|
630
642
|
return (
|
|
631
643
|
<IconComponent
|
|
632
|
-
className={
|
|
644
|
+
className={classes}
|
|
633
645
|
data-testid={`${testId}-${icon}`}
|
|
634
646
|
width={size}
|
|
635
647
|
height={size}
|
|
@@ -640,16 +652,18 @@ class Icon extends Component {
|
|
|
640
652
|
}
|
|
641
653
|
|
|
642
654
|
Icon.defaultProps = {
|
|
643
|
-
size:
|
|
655
|
+
size: 22,
|
|
644
656
|
className: null,
|
|
645
657
|
title: null,
|
|
646
658
|
testId: 'icon',
|
|
659
|
+
isFill: false,
|
|
647
660
|
};
|
|
648
661
|
|
|
649
662
|
Icon.propTypes = {
|
|
650
663
|
size: PropTypes.number,
|
|
651
664
|
className: PropTypes.string,
|
|
652
665
|
icon: PropTypes.string.isRequired,
|
|
666
|
+
isFill: PropTypes.bool,
|
|
653
667
|
title: PropTypes.string,
|
|
654
668
|
testId: PropTypes.string,
|
|
655
669
|
};
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
stroke $secondary
|
|
23
23
|
stroke-linecap round
|
|
24
24
|
stroke-linejoin round
|
|
25
|
+
&:not(.icon--fill)
|
|
26
|
+
fill none
|
|
25
27
|
&--fill
|
|
26
28
|
stroke-width: 0
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
fill: none
|
|
29
|
+
stroke $secondary
|
|
30
|
+
|
|
@@ -52,16 +52,16 @@ export default class Input extends Component {
|
|
|
52
52
|
|
|
53
53
|
switch (iconSize) {
|
|
54
54
|
case 'normal':
|
|
55
|
-
iconSize =
|
|
55
|
+
iconSize = 22;
|
|
56
56
|
break;
|
|
57
57
|
case 'large':
|
|
58
|
-
iconSize =
|
|
58
|
+
iconSize = 24;
|
|
59
59
|
break;
|
|
60
60
|
case 'small':
|
|
61
|
-
iconSize =
|
|
61
|
+
iconSize = 20;
|
|
62
62
|
break;
|
|
63
63
|
default:
|
|
64
|
-
iconSize =
|
|
64
|
+
iconSize = 22;
|
|
65
65
|
}
|
|
66
66
|
return (
|
|
67
67
|
<div className="input__container">
|
|
@@ -41,7 +41,14 @@ export default class Label extends Component {
|
|
|
41
41
|
</span>
|
|
42
42
|
)}
|
|
43
43
|
{closable && (
|
|
44
|
-
<Button
|
|
44
|
+
<Button
|
|
45
|
+
type="link-flex"
|
|
46
|
+
className="icon--thicker"
|
|
47
|
+
iconSize={10}
|
|
48
|
+
icon="close"
|
|
49
|
+
onClick={closeCb}
|
|
50
|
+
testId={`${testId}-button`}
|
|
51
|
+
/>
|
|
45
52
|
)}
|
|
46
53
|
</span>
|
|
47
54
|
);
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
margin .2rem 0
|
|
13
13
|
word-break break-all
|
|
14
14
|
.icon
|
|
15
|
-
|
|
15
|
+
stroke $light
|
|
16
16
|
&--round
|
|
17
17
|
br(50)
|
|
18
18
|
sq($buttonHeight)
|
|
@@ -134,10 +134,10 @@
|
|
|
134
134
|
text-shadow none
|
|
135
135
|
.btn
|
|
136
136
|
.icon
|
|
137
|
-
|
|
137
|
+
stroke $secondary70
|
|
138
138
|
&:hover
|
|
139
139
|
.icon
|
|
140
|
-
|
|
140
|
+
stroke $secondary70 !important
|
|
141
141
|
&--white
|
|
142
142
|
background-color $light
|
|
143
143
|
color $secondary
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
border .1rem solid $borderColor
|
|
146
146
|
.btn
|
|
147
147
|
.icon
|
|
148
|
-
|
|
148
|
+
stroke $secondary40
|
|
149
149
|
&:hover
|
|
150
150
|
.icon
|
|
151
|
-
|
|
151
|
+
stroke $secondary40 !important
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><line x1="16.744" y1="17.315" x2="16.744" y2="6.54"/><polyline points="20.382 14.949 16.781 18.55 13.17 14.94"/><polyline points="3.62 19.289 6.202 12.924 8.706 19.289"/><line x1="4.267" y1="17.694" x2="8.079" y2="17.694"/><polyline points="3.62 4.711 8.706 4.711 3.618 9.799 8.684 9.799"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="16.137 10.357 12.037 13.103 7.54 8.557"/><polyline points="14.678 17.975 19.248 17.975 19.248 22.431"/><path d="m21.177,13.911c.128-.617.195-1.256.195-1.911,0-5.176-4.196-9.372-9.372-9.372S2.628,6.824,2.628,12s4.196,9.372,9.372,9.372c2.911,0,5.513-1.328,7.232-3.41"/></svg>
|
package/src/icons/clock.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="16.137 10.357 12.037 13.103 7.54 8.557"/><
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="9.322 17.975 4.752 17.975 4.752 22.431"/><polyline points="16.137 10.357 12.037 13.103 7.54 8.557"/><path d="m2.823,13.911c-.128-.617-.195-1.256-.195-1.911C2.628,6.824,6.824,2.628,12,2.628s9.372,4.196,9.372,9.372-4.196,9.372-9.372,9.372c-2.911,0-5.513-1.328-7.232-3.41"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12.174" cy="12" r="3.231"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="16.137 10.357 12.037 13.103 7.54 8.557"/><circle cx="12" cy="12" r="9.372"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2" y="4.841" width="20" height="14.318" rx="3.771" ry="3.771"/><line x1="5.914" y1="8.57" x2="18.449" y2="8.57"/><line x1="5.914" y1="11.64" x2="14.949" y2="11.64"/><circle cx="6.592" cy="15.049" r=".339"/><circle cx="9.192" cy="15.049" r=".339"/><circle cx="11.793" cy="15.049" r=".339"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2" y="6.047" width="19.389" height="4.527" rx="2.263" ry="2.263"/><rect x="2" y="13.103" width="19.389" height="4.527" rx="2.263" ry="2.263"/><line x1="16.315" y1="8.31" x2="4.573" y2="8.31"/><line x1="4.573" y1="15.366" x2="10.056" y2="15.366"/></svg>
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
&.btn--loading
|
|
22
22
|
padding 0
|
|
23
23
|
.icon
|
|
24
|
-
sq(2.
|
|
24
|
+
sq(2.2)
|
|
25
25
|
&.btn--small
|
|
26
26
|
buttonSmall()
|
|
27
27
|
width $buttonHeightSmall
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
&:hover
|
|
37
37
|
background-color $primary
|
|
38
38
|
.icon
|
|
39
|
-
|
|
39
|
+
stroke $light
|
|
40
40
|
&.btn--loading
|
|
41
41
|
&:hover
|
|
42
42
|
background-color $primary
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
background-color transparent
|
|
47
47
|
border-color $inputBorderColor
|
|
48
48
|
.icon
|
|
49
|
-
|
|
49
|
+
stroke $secondary
|
|
50
50
|
&.btn--important
|
|
51
51
|
&:disabled
|
|
52
52
|
&:hover
|
|
53
53
|
background-color $error
|
|
54
54
|
.icon
|
|
55
|
-
|
|
55
|
+
stroke $light
|
|
56
56
|
&.btn--has-icon
|
|
57
57
|
&:not(.btn--mini):not(.btn--small):not(.btn--large)
|
|
58
58
|
mbi(.4)
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
textShadow()
|
|
67
67
|
color $light
|
|
68
68
|
.icon
|
|
69
|
-
|
|
69
|
+
stroke $light
|
|
70
70
|
trans()
|
|
71
71
|
&.btn--loading:not(.btn--mini):not(.btn--small):not(.btn--large)
|
|
72
72
|
disableHoverEffect()
|
|
73
73
|
.icon
|
|
74
74
|
margin-right .3rem
|
|
75
|
-
sq(2
|
|
75
|
+
sq(2)
|
|
76
76
|
&.btn--has-icon
|
|
77
77
|
&:not(.btn--mini):not(.btn--small):not(.btn--large)
|
|
78
78
|
mbi(.4)
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
background-color $light
|
|
99
99
|
border .1rem solid $inputBorderColor
|
|
100
100
|
.icon
|
|
101
|
-
|
|
101
|
+
stroke $secondary
|
|
102
102
|
trans()
|
|
103
103
|
&.btn--has-icon
|
|
104
104
|
&:not(.btn--mini):not(.btn--small):not(.btn--large)
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
cursor default
|
|
118
118
|
border-color $inputBorderColor
|
|
119
119
|
.icon
|
|
120
|
-
|
|
120
|
+
stroke $secondary
|
|
121
121
|
&:disabled
|
|
122
122
|
opacity .4
|
|
123
123
|
cursor default
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
color $secondary
|
|
130
130
|
border-color $inputBorderColor
|
|
131
131
|
.icon
|
|
132
|
-
|
|
132
|
+
stroke $secondary
|
|
133
133
|
&--transparent
|
|
134
134
|
btn()
|
|
135
135
|
background-color transparent
|
|
@@ -148,11 +148,11 @@
|
|
|
148
148
|
flex-shrink 0
|
|
149
149
|
&:hover
|
|
150
150
|
.icon
|
|
151
|
-
|
|
151
|
+
stroke $light
|
|
152
152
|
&:hover
|
|
153
153
|
color $secondary
|
|
154
154
|
.icon
|
|
155
|
-
|
|
155
|
+
stroke $light
|
|
156
156
|
&:disabled
|
|
157
157
|
opacity .3
|
|
158
158
|
&:hover
|
|
@@ -160,14 +160,14 @@
|
|
|
160
160
|
color $secondary
|
|
161
161
|
background-color transparent
|
|
162
162
|
.icon
|
|
163
|
-
|
|
163
|
+
stroke $secondary
|
|
164
164
|
&--inverse
|
|
165
165
|
btn()
|
|
166
166
|
background-color transparent
|
|
167
167
|
border .1rem solid $light
|
|
168
168
|
color $light
|
|
169
169
|
.icon
|
|
170
|
-
|
|
170
|
+
stroke $light
|
|
171
171
|
&.btn--has-icon
|
|
172
172
|
&:not(.btn--mini):not(.btn--small):not(.btn--large)
|
|
173
173
|
mbi(.4)
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
border-color $success
|
|
180
180
|
color $light
|
|
181
181
|
.icon
|
|
182
|
-
|
|
182
|
+
stroke $light
|
|
183
183
|
&:disabled
|
|
184
184
|
opacity .3
|
|
185
185
|
&:hover
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
border-color $success
|
|
188
188
|
color $light
|
|
189
189
|
.icon
|
|
190
|
-
|
|
190
|
+
stroke $light
|
|
191
191
|
&--dropdown-item
|
|
192
192
|
flexBtn()
|
|
193
193
|
ellipsis()
|
|
@@ -209,12 +209,12 @@
|
|
|
209
209
|
&--important
|
|
210
210
|
color $error
|
|
211
211
|
.icon
|
|
212
|
-
|
|
212
|
+
stroke $error
|
|
213
213
|
&:disabled
|
|
214
214
|
color $secondary40
|
|
215
215
|
cursor default
|
|
216
216
|
.icon
|
|
217
|
-
|
|
217
|
+
stroke $secondary40
|
|
218
218
|
&:hover
|
|
219
219
|
background-color transparent
|
|
220
220
|
cursor default
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
text-decoration underline
|
|
239
239
|
color $primary
|
|
240
240
|
.icon
|
|
241
|
-
|
|
241
|
+
stroke $primary
|
|
242
242
|
&:disabled
|
|
243
243
|
cursor default
|
|
244
244
|
opacity .3
|
|
@@ -247,15 +247,15 @@
|
|
|
247
247
|
opacity .3
|
|
248
248
|
text-decoration underline
|
|
249
249
|
.icon
|
|
250
|
-
|
|
250
|
+
stroke inherit
|
|
251
251
|
.label &
|
|
252
252
|
&:hover
|
|
253
253
|
.icon
|
|
254
|
-
|
|
254
|
+
stroke $light
|
|
255
255
|
.label.label--white &
|
|
256
256
|
&:hover
|
|
257
257
|
.icon
|
|
258
|
-
|
|
258
|
+
stroke $secondary
|
|
259
259
|
&.btn--icon
|
|
260
260
|
padding 0
|
|
261
261
|
text-decoration none
|
|
@@ -312,13 +312,13 @@
|
|
|
312
312
|
color $primary
|
|
313
313
|
text-decoration none
|
|
314
314
|
.icon
|
|
315
|
-
|
|
315
|
+
stroke $primary
|
|
316
316
|
&:disabled
|
|
317
317
|
&:hover
|
|
318
318
|
color $primary
|
|
319
319
|
text-decoration none
|
|
320
320
|
.icon
|
|
321
|
-
|
|
321
|
+
stroke $primary
|
|
322
322
|
&--link
|
|
323
323
|
&--link-flex
|
|
324
324
|
text-decoration underline
|
|
@@ -326,31 +326,31 @@
|
|
|
326
326
|
color $secondary-medium40
|
|
327
327
|
.icon
|
|
328
328
|
trans()
|
|
329
|
-
|
|
329
|
+
stroke $secondary-medium40
|
|
330
330
|
&:hover
|
|
331
331
|
color $primary
|
|
332
332
|
.icon
|
|
333
|
-
|
|
333
|
+
stroke $primary
|
|
334
334
|
&--link-primary
|
|
335
335
|
color $primary
|
|
336
336
|
.icon
|
|
337
|
-
|
|
337
|
+
stroke $primary
|
|
338
338
|
&:disabled
|
|
339
339
|
&:hover
|
|
340
340
|
color $primary
|
|
341
341
|
text-decoration none
|
|
342
342
|
.icon
|
|
343
|
-
|
|
343
|
+
stroke $primary
|
|
344
344
|
&--link-info
|
|
345
345
|
&--link-flex-info
|
|
346
346
|
color $info
|
|
347
347
|
.icon
|
|
348
|
-
|
|
348
|
+
stroke $info
|
|
349
349
|
&:hover
|
|
350
350
|
color $primary
|
|
351
351
|
text-decoration underline
|
|
352
352
|
.icon
|
|
353
|
-
|
|
353
|
+
stroke $primary
|
|
354
354
|
&--link-info
|
|
355
355
|
&--link-flex-info
|
|
356
356
|
&--link-flex
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
&.btn--important
|
|
374
374
|
background-color $error
|
|
375
375
|
.icon
|
|
376
|
-
sq(2
|
|
376
|
+
sq(2)
|
|
377
377
|
&--switch
|
|
378
378
|
btn()
|
|
379
379
|
color $secondary-medium
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
border-color $secondary
|
|
395
395
|
background-color $secondary
|
|
396
396
|
.icon
|
|
397
|
-
|
|
397
|
+
stroke $light
|
|
398
398
|
&:hover
|
|
399
399
|
background-color $secondary
|
|
400
400
|
&--group
|
|
@@ -417,7 +417,7 @@
|
|
|
417
417
|
border-color $secondary
|
|
418
418
|
background-color $secondary
|
|
419
419
|
.icon
|
|
420
|
-
|
|
420
|
+
stroke $light
|
|
421
421
|
&:hover
|
|
422
422
|
background-color $secondary
|
|
423
423
|
&:disabled
|
|
@@ -425,18 +425,18 @@
|
|
|
425
425
|
border-color $secondary-medium15
|
|
426
426
|
color $light70
|
|
427
427
|
.icon
|
|
428
|
-
|
|
428
|
+
stroke $light70
|
|
429
429
|
&:disabled:not(.active)
|
|
430
430
|
color $secondary30
|
|
431
431
|
cursor default
|
|
432
432
|
.icon
|
|
433
|
-
|
|
433
|
+
stroke $secondary30
|
|
434
434
|
&:hover
|
|
435
435
|
border-color $inputBorderColor
|
|
436
436
|
color $secondary30
|
|
437
437
|
background-color transparent
|
|
438
438
|
.icon
|
|
439
|
-
|
|
439
|
+
stroke $secondary30
|
|
440
440
|
&-container
|
|
441
441
|
flexMiddle()
|
|
442
442
|
.btn
|
|
@@ -482,7 +482,7 @@
|
|
|
482
482
|
position relative
|
|
483
483
|
.icon
|
|
484
484
|
flex-shrink 0
|
|
485
|
-
|
|
485
|
+
stroke $secondary-medium60
|
|
486
486
|
display none
|
|
487
487
|
.btn__label
|
|
488
488
|
ellipsis()
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
font-weight 700
|
|
511
511
|
color $tabBtnActive
|
|
512
512
|
.icon
|
|
513
|
-
|
|
513
|
+
stroke $secondary
|
|
514
514
|
&:after
|
|
515
515
|
width 100%
|
|
516
516
|
&:hover
|
|
@@ -520,7 +520,7 @@
|
|
|
520
520
|
color $error
|
|
521
521
|
position relative
|
|
522
522
|
.icon
|
|
523
|
-
|
|
523
|
+
stroke $error
|
|
524
524
|
&:before
|
|
525
525
|
content ''
|
|
526
526
|
position absolute
|
|
@@ -592,18 +592,18 @@
|
|
|
592
592
|
flexAxis()
|
|
593
593
|
sq($sidebarButtonSize)
|
|
594
594
|
.icon
|
|
595
|
-
|
|
595
|
+
stroke $light
|
|
596
596
|
&:hover
|
|
597
597
|
background-color $dark15
|
|
598
598
|
.icon
|
|
599
|
-
|
|
599
|
+
stroke $light
|
|
600
600
|
&.active
|
|
601
601
|
cursor default
|
|
602
602
|
background-color $dark20
|
|
603
603
|
&:hover
|
|
604
604
|
background-color $dark20
|
|
605
605
|
.icon
|
|
606
|
-
|
|
606
|
+
stroke $light
|
|
607
607
|
&--notification
|
|
608
608
|
position relative
|
|
609
609
|
padding 0 .6rem !important
|
|
@@ -665,7 +665,7 @@
|
|
|
665
665
|
buttonLarge()
|
|
666
666
|
&:not(.btn--custom-icon-size)
|
|
667
667
|
.icon
|
|
668
|
-
sq(3
|
|
668
|
+
sq(3)
|
|
669
669
|
&:not(.btn--icon)
|
|
670
670
|
.icon
|
|
671
671
|
margin-right .6rem
|
|
@@ -675,7 +675,10 @@
|
|
|
675
675
|
padding-left $padding
|
|
676
676
|
disableHoverEffect()
|
|
677
677
|
.icon
|
|
678
|
-
sq(3
|
|
678
|
+
sq(3)
|
|
679
|
+
.icon--thicker
|
|
680
|
+
.icon
|
|
681
|
+
stroke-width .16rem
|
|
679
682
|
@media screen and (max-width 720px)
|
|
680
683
|
.btn
|
|
681
684
|
&--tab
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
stroke $secondary
|
|
4
4
|
stroke-linecap round
|
|
5
5
|
stroke-linejoin round
|
|
6
|
+
stroke-width .12rem
|
|
7
|
+
&:not(.icon--fill)
|
|
8
|
+
fill: none
|
|
6
9
|
&--fill
|
|
7
10
|
stroke-width: 0
|
|
8
11
|
fill $secondary
|
|
9
|
-
|
|
10
|
-
fill: none
|
|
12
|
+
|
package/.idea/encodings.xml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
|
2
|
-
<profile version="1.0">
|
|
3
|
-
<option name="myName" value="Project Default" />
|
|
4
|
-
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
-
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
6
|
-
<option name="ignoredPackages">
|
|
7
|
-
<value>
|
|
8
|
-
<list size="4">
|
|
9
|
-
<item index="0" class="java.lang.String" itemvalue="Fabric" />
|
|
10
|
-
<item index="1" class="java.lang.String" itemvalue="PyYAML" />
|
|
11
|
-
<item index="2" class="java.lang.String" itemvalue="Jinja2" />
|
|
12
|
-
<item index="3" class="java.lang.String" itemvalue="github3.py" />
|
|
13
|
-
</list>
|
|
14
|
-
</value>
|
|
15
|
-
</option>
|
|
16
|
-
</inspection_tool>
|
|
17
|
-
</profile>
|
|
18
|
-
</component>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
package/.idea/prettier.xml
DELETED
package/.idea/ui.iml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="PYTHON_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
<component name="TemplatesService">
|
|
9
|
-
<option name="TEMPLATE_FOLDERS">
|
|
10
|
-
<list>
|
|
11
|
-
<option value="$MODULE_DIR$/node_modules/@storybook/core/dist/server/templates" />
|
|
12
|
-
</list>
|
|
13
|
-
</option>
|
|
14
|
-
</component>
|
|
15
|
-
</module>
|