@dualityinstitute/blink 0.0.1
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/LICENSE +201 -0
- package/README.md +160 -0
- package/assets/AppIcon.icns +0 -0
- package/assets/tray/iconTemplate-error.png +0 -0
- package/assets/tray/iconTemplate-error@2x.png +0 -0
- package/assets/tray/iconTemplate-hidden.png +0 -0
- package/assets/tray/iconTemplate-hidden@2x.png +0 -0
- package/assets/tray/iconTemplate-monitoring.png +0 -0
- package/assets/tray/iconTemplate-monitoring@2x.png +0 -0
- package/assets/tray/iconTemplate-processing-b.png +0 -0
- package/assets/tray/iconTemplate-processing-b@2x.png +0 -0
- package/assets/tray/iconTemplate-processing.png +0 -0
- package/assets/tray/iconTemplate-processing@2x.png +0 -0
- package/assets/tray/iconTemplate.png +0 -0
- package/assets/tray/iconTemplate@2x.png +0 -0
- package/dist/cli.js +20463 -0
- package/dist/electron/fsevents-1bczt1x4.node +0 -0
- package/dist/electron/main.js +28529 -0
- package/dist/electron/preload.cjs +115 -0
- package/dist/electron/renderer/popup.css +815 -0
- package/dist/electron/renderer/popup.html +141 -0
- package/dist/electron/renderer/popup.js +4087 -0
- package/dist/electron/renderer/presenter.css +455 -0
- package/dist/electron/renderer/presenter.html +75 -0
- package/dist/electron/renderer/presenter.js +3870 -0
- package/package.json +76 -0
- package/vendor/Blink.app/Contents/Helpers/BlinkAudio +0 -0
- package/vendor/Blink.app/Contents/Info.plist +30 -0
- package/vendor/Blink.app/Contents/MacOS/Blink +0 -0
- package/vendor/Blink.app/Contents/Resources/AppIcon.icns +0 -0
- package/vendor/Blink.app/Contents/_CodeSignature/CodeResources +137 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="Content-Security-Policy"
|
|
6
|
+
content="default-src 'none'; script-src 'self'; style-src 'self'; img-src data:; font-src 'self'; connect-src 'none';" />
|
|
7
|
+
<title>Blink</title>
|
|
8
|
+
<link rel="stylesheet" href="./popup.css" />
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<main id="root" class="card state-idle" aria-live="polite">
|
|
12
|
+
<header class="card-header" role="banner">
|
|
13
|
+
<div class="identity">
|
|
14
|
+
<span class="window-title">Blink</span>
|
|
15
|
+
<span class="product-context">Private meeting copilot</span>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="header-actions">
|
|
18
|
+
<label
|
|
19
|
+
id="monitoring-control"
|
|
20
|
+
class="monitoring-control"
|
|
21
|
+
title="Watch for new screenshots"
|
|
22
|
+
>
|
|
23
|
+
<input
|
|
24
|
+
id="monitoring"
|
|
25
|
+
type="checkbox"
|
|
26
|
+
aria-label="Monitor for new screenshots"
|
|
27
|
+
/>
|
|
28
|
+
<span class="monitoring-indicator" aria-hidden="true"></span>
|
|
29
|
+
<span id="monitoring-label">Monitor</span>
|
|
30
|
+
</label>
|
|
31
|
+
<label
|
|
32
|
+
id="meeting-control"
|
|
33
|
+
class="meeting-control"
|
|
34
|
+
title="Capture private Meeting context"
|
|
35
|
+
>
|
|
36
|
+
<input
|
|
37
|
+
id="meeting"
|
|
38
|
+
type="checkbox"
|
|
39
|
+
aria-label="Capture Meeting context"
|
|
40
|
+
/>
|
|
41
|
+
<span class="meeting-indicator" aria-hidden="true"></span>
|
|
42
|
+
<span id="meeting-label">Meeting</span>
|
|
43
|
+
</label>
|
|
44
|
+
<label class="privacy-control" title="Hide all Blink windows from screen capture">
|
|
45
|
+
<input
|
|
46
|
+
id="privacy"
|
|
47
|
+
type="checkbox"
|
|
48
|
+
aria-label="Hide Blink windows from screen capture"
|
|
49
|
+
/>
|
|
50
|
+
<span class="privacy-indicator" aria-hidden="true"></span>
|
|
51
|
+
<span id="privacy-label">Visible</span>
|
|
52
|
+
</label>
|
|
53
|
+
<button
|
|
54
|
+
id="abort"
|
|
55
|
+
class="stop-btn"
|
|
56
|
+
type="button"
|
|
57
|
+
title="Stop current answer"
|
|
58
|
+
aria-label="Stop current answer"
|
|
59
|
+
hidden
|
|
60
|
+
>Stop</button>
|
|
61
|
+
<button
|
|
62
|
+
id="close"
|
|
63
|
+
class="close-btn"
|
|
64
|
+
type="button"
|
|
65
|
+
title="Dismiss"
|
|
66
|
+
aria-label="Dismiss"
|
|
67
|
+
>×</button>
|
|
68
|
+
</div>
|
|
69
|
+
</header>
|
|
70
|
+
|
|
71
|
+
<div class="response-context">
|
|
72
|
+
<div class="source" id="source">
|
|
73
|
+
<span class="source-label">Ready for a screenshot</span>
|
|
74
|
+
</div>
|
|
75
|
+
<div class="status-group">
|
|
76
|
+
<span class="pill usage-pill" id="usage-pill" hidden role="status"></span>
|
|
77
|
+
<span class="pill queue-pill" id="queue-pill" hidden aria-hidden="true"></span>
|
|
78
|
+
<span class="pill reconciled-pill" id="reconciled-pill" hidden aria-hidden="true">recovered</span>
|
|
79
|
+
<span class="pill stopped-pill" id="stopped-pill" hidden aria-hidden="true">stopped</span>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
<div class="meeting-context" id="meeting-context" hidden>
|
|
84
|
+
<div
|
|
85
|
+
class="meeting-context-summary"
|
|
86
|
+
id="meeting-context-summary"
|
|
87
|
+
role="status"
|
|
88
|
+
aria-live="polite"
|
|
89
|
+
>
|
|
90
|
+
<button
|
|
91
|
+
id="transcript-toggle"
|
|
92
|
+
class="pill transcript-toggle"
|
|
93
|
+
type="button"
|
|
94
|
+
title="Show the live Meeting transcript"
|
|
95
|
+
aria-controls="transcript-panel"
|
|
96
|
+
aria-expanded="true"
|
|
97
|
+
>Transcript</button>
|
|
98
|
+
<span class="context-copy" id="context-copy">No context yet</span>
|
|
99
|
+
</div>
|
|
100
|
+
<button
|
|
101
|
+
id="ask-meeting"
|
|
102
|
+
class="ask-btn"
|
|
103
|
+
type="button"
|
|
104
|
+
title="Ask Blink using retained Meeting context (Control-Command-Return)"
|
|
105
|
+
aria-label="Ask Blink using retained Meeting context"
|
|
106
|
+
aria-keyshortcuts="Control+Meta+Enter"
|
|
107
|
+
disabled
|
|
108
|
+
>Ask</button>
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
<div
|
|
112
|
+
class="transcript-panel"
|
|
113
|
+
id="transcript-panel"
|
|
114
|
+
aria-label="Live meeting transcript"
|
|
115
|
+
hidden
|
|
116
|
+
>
|
|
117
|
+
<div class="transcript-lines" id="transcript-lines"></div>
|
|
118
|
+
</div>
|
|
119
|
+
|
|
120
|
+
<section class="card-body" id="body">
|
|
121
|
+
<div class="answering" id="answering" hidden>
|
|
122
|
+
<span class="shimmer-line shimmer-line-1"></span>
|
|
123
|
+
<span class="shimmer-line shimmer-line-2"></span>
|
|
124
|
+
<span class="shimmer-line shimmer-line-3"></span>
|
|
125
|
+
<span class="answering-label">answering…</span>
|
|
126
|
+
</div>
|
|
127
|
+
<article
|
|
128
|
+
class="answer markdown"
|
|
129
|
+
id="answer"
|
|
130
|
+
role="article"
|
|
131
|
+
aria-label="Answer"
|
|
132
|
+
></article>
|
|
133
|
+
<div class="error" id="error" hidden role="alert">
|
|
134
|
+
<div class="error-title">Answer failed</div>
|
|
135
|
+
<div class="error-message" id="error-message"></div>
|
|
136
|
+
</div>
|
|
137
|
+
</section>
|
|
138
|
+
</main>
|
|
139
|
+
<script src="./popup.js"></script>
|
|
140
|
+
</body>
|
|
141
|
+
</html>
|