ui-kit-ck-consultant 0.5.179 → 0.5.182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/style.css +18 -0
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/css/style.css
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
/* start color */
|
2
2
|
|
3
|
+
.primary {
|
4
|
+
color: var(--primary-color) !important;
|
5
|
+
}
|
6
|
+
.secondary {
|
7
|
+
color: var(--secondary-color) !important;
|
8
|
+
}
|
9
|
+
.thirty {
|
10
|
+
color: var(--thirty-color) !important;
|
11
|
+
}
|
3
12
|
.green {
|
4
13
|
color: var(--green) !important;
|
5
14
|
}
|
@@ -88,6 +97,15 @@
|
|
88
97
|
color: var(--black) !important;
|
89
98
|
}
|
90
99
|
|
100
|
+
.bg-primary {
|
101
|
+
background-color: var(--primary-color) !important;
|
102
|
+
}
|
103
|
+
.bg-secondary {
|
104
|
+
background-color: var(--secondary-color) !important;
|
105
|
+
}
|
106
|
+
.bg-thirty {
|
107
|
+
background-color: var(--thirty-color) !important;
|
108
|
+
}
|
91
109
|
.bg-green {
|
92
110
|
background-color: var(--green) !important;
|
93
111
|
}
|
package/dist/index.js
CHANGED
@@ -916,7 +916,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
916
916
|
}, /*#__PURE__*/React__default.createElement("span", null), /*#__PURE__*/React__default.createElement("span", null), /*#__PURE__*/React__default.createElement("span", null), /*#__PURE__*/React__default.createElement("span", null)), this.props.loaderText ? /*#__PURE__*/React__default.createElement("p", null, this.props.loaderText) : null)) : null, /*#__PURE__*/React__default.createElement("div", {
|
917
917
|
style: {
|
918
918
|
position: 'relative',
|
919
|
-
width: '100%'
|
919
|
+
width: '100%',
|
920
|
+
display: 'flex',
|
921
|
+
flexDirection: 'column'
|
920
922
|
}
|
921
923
|
}, /*#__PURE__*/React__default.createElement("div", {
|
922
924
|
className: style$b.card_top_border,
|
@@ -3479,9 +3481,10 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
|
|
3479
3481
|
className: listingClass
|
3480
3482
|
}, /*#__PURE__*/React__default.createElement("div", {
|
3481
3483
|
className: style$s.listing_horizontal_icon,
|
3482
|
-
style:
|
3483
|
-
backgroundColor: this.props.
|
3484
|
-
|
3484
|
+
style: {
|
3485
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3486
|
+
color: this.props.color ? this.props.color : 'white'
|
3487
|
+
}
|
3485
3488
|
}, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
3486
3489
|
icon: freeSolidSvgIcons.faCheck
|
3487
3490
|
})), /*#__PURE__*/React__default.createElement("div", {
|
@@ -3534,6 +3537,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
|
|
3534
3537
|
green: element.green,
|
3535
3538
|
orange: element.orange,
|
3536
3539
|
color: element.color,
|
3540
|
+
backgroundColor: element.backgroundColor,
|
3537
3541
|
title: element.title,
|
3538
3542
|
subtitle: element.subtitle,
|
3539
3543
|
date: element.date,
|