Skip to content

Commit b81be12

Browse files
committed
v15.0.1
1 parent 05a6eaa commit b81be12

File tree

14 files changed

+78
-13
lines changed

14 files changed

+78
-13
lines changed

build/browser/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/browser/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/cjs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/cjs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/esm/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/esm/index.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/index.html

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,73 @@
169169
<main class="main-placeholder" id="main1">
170170
<div style="max-width: 600px; margin: auto">
171171
<a href="https://www.google.com">asdjflöaksdjf</a>
172+
173+
<div style="margin-top: 40px;">
174+
<h3 style="margin-bottom: 15px; color: #333;">Test Dropdowns</h3>
175+
176+
<div style="margin-bottom: 20px;">
177+
<label for="dropdown1" style="display: block; margin-bottom: 5px; color: #666;">Select Country:</label>
178+
<select id="dropdown1" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;">
179+
<option value="">Choose a country...</option>
180+
<option value="us">United States</option>
181+
<option value="uk">United Kingdom</option>
182+
<option value="de">Germany</option>
183+
<option value="fr">France</option>
184+
<option value="jp">Japan</option>
185+
<option value="au">Australia</option>
186+
</select>
187+
</div>
188+
189+
<div style="margin-bottom: 20px;">
190+
<label for="dropdown2" style="display: block; margin-bottom: 5px; color: #666;">Select Priority:</label>
191+
<select id="dropdown2" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;">
192+
<option value="low">Low</option>
193+
<option value="medium" selected>Medium</option>
194+
<option value="high">High</option>
195+
<option value="critical">Critical</option>
196+
</select>
197+
</div>
198+
199+
<div style="margin-bottom: 20px;">
200+
<label for="dropdown3" style="display: block; margin-bottom: 5px; color: #666;">Select Category:</label>
201+
<select id="dropdown3" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;">
202+
<option value="bug">Bug Report</option>
203+
<option value="feature">Feature Request</option>
204+
<option value="question">Question</option>
205+
<option value="feedback">General Feedback</option>
206+
<option value="other">Other</option>
207+
</select>
208+
</div>
209+
</div>
172210
</div>
173211
</main>
174212

175213
<main class="main-placeholder-2" id="main2" style="display: none">
176214
<div class="wireframe-block--title"></div>
177-
<div>
178-
<input id="namefield" type="text" placeholder="Enter your name" />
215+
<div style="margin-bottom: 30px;">
216+
<input id="namefield" type="text" placeholder="Enter your name" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; margin-bottom: 20px;" />
217+
218+
<div style="margin-bottom: 20px;">
219+
<label for="dropdown4" style="display: block; margin-bottom: 5px; color: #666;">Select Language:</label>
220+
<select id="dropdown4" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;">
221+
<option value="en">English</option>
222+
<option value="es">Spanish</option>
223+
<option value="de">German</option>
224+
<option value="fr">French</option>
225+
<option value="it">Italian</option>
226+
<option value="pt">Portuguese</option>
227+
</select>
228+
</div>
229+
230+
<div style="margin-bottom: 20px;">
231+
<label for="dropdown5" style="display: block; margin-bottom: 5px; color: #666;">Select Status:</label>
232+
<select id="dropdown5" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;">
233+
<option value="active">Active</option>
234+
<option value="pending">Pending</option>
235+
<option value="inactive">Inactive</option>
236+
<option value="archived">Archived</option>
237+
</select>
238+
</div>
179239
</div>
180240
<div class="wireframe-block-2">
181241
<div class="wireframe-block--text" style="width: 80%"></div>

demo/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Gleap.setFrameUrl("http://0.0.0.0:3001");
44
Gleap.setApiUrl("http://0.0.0.0:9000");
55
Gleap.setWSApiUrl("ws://0.0.0.0:9000");
66

7-
Gleap.initialize("GnhEkS8fdwxNVjyn3BnYwKzpCkiHgKWL");
7+
Gleap.initialize("ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV");

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "15.0.0",
3+
"version": "15.0.1",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

published/15.0.1/index.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)