acsi-core 0.1.99 → 0.2.0
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 +1 -2
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -8
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -413,10 +413,7 @@ var CoreInput$1 = function CoreInput(props) {
|
|
|
413
413
|
className: "" + styles$4["core-checkbox"]
|
|
414
414
|
}, React__default.createElement(reactstrap.FormGroup, {
|
|
415
415
|
check: true,
|
|
416
|
-
|
|
417
|
-
display: "flex",
|
|
418
|
-
alignItems: "center"
|
|
419
|
-
}
|
|
416
|
+
inline: true
|
|
420
417
|
}, React__default.createElement(reactstrap.Input, {
|
|
421
418
|
id: "core-checkbox-" + name,
|
|
422
419
|
type: "checkbox",
|
|
@@ -426,10 +423,11 @@ var CoreInput$1 = function CoreInput(props) {
|
|
|
426
423
|
return _onChange === null || _onChange === void 0 ? void 0 : _onChange(name, e.target.checked);
|
|
427
424
|
},
|
|
428
425
|
disabled: disabled
|
|
429
|
-
}), React__default.createElement(
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
426
|
+
}), React__default.createElement(reactstrap.Label, {
|
|
427
|
+
htmlFor: "core-checkbox-" + name,
|
|
428
|
+
check: true,
|
|
429
|
+
cssModule: {
|
|
430
|
+
marginTop: '0px'
|
|
433
431
|
}
|
|
434
432
|
}, label)));
|
|
435
433
|
};
|