@mackin.com/styleguide 8.9.2 → 8.9.3

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +3 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -944,6 +944,7 @@ declare const Td: (props: {
944
944
  align?: Alignment;
945
945
  style?: React.CSSProperties;
946
946
  colSpan?: number;
947
+ className?: string;
947
948
  }) => JSX.Element;
948
949
 
949
950
  declare const TdCurrency: (props: {
package/index.js CHANGED
@@ -3215,6 +3215,8 @@ const OmniLink = (props) => {
3215
3215
  };
3216
3216
 
3217
3217
  const roundPxPadding = '4px';
3218
+ //TB: needs to be 2rem padding for right caret
3219
+ //TB: the generated border is bad (border: 1pxsolidrgba(0, 0, 0, 0.125);)
3218
3220
  const Picker = (props) => {
3219
3221
  const selectProps = __rest(props
3220
3222
  // if we put numbers in, we expect them out
@@ -4134,7 +4136,7 @@ const Td = (props) => {
4134
4136
  vertical-align: middle;
4135
4137
  text-align: ${(_a = props.align) !== null && _a !== void 0 ? _a : 'center'};
4136
4138
  `;
4137
- return (React__namespace.createElement("td", { colSpan: props.colSpan, style: props.style, className: css.cx('table__td', tdStyles) }, props.children));
4139
+ return (React__namespace.createElement("td", { colSpan: props.colSpan, style: props.style, className: css.cx('table__td', tdStyles, props.className) }, props.children));
4138
4140
  };
4139
4141
 
4140
4142
  const TdCurrency = (props) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mackin.com/styleguide",
3
- "version": "8.9.2",
3
+ "version": "8.9.3",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",