@kaspernj/api-maker 1.0.234 → 1.0.236

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/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  ]
17
17
  },
18
18
  "name": "@kaspernj/api-maker",
19
- "version": "1.0.234",
19
+ "version": "1.0.236",
20
20
  "type": "module",
21
21
  "description": "",
22
22
  "main": "index.js",
@@ -57,11 +57,11 @@ export default class ApiMakerBootstrapCard extends React.PureComponent {
57
57
  <div className={classNames("component-bootstrap-card", "card", "card-default", className)} data-has-footer={Boolean(footer)} ref="card" {...restProps}>
58
58
  {(controls || expandable || header) &&
59
59
  <div className="card-header" style={cardHeaderStyle}>
60
- <div style={{alignSelf: "center", marginRight: "auto"}}>
60
+ <div className="card-header-label" style={{alignSelf: "center", marginRight: "auto"}}>
61
61
  {header}
62
62
  </div>
63
63
  {(controls || expandable) &&
64
- <div style={{alignSelf: "center"}}>
64
+ <div className="card-header-actions" style={{alignSelf: "center"}}>
65
65
  {controls}
66
66
  {expandable && expanded &&
67
67
  <a className="collapse-card-button text-muted" href="#" onClick={digg(this, "onCollapseClicked")}>
@@ -308,7 +308,7 @@ class ApiMakerTable extends React.PureComponent {
308
308
  this.filterForm()
309
309
  }
310
310
  {card &&
311
- <Card className={classNames("mb-4", className)} controls={this.tableControls()} header={headerContent} footer={this.tableFooter()} table={!this.isSmallScreen()} {...restProps}>
311
+ <Card className={classNames("live-table--table-card", "mb-4", className)} controls={this.tableControls()} header={headerContent} footer={this.tableFooter()} table={!this.isSmallScreen()} {...restProps}>
312
312
  {this.tableContent()}
313
313
  </Card>
314
314
  }