@telepath-computer/television 0.1.206 → 0.1.209

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.
Files changed (43) hide show
  1. package/dist/canonical/v1/components.js +1 -258
  2. package/dist/canonical/v1/styles.css +372 -312
  3. package/dist/cli.cjs +3749 -3629
  4. package/dist/onboarding/README.md +17 -12
  5. package/dist/onboarding/business-ops/about.html +4 -8
  6. package/dist/onboarding/business-ops/retention-vs-releases.html +0 -9
  7. package/dist/onboarding/business-ops/revenue-vs-goals.html +0 -11
  8. package/dist/onboarding/onboarding-channels.json +114 -0
  9. package/dist/onboarding/productivity/about.html +4 -8
  10. package/dist/onboarding/productivity/company-todos/index.html +0 -3
  11. package/dist/onboarding/productivity/company-todos/task.css +3 -3
  12. package/dist/onboarding/productivity/company-todos/task.js +1 -4
  13. package/dist/onboarding/productivity/meeting-prep.html +0 -7
  14. package/dist/onboarding/productivity/priorities-today.html +0 -7
  15. package/dist/onboarding/productivity/todays-calendar/calendar.js +327 -643
  16. package/dist/onboarding/productivity/todays-calendar/index.html +0 -4
  17. package/dist/onboarding/research/about.html +5 -9
  18. package/dist/onboarding/research/open-model-research.html +0 -9
  19. package/dist/onboarding/research/todays-news.html +3 -10
  20. package/dist/onboarding/tv-guide/welcome/index.html +5 -5
  21. package/dist/skills/television/SKILL.md +180 -136
  22. package/dist/skills/tv-calendar/calendar.js +327 -643
  23. package/dist/skills/tv-tasks/SKILL.md +10 -9
  24. package/dist/skills/tv-tasks/task.css +5 -6
  25. package/dist/skills/tv-tasks/task.js +2 -5
  26. package/dist/skills/tv-theme/SKILL.md +293 -193
  27. package/dist/views/artifact-missing/index.html +125 -60
  28. package/dist/views/markdown/index.html +22 -45
  29. package/dist/web/assets/artifact-bridge-BXDhGuL-.js +1 -0
  30. package/dist/web/assets/{artifactMissing-DY3nzD0p.js → artifactMissing-9rcTXhkH.js} +1 -1
  31. package/dist/web/assets/main-Blg8fuaV.css +1 -0
  32. package/dist/web/assets/main-Dlb0E5A4.js +594 -0
  33. package/dist/web/assets/{urlUnsupported-B2K6eB7H.js → urlUnsupported-kgq7Zh2V.js} +1 -1
  34. package/dist/web/index.html +4 -3
  35. package/dist/web/views/artifact-missing/index.html +125 -60
  36. package/dist/web/views/url-unsupported/index.html +127 -74
  37. package/package.json +2 -2
  38. package/dist/onboarding/onboarding-screens.json +0 -167
  39. package/dist/skills/tv-calendar/THIRD-PARTY-NOTICES.txt +0 -36
  40. package/dist/web/assets/artifact-bridge-BhiFDvPj.js +0 -1
  41. package/dist/web/assets/main-5017mprd.css +0 -1
  42. package/dist/web/assets/main-DdeZRdEy.js +0 -865
  43. /package/dist/canonical/v1/fonts/{Hind-Variable.woff2 → Hind-Variable.933e9900.woff2} +0 -0
@@ -4,71 +4,136 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Artifact file not found</title>
7
- <style>
8
- html, body {
9
- margin: 0;
10
- min-height: 100%;
11
- font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
12
- color: #222222;
13
- background: #dadada;
14
- }
15
- body {
16
- display: grid;
17
- place-items: center;
18
- box-sizing: border-box;
19
- min-height: 100vh;
20
- padding: 24px;
21
- }
22
- main {
23
- width: 100%;
24
- }
25
- .content-wrapper {
26
- max-width: 520px;
27
- margin: 0 auto;
28
- }
29
- h1 {
30
- margin: 0 0 0.75rem;
31
- font-size: 1.125rem;
32
- line-height: 1.25;
33
- }
34
- p {
35
- margin: 0;
36
- font-size: 0.875rem;
37
- line-height: 1.45;
38
- }
39
- .path-block {
40
- margin: 1rem 0;
41
- }
42
- .path-label {
43
- margin-bottom: 0.375rem;
44
- }
45
- code {
46
- display: inline-block;
47
- max-width: 100%;
48
- overflow-wrap: anywhere;
49
- padding: 0.125rem 0.3rem;
50
- border-radius: 0.35rem;
51
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
52
- font-size: 0.85em;
53
- color: #253040;
54
- background: #cbcbcb;
55
- user-select: all;
56
- }
57
- [hidden] {
58
- display: none !important;
59
- }
60
- </style>
61
- <script type="module" crossorigin src="../../assets/artifactMissing-DY3nzD0p.js"></script>
62
- <link rel="modulepreload" crossorigin href="../../assets/artifact-bridge-BhiFDvPj.js">
7
+ <style>/* Standalone documents inherit none of the app's foundation. These are the
8
+ declarations this page uses, copied from the foundation's colors.css,
9
+ text.css, and spacing.css. */
10
+ :root {
11
+ --neutral-200: oklch(92.2% 0 none);
12
+ --neutral-900: oklch(20.5% 0 none);
13
+ --blue-500: oklch(0.623 0.214 259.815);
14
+
15
+ --color-text: var(--neutral-900);
16
+ --color-background: var(--neutral-200);
17
+
18
+ --text-base: 14px;
19
+ --text-sm: round(calc(var(--text-md) / var(--text-scale)), 1px);
20
+ --text-md: var(--text-base);
21
+ --text-lg: round(calc(var(--text-md) * var(--text-scale)), 1px);
22
+ --text-scale: 1.125;
23
+ --leading-base: 1.5;
24
+
25
+ /* Loading Hind here would require another standalone asset route. Use the
26
+ fallback portion of the foundation's sans stack instead. */
27
+ --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
28
+ --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
29
+ --font-weight-semibold: 600;
30
+
31
+ --space-2: 2px;
32
+ --space-4: 4px;
33
+ --space-6: 6px;
34
+ --space-12: 12px;
35
+ --space-24: 24px;
36
+ --radius-4: 4px;
37
+ }
38
+
39
+ /* The standalone reset declarations are copied from foundation/reset.css. */
40
+ *,
41
+ *::before,
42
+ *::after {
43
+ box-sizing: border-box;
44
+ }
45
+
46
+ html,
47
+ body {
48
+ margin: 0;
49
+ padding: 0;
50
+ }
51
+
52
+ body {
53
+ min-height: 100vh;
54
+ font-family: var(--font-sans);
55
+ font-size: var(--text-md);
56
+ line-height: var(--leading-base);
57
+ color: var(--color-text);
58
+ background: var(--color-background);
59
+ }
60
+
61
+ h1,
62
+ p {
63
+ margin: 0;
64
+ }
65
+
66
+ /* The page: the app's ground with the state's message in a centred reading
67
+ column. */
68
+ .artifact-error {
69
+ min-height: 100vh;
70
+ box-sizing: border-box;
71
+ padding: var(--space-24);
72
+ display: grid;
73
+ place-items: center;
74
+ background: var(--color-background);
75
+ }
76
+
77
+ .artifact-error-body {
78
+ max-width: 520px;
79
+ display: flex;
80
+ flex-direction: column;
81
+ gap: var(--space-12);
82
+ }
83
+
84
+ .artifact-error h1 {
85
+ font-size: var(--text-lg);
86
+ font-weight: var(--font-weight-semibold);
87
+ }
88
+
89
+ .artifact-error-block {
90
+ display: flex;
91
+ flex-direction: column;
92
+ gap: var(--space-4);
93
+ }
94
+
95
+ /* The address: wrapping anywhere, the link plainly a link. */
96
+ .artifact-error a,
97
+ .artifact-error .plain-address {
98
+ display: inline-block;
99
+ max-width: 100%;
100
+ overflow-wrap: anywhere;
101
+ }
102
+
103
+ .artifact-error a {
104
+ color: var(--blue-500);
105
+ }
106
+
107
+ /* The chips — the path, the commands: mono, wrapping anywhere, selected
108
+ whole by one press — they exist to be copied. */
109
+ .artifact-error code {
110
+ display: inline-block;
111
+ max-width: 100%;
112
+ overflow-wrap: anywhere;
113
+ padding: var(--space-2) var(--space-6);
114
+ border-radius: var(--radius-4);
115
+ font-family: var(--font-mono);
116
+ font-size: var(--text-sm);
117
+ background: var(--neutral-200);
118
+ user-select: all;
119
+ }
120
+
121
+ /* The fixed documents reveal optional blocks after their host replies. */
122
+ [hidden] {
123
+ display: none !important;
124
+ }
125
+ </style>
126
+ <script type="module" crossorigin src="../../assets/artifactMissing-9rcTXhkH.js"></script>
127
+ <link rel="modulepreload" crossorigin href="../../assets/artifact-bridge-BXDhGuL-.js">
63
128
  <link rel="modulepreload" crossorigin href="../../assets/missing-artifact-page-DVzJ41AE.js">
64
129
  </head>
65
130
  <body>
66
- <main>
67
- <div class="content-wrapper">
131
+ <main class="artifact-error">
132
+ <div class="artifact-error-body">
68
133
  <h1 id="missing-title"></h1>
69
134
  <p id="missing-description"></p>
70
- <section id="path-block" class="path-block" aria-label="Missing artifact path" hidden>
71
- <p class="path-label">Registered path:</p>
135
+ <section id="path-block" class="artifact-error-block" aria-label="Missing artifact path" hidden>
136
+ <p>Registered path:</p>
72
137
  <p><code id="missing-path"></code></p>
73
138
  </section>
74
139
  <p id="missing-recovery"></p>