Skip to content

Commit

Permalink
Merge branch 'development-project-configurator' of github.com:EyeSeeT…
Browse files Browse the repository at this point in the history
…ea/dataset-configuration into feature/setup-screen
  • Loading branch information
eperedo committed Nov 26, 2024
2 parents 6cdf39c + c813bd4 commit c6724a3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 870 deletions.
Empty file modified .husky/post-merge
100755 → 100644
Empty file.
Empty file modified .husky/pre-push
100755 → 100644
Empty file.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"@dhis2/ui": "6.12.0",
"@eyeseetea/d2-api": "1.16.0-beta.9",
"@eyeseetea/d2-ui-components": "2.9.0-beta.3",
"@eyeseetea/feedback-component": "0.1.3-beta.1",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.60",
Expand Down
25 changes: 2 additions & 23 deletions src/app-config.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
import { FeedbackOptions } from "@eyeseetea/feedback-component";

export const appConfig: AppConfig = {
id: "d2-dataset-configuration",
appearance: {
showShareButton: true,
},
feedback: {
repositories: {
clickUp: {
// https://app.clickup.com/${workspace}/v/b/N-${listId}-M
// Web development -> Common resources -> app-skeleton
listId: "42597084",
title: "[User feedback] {title}",
body: "## dhis2\n\nUsername: {username}\n\n{body}",
},
},
layoutOptions: {
buttonPosition: "bottom-start",
},
},
appearance: { showShareButton: true },
};

export interface AppConfig {
id: string;
appearance: {
showShareButton: boolean;
};
feedback?: FeedbackOptions;
appearance: { showShareButton: boolean };
}
6 changes: 3 additions & 3 deletions src/webapp/pages/app/themes/dhis2.theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { createTheme } from "@material-ui/core/styles";
const colors = {
accentPrimary: "#fd5a00",
accentPrimaryDark: "#d14b00",
accentPrimaryLight: "#63A4FF",
accentPrimaryLightest: "#EAF4FF",
accentPrimaryLight: "#ff9b63",
accentPrimaryLightest: "#fff2ea",

accentSecondary: "#fb8c00",
accentSecondaryLight: "#f57c00",
Expand All @@ -21,7 +21,7 @@ const colors = {
white: "#FFFFFF", // Not included in palette!

negative: "#E53935",
warning: "#F19C02",
warning: "#f1c902",
positive: "#3D9305",
info: "#EAF4FF",
};
Expand Down
Loading

0 comments on commit c6724a3

Please sign in to comment.