Skip to content

Commit e0c4128

Browse files
committed
update UI version fix warnings
1 parent 2b4ad2c commit e0c4128

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

backend/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
2-
name = "PromptSail"
3-
version = "0.1.0"
4-
description = "Prompt Sail - prompt management and monitoring tool"
2+
name = "PromptSail-backend"
3+
version = "0.5.4"
4+
description = "Prompt Sail - LLM governance, monitoring and analysis system"
55
authors = ["Przemysław Górecki <przemyslaw.gorecki@gmail.com>, Krzysztof Sopyła <krzysztof.sopyla@gmail.com>"]
66

77
[tool.poetry.dependencies]

ui/package-lock.json

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

ui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "prompt-sail-web",
2+
"name": "promptsail-ui",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.5.4",
55
"type": "module",
66
"scripts": {
77
"start": "vite",
@@ -32,7 +32,7 @@
3232
"react-svg": "^16.1.32",
3333
"react-syntax-highlighter": "^15.5.0",
3434
"recharts": "^2.13.0-alpha.4",
35-
"sass": "^1.69.5",
35+
"sass": "^1.80.3",
3636
"slugify": "^1.6.6",
3737
"trendline": "^1.0.0",
3838
"yup": "^1.3.2"

ui/src/index.sass

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
@use 'sass:map'
2+
@use './func'
3+
@use './components/Sign/styles'
4+
15
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap')
26
@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap')
37

@@ -6,20 +10,17 @@ body
610
overflow: hidden
711
font-family: 'Roboto Flex'
812

9-
@import './func.sass'
10-
1113
@tailwind base
1214
@tailwind components
1315
@tailwind utilities
1416

15-
@import './components/Sign/styles'
16-
1717
$headers:("fontSize1": 38, "fontSize2": 30, "fontSize3": 24, "fontSize4": 20, "fontSize5": 16, "lineHeight1": 1.21053, "lineHeight2": 1.26667, "lineHeight3": 1.33333, "lineHeight4": 1.40, "lineHeight5": 1.5)
1818

1919
@for $i from 1 through 5
20-
.h#{$i}
21-
font-size: #{map-get($headers, "fontSize#{$i}")} + px !important
22-
line-height: #{map-get($headers, "lineHeight#{$i}")} !important
20+
h#{$i}
21+
font-size: map.get($headers, "fontSize#{$i}") + px !important
22+
line-height: map.get($headers, "lineHeight#{$i}") !important
23+
font-weight: map.get($headers, "fontWeight#{$i}") !important
2324

2425
.ant-table-body
2526
overflow-y: hidden !important
@@ -75,4 +76,4 @@ div
7576
.ant-table-tbody td
7677
padding-left: 8px !important
7778
padding-right: 8px !important
78-
79+

0 commit comments

Comments
 (0)