ui-kit-ck-consultant 0.5.194 → 0.5.197
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/dist/index.css +12 -10
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1561,6 +1561,8 @@
|
|
1561
1561
|
border-radius: 15px 15px 15px 15px;
|
1562
1562
|
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1563
1563
|
background-color: var(--white);
|
1564
|
+
padding-left: 5px;
|
1565
|
+
padding-right: 5px;
|
1564
1566
|
margin-bottom: 20px;
|
1565
1567
|
flex-wrap: wrap;
|
1566
1568
|
}
|
@@ -1580,7 +1582,7 @@
|
|
1580
1582
|
display: inline-flex;
|
1581
1583
|
height: 40px;
|
1582
1584
|
padding: 10px;
|
1583
|
-
margin: 5px
|
1585
|
+
margin: 5px;
|
1584
1586
|
color: var(--black);
|
1585
1587
|
transition: 0.4s;
|
1586
1588
|
cursor: pointer;
|
@@ -1590,10 +1592,6 @@
|
|
1590
1592
|
flex-shrink: 1;
|
1591
1593
|
}
|
1592
1594
|
|
1593
|
-
._38JFK + ._38JFK {
|
1594
|
-
margin-left: 0px;
|
1595
|
-
}
|
1596
|
-
|
1597
1595
|
._38JFK._NU04_ {
|
1598
1596
|
background-color: var(--primary-color);
|
1599
1597
|
color: var(--white);
|
@@ -1649,6 +1647,8 @@
|
|
1649
1647
|
width: 100%;
|
1650
1648
|
align-items: center;
|
1651
1649
|
justify-content: space-around;
|
1650
|
+
padding-left: 5px;
|
1651
|
+
padding-right: 5px;
|
1652
1652
|
padding-top: 5px;
|
1653
1653
|
padding-bottom: 5px;
|
1654
1654
|
border-radius: 15px 15px 15px 15px;
|
@@ -1674,7 +1674,7 @@
|
|
1674
1674
|
display: inline-flex;
|
1675
1675
|
height: 40px;
|
1676
1676
|
padding: 10px;
|
1677
|
-
margin: 5px
|
1677
|
+
margin: 5px;
|
1678
1678
|
color: var(--black);
|
1679
1679
|
cursor: pointer;
|
1680
1680
|
white-space: nowrap;
|
@@ -1709,7 +1709,7 @@
|
|
1709
1709
|
._2JnR3:not(:first-child) > div:first-child {
|
1710
1710
|
position: absolute;
|
1711
1711
|
top: 0;
|
1712
|
-
left: -
|
1712
|
+
left: -10px;
|
1713
1713
|
border-left: solid 20px #ffffff;
|
1714
1714
|
border-bottom: solid 20px var(--thirty-color);
|
1715
1715
|
border-top: solid 20px var(--thirty-color);
|
@@ -1799,7 +1799,8 @@
|
|
1799
1799
|
margin: auto;
|
1800
1800
|
font-size: 14px;
|
1801
1801
|
font-weight: bold;
|
1802
|
-
padding-right:
|
1802
|
+
padding-right: 10px;
|
1803
|
+
padding-left: 5px;
|
1803
1804
|
}
|
1804
1805
|
|
1805
1806
|
._CXnw- {
|
@@ -2708,11 +2709,12 @@
|
|
2708
2709
|
|
2709
2710
|
._3v-1E > span {
|
2710
2711
|
display: block;
|
2711
|
-
font-size:
|
2712
|
+
font-size: 14px;
|
2712
2713
|
}
|
2713
2714
|
|
2714
2715
|
._3v-1E > span:last-child {
|
2715
|
-
font-size:
|
2716
|
+
font-size: 16px;
|
2717
|
+
font-weight: bold;
|
2716
2718
|
}
|
2717
2719
|
|
2718
2720
|
._1VFRz {
|
package/dist/index.js
CHANGED
@@ -3276,6 +3276,9 @@ var AlertElement = /*#__PURE__*/function (_React$Component) {
|
|
3276
3276
|
return /*#__PURE__*/React__default.createElement("div", {
|
3277
3277
|
className: classNames$1(style$q.alert_element, this.props.backgroundColor)
|
3278
3278
|
}, /*#__PURE__*/React__default.createElement("span", {
|
3279
|
+
style: this.props.bold ? {
|
3280
|
+
fontWeight: 'bold'
|
3281
|
+
} : {},
|
3279
3282
|
className: this.props.textColor
|
3280
3283
|
}, this.props.children), /*#__PURE__*/React__default.createElement("span", {
|
3281
3284
|
className: classNames$1(style$q.alert_element_icon, this.props.textColor)
|
@@ -3402,10 +3405,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
|
|
3402
3405
|
return /*#__PURE__*/React__default.createElement("div", {
|
3403
3406
|
className: listingClass
|
3404
3407
|
}, /*#__PURE__*/React__default.createElement("div", {
|
3405
|
-
className: style$s.listing_vertical_left
|
3406
|
-
|
3408
|
+
className: style$s.listing_vertical_left,
|
3409
|
+
style: {
|
3410
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3411
|
+
color: this.props.color ? this.props.color : 'white'
|
3412
|
+
}
|
3413
|
+
}, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
3407
3414
|
icon: freeSolidSvgIcons.faCheck
|
3408
|
-
})
|
3415
|
+
})), /*#__PURE__*/React__default.createElement("div", {
|
3409
3416
|
className: style$s.listing_vertical_right
|
3410
3417
|
}, /*#__PURE__*/React__default.createElement("span", null, this.props.date), /*#__PURE__*/React__default.createElement("span", null, this.props.title), /*#__PURE__*/React__default.createElement("span", null, this.props.subtitle)));
|
3411
3418
|
};
|
@@ -3451,6 +3458,8 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
|
|
3451
3458
|
key: idx,
|
3452
3459
|
green: element.green,
|
3453
3460
|
orange: element.orange,
|
3461
|
+
color: element.color,
|
3462
|
+
backgroundColor: element.backgroundColor,
|
3454
3463
|
title: element.title,
|
3455
3464
|
subtitle: element.subtitle,
|
3456
3465
|
date: element.date,
|