timvir 0.2.53 → 0.2.55

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,5 +1,18 @@
1
1
  # timvir
2
2
 
3
+ ## 0.2.55
4
+
5
+ ### Patch Changes
6
+
7
+ - **Relax peer dependency version requirement** ([#3894](https://github.com/timvir/timvir/pull/3894)) - A recent change bumped peer dependency requirement for react from ^19 to ^19.2.7. Relax the requirement back to ^19, timvir does not depend on any specific feature added in 19.2.7.
8
+ - **Override text color when forcing light or dark theme** ([#3895](https://github.com/timvir/timvir/pull/3895)) - Forcing a theme now sets both the background image (checkered background) and also text color. This ensures that elements that rely on currentColor remain readable.
9
+
10
+ ## 0.2.54
11
+
12
+ ### Patch Changes
13
+
14
+ - **Set color and background-color in Page component** ([#3892](https://github.com/timvir/timvir/pull/3892)) - This fixes an issue where the main content area inherits these colors from the :root element. Even though we set color on body, third-party components may override these values and so break the page styling.
15
+
3
16
  ## 0.2.53
4
17
 
5
18
  ## 0.2.52
@@ -5,17 +5,6 @@ import { Exhibit } from 'timvir/blocks';
5
5
  import { useBlock } from 'timvir/core';
6
6
  import { jsx, jsxs } from 'react/jsx-runtime';
7
7
 
8
- function cx(...args) {
9
- let str = "";
10
- for (let i = 0; i < args.length; i++) {
11
- const arg = args[i];
12
- if (typeof arg === "string") {
13
- str += (str && " ") + arg;
14
- }
15
- }
16
- return str;
17
- }
18
-
19
8
  var styleq = {};
20
9
  var hasRequiredStyleq;
21
10
  function requireStyleq() {
@@ -175,6 +164,17 @@ const layoutStyles = {
175
164
  $$css: true
176
165
  }};
177
166
 
167
+ function cx(...args) {
168
+ let str = "";
169
+ for (let i = 0; i < args.length; i++) {
170
+ const arg = args[i];
171
+ if (typeof arg === "string") {
172
+ str += (str && " ") + arg;
173
+ }
174
+ }
175
+ return str;
176
+ }
177
+
178
178
  const Context = /*#__PURE__*/React.createContext({
179
179
  seed: 0
180
180
  });
@@ -1,20 +1,9 @@
1
1
  'use client';
2
- import { useBlock } from 'timvir/core';
3
- import { codeToHtml } from 'shiki';
4
2
  import * as React from 'react';
3
+ import { codeToHtml } from 'shiki';
4
+ import { useBlock } from 'timvir/core';
5
5
  import { jsxs, jsx } from 'react/jsx-runtime';
6
6
 
7
- function cx(...args) {
8
- let str = "";
9
- for (let i = 0; i < args.length; i++) {
10
- const arg = args[i];
11
- if (typeof arg === "string") {
12
- str += (str && " ") + arg;
13
- }
14
- }
15
- return str;
16
- }
17
-
18
7
  var styleq = {};
19
8
  var hasRequiredStyleq;
20
9
  function requireStyleq() {
@@ -174,6 +163,17 @@ const layoutStyles = {
174
163
  $$css: true
175
164
  }};
176
165
 
166
+ function cx(...args) {
167
+ let str = "";
168
+ for (let i = 0; i < args.length; i++) {
169
+ const arg = args[i];
170
+ if (typeof arg === "string") {
171
+ str += (str && " ") + arg;
172
+ }
173
+ }
174
+ return str;
175
+ }
176
+
177
177
  const Root = "div";
178
178
  function Code(props$1) {
179
179
  const block = useBlock(props$1);
@@ -1,20 +1,9 @@
1
1
  'use client';
2
+ import * as React from 'react';
2
3
  import { Swatch } from 'timvir/blocks';
3
4
  import { useBlock } from 'timvir/core';
4
- import * as React from 'react';
5
5
  import { jsxs, jsx } from 'react/jsx-runtime';
6
6
 
7
- function cx(...args) {
8
- let str = "";
9
- for (let i = 0; i < args.length; i++) {
10
- const arg = args[i];
11
- if (typeof arg === "string") {
12
- str += (str && " ") + arg;
13
- }
14
- }
15
- return str;
16
- }
17
-
18
7
  var styleq = {};
19
8
  var hasRequiredStyleq;
20
9
  function requireStyleq() {
@@ -174,6 +163,17 @@ const layoutStyles = {
174
163
  $$css: true
175
164
  }};
176
165
 
166
+ function cx(...args) {
167
+ let str = "";
168
+ for (let i = 0; i < args.length; i++) {
169
+ const arg = args[i];
170
+ if (typeof arg === "string") {
171
+ str += (str && " ") + arg;
172
+ }
173
+ }
174
+ return str;
175
+ }
176
+
177
177
  const Root = "div";
178
178
  function ColorBar(props$1) {
179
179
  const block = useBlock(props$1);
@@ -199,7 +199,20 @@ function ColorBar(props$1) {
199
199
  children: values.map((value, i, self) => /*#__PURE__*/jsx("div", {
200
200
  className: "timvir-s-1vqgdyp timvir-s-1iyjqo2 timvir-s-rvj5dj timvir-s-13b6k1y timvir-s-1ypdohk timvir-s-zkaem6 timvir-s-12l46wj timvir-s-inzabm timvir-s-1bxid8z",
201
201
  children: /*#__PURE__*/jsx("div", {
202
- ...props(i === 0 ? styles.firstChild : null, i === self.length - 1 ? styles.lastChild : null, styles.valueInner),
202
+ ...{
203
+ 0: {
204
+ className: "timvir-s-zhuw26 timvir-s-nfsnhl timvir-s-1ehn4u0 timvir-s-32zglm"
205
+ },
206
+ 2: {
207
+ className: "timvir-s-16gz6n8 timvir-s-zhuw26 timvir-s-nfsnhl timvir-s-1ehn4u0 timvir-s-32zglm"
208
+ },
209
+ 1: {
210
+ className: "timvir-s-btcsfn timvir-s-zhuw26 timvir-s-nfsnhl timvir-s-1ehn4u0 timvir-s-32zglm"
211
+ },
212
+ 3: {
213
+ className: "timvir-s-btcsfn timvir-s-zhuw26 timvir-s-nfsnhl timvir-s-1ehn4u0 timvir-s-32zglm"
214
+ }
215
+ }[!!(i === 0) << 1 | !!(i === self.length - 1) << 0],
203
216
  style: {
204
217
  background: typeof value === "string" ? value : value.value
205
218
  },
@@ -230,21 +243,6 @@ const styles = {
230
243
  root: {
231
244
  kVAEAm: "timvir-s-1n2onr6",
232
245
  $$css: true
233
- },
234
- valueInner: {
235
- kmkexE: "timvir-s-zhuw26",
236
- kaIpWk: "timvir-s-nfsnhl",
237
- kogj98: "timvir-s-1ehn4u0",
238
- kwh8RV: "timvir-s-32zglm",
239
- $$css: true
240
- },
241
- firstChild: {
242
- "--timvir-b-ColorBar-value-borderRadiusDefault": "timvir-s-16gz6n8",
243
- $$css: true
244
- },
245
- lastChild: {
246
- "--timvir-b-ColorBar-value-borderRadiusDefault": "timvir-s-btcsfn",
247
- $$css: true
248
246
  }
249
247
  };
250
248
 
@@ -196,7 +196,20 @@ function ColorBook(props$1) {
196
196
  style: {
197
197
  background: value
198
198
  },
199
- ...props(styles.colorValue, i === 0 ? styles.colorValueFirst : null, i === values.length - 1 ? styles.colorValueLast : null)
199
+ ...{
200
+ 0: {
201
+ className: "timvir-s-1iyjqo2"
202
+ },
203
+ 2: {
204
+ className: "timvir-s-1iyjqo2 timvir-s-1nrfd8m timvir-s-16gx4na timvir-s-frllxf timvir-s-jppbhk"
205
+ },
206
+ 1: {
207
+ className: "timvir-s-1iyjqo2 timvir-s-1ia1hqs timvir-s-1a2w583 timvir-s-1v8xtx2 timvir-s-uvn51i"
208
+ },
209
+ 3: {
210
+ className: "timvir-s-1iyjqo2 timvir-s-1ia1hqs timvir-s-1a2w583 timvir-s-1v8xtx2 timvir-s-uvn51i"
211
+ }
212
+ }[!!(i === 0) << 1 | !!(i === values.length - 1) << 0]
200
213
  }, value))
201
214
  }), name && /*#__PURE__*/jsx("div", {
202
215
  ...{
@@ -220,24 +233,6 @@ const styles = {
220
233
  kGNEyG: "timvir-s-7a106z",
221
234
  kzqmXN: "timvir-s-h8yej3",
222
235
  $$css: true
223
- },
224
- colorValue: {
225
- kzQI83: "timvir-s-1iyjqo2",
226
- $$css: true
227
- },
228
- colorValueFirst: {
229
- kIxVMA: "timvir-s-1nrfd8m",
230
- ksF3WI: "timvir-s-16gx4na",
231
- kqGeR4: "timvir-s-frllxf",
232
- kYm2EN: "timvir-s-jppbhk",
233
- $$css: true
234
- },
235
- colorValueLast: {
236
- kIxVMA: "timvir-s-1ia1hqs",
237
- ksF3WI: "timvir-s-1a2w583",
238
- kqGeR4: "timvir-s-1v8xtx2",
239
- kYm2EN: "timvir-s-uvn51i",
240
- $$css: true
241
236
  }
242
237
  };
243
238
 
@@ -1,16 +1,5 @@
1
1
  import { jsx, jsxs } from 'react/jsx-runtime';
2
2
 
3
- function cx(...args) {
4
- let str = "";
5
- for (let i = 0; i < args.length; i++) {
6
- const arg = args[i];
7
- if (typeof arg === "string") {
8
- str += (str && " ") + arg;
9
- }
10
- }
11
- return str;
12
- }
13
-
14
3
  var styleq = {};
15
4
  var hasRequiredStyleq;
16
5
  function requireStyleq() {
@@ -175,6 +164,17 @@ const layoutStyles = {
175
164
  }
176
165
  };
177
166
 
167
+ function cx(...args) {
168
+ let str = "";
169
+ for (let i = 0; i < args.length; i++) {
170
+ const arg = args[i];
171
+ if (typeof arg === "string") {
172
+ str += (str && " ") + arg;
173
+ }
174
+ }
175
+ return str;
176
+ }
177
+
178
178
  const Root = "div";
179
179
  function Cover(props$1) {
180
180
  const {
@@ -194,6 +194,7 @@ function Cover(props$1) {
194
194
  }, i)), /*#__PURE__*/jsx("img", {
195
195
  ...metadata,
196
196
  ...img1,
197
+ alt: "",
197
198
  className: "timvir-s-1lliihq timvir-s-193iq5w timvir-s-5i6pxz timvir-s-l1xv1r"
198
199
  })]
199
200
  })
@@ -2,17 +2,6 @@
2
2
  import { useContext, useBlock } from 'timvir/core';
3
3
  import { jsxs, jsx } from 'react/jsx-runtime';
4
4
 
5
- function cx(...args) {
6
- let str = "";
7
- for (let i = 0; i < args.length; i++) {
8
- const arg = args[i];
9
- if (typeof arg === "string") {
10
- str += (str && " ") + arg;
11
- }
12
- }
13
- return str;
14
- }
15
-
16
5
  var styleq = {};
17
6
  var hasRequiredStyleq;
18
7
  function requireStyleq() {
@@ -172,6 +161,17 @@ const layoutStyles = {
172
161
  $$css: true
173
162
  }};
174
163
 
164
+ function cx(...args) {
165
+ let str = "";
166
+ for (let i = 0; i < args.length; i++) {
167
+ const arg = args[i];
168
+ if (typeof arg === "string") {
169
+ str += (str && " ") + arg;
170
+ }
171
+ }
172
+ return str;
173
+ }
174
+
175
175
  const Root = "div";
176
176
  function Exhibit(props$1) {
177
177
  const {
@@ -255,10 +255,12 @@ const styles = {
255
255
  },
256
256
  lightTheme: {
257
257
  kKwaWg: "timvir-s-7ns93p",
258
+ kMwMTN: "timvir-s-15r2rl4",
258
259
  $$css: true
259
260
  },
260
261
  darkTheme: {
261
262
  kKwaWg: "timvir-s-kt43kk",
263
+ kMwMTN: "timvir-s-igssvo",
262
264
  $$css: true
263
265
  },
264
266
  caption: {
@@ -83,6 +83,14 @@
83
83
  background-image: var(--timvir-b-Exhibit-background);
84
84
  }
85
85
 
86
+ .timvir-s-15r2rl4 {
87
+ color: #000000c9;
88
+ }
89
+
90
+ .timvir-s-igssvo {
91
+ color: #ffffffdb;
92
+ }
93
+
86
94
  .timvir-s-vgvpxu {
87
95
  color: var(--timvir-secondary-text-color);
88
96
  }
@@ -1,27 +1,8 @@
1
1
  'use client';
2
- import { useArticleComponents } from 'timvir/core';
3
2
  import * as React from 'react';
3
+ import { useArticleComponents } from 'timvir/core';
4
4
  import { jsxs, jsx } from 'react/jsx-runtime';
5
5
 
6
- function cx(...args) {
7
- let str = "";
8
- for (let i = 0; i < args.length; i++) {
9
- const arg = args[i];
10
- if (typeof arg === "string") {
11
- str += (str && " ") + arg;
12
- }
13
- }
14
- return str;
15
- }
16
-
17
- const layoutStyles = {
18
- block: {
19
- kBCFzs: "timvir-s-htle6",
20
- k7Eaqz: "timvir-s-euugli",
21
- kogj98: "timvir-s-1t4wa6b",
22
- $$css: true
23
- }};
24
-
25
6
  var styleq = {};
26
7
  var hasRequiredStyleq;
27
8
  function requireStyleq() {
@@ -173,6 +154,14 @@ function props(...styles) {
173
154
  return result;
174
155
  }
175
156
 
157
+ const layoutStyles = {
158
+ block: {
159
+ kBCFzs: "timvir-s-htle6",
160
+ k7Eaqz: "timvir-s-euugli",
161
+ kogj98: "timvir-s-1t4wa6b",
162
+ $$css: true
163
+ }};
164
+
176
165
  const SvgInfo = props => /*#__PURE__*/jsxs("svg", {
177
166
  xmlns: "http://www.w3.org/2000/svg",
178
167
  width: 24,
@@ -193,6 +182,17 @@ const SvgInfo = props => /*#__PURE__*/jsxs("svg", {
193
182
  })]
194
183
  });
195
184
 
185
+ function cx(...args) {
186
+ let str = "";
187
+ for (let i = 0; i < args.length; i++) {
188
+ const arg = args[i];
189
+ if (typeof arg === "string") {
190
+ str += (str && " ") + arg;
191
+ }
192
+ }
193
+ return str;
194
+ }
195
+
196
196
  const Root = "div";
197
197
  function Font(props$1) {
198
198
  const components = useArticleComponents();
@@ -1,17 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { jsx } from 'react/jsx-runtime';
3
3
 
4
- function cx(...args) {
5
- let str = "";
6
- for (let i = 0; i < args.length; i++) {
7
- const arg = args[i];
8
- if (typeof arg === "string") {
9
- str += (str && " ") + arg;
10
- }
11
- }
12
- return str;
13
- }
14
-
15
4
  var styleq = {};
16
5
  var hasRequiredStyleq;
17
6
  function requireStyleq() {
@@ -171,6 +160,17 @@ const layoutStyles = {
171
160
  $$css: true
172
161
  }};
173
162
 
163
+ function cx(...args) {
164
+ let str = "";
165
+ for (let i = 0; i < args.length; i++) {
166
+ const arg = args[i];
167
+ if (typeof arg === "string") {
168
+ str += (str && " ") + arg;
169
+ }
170
+ }
171
+ return str;
172
+ }
173
+
174
174
  const Root = "div";
175
175
  function Grid(props$1) {
176
176
  const {
@@ -152,6 +152,14 @@ function props(...styles) {
152
152
  return result;
153
153
  }
154
154
 
155
+ const layoutStyles = {
156
+ block: {
157
+ kBCFzs: "timvir-s-htle6",
158
+ k7Eaqz: "timvir-s-euugli",
159
+ kogj98: "timvir-s-1t4wa6b",
160
+ $$css: true
161
+ }};
162
+
155
163
  const SvgAlertCircle = props => /*#__PURE__*/jsxs("svg", {
156
164
  xmlns: "http://www.w3.org/2000/svg",
157
165
  width: 24,
@@ -204,14 +212,6 @@ const SvgXOctagon = props => /*#__PURE__*/jsx("svg", {
204
212
  })
205
213
  });
206
214
 
207
- const layoutStyles = {
208
- block: {
209
- kBCFzs: "timvir-s-htle6",
210
- k7Eaqz: "timvir-s-euugli",
211
- kogj98: "timvir-s-1t4wa6b",
212
- $$css: true
213
- }};
214
-
215
215
  const Root = "div";
216
216
  function Message(props$1) {
217
217
  const {
@@ -1,19 +1,8 @@
1
1
  'use client';
2
- import { useBlock } from 'timvir/core';
3
2
  import * as React from 'react';
3
+ import { useBlock } from 'timvir/core';
4
4
  import { jsx, jsxs } from 'react/jsx-runtime';
5
5
 
6
- function cx(...args) {
7
- let str = "";
8
- for (let i = 0; i < args.length; i++) {
9
- const arg = args[i];
10
- if (typeof arg === "string") {
11
- str += (str && " ") + arg;
12
- }
13
- }
14
- return str;
15
- }
16
-
17
6
  var styleq = {};
18
7
  var hasRequiredStyleq;
19
8
  function requireStyleq() {
@@ -173,6 +162,17 @@ const layoutStyles = {
173
162
  $$css: true
174
163
  }};
175
164
 
165
+ function cx(...args) {
166
+ let str = "";
167
+ for (let i = 0; i < args.length; i++) {
168
+ const arg = args[i];
169
+ if (typeof arg === "string") {
170
+ str += (str && " ") + arg;
171
+ }
172
+ }
173
+ return str;
174
+ }
175
+
176
176
  const Root = "div";
177
177
  function Swatch(props$1) {
178
178
  const block = useBlock(props$1);
@@ -5,17 +5,6 @@ import { useResizeObserverEntry, useResizeObserver } from 'timvir/hooks';
5
5
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
6
6
  import { Code } from 'timvir/blocks';
7
7
 
8
- function cx(...args) {
9
- let str = "";
10
- for (let i = 0; i < args.length; i++) {
11
- const arg = args[i];
12
- if (typeof arg === "string") {
13
- str += (str && " ") + arg;
14
- }
15
- }
16
- return str;
17
- }
18
-
19
8
  var styleq = {};
20
9
  var hasRequiredStyleq;
21
10
  function requireStyleq() {
@@ -180,6 +169,17 @@ const layoutStyles = {
180
169
  }
181
170
  };
182
171
 
172
+ function cx(...args) {
173
+ let str = "";
174
+ for (let i = 0; i < args.length; i++) {
175
+ const arg = args[i];
176
+ if (typeof arg === "string") {
177
+ str += (str && " ") + arg;
178
+ }
179
+ }
180
+ return str;
181
+ }
182
+
183
183
  const SvgCode = props => /*#__PURE__*/jsx("svg", {
184
184
  xmlns: "http://www.w3.org/2000/svg",
185
185
  width: 24,
@@ -3,17 +3,6 @@ import * as React from 'react';
3
3
  import { useContext } from 'timvir/core';
4
4
  import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
5
5
 
6
- function cx(...args) {
7
- let str = "";
8
- for (let i = 0; i < args.length; i++) {
9
- const arg = args[i];
10
- if (typeof arg === "string") {
11
- str += (str && " ") + arg;
12
- }
13
- }
14
- return str;
15
- }
16
-
17
6
  var styleq = {};
18
7
  var hasRequiredStyleq;
19
8
  function requireStyleq() {
@@ -173,6 +162,17 @@ const layoutStyles = {
173
162
  $$css: true
174
163
  }};
175
164
 
165
+ function cx(...args) {
166
+ let str = "";
167
+ for (let i = 0; i < args.length; i++) {
168
+ const arg = args[i];
169
+ if (typeof arg === "string") {
170
+ str += (str && " ") + arg;
171
+ }
172
+ }
173
+ return str;
174
+ }
175
+
176
176
  const Root = "a";
177
177
  function WebLink(props$1) {
178
178
  const {
@@ -227,7 +227,8 @@ function WebLink(props$1) {
227
227
  style: {
228
228
  opacity: metadata?.favicon ? 1 : 0
229
229
  },
230
- src: metadata?.favicon
230
+ src: metadata?.favicon,
231
+ alt: ""
231
232
  }), /*#__PURE__*/jsx("div", {
232
233
  children: metadata ? url : null
233
234
  })]
@@ -236,7 +237,8 @@ function WebLink(props$1) {
236
237
  className: "timvir-s-15lv9n0 timvir-s-1n2onr6 timvir-s-fb3i0g",
237
238
  children: /*#__PURE__*/jsx("img", {
238
239
  className: "timvir-s-1lliihq timvir-s-l1xv1r timvir-s-1p4ba9y timvir-s-h8yej3 timvir-s-5yr21d timvir-s-10l6tqk timvir-s-13vifvy timvir-s-u96u03",
239
- src: image
240
+ src: image,
241
+ alt: ""
240
242
  })
241
243
  })]
242
244
  });
package/blocks/styles.css CHANGED
@@ -938,6 +938,14 @@
938
938
  background-image: var(--timvir-b-Exhibit-background);
939
939
  }
940
940
 
941
+ .timvir-s-15r2rl4 {
942
+ color: #000000c9;
943
+ }
944
+
945
+ .timvir-s-igssvo {
946
+ color: #ffffffdb;
947
+ }
948
+
941
949
  .timvir-s-vgvpxu {
942
950
  color: var(--timvir-secondary-text-color);
943
951
  }
@@ -16,3 +16,4 @@ export declare const a: React.FunctionComponent<React.AnchorHTMLAttributes<HTMLA
16
16
  export declare const p: React.FunctionComponent<React.HTMLAttributes<HTMLParagraphElement>>;
17
17
  export declare const ul: React.FunctionComponent<React.HTMLAttributes<HTMLUListElement>>;
18
18
  export declare const ol: React.FunctionComponent<React.HTMLAttributes<HTMLOListElement>>;
19
+ export declare const button: React.FunctionComponent<React.ButtonHTMLAttributes<HTMLButtonElement>>;
package/builtins/index.js CHANGED
@@ -152,6 +152,14 @@ function props(...styles) {
152
152
  return result;
153
153
  }
154
154
 
155
+ const layoutStyles = {
156
+ block: {
157
+ kBCFzs: "timvir-s-htle6",
158
+ k7Eaqz: "timvir-s-euugli",
159
+ kogj98: "timvir-s-1t4wa6b",
160
+ $$css: true
161
+ }};
162
+
155
163
  const SvgLink = props => /*#__PURE__*/jsxs("svg", {
156
164
  xmlns: "http://www.w3.org/2000/svg",
157
165
  width: 24,
@@ -170,14 +178,6 @@ const SvgLink = props => /*#__PURE__*/jsxs("svg", {
170
178
  })]
171
179
  });
172
180
 
173
- const layoutStyles = {
174
- block: {
175
- kBCFzs: "timvir-s-htle6",
176
- k7Eaqz: "timvir-s-euugli",
177
- kogj98: "timvir-s-1t4wa6b",
178
- $$css: true
179
- }};
180
-
181
181
  const anchorize = children => {
182
182
  if (typeof children === "string") {
183
183
  return children.toLowerCase().replace(/[ _]+/g, "-").replace(/[!:^*./\\]/g, "");
@@ -309,6 +309,10 @@ const ol1 = props$1 => /*#__PURE__*/jsx("ol", {
309
309
  ...props(layoutStyles.block),
310
310
  ...props$1
311
311
  });
312
+ const button1 = props => /*#__PURE__*/jsx("button", {
313
+ className: "timvir-s-1a2a7pz timvir-s-mkeg23 timvir-s-1y0btm7 timvir-s-j7gikm timvir-s-1cum3z5 timvir-s-1d0dlzq timvir-s-1cdhzux timvir-s-ln7xf2 timvir-s-o5v014 timvir-s-1whlmpv timvir-s-1k49i25 timvir-s-49kzi4 timvir-s-1dc5b4e timvir-s-13m658e timvir-s-1bx2y69",
314
+ ...props
315
+ });
312
316
  const styles = {
313
317
  h1: {
314
318
  keoZOQ: "timvir-s-1hpjnmm",
@@ -366,4 +370,4 @@ const styles = {
366
370
  }
367
371
  };
368
372
 
369
- export { a1 as a, blockquote1 as blockquote, code1 as code, h11 as h1, h21 as h2, h31 as h3, h41 as h4, hr1 as hr, ol1 as ol, p1 as p, table1 as table, tbody1 as tbody, td1 as td, th1 as th, thead1 as thead, tr1 as tr, ul1 as ul };
373
+ export { a1 as a, blockquote1 as blockquote, button1 as button, code1 as code, h11 as h1, h21 as h2, h31 as h3, h41 as h4, hr1 as hr, ol1 as ol, p1 as p, table1 as table, tbody1 as tbody, td1 as td, th1 as th, thead1 as thead, tr1 as tr, ul1 as ul };
@@ -43,6 +43,10 @@
43
43
  }
44
44
 
45
45
  @layer priority2 {
46
+ .timvir-s-ln7xf2 {
47
+ font: inherit;
48
+ }
49
+
46
50
  .timvir-s-1t4wa6b {
47
51
  margin: 0 0 2rem;
48
52
  }
@@ -59,6 +63,10 @@
59
63
  padding: 4px 6px 3px;
60
64
  }
61
65
 
66
+ .timvir-s-1whlmpv {
67
+ padding: 4px 6px;
68
+ }
69
+
62
70
  .timvir-s-12ek6fo {
63
71
  padding: 6px 13px;
64
72
  }
@@ -77,6 +85,10 @@
77
85
  border-color: var(--timvir-border-color);
78
86
  }
79
87
 
88
+ .timvir-s-1cum3z5 {
89
+ border-radius: 2px;
90
+ }
91
+
80
92
  .timvir-s-1sxf85j {
81
93
  border-radius: 5px;
82
94
  }
@@ -105,6 +117,14 @@
105
117
  grid-column: lex / rex;
106
118
  }
107
119
 
120
+ .timvir-s-1k49i25 {
121
+ margin-block: -4px;
122
+ }
123
+
124
+ .timvir-s-1a2a7pz {
125
+ outline: none;
126
+ }
127
+
108
128
  .timvir-s-ysyzu8 {
109
129
  overflow: auto;
110
130
  }
@@ -116,6 +136,10 @@
116
136
  .timvir-s-2r93rw {
117
137
  transition: opacity.2s,transform.2s,visibility 0s var(--link-icon-visibility-delay, .2s);
118
138
  }
139
+
140
+ .timvir-s-49kzi4:hover, .timvir-s-13m658e:active {
141
+ border-color: var(--timvir-text-color);
142
+ }
119
143
  }
120
144
 
121
145
  @layer priority4 {
@@ -131,6 +155,10 @@
131
155
  background-color: var(--code-background, var(--timvir-secondary-background-color));
132
156
  }
133
157
 
158
+ .timvir-s-1d0dlzq {
159
+ background-color: var(--timvir-secondary-background-color);
160
+ }
161
+
134
162
  .timvir-s-11p4203 {
135
163
  background-image: linear-gradient(#0000, #0000 5px, #383838 5px, #383838);
136
164
  }
@@ -167,6 +195,10 @@
167
195
  color: var(--timvir-secondary-text-color);
168
196
  }
169
197
 
198
+ .timvir-s-1cdhzux {
199
+ color: var(--timvir-text-color);
200
+ }
201
+
170
202
  .timvir-s-1lliihq {
171
203
  display: block;
172
204
  }
@@ -231,6 +263,10 @@
231
263
  line-height: 1.4706;
232
264
  }
233
265
 
266
+ .timvir-s-o5v014 {
267
+ line-height: 1;
268
+ }
269
+
234
270
  .timvir-s-vpkmg4 {
235
271
  opacity: .25;
236
272
  }
@@ -263,7 +299,19 @@
263
299
  background-color: var(--c-p-0);
264
300
  }
265
301
 
266
- .timvir-s-lan1bs:hover, .timvir-s-1k07x2j:active {
302
+ .timvir-s-1dc5b4e:hover {
303
+ background-color: var(--timvir-sidebar-highlight-color);
304
+ }
305
+
306
+ .timvir-s-lan1bs:hover {
307
+ background-image: linear-gradient(#0000, #0000 3px, #2bbc8a 3px, #2bbc8a);
308
+ }
309
+
310
+ .timvir-s-1bx2y69:active {
311
+ background-color: var(--timvir-sidebar-highlight-color);
312
+ }
313
+
314
+ .timvir-s-1k07x2j:active {
267
315
  background-image: linear-gradient(#0000, #0000 3px, #2bbc8a 3px, #2bbc8a);
268
316
  }
269
317
 
package/core/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
- import { type Source } from "wonka";
2
- import type { Message } from "timvir/bus";
3
1
  import * as React from "react";
2
+ import type { Message } from "timvir/bus";
3
+ import { type Source } from "wonka";
4
+ export { useContext } from "timvir/context";
4
5
  export * from "./components/Footer";
5
6
  export * from "./components/Page";
6
- export { useContext } from "timvir/context";
7
- export { layoutStyles, noLayout, extendedWidth, fullWidth, grid } from "./layout";
7
+ export { extendedWidth, fullWidth, grid, layoutStyles, noLayout } from "./layout";
8
8
  /**
9
9
  * A mailbox is a wonka source which receives messages for one specific block (identified by its id).
10
10
  */
@@ -45,7 +45,7 @@ export declare function useArticleComponents(): {
45
45
  blockquote: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
46
46
  body?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>> | undefined;
47
47
  br?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLBRElement>, HTMLBRElement>> | undefined;
48
- button?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>> | undefined;
48
+ button: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
49
49
  canvas?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>> | undefined;
50
50
  caption?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
51
51
  center?: keyof React.JSX.IntrinsicElements | React.FunctionComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
package/core/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use client';
2
- import { pipe, subscribe, filter } from 'wonka';
3
- import { useContext, Provider } from 'timvir/context';
4
- export { useContext } from 'timvir/context';
5
2
  import * as React from 'react';
6
3
  import * as builtins from 'timvir/builtins';
4
+ import { useContext, Provider } from 'timvir/context';
5
+ export { useContext } from 'timvir/context';
6
+ import { pipe, subscribe, filter } from 'wonka';
7
7
  import { jsxs, jsx } from 'react/jsx-runtime';
8
8
  import { makeBus } from 'timvir/bus';
9
9
  import * as ReactDOM from 'react-dom';
@@ -324,8 +324,8 @@ function Dialog(props) {
324
324
  }));
325
325
  })();
326
326
  }, [toc, state.query]);
327
- return /*#__PURE__*/jsxs("div", {
328
- className: "timvir-s-1n2onr6 timvir-s-78zum5 timvir-s-dt5ytf timvir-s-s83m0k timvir-s-1iyjqo2 timvir-s-13qp9f6 timvir-s-1so62im timvir-s-1jpgh95 timvir-s-1c4omy1 timvir-s-ur7f20 timvir-s-17isqgs timvir-s-11gisft timvir-s-vc674v timvir-s-b3r6kr timvir-s-hkombj",
327
+ return /*#__PURE__*/jsxs("dialog", {
328
+ className: "timvir-s-1n2onr6 timvir-s-78zum5 timvir-s-dt5ytf timvir-s-s83m0k timvir-s-1iyjqo2 timvir-s-13qp9f6 timvir-s-1so62im timvir-s-1jpgh95 timvir-s-1c4omy1 timvir-s-ur7f20 timvir-s-17isqgs timvir-s-11gisft timvir-s-vc674v timvir-s-b3r6kr timvir-s-hkombj timvir-s-1717udv timvir-s-c342km timvir-s-19bbpc0",
329
329
  style: state.style,
330
330
  ...rest,
331
331
  children: [/*#__PURE__*/jsx("div", {
@@ -579,10 +579,10 @@ function SidebarItem(props) {
579
579
  const isActive = location.asPath.replace(/#.*$/, "") === path;
580
580
  const linkStylexProps = {
581
581
  0: {
582
- className: "timvir-s-euugli timvir-s-pau0pd timvir-s-12oqio5 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1cdhzux timvir-s-k50ysn timvir-s-1k74hu9 timvir-s-1hl2dhg timvir-s-h8yej3 timvir-s-1xq1gxn timvir-s-1ks1olk timvir-s-8kob5h timvir-s-1dc5b4e timvir-s-1o7uuvo"
582
+ className: "timvir-s-euugli timvir-s-pau0pd timvir-s-12oqio5 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1cdhzux timvir-s-k50ysn timvir-s-jbqb8w timvir-s-1hl2dhg timvir-s-h8yej3 timvir-s-1xq1gxn timvir-s-1ks1olk timvir-s-c342km timvir-s-dpxx8g timvir-s-1ypdohk timvir-s-jb2p0i timvir-s-6u19be timvir-s-1ylh3l6 timvir-s-asi8qw timvir-s-8kob5h timvir-s-1dc5b4e timvir-s-1o7uuvo"
583
583
  },
584
584
  1: {
585
- className: "timvir-s-euugli timvir-s-pau0pd timvir-s-12oqio5 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1cdhzux timvir-s-k50ysn timvir-s-1hl2dhg timvir-s-h8yej3 timvir-s-1xq1gxn timvir-s-8kob5h timvir-s-1dc5b4e timvir-s-1o7uuvo timvir-s-6r7942 timvir-s-1hc1fzr"
585
+ className: "timvir-s-euugli timvir-s-pau0pd timvir-s-12oqio5 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1cdhzux timvir-s-k50ysn timvir-s-1hl2dhg timvir-s-h8yej3 timvir-s-1xq1gxn timvir-s-c342km timvir-s-dpxx8g timvir-s-1ypdohk timvir-s-jb2p0i timvir-s-6u19be timvir-s-1ylh3l6 timvir-s-asi8qw timvir-s-8kob5h timvir-s-1dc5b4e timvir-s-1o7uuvo timvir-s-6r7942 timvir-s-1hc1fzr"
586
586
  }
587
587
  }[!!isActive << 0];
588
588
  const linkStyle = {
@@ -590,7 +590,7 @@ function SidebarItem(props) {
590
590
  marginLeft: depth * 16
591
591
  };
592
592
  return /*#__PURE__*/jsx("div", {
593
- className: "timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-3my8ay timvir-s-6u19be timvir-s-1ylh3l6 timvir-s-asi8qw",
593
+ className: "timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-3my8ay",
594
594
  children: path ? /*#__PURE__*/jsxs(Link, {
595
595
  href: path,
596
596
  className: linkStylexProps.className,
@@ -603,8 +603,8 @@ function SidebarItem(props) {
603
603
  className: "timvir-s-uxw1ft timvir-s-b3r6kr timvir-s-lyipyv timvir-s-ack27t",
604
604
  children: label
605
605
  }), icon]
606
- }) : /*#__PURE__*/jsxs("a", {
607
- href: "#",
606
+ }) : /*#__PURE__*/jsxs("button", {
607
+ type: "button",
608
608
  className: linkStylexProps.className,
609
609
  style: linkStyle,
610
610
  onClick: () => setActive(x => !x),
@@ -717,10 +717,10 @@ function Sidebar(props$1) {
717
717
  ...search
718
718
  })
719
719
  })]
720
- }), /*#__PURE__*/jsxs("div", {
721
- role: "button",
720
+ }), /*#__PURE__*/jsxs("button", {
721
+ type: "button",
722
722
  onClick: () => setMenuOpen(!isMenuOpen),
723
- className: "timvir-s-1qg66n7 timvir-s-7uxsod timvir-s-1pizb70 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1ypdohk timvir-s-1yn2rt8",
723
+ className: "timvir-s-jbqb8w timvir-s-ln7xf2 timvir-s-1heor9g timvir-s-h8yej3 timvir-s-76ihet timvir-s-cym7qx timvir-s-7956lj timvir-s-1qg66n7 timvir-s-7uxsod timvir-s-1pizb70 timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1ypdohk timvir-s-1yn2rt8",
724
724
  children: [node?.icon ? /*#__PURE__*/React.cloneElement(node.icon, {
725
725
  ...{
726
726
  className: "timvir-s-1lliihq timvir-s-1fr90bg timvir-s-pz6ql4 timvir-s-1db2dqx timvir-s-15dgqpb"
@@ -772,9 +772,9 @@ function Search(props) {
772
772
  } = props;
773
773
  return /*#__PURE__*/jsx("div", {
774
774
  className: "timvir-s-gcpwm9",
775
- children: /*#__PURE__*/jsxs("div", {
776
- role: "button",
777
- className: "timvir-s-1cdhzux timvir-s-1dcheo9 timvir-s-1ylh3l6 timvir-s-o1l8bm timvir-s-1ypdohk timvir-s-u0aao5 timvir-s-ur7f20 timvir-s-84vhe8 timvir-s-mkeg23 timvir-s-1y0btm7 timvir-s-j7gikm timvir-s-1d0dlzq timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1dc5b4e",
775
+ children: /*#__PURE__*/jsxs("button", {
776
+ type: "button",
777
+ className: "timvir-s-ln7xf2 timvir-s-h8yej3 timvir-s-1cdhzux timvir-s-1dcheo9 timvir-s-1ylh3l6 timvir-s-o1l8bm timvir-s-1ypdohk timvir-s-u0aao5 timvir-s-ur7f20 timvir-s-84vhe8 timvir-s-mkeg23 timvir-s-1y0btm7 timvir-s-j7gikm timvir-s-1d0dlzq timvir-s-78zum5 timvir-s-6s0dn4 timvir-s-1dc5b4e",
778
778
  onClick: open,
779
779
  children: [/*#__PURE__*/jsx("svg", {
780
780
  x: "0px",
@@ -860,7 +860,7 @@ function Page(props$1) {
860
860
  value: context,
861
861
  children: [/*#__PURE__*/jsxs(Root, {
862
862
  ...rest,
863
- className: "timvir-s-g6iff7 timvir-s-1hz7z82 timvir-s-rvj5dj timvir-s-c0s83b timvir-s-1i3za4p timvir-s-oxwh6b timvir-s-1w3eerp",
863
+ className: "timvir-s-g6iff7 timvir-s-1hz7z82 timvir-s-rvj5dj timvir-s-c0s83b timvir-s-1i3za4p timvir-s-oxwh6b timvir-s-1w3eerp timvir-s-1p7i66b timvir-s-dvd4st timvir-s-1746jcd timvir-s-6u19be timvir-s-13xho20 timvir-s-1b7vwdu timvir-s-1cdhzux",
864
864
  children: [/*#__PURE__*/jsx(Sidebar, {
865
865
  sx: styles.sidebar,
866
866
  toc: toc,
@@ -940,7 +940,6 @@ const styles = {
940
940
  sidebar: {
941
941
  kJuA4N: "timvir-s-1nkj2r4",
942
942
  kY2c9j: "timvir-s-13tdkmf",
943
- kWkggS: "timvir-s-1b7vwdu",
944
943
  kVAEAm: "timvir-s-7wzq59",
945
944
  k87sOh: "timvir-s-13vifvy",
946
945
  kZ9C5d: "timvir-s-1b3g1kt",
package/core/styles.css CHANGED
@@ -15,6 +15,10 @@
15
15
  }
16
16
 
17
17
  @layer priority2 {
18
+ .timvir-s-ln7xf2 {
19
+ font: inherit;
20
+ }
21
+
18
22
  .timvir-s-18p8pu3 {
19
23
  grid-area: 1 / 1;
20
24
  }
@@ -35,6 +39,10 @@
35
39
  margin: 0 0 2rem;
36
40
  }
37
41
 
42
+ .timvir-s-19bbpc0 {
43
+ margin: 0 auto;
44
+ }
45
+
38
46
  .timvir-s-1ghz6dp {
39
47
  margin: 0;
40
48
  }
@@ -59,6 +67,10 @@
59
67
  padding: 0 var(--timvir-page-margin);
60
68
  }
61
69
 
70
+ .timvir-s-1717udv {
71
+ padding: 0;
72
+ }
73
+
62
74
  .timvir-s-1tv4xqk {
63
75
  padding: 13vh 16px 16px;
64
76
  }
@@ -113,6 +125,10 @@
113
125
  border-radius: 8px;
114
126
  }
115
127
 
128
+ .timvir-s-7956lj {
129
+ border-right: none;
130
+ }
131
+
116
132
  .timvir-s-1y0btm7 {
117
133
  border-style: solid;
118
134
  }
@@ -121,6 +137,10 @@
121
137
  border-top: 1px solid var(--timvir-border-color);
122
138
  }
123
139
 
140
+ .timvir-s-76ihet {
141
+ border-top: none;
142
+ }
143
+
124
144
  .timvir-s-c342km {
125
145
  border-width: 0;
126
146
  }
@@ -266,10 +286,6 @@
266
286
  appearance: none;
267
287
  }
268
288
 
269
- .timvir-s-1k74hu9 {
270
- background-color: none;
271
- }
272
-
273
289
  .timvir-s-1c4omy1 {
274
290
  background-color: #27282b;
275
291
  }
@@ -402,6 +418,10 @@
402
418
  flex-shrink: 1;
403
419
  }
404
420
 
421
+ .timvir-s-jb2p0i {
422
+ font-family: inherit;
423
+ }
424
+
405
425
  .timvir-s-1p7i66b {
406
426
  font-family: system-ui, sans-serif;
407
427
  }
@@ -498,6 +518,10 @@
498
518
  line-height: 1.725;
499
519
  }
500
520
 
521
+ .timvir-s-13xho20 {
522
+ line-height: 1.7333;
523
+ }
524
+
501
525
  .timvir-s-1ylh3l6 {
502
526
  line-height: 2.2;
503
527
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "timvir",
4
- "version": "0.2.53",
4
+ "version": "0.2.55",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
7
7
  "exports": {
package/styles.css CHANGED
@@ -126,6 +126,10 @@ body {
126
126
  }
127
127
 
128
128
  @layer priority2 {
129
+ .timvir-s-ln7xf2 {
130
+ font: inherit;
131
+ }
132
+
129
133
  .timvir-s-18p8pu3 {
130
134
  grid-area: 1 / 1;
131
135
  }
@@ -146,6 +150,10 @@ body {
146
150
  margin: 0 0 2rem;
147
151
  }
148
152
 
153
+ .timvir-s-19bbpc0 {
154
+ margin: 0 auto;
155
+ }
156
+
149
157
  .timvir-s-1ghz6dp {
150
158
  margin: 0;
151
159
  }
@@ -170,6 +178,10 @@ body {
170
178
  padding: 0 var(--timvir-page-margin);
171
179
  }
172
180
 
181
+ .timvir-s-1717udv {
182
+ padding: 0;
183
+ }
184
+
173
185
  .timvir-s-1tv4xqk {
174
186
  padding: 13vh 16px 16px;
175
187
  }
@@ -224,6 +236,10 @@ body {
224
236
  border-radius: 8px;
225
237
  }
226
238
 
239
+ .timvir-s-7956lj {
240
+ border-right: none;
241
+ }
242
+
227
243
  .timvir-s-1y0btm7 {
228
244
  border-style: solid;
229
245
  }
@@ -232,6 +248,10 @@ body {
232
248
  border-top: 1px solid var(--timvir-border-color);
233
249
  }
234
250
 
251
+ .timvir-s-76ihet {
252
+ border-top: none;
253
+ }
254
+
235
255
  .timvir-s-c342km {
236
256
  border-width: 0;
237
257
  }
@@ -377,10 +397,6 @@ body {
377
397
  appearance: none;
378
398
  }
379
399
 
380
- .timvir-s-1k74hu9 {
381
- background-color: none;
382
- }
383
-
384
400
  .timvir-s-1c4omy1 {
385
401
  background-color: #27282b;
386
402
  }
@@ -513,6 +529,10 @@ body {
513
529
  flex-shrink: 1;
514
530
  }
515
531
 
532
+ .timvir-s-jb2p0i {
533
+ font-family: inherit;
534
+ }
535
+
516
536
  .timvir-s-1p7i66b {
517
537
  font-family: system-ui, sans-serif;
518
538
  }
@@ -609,6 +629,10 @@ body {
609
629
  line-height: 1.725;
610
630
  }
611
631
 
632
+ .timvir-s-13xho20 {
633
+ line-height: 1.7333;
634
+ }
635
+
612
636
  .timvir-s-1ylh3l6 {
613
637
  line-height: 2.2;
614
638
  }
@@ -1013,6 +1037,10 @@ body {
1013
1037
  }
1014
1038
 
1015
1039
  @layer priority2 {
1040
+ .timvir-s-ln7xf2 {
1041
+ font: inherit;
1042
+ }
1043
+
1016
1044
  .timvir-s-1t4wa6b {
1017
1045
  margin: 0 0 2rem;
1018
1046
  }
@@ -1029,6 +1057,10 @@ body {
1029
1057
  padding: 4px 6px 3px;
1030
1058
  }
1031
1059
 
1060
+ .timvir-s-1whlmpv {
1061
+ padding: 4px 6px;
1062
+ }
1063
+
1032
1064
  .timvir-s-12ek6fo {
1033
1065
  padding: 6px 13px;
1034
1066
  }
@@ -1047,6 +1079,10 @@ body {
1047
1079
  border-color: var(--timvir-border-color);
1048
1080
  }
1049
1081
 
1082
+ .timvir-s-1cum3z5 {
1083
+ border-radius: 2px;
1084
+ }
1085
+
1050
1086
  .timvir-s-1sxf85j {
1051
1087
  border-radius: 5px;
1052
1088
  }
@@ -1075,6 +1111,14 @@ body {
1075
1111
  grid-column: lex / rex;
1076
1112
  }
1077
1113
 
1114
+ .timvir-s-1k49i25 {
1115
+ margin-block: -4px;
1116
+ }
1117
+
1118
+ .timvir-s-1a2a7pz {
1119
+ outline: none;
1120
+ }
1121
+
1078
1122
  .timvir-s-ysyzu8 {
1079
1123
  overflow: auto;
1080
1124
  }
@@ -1086,6 +1130,10 @@ body {
1086
1130
  .timvir-s-2r93rw {
1087
1131
  transition: opacity.2s,transform.2s,visibility 0s var(--link-icon-visibility-delay, .2s);
1088
1132
  }
1133
+
1134
+ .timvir-s-49kzi4:hover, .timvir-s-13m658e:active {
1135
+ border-color: var(--timvir-text-color);
1136
+ }
1089
1137
  }
1090
1138
 
1091
1139
  @layer priority4 {
@@ -1101,6 +1149,10 @@ body {
1101
1149
  background-color: var(--code-background, var(--timvir-secondary-background-color));
1102
1150
  }
1103
1151
 
1152
+ .timvir-s-1d0dlzq {
1153
+ background-color: var(--timvir-secondary-background-color);
1154
+ }
1155
+
1104
1156
  .timvir-s-11p4203 {
1105
1157
  background-image: linear-gradient(#0000, #0000 5px, #383838 5px, #383838);
1106
1158
  }
@@ -1137,6 +1189,10 @@ body {
1137
1189
  color: var(--timvir-secondary-text-color);
1138
1190
  }
1139
1191
 
1192
+ .timvir-s-1cdhzux {
1193
+ color: var(--timvir-text-color);
1194
+ }
1195
+
1140
1196
  .timvir-s-1lliihq {
1141
1197
  display: block;
1142
1198
  }
@@ -1201,6 +1257,10 @@ body {
1201
1257
  line-height: 1.4706;
1202
1258
  }
1203
1259
 
1260
+ .timvir-s-o5v014 {
1261
+ line-height: 1;
1262
+ }
1263
+
1204
1264
  .timvir-s-vpkmg4 {
1205
1265
  opacity: .25;
1206
1266
  }
@@ -1233,7 +1293,19 @@ body {
1233
1293
  background-color: var(--c-p-0);
1234
1294
  }
1235
1295
 
1236
- .timvir-s-lan1bs:hover, .timvir-s-1k07x2j:active {
1296
+ .timvir-s-1dc5b4e:hover {
1297
+ background-color: var(--timvir-sidebar-highlight-color);
1298
+ }
1299
+
1300
+ .timvir-s-lan1bs:hover {
1301
+ background-image: linear-gradient(#0000, #0000 3px, #2bbc8a 3px, #2bbc8a);
1302
+ }
1303
+
1304
+ .timvir-s-1bx2y69:active {
1305
+ background-color: var(--timvir-sidebar-highlight-color);
1306
+ }
1307
+
1308
+ .timvir-s-1k07x2j:active {
1237
1309
  background-image: linear-gradient(#0000, #0000 3px, #2bbc8a 3px, #2bbc8a);
1238
1310
  }
1239
1311
 
@@ -2239,6 +2311,14 @@ body {
2239
2311
  background-image: var(--timvir-b-Exhibit-background);
2240
2312
  }
2241
2313
 
2314
+ .timvir-s-15r2rl4 {
2315
+ color: #000000c9;
2316
+ }
2317
+
2318
+ .timvir-s-igssvo {
2319
+ color: #ffffffdb;
2320
+ }
2321
+
2242
2322
  .timvir-s-vgvpxu {
2243
2323
  color: var(--timvir-secondary-text-color);
2244
2324
  }