acsi-core 0.1.98 → 0.1.99

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.js CHANGED
@@ -413,7 +413,10 @@ 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
- inline: true
416
+ cssModule: {
417
+ display: "flex",
418
+ alignItems: "center"
419
+ }
417
420
  }, React__default.createElement(reactstrap.Input, {
418
421
  id: "core-checkbox-" + name,
419
422
  type: "checkbox",
@@ -423,9 +426,11 @@ var CoreInput$1 = function CoreInput(props) {
423
426
  return _onChange === null || _onChange === void 0 ? void 0 : _onChange(name, e.target.checked);
424
427
  },
425
428
  disabled: disabled
426
- }), React__default.createElement(reactstrap.Label, {
427
- htmlFor: "core-checkbox-" + name,
428
- check: true
429
+ }), React__default.createElement("p", {
430
+ style: {
431
+ marginTop: "2px",
432
+ marginBottom: 0
433
+ }
429
434
  }, label)));
430
435
  };
431
436