Skip to content

Commit 633ced9

Browse files
sass -> css
1 parent cfa96e5 commit 633ced9

27 files changed

Lines changed: 565 additions & 841 deletions

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"mcp__plugin_playwright_playwright__browser_drag",
66
"Bash(bun run build:*)",
77
"Bash(pip uninstall:*)",
8-
"Bash(bunx playwright test:*)"
8+
"Bash(bunx playwright test:*)",
9+
"Bash(./build.sh:*)"
910
]
1011
}
1112
}

bun.lock

Lines changed: 160 additions & 228 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@babel/preset-env": "^7.12.11",
1414
"@babel/preset-typescript": "^7.12.7",
1515
"@playwright/test": "^1.58.1",
16-
"@types/bootstrap": "^4.6.0",
16+
"@types/bootstrap": "^5.2.10",
1717
"@types/d3": "^7.4.0",
1818
"@types/d3-array": "^3.0.3",
1919
"@types/d3-axis": "^3.0.1",
@@ -41,16 +41,16 @@
4141
"@types/react-dom": "^16.9.10",
4242
"@types/source-map": "^0.5.7",
4343
"@types/underscore": "^1.10.24",
44-
"bootstrap": "^4.6.0",
44+
"bootstrap": "^5.3.3",
4545
"color": "^4.0.0",
4646
"css-loader": "^6.11.0",
4747
"d3": "^7.6.1",
48-
"datatables.net-bs4": "^1.12.1",
49-
"datatables.net-buttons": "^1.7.1",
50-
"datatables.net-buttons-bs4": "^1.7.1",
51-
"datatables.net-colreorder-bs4": "^1.5.6",
52-
"datatables.net-fixedheader-bs4": "^3.2.4",
53-
"datatables.net-responsive-bs4": "^2.3.0",
48+
"datatables.net-bs5": "^2.2.2",
49+
"datatables.net-buttons": "^3.2.2",
50+
"datatables.net-buttons-bs5": "^3.2.2",
51+
"datatables.net-colreorder-bs5": "^2.0.4",
52+
"datatables.net-fixedheader-bs5": "^4.0.1",
53+
"datatables.net-responsive-bs5": "^3.0.4",
5454
"es-check": "^5.2.4",
5555
"file-loader": "^5.1.0",
5656
"hoist-non-react-statics": "^3.3.2",
@@ -59,37 +59,35 @@
5959
"json5": "^2.1.3",
6060
"license-webpack-plugin": "^2.3.11",
6161
"npm-run-all": "^4.1.5",
62-
"postcss-loader": "^5.3.0",
62+
"postcss-loader": "^8.1.1",
6363
"postcss-rem-to-pixel": "^4.1.2",
6464
"randomcolor": "^0.5.4",
6565
"react": "^17.0.2",
6666
"react-dom": "^17.0.2",
6767
"react-dropzone": "^11.2.4",
68-
"sass": "^1.97.3",
69-
"sass-loader": "^12.0.0",
7068
"seedrandom": "^3.0.5",
71-
"source-map-loader": "^0.2.4",
72-
"style-loader": "^2.0.0",
69+
"source-map-loader": "^5.0.0",
70+
"style-loader": "^4.0.0",
7371
"ts-loader": "^9.5.4",
74-
"typed-scss-modules": "^1.4.0",
75-
"typescript": "^3.9.7",
72+
"typed-css-modules": "^0.9.1",
73+
"typescript": "^5.7.3",
7674
"underscore": "^1.12.0",
7775
"url-loader": "^3.0.0",
7876
"webpack": "^5.104.1",
7977
"webpack-bundle-analyzer": "^4.10.2",
80-
"webpack-cli": "^3.3.12",
78+
"webpack-cli": "^6.0.1",
8179
"worker-loader": "^2.0.0"
8280
},
8381
"scripts": {
8482
"postinstall": "node -e \"require('fs').writeFileSync('node_modules/internmap/src/index.js', '// Hotfix: https://github.com/mbostock/internmap/issues/3\\nexport const InternMap = Map;\\nexport const InternSet = Set;\\n')\"",
85-
"build": "npm-run-all tsm webpack",
86-
"build-dev": "npm-run-all tsm webpack-dev",
87-
"build-dev-watch": "npm-run-all tsm webpack-dev-watch",
88-
"prepublish": "npm-run-all tsm prepublish-ts",
89-
"tsm": "tsm src -i node_modules/",
90-
"webpack": "webpack --display-error-details --progress",
91-
"webpack-dev": "webpack --display-error-details --progress -d --env.debug",
92-
"webpack-dev-watch": "webpack --display-error-details --progress -d --env.debug -w",
83+
"build": "npm-run-all tcm webpack",
84+
"build-dev": "npm-run-all tcm webpack-dev",
85+
"build-dev-watch": "npm-run-all tcm webpack-dev-watch",
86+
"prepublish": "npm-run-all tcm prepublish-ts",
87+
"tcm": "tcm src",
88+
"webpack": "webpack --progress",
89+
"webpack-dev": "webpack --progress --mode development --env debug",
90+
"webpack-dev-watch": "webpack --progress --mode development --env debug --watch",
9391
"prepublish-ts": "tsc"
9492
},
9593
"repository": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hiplot-mm"
7-
version = "0.0.3rc2"
7+
version = "0.0.3rc3"
88
description = "High dimensional Interactive Plotting tool"
99
readme = "README.md"
1010
license = "MIT"

src/component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import LogoSVG from "../hiplot/static/logo.svg";
2828
//@ts-ignore
2929
import LogoSVGW from "../hiplot/static/logo-w.svg";
3030
//@ts-ignore
31-
import style from "./hiplot.scss";
31+
import style from "./hiplot.css";
3232
import { ContextMenu } from "./contextmenu";
3333
import { HiPlotDistributionPlugin } from "./distribution/plugin";
3434
import { Filter, FilterType, apply_filters, apply_filter } from "./filters";

src/controls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import * as _ from 'underscore';
1111
import React from "react";
1212

1313
import { IDatasets } from "./types";
14-
import style from "./hiplot.scss";
14+
import style from "./hiplot.css";
1515

1616
export interface HiPlotDataControlProps extends IDatasets {
1717
restoreAllRows: () => void;

src/dataproviders/upload.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import {DataProviderProps} from "../plugin";
99
import React from "react";
1010
import Dropzone, {FileRejection, DropEvent} from 'react-dropzone';
11-
import style from "./upload.scss";
11+
import style from "./upload.css";
1212
import * as d3 from "d3";
1313
import { HiPlotExperiment, Experiment } from "../types";
1414

src/dataproviders/webserver.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {LoadURIPromise} from "../component";
1010
import {DataProviderProps} from "../plugin";
1111
import {HiPlotLoadStatus} from "../types";
1212
import React from "react";
13-
import style from "../hiplot.scss";
13+
import style from "../hiplot.css";
1414

1515

1616
export const PSTATE_LOAD_URI = 'load_uri';

src/distribution/plot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import React from "react";
99
import * as d3 from "d3";
10-
import style from "../hiplot.scss";
10+
import style from "../hiplot.css";
1111
import { create_d3_scale_without_outliers, ParamDef } from "../infertypes";
1212
import { foCreateAxisLabel, foDynamicSizeFitContent } from "../lib/svghelpers";
1313
import { ParamType, Datapoint } from "../types";

0 commit comments

Comments
 (0)