@kimafinance/kima-transaction-widget 1.2.10-beta.1 → 1.2.12-beta.1
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 +4 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -949,14 +949,14 @@
|
|
|
949
949
|
display: flex;
|
|
950
950
|
align-items: center;
|
|
951
951
|
}
|
|
952
|
-
.kima-card .kima-card-content .kima-custom-checkbox .content {
|
|
952
|
+
.kima-card .kima-card-content .kima-custom-checkbox .custom-checkbox-content {
|
|
953
953
|
display: flex;
|
|
954
954
|
align-items: center;
|
|
955
955
|
-moz-column-gap: 0.5em;
|
|
956
956
|
column-gap: 0.5em;
|
|
957
957
|
cursor: pointer;
|
|
958
958
|
}
|
|
959
|
-
.kima-card .kima-card-content .kima-custom-checkbox .content .icon-wrapper {
|
|
959
|
+
.kima-card .kima-card-content .kima-custom-checkbox .custom-checkbox-content .custom-checkbox-icon-wrapper {
|
|
960
960
|
border: 1px solid #ffffff;
|
|
961
961
|
height: 1em;
|
|
962
962
|
width: 1em;
|
|
@@ -965,10 +965,10 @@
|
|
|
965
965
|
justify-content: center;
|
|
966
966
|
align-items: center;
|
|
967
967
|
}
|
|
968
|
-
.kima-card .kima-card-content .kima-custom-checkbox .content .icon-wrapper.light {
|
|
968
|
+
.kima-card .kima-card-content .kima-custom-checkbox .custom-checkbox-content .custom-checkbox-icon-wrapper.light {
|
|
969
969
|
border-color: #4f5156;
|
|
970
970
|
}
|
|
971
|
-
.kima-card .kima-card-content .kima-custom-checkbox .content .icon-wrapper svg {
|
|
971
|
+
.kima-card .kima-card-content .kima-custom-checkbox .custom-checkbox-content .custom-checkbox-icon-wrapper svg {
|
|
972
972
|
margin-top: 0.2em;
|
|
973
973
|
margin-left: 1px;
|
|
974
974
|
}
|
package/dist/index.js
CHANGED
|
@@ -2949,12 +2949,12 @@ var CustomCheckbox = function CustomCheckbox(_ref) {
|
|
|
2949
2949
|
return React__default.createElement("div", {
|
|
2950
2950
|
className: 'kima-custom-checkbox'
|
|
2951
2951
|
}, React__default.createElement("div", {
|
|
2952
|
-
className: 'content',
|
|
2952
|
+
className: 'custom-checkbox-content',
|
|
2953
2953
|
onClick: function onClick() {
|
|
2954
2954
|
return setCheck(!checked);
|
|
2955
2955
|
}
|
|
2956
2956
|
}, React__default.createElement("div", {
|
|
2957
|
-
className: "icon-wrapper " + theme.colorMode
|
|
2957
|
+
className: "custom-checkbox-icon-wrapper " + theme.colorMode
|
|
2958
2958
|
}, checked && React__default.createElement(Check, null)), React__default.createElement("span", null, text)));
|
|
2959
2959
|
};
|
|
2960
2960
|
|