-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup: mobile styling fixes for chat component
- Loading branch information
1 parent
1804769
commit 7e70297
Showing
13 changed files
with
99 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,8 @@ declare module "solid-js" { | |
| problemLink | string (example: "mailto:[email protected]?subject=") | null | | ||
| responsive | boolean | false | | ||
| floatingButtonPosition | "top-left", "top-right", "bottom-left", or "bottom-right" | "bottom-right" | | ||
| showFloatingButton | boolean | false | | ||
| showFloatingButton | boolean | false | | ||
| buttonTriggers | { selector: "query-selector", mode: "chat" | "search" }[] | [] | | ||
|
||
### Search Results | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<link rel="stylesheet" href="/static/output.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/[email protected].27/dist/index.css" | ||
href="https://unpkg.com/[email protected].28/dist/index.css" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
|
@@ -274,7 +274,7 @@ | |
</style> | ||
|
||
<script type="module"> | ||
import {renderToDiv} from 'https://unpkg.com/[email protected].27/dist/vanilla/index.js'; | ||
import {renderToDiv} from 'https://unpkg.com/[email protected].28/dist/vanilla/index.js'; | ||
const root = document.getElementById('root'); | ||
renderToDiv(root, { | ||
... {{params | tojson}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
<code class="language-javascript"> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/[email protected].15/dist/index.css" | ||
href="https://unpkg.com/[email protected].27/dist/index.css" | ||
/> | ||
|
||
<script type="module"> | ||
import {renderToDiv} from 'https://unpkg.com/[email protected].15/dist/vanilla/index.js'; | ||
import {renderToDiv} from 'https://unpkg.com/[email protected].27/dist/vanilla/index.js'; | ||
window.addEventListener('load', () => { | ||
const root = document.getElementById('root'); | ||
renderToDiv(root, | ||
|
@@ -29,7 +29,7 @@ | |
analytics: {{ params.analytics }}, | ||
{% endif -%} | ||
{% if params.tags -%} | ||
tags: {{ params.tags }}, | ||
tags: {{ params.tags | tojson }}, | ||
{% endif -%} | ||
{% if params.responsive -%} | ||
responsive: {{ params.responsive }}, | ||
|
@@ -85,13 +85,14 @@ | |
{% if params.floatingButtongPosition -%} | ||
floatingButtongPosition: "{{ params.floatingButtongPosition }}", | ||
{% endif -%} | ||
{% if params.buttonTriggers -%} | ||
buttonTriggers: {{ params.buttonTriggers }}, | ||
{% endif -%} | ||
{% if params.debounceMs -%} | ||
debounceMs: {{ params.debounceMs }}, | ||
{% endif -%} | ||
|
||
) | ||
}); | ||
</script> | ||
|
||
</code> | ||
</pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters