Skip to content

Commit f346173

Browse files
authored
Merge pull request #502 from OHDSI/development
Release 0.5
2 parents 84d97c3 + 004a0c5 commit f346173

File tree

108 files changed

+1629
-346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+1629
-346
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ares",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Apex Research Exploration System (ARES)",
55
"author": "Frank DeFalco",
66
"private": true,

public/env/env.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"WEB_API_URL": "./",
33
"WEB_API_ENABLED": false,
4-
"DUCKDB_ENABLED": false
4+
"DUCKDB_ENABLED": false,
5+
"CDM_NETWORK_NAME": ""
56
}

src/app/plugins/tailwind/components/dataTable.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default {
4343
thead: ({ context }) => ({
4444
class: [
4545
{
46-
"bg-transparent top-0 z-[1]": context.scrollable,
46+
"bg-surface-0 dark:bg-surface-700 top-0 z-[1]": context.scrollable,
4747
},
4848
],
4949
}),
@@ -370,12 +370,12 @@ export default {
370370
},
371371
bodyrow: ({ context }) => ({
372372
class: [
373-
context.selected
374-
? "bg-primary-50 text-primary-700 dark:bg-primary-300"
375-
: "bg-surface-0 text-surface-600 dark:bg-surface-800",
373+
// context.selected
374+
// ? "bg-primary-50 text-primary-700 dark:bg-primary-300"
375+
// : "bg-surface-0 text-surface-600 dark:bg-surface-800",
376376
context.stripedRows
377377
? context.index % 2 === 0
378-
? "bg-surface-0 text-surface-600 dark:bg-surface-800"
378+
? "bg-surface-50 text-surface-600 dark:bg-surface-650"
379379
: "bg-primary-100/50 text-surface-600 dark:bg-surface-800"
380380
: "",
381381
"transition duration-200",

src/app/plugins/tailwind/components/dropdown.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ export default {
6060
//Font
6161
"font-sans",
6262
"leading-none",
63+
"flex",
64+
"items-center",
6365

6466
// Display
6567
"block",

src/app/plugins/tailwind/components/multiSelect.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ export default {
4747
class: [
4848
"leading-none",
4949
"block ",
50+
"flex",
51+
"items-center",
5052

5153
// Spacing
5254
{

src/app/plugins/tailwind/components/treeSelect.ts

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default {
5050
"transition duration-200",
5151

5252
// Misc
53-
"overflow-hidden whitespace-nowrap cursor-pointer overflow-ellipsis",
53+
"overflow-hidden whitespace-nowrap cursor-pointer text-ellipsis",
5454
],
5555
},
5656
trigger: {
@@ -100,7 +100,8 @@ export default {
100100
root: {
101101
class: [
102102
// Space
103-
"p-5",
103+
"p-2",
104+
// "absolute",
104105
],
105106
},
106107
wrapper: {
@@ -117,7 +118,7 @@ export default {
117118
},
118119
node: {
119120
class: [
120-
"p-1",
121+
// "p-1",
121122
"rounded-md",
122123
"focus:outline-none focus:outline-offset-0 focus:ring focus:ring-inset focus:ring-primary-400/50 dark:focus:ring-primary-300/50",
123124
],
@@ -131,7 +132,7 @@ export default {
131132
"rounded-md",
132133

133134
// Spacing
134-
"p-2",
135+
// "p-2",
135136

136137
// Colors
137138
"text-surface-600 dark:text-white/70",
@@ -167,7 +168,7 @@ export default {
167168
"border-0 rounded-full",
168169

169170
// Size
170-
"w-8 h-8",
171+
"h-8",
171172

172173
// Spacing
173174
"mr-2",
@@ -212,12 +213,11 @@ export default {
212213
"border-2",
213214

214215
// Colors
215-
"text-surface-600",
216+
"text-surface-100",
216217
{
217218
"border-surface-200 bg-surface-0 dark:border-surface-700 dark:bg-surface-900":
218219
!context.checked,
219-
"border-primary-500 bg-primary-500 dark:border-primary-400 dark:bg-primary-400":
220-
context.checked,
220+
"border-primary-500 dark:border-primary-400": context.checked,
221221
},
222222

223223
// States
@@ -231,8 +231,6 @@ export default {
231231
},
232232

233233
// Transitions
234-
"transition-colors",
235-
"duration-200",
236234

237235
// Misc
238236
"cursor-pointer",

src/pages/info/WebApiInfo.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
<Panel header="Sources" v-if="store.getters.getApiData.apiSources">
2525
<DataTable
26+
:striped-rows="store.getters.getSettings.strippedRows"
2627
size="small"
2728
paginator
2829
currentPageReportTemplate="{first} to {last} of {totalRecords}"

0 commit comments

Comments
 (0)