sqlite-hub 0.9.0 → 0.9.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/changelog.md +12 -0
- package/frontend/index.html +21 -20
- package/frontend/js/app.js +386 -8
- package/frontend/js/components/modal.js +13 -4
- package/frontend/js/components/queryHistoryDetail.js +14 -2
- package/frontend/js/components/queryHistoryPanel.js +13 -9
- package/frontend/js/components/rowEditorPanel.js +48 -25
- package/frontend/js/lib/queryChartOptions.js +5 -1
- package/frontend/js/lib/queryCharts.js +50 -2
- package/frontend/js/store.js +177 -21
- package/frontend/js/views/charts.js +103 -30
- package/frontend/js/views/data.js +31 -1
- package/frontend/js/views/editor.js +1 -0
- package/frontend/js/views/mediaTagging.js +146 -76
- package/frontend/styles/base.css +57 -13
- package/frontend/styles/components.css +172 -96
- package/frontend/styles/layout.css +1 -1
- package/frontend/styles/structure-graph.css +11 -11
- package/frontend/styles/tokens.css +47 -4
- package/frontend/styles/utilities.css +21 -0
- package/frontend/styles/views.css +218 -96
- package/package.json +1 -1
- package/server/services/storage/appStateStore.js +9 -6
- package/server/services/storage/queryHistoryChartUtils.js +19 -2
- package/server/services/storage/queryHistoryUtils.js +165 -2
- package/shortkeys.md +5 -0
package/changelog.md
CHANGED
package/frontend/index.html
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
extend: {
|
|
23
23
|
colors: {
|
|
24
24
|
"on-secondary-fixed": "#1c1b1b",
|
|
25
|
-
background: "
|
|
25
|
+
background: "rgb(var(--rgb-background) / <alpha-value>)",
|
|
26
26
|
"inverse-primary": "#6a5f00",
|
|
27
27
|
"primary-fixed": "#fde403",
|
|
28
28
|
tertiary: "#fbfffe",
|
|
@@ -34,39 +34,39 @@
|
|
|
34
34
|
"on-tertiary-fixed-variant": "#004f51",
|
|
35
35
|
"secondary-fixed-dim": "#c8c6c5",
|
|
36
36
|
"tertiary-fixed-dim": "#00dce1",
|
|
37
|
-
"on-background": "
|
|
37
|
+
"on-background": "rgb(var(--rgb-on-surface) / <alpha-value>)",
|
|
38
38
|
"surface-tint": "#dec800",
|
|
39
39
|
"primary-fixed-dim": "#dec800",
|
|
40
|
-
"on-surface": "
|
|
41
|
-
"surface-container-low": "
|
|
40
|
+
"on-surface": "rgb(var(--rgb-on-surface) / <alpha-value>)",
|
|
41
|
+
"surface-container-low": "rgb(var(--rgb-surface-low) / <alpha-value>)",
|
|
42
42
|
"on-tertiary": "#003738",
|
|
43
|
-
"surface-container": "
|
|
44
|
-
"on-surface-variant": "
|
|
43
|
+
"surface-container": "rgb(var(--rgb-surface-container) / <alpha-value>)",
|
|
44
|
+
"on-surface-variant": "rgb(var(--rgb-on-surface-variant) / <alpha-value>)",
|
|
45
45
|
"on-primary-container": "#706400",
|
|
46
46
|
"on-error": "#690005",
|
|
47
|
-
"surface-container-high": "
|
|
48
|
-
"surface-container-highest": "
|
|
49
|
-
error: "
|
|
47
|
+
"surface-container-high": "rgb(var(--rgb-surface-high) / <alpha-value>)",
|
|
48
|
+
"surface-container-highest": "rgb(var(--rgb-surface-highest) / <alpha-value>)",
|
|
49
|
+
error: "rgb(var(--rgb-error) / <alpha-value>)",
|
|
50
50
|
primary: "#fffeff",
|
|
51
|
-
"outline-variant": "
|
|
51
|
+
"outline-variant": "rgb(var(--rgb-outline) / <alpha-value>)",
|
|
52
52
|
"on-error-container": "#ffdad6",
|
|
53
53
|
"on-secondary-fixed-variant": "#474746",
|
|
54
|
-
"surface-container-lowest": "
|
|
54
|
+
"surface-container-lowest": "rgb(var(--rgb-surface-lowest) / <alpha-value>)",
|
|
55
55
|
"inverse-surface": "#e5e2e1",
|
|
56
|
-
surface: "
|
|
56
|
+
surface: "rgb(var(--rgb-surface) / <alpha-value>)",
|
|
57
57
|
"tertiary-container": "#04faff",
|
|
58
58
|
"on-tertiary-fixed": "#002021",
|
|
59
59
|
"tertiary-fixed": "#2dfaff",
|
|
60
60
|
"surface-variant": "#353534",
|
|
61
61
|
"on-primary": "#373100",
|
|
62
|
-
"primary-container": "
|
|
62
|
+
"primary-container": "rgb(var(--rgb-primary) / <alpha-value>)",
|
|
63
63
|
"inverse-on-surface": "#313030",
|
|
64
64
|
secondary: "#c8c6c5",
|
|
65
65
|
"on-secondary-container": "#b7b5b4",
|
|
66
66
|
"on-primary-fixed": "#201c00",
|
|
67
67
|
"secondary-container": "#474746",
|
|
68
|
-
"surface-dim": "
|
|
69
|
-
"surface-bright": "
|
|
68
|
+
"surface-dim": "rgb(var(--rgb-surface) / <alpha-value>)",
|
|
69
|
+
"surface-bright": "rgb(var(--rgb-surface-bright) / <alpha-value>)",
|
|
70
70
|
"secondary-fixed": "#e5e2e1",
|
|
71
71
|
},
|
|
72
72
|
fontFamily: {
|
|
@@ -89,14 +89,14 @@
|
|
|
89
89
|
@layer components {
|
|
90
90
|
.signature-button {
|
|
91
91
|
@apply inline-flex items-center justify-center gap-2 h-[var(--control-height)] min-h-[var(--control-height)] border border-primary-container bg-primary-container px-[var(--control-padding-inline)] font-headline text-xs font-bold uppercase tracking-[0.16em] text-on-primary transition-all;
|
|
92
|
-
box-shadow: 0 0 18px -10px
|
|
92
|
+
box-shadow: 0 0 18px -10px rgb(var(--rgb-primary) / 0.7);
|
|
93
93
|
clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.signature-button:hover {
|
|
97
97
|
@apply -translate-y-px bg-primary-fixed text-on-primary;
|
|
98
|
-
border-color:
|
|
99
|
-
box-shadow: 0 0 24px -8px
|
|
98
|
+
border-color: rgb(var(--rgb-primary) / 0.55);
|
|
99
|
+
box-shadow: 0 0 24px -8px rgb(var(--rgb-primary) / 0.92);
|
|
100
100
|
filter: brightness(1.03);
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -118,12 +118,12 @@
|
|
|
118
118
|
|
|
119
119
|
.standard-button:hover {
|
|
120
120
|
@apply bg-surface-container-highest text-primary-container;
|
|
121
|
-
border-color:
|
|
121
|
+
border-color: var(--primary-alpha-24);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
.standard-button.is-active {
|
|
125
125
|
@apply bg-surface-container-high text-primary-container;
|
|
126
|
-
border-color:
|
|
126
|
+
border-color: var(--primary-alpha-30);
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.standard-button:disabled,
|
|
@@ -166,6 +166,7 @@
|
|
|
166
166
|
</style>
|
|
167
167
|
<link href="styles/tokens.css" rel="stylesheet" />
|
|
168
168
|
<link href="styles/base.css" rel="stylesheet" />
|
|
169
|
+
<link href="styles/utilities.css" rel="stylesheet" />
|
|
169
170
|
<link href="styles/layout.css" rel="stylesheet" />
|
|
170
171
|
<link href="styles/components.css" rel="stylesheet" />
|
|
171
172
|
<link href="styles/views.css" rel="stylesheet" />
|