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 CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.9.3
2
+
3
+ - improving rerendering
4
+ - fixed the sorting bug in charts
5
+ - data row size is stored in localstorage
6
+ - saved charts
7
+
8
+ # v0.9.1
9
+
10
+ - Improvements in tagging queue
11
+ - rotate right, rotate left
12
+
1
13
  # v0.9.0
2
14
 
3
15
  - tagging view
@@ -22,7 +22,7 @@
22
22
  extend: {
23
23
  colors: {
24
24
  "on-secondary-fixed": "#1c1b1b",
25
- background: "#131313",
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": "#e5e2e1",
37
+ "on-background": "rgb(var(--rgb-on-surface) / <alpha-value>)",
38
38
  "surface-tint": "#dec800",
39
39
  "primary-fixed-dim": "#dec800",
40
- "on-surface": "#e5e2e1",
41
- "surface-container-low": "#1c1b1b",
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": "#201f1f",
44
- "on-surface-variant": "#cdc7ab",
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": "#2a2a2a",
48
- "surface-container-highest": "#353534",
49
- error: "#ffb4ab",
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": "#4b4732",
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": "#0e0e0e",
54
+ "surface-container-lowest": "rgb(var(--rgb-surface-lowest) / <alpha-value>)",
55
55
  "inverse-surface": "#e5e2e1",
56
- surface: "#131313",
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": "#fce300",
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": "#131313",
69
- "surface-bright": "#3a3939",
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 rgba(252, 227, 0, 0.7);
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: rgba(252, 227, 0, 0.55);
99
- box-shadow: 0 0 24px -8px rgba(252, 227, 0, 0.92);
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: rgba(252, 227, 0, 0.24);
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: rgba(252, 227, 0, 0.3);
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" />