@xh/hoist 69.0.0-SNAPSHOT.1727461290353 → 69.0.0-SNAPSHOT.1727896048900

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## 69.0.0-SNAPSHOT - unreleased
4
4
 
5
+ ## 68.1.0 - 2024-09-27
6
+
5
7
  ### 🎁 New Features
6
8
 
7
9
  * `Markdown` now supports a `reactMarkdownOptions` prop to allow passing React Markdown
@@ -49,8 +49,7 @@ export const category: ColumnSpec = {
49
49
 
50
50
  export const data: ColumnSpec = {
51
51
  field: {name: 'data', type: 'json'},
52
- flex: true,
53
- minWidth: 120,
52
+ width: 250,
54
53
  autosizeMaxWidth: 400
55
54
  };
56
55
 
@@ -11,7 +11,7 @@
11
11
  align-items: center;
12
12
  align-self: center;
13
13
  font-size: var(--xh-badge-font-size);
14
- font-weight: bold;
14
+ font-weight: var(--xh-badge-font-weight);
15
15
  border-radius: var(--xh-badge-border-radius);
16
16
  margin-left: 5px;
17
17
  padding: var(--xh-badge-padding);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "69.0.0-SNAPSHOT.1727461290353",
3
+ "version": "69.0.0-SNAPSHOT.1727896048900",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",
package/styles/vars.scss CHANGED
@@ -260,6 +260,7 @@ body {
260
260
  --xh-badge-bg: var(--badge-bg, var(--xh-blue-gray));
261
261
  --xh-badge-border-radius: var(--badge-border-radius, var(--xh-border-radius-px));
262
262
  --xh-badge-font-size: var(--badge-font-size, 0.75em);
263
+ --xh-badge-font-weight: var(--badge-font-weight, bold);
263
264
  --xh-badge-height: var(--badge-height, 1.6em);
264
265
  --xh-badge-min-width: var(--badge-min-width, 15px);
265
266
  --xh-badge-padding: var(--badge-padding, #{0 4px});