@freik/pedroviz 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freik/pedroviz",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "repository": "https://github.com/kevinfrei/pedroviz.git",
5
5
  "author": "Kevin Frei <kevinfrei@hotmail.com>",
6
6
  "license": "AGPL-3.0-or-later",
@@ -17,7 +17,8 @@
17
17
  "clean": "rm -rf dist",
18
18
  "check": "bun run types && bun test",
19
19
  "dev": "bun --hot src/main.tsx",
20
- "bundle": "bun run clean && bun build ./src/main.tsx --outdir=dist --sourcemap --target=bun --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
20
+ "devbundle": "bun run clean && bun build --metafile-md=bundle-info.md ./src/main.tsx --outdir=dist --sourcemap --target=bun --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
21
+ "bundle": "bun run clean && bun build --metafile-md=bundle-info.md ./src/main.tsx --outdir=dist --production --target=bun --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
21
22
  "start": "NODE_ENV=production bun src/main.tsx",
22
23
  "launch": "bun run bundle && bun dist/main.js",
23
24
  "prepublishOnly": "bun run bundle",
@@ -25,15 +26,16 @@
25
26
  },
26
27
  "prepare": "simple-git-hooks",
27
28
  "dependencies": {
28
- "@fluentui/react-components": "^9.74.6",
29
- "@fluentui/react-icons": "^2.0.337",
29
+ "@ctrl/tinycolor": "^4.2.0",
30
+ "@fluentui/react-components": "^9.74.7",
31
+ "@fluentui/react-icons": "^2.0.339",
30
32
  "@fluentui/tokens": "^1.0.0-alpha.24",
31
33
  "@freik/containers": "^0.4.10",
32
34
  "@freik/fluent9-tools": "^0.2.0",
33
35
  "@freik/react-tools": "^0.4.0",
34
36
  "@freik/typechk": "^0.10.0",
35
37
  "java-parser": "^3.0.1",
36
- "jotai": "^2.20.2",
38
+ "jotai": "^2.20.3",
37
39
  "jotai-family": "^1.1.0",
38
40
  "jotai-optics": "^0.4.0",
39
41
  "optics-ts": "^2.4.1",
@@ -42,18 +44,18 @@
42
44
  "react-resizable-panels": "^4.12.3"
43
45
  },
44
46
  "devDependencies": {
45
- "@happy-dom/global-registrator": "^20.11.6",
47
+ "@happy-dom/global-registrator": "^20.11.13",
46
48
  "@ianvs/prettier-plugin-sort-imports": "^4.7.1",
47
49
  "@testing-library/jest-dom": "^7.0.1",
48
- "@testing-library/react": "^16.3.2",
49
- "@types/bun": "1.3.14",
50
+ "@testing-library/react": "^16.3.3",
51
+ "@types/bun": "1.4.0",
50
52
  "@types/react": "^19.2.18",
51
- "@types/react-dom": "^19.2.4",
52
- "knip": "^6.32.2",
53
- "lint-staged": "^17.3.0",
53
+ "@types/react-dom": "^19.2.5",
54
+ "knip": "^6.33.0",
55
+ "lint-staged": "^17.4.1",
54
56
  "prettier": "^3.9.6",
55
57
  "prettier-plugin-java": "^2.10.3",
56
- "simple-git-hooks": "^2.13.1",
58
+ "simple-git-hooks": "^2.14.0",
57
59
  "typescript": "^7.0.2"
58
60
  },
59
61
  " //-1": "Configuration stuff for Prettier:",
Binary file
Binary file
@@ -1,121 +0,0 @@
1
- /* src/client/index.css */
2
- :root {
3
- --buncss-light: initial;
4
- --buncss-dark: ;
5
- color-scheme: light dark;
6
- font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Avenir, Helvetica, Arial, sans-serif;
7
- }
8
-
9
- @media (prefers-color-scheme: dark) {
10
- :root {
11
- --buncss-light: ;
12
- --buncss-dark: initial;
13
- }
14
- }
15
-
16
- html, body {
17
- overflow: hidden;
18
- height: 100%;
19
- margin: 0;
20
- }
21
-
22
- .app {
23
- display: grid;
24
- grid-template-columns: 1fr auto;
25
- grid-template-rows: auto 1fr;
26
- height: 100vh;
27
- }
28
-
29
- .header-left {
30
- grid-row: 1;
31
- grid-column: 1;
32
- justify-content: flex-start;
33
- justify-self: start;
34
- }
35
-
36
- .header-right {
37
- grid-row: 1;
38
- grid-column: 2;
39
- justify-content: flex-end;
40
- justify-self: end;
41
- }
42
-
43
- .main {
44
- grid-row: 2;
45
- grid-column: 1 / 3;
46
- }
47
-
48
- .sidebar {
49
- overflow-y: auto;
50
- }
51
-
52
- .display {
53
- display: flex;
54
- overflow: hidden;
55
- flex-direction: column;
56
- width: 100%;
57
- height: 100%;
58
- }
59
-
60
- #view-separator {
61
- opacity: .5;
62
- background: linear-gradient(to right, #fff 0%, #000 45% 55%, #fff 100%);
63
- width: 3px;
64
- transition: opacity .2s;
65
- }
66
-
67
- #view-separator:hover {
68
- opacity: .9;
69
- }
70
-
71
- .pathLabel {
72
- margin-left: 10px;
73
- margin-right: 5px;
74
- }
75
-
76
- .col3div {
77
- display: grid;
78
- grid-template-columns: auto 1fr 4fr 1fr 4fr;
79
- }
80
-
81
- .col1 {
82
- grid-column: 1;
83
- }
84
-
85
- .col2 {
86
- grid-column: 3;
87
- }
88
-
89
- .col3 {
90
- grid-column: 5;
91
- }
92
-
93
- .vcentered {
94
- display: flex;
95
- justify-content: center;
96
- align-items: center;
97
- }
98
-
99
- .settings {
100
- display: grid;
101
- grid-template-columns: 1.5fr 1fr .4fr 1.5fr 1fr;
102
- align-items: center;
103
- gap: 5px 1px;
104
- margin: 10px;
105
- }
106
-
107
- .left-label {
108
- grid-column: 1;
109
- }
110
-
111
- .left-field {
112
- grid-column: 2;
113
- }
114
-
115
- .right-label {
116
- grid-column: 4;
117
- }
118
-
119
- .right-field {
120
- grid-column: 5;
121
- }