Skip to content

Commit 5fa9a13

Browse files
authored
Merge pull request #209 from UW-Macrostrat/ui-components-fixes
More fixes for UI components types
2 parents 3378f53 + 027dab7 commit 5fa9a13

File tree

15 files changed

+29
-19
lines changed

15 files changed

+29
-19
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
"tsx": "^4.19.1",
5454
"typescript": "^5.8.3",
5555
"underscore": "^1.13.7",
56-
"use-async-effect": "^2.2.1",
5756
"vite-plugin-cjs-interop": "^2.4.0"
5857
},
5958
"devDependencies": {

packages/column-components/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format
44
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.2] - 2026-01-28
8+
9+
Add rollup interop to fix CommonJS dependency linking issues
10+
711
## [2.0.1] - 2026-01-28
812

913
- Improve linking of CommonJS dependencies

packages/column-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/column-components",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "React rendering primitives for stratigraphic columns",
55
"keywords": [
66
"geology",

packages/column-components/src/util/column-box.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import h from "@macrostrat/hyper";
22
import { useContext } from "react";
33
import { ColumnContext } from "../context";
44
import classNames from "classnames";
5-
import Box from "ui-box";
5+
import { default as Box } from "ui-box";
66
import { path } from "d3-path";
77
import type { Path } from "d3-path";
88

packages/column-views/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format
44
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.0.2] - 2026-01-28
8+
9+
Add rollup interop to fix CommonJS dependency linking issues
10+
711
## [3.0.1] - 2026-01-28
812

913
- Fix CommonJS dependency linking issues

packages/column-views/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/column-views",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Data views for Macrostrat stratigraphic columns",
55
"repository": {
66
"type": "git",

packages/form-components/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.0.2] - 2026-01-28
4+
5+
Add rollup interop to fix CommonJS dependency linking issues
6+
37
## [1.0.1] - 2026-01-28
48

59
- Fix CommonJS dependency linking issues

packages/form-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/form-components",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Form components for user input into Macrostrat apps",
55
"repository": {
66
"type": "git",

packages/map-interface/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format
44
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.1] - 2026-01-28
8+
9+
Add rollup interop to fix CommonJS dependency linking issues
10+
711
## [2.0.0] - 2026-01-26
812

913
- Update peer dependencies to React 18

packages/ui-components/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [5.0.2] - 2026-01-28
4+
5+
More fixes for CommonJS dependency linking
6+
37
## [5.0.1] - 2026-01-28
48

59
Fix CommonJS dependency linking issues (centered around `ui-box` dependency)
@@ -11,7 +15,6 @@ Fix CommonJS dependency linking issues (centered around `ui-box` dependency)
1115
- Require styles to be imported separately as
1216
`@macrostrat/ui-components/styles.css` or
1317
`@macrostrat/ui-components/dist/ui-components.css`
14-
-
1518

1619
## [4.6.0] - 2026-01-20
1720

0 commit comments

Comments
 (0)