Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,715 changes: 1,893 additions & 822 deletions web/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"node": ">=18"
},
"devDependencies": {
"@agama-project/eslint-plugin-agama-i18n": "^1.0.0",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.3",
Expand Down Expand Up @@ -59,7 +60,6 @@
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"@agama-project/eslint-plugin-agama-i18n": "^1.0.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-n": "^17.10.2",
Expand All @@ -78,7 +78,7 @@
"jest-transform-stub": "^2.0.0",
"jsdoc": "^4.0.2",
"mini-css-extract-plugin": "^2.7.6",
"neostandard": "^0.11.5",
"neostandard": "^0.12.0",
"prettier": "^3.3.2",
"qunit": "^2.20.0",
"react-refresh": "^0.14.0",
Expand All @@ -88,26 +88,26 @@
"string-replace-loader": "^3.0.0",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.2.2",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typedoc": "^0.26.7",
"typedoc": "^0.27.4",
"typedoc-plugin-external-module-map": "^2.1.0",
"typedoc-plugin-merge-modules": "^6.0.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.3.3",
"typescript": "^5.7.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@date-fns/tz": "^1.1.2",
"@icons-pack/react-simple-icons": "^10.0.0",
"@material-symbols/svg-400": "^0.23.0",
"@material-symbols/svg-400": "^0.27.2",
"@patternfly/patternfly": "^5.1.0",
"@patternfly/react-core": "^5.1.1",
"@patternfly/react-table": "^5.1.1",
Expand Down
4 changes: 2 additions & 2 deletions web/src/api/storage/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
/**
* Represents a single change action done to storage
*/
import * as config from "./types/config";

export type Action = {
delete: boolean;
device: DeviceSid;
Expand Down Expand Up @@ -437,6 +439,4 @@ export type UsableDevicesResponse = Array<DeviceSid>;

export type PingResponse2 = PingResponse;

import * as config from "./types/config";

export { config };
5 changes: 3 additions & 2 deletions web/src/components/storage/ProposalSettingsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
import React from "react";
import { Grid, GridItem } from "@patternfly/react-core";
import EncryptionField, { EncryptionConfig } from "~/components/storage/EncryptionField";
import InstallationDeviceField from "~/components/storage/InstallationDeviceField";
import InstallationDeviceField, {
TargetConfig,
} from "~/components/storage/InstallationDeviceField";
import PartitionsField from "~/components/storage/PartitionsField";
import { TargetConfig } from "~/components/storage/InstallationDeviceField";
import { CHANGING, NOT_AFFECTED } from "~/components/storage/ProposalPage";
import { ProposalSettings, StorageDevice, Volume } from "~/types/storage";
import { compact } from "~/utils";
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/storage/VolumeDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { _ } from "~/i18n";
import { sprintf } from "sprintf-js";
import { compact, useDebounce } from "~/utils";
import {
SizeMethod,
DEFAULT_SIZE_UNIT,
SIZE_METHODS,
mountFilesystem,
Expand All @@ -37,7 +38,6 @@ import {
volumeLabel,
} from "~/components/storage/utils";
import { Volume } from "~/types/storage";
import { SizeMethod } from "~/components/storage/utils";

type VolumeFormState = {
volume: Volume;
Expand Down
3 changes: 1 addition & 2 deletions web/src/components/storage/dasd/DASDTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ import {
ToolbarGroup,
ToolbarItem,
} from "@patternfly/react-core";
import { Popup } from "~/components/core";
import { Page, Popup } from "~/components/core";
import { Table, Thead, Tr, Th, Tbody, Td } from "@patternfly/react-table";
import { Page } from "~/components/core";
import { Icon } from "~/components/layout";
import { _ } from "~/i18n";
import { hex } from "~/utils";
Expand Down
1 change: 1 addition & 0 deletions web/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ module.exports = {
sassOptions: {
includePaths: ["node_modules"],
outputStyle: production ? "compressed" : undefined,
silenceDeprecations: ["import", "global-builtin"],
},
},
},
Expand Down