@abcnews/components-builder 0.0.5 → 0.0.7

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.
@@ -16,6 +16,8 @@
16
16
  position: absolute;
17
17
  left: 0;
18
18
  top: 0;
19
+ background: var(--background);
20
+ color: var(--text);
19
21
  }
20
22
  .builder-frame__viz {
21
23
  flex: 1;
@@ -31,7 +33,7 @@
31
33
  .builder-frame__sidebar {
32
34
  width: 22rem;
33
35
  padding: 2rem 1rem;
34
- background: rgba(0, 0, 0, 0.04);
36
+ background: rgba(128, 128, 128, 0.05);
35
37
  border-left: 1px solid var(--border);
36
38
  height: 100vh;
37
39
  overflow: auto;
@@ -24,6 +24,11 @@
24
24
  <input type="checkbox" />
25
25
  Combine Coalition
26
26
  </label>
27
+
28
+ <label>
29
+ Your name
30
+ <input type="text" />
31
+ </label>
27
32
  </fieldset>
28
33
 
29
34
  <fieldset>
@@ -8,6 +8,9 @@
8
8
 
9
9
  <svelte:head>
10
10
  <style>
11
+ :root {
12
+ color-scheme: dark light;
13
+ }
11
14
  .builder-style-root {
12
15
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
13
16
  line-height: 1.5;
@@ -314,7 +314,7 @@
314
314
  </a>
315
315
  {/if}
316
316
  </td>
317
- <td class="buttons">
317
+ <td class="btn-group">
318
318
  <button
319
319
  onclick={(e) => {
320
320
  e.preventDefault();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abcnews/components-builder",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",