Skip to content

Commit 774f658

Browse files
committed
Merge branch 'develop'
2 parents 3c999a0 + ce494e6 commit 774f658

File tree

9 files changed

+16
-10
lines changed

9 files changed

+16
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Include ConversationalForm in your page:
1818

1919
```html
20-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.80/dist/conversational-form.min.js" crossorigin></script>
20+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin></script>
2121
```
2222
Or download the latest release:
2323
- Clone the repo: ````git clone https://github.com/space10-community/conversational-form.git````

bower.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
{
22
"name": "conversational-form",
3-
"version": "0.9.82",
3+
"version": "0.9.83",
44
"authors": [
55
{
66
"name" : "Daniel Friis",
77
"email": "daniel@space10.oi",
88
"url" : "http://space10.io"
9-
}, {
9+
},
10+
{
1011
"name" : "Felix Nielsen",
1112
"email": "felix.nielsen@rwatgg.dk",
1213
"url" : "http://rwatgg.dk"
14+
},
15+
{
16+
"name" : "Jens Soegaard",
17+
"email": "jens@jenssogaard.com",
18+
"url" : "https://jenssogaard.com"
1319
}
1420
],
1521
"devDependencies": {

dist/conversational-form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5437,7 +5437,7 @@ var cf;
54375437
(function (cf_1) {
54385438
var ConversationalForm = /** @class */ (function () {
54395439
function ConversationalForm(options) {
5440-
this.version = "0.9.81";
5440+
this.version = "0.9.83";
54415441
this.cdnPath = "https://cdn.jsdelivr.net/gh/space10-community/conversational-form@{version}/dist/";
54425442
this.isDevelopment = false;
54435443
this.loadExternalStyleSheet = true;

dist/conversational-form.min.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.

docs/0.9.80/functionality/custom-placeholder/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="description" content="Conversational Form is an open-source concept by SPACE10 to easily turn any form element on a web page into a conversational form interface.">
1010
<meta name="keywords" content="conversational interfaces, conversational form, interface, bot, cui">
11-
<link rel="icon" href="../../assets/favicon.ico">
11+
<link rel="icon" href="../assets/favicon.ico">
1212

1313
<link rel="publisher" href="http://space10.io/"/>
1414

docs/0.9.80/getting-started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h1 id="getting-started">Getting Started</h1>
134134
<p>Turning web forms into conversations. Conversational Form is an open-source concept by <a href="https://space10.io/" target="_blank">SPACE10</a> to easily turn any form element on a web page into a conversational form interface. It features conversational replacement of all input elements, reusable variables from previous questions and complete customization and control over the styling.</p>
135135

136136
<h2 id="include-conversationalform-in-your-page">Include ConversationalForm in your page</h2>
137-
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.80/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
137+
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
138138

139139
<p>ConversationalForm will automatically look through the DOM for a form element with the attibute cf-form, and auto-instantiate.</p>
140140
<pre><code class="language-html" data-lang="html">&lt;form id="my-form-element" cf-form ...></code></pre>

docs/0.9.80/src/pages/getting-started/index.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<p>Turning web forms into conversations. Conversational Form is an open-source concept by <a href="https://space10.io/" target="_blank">SPACE10</a> to easily turn any form element on a web page into a conversational form interface. It features conversational replacement of all input elements, reusable variables from previous questions and complete customization and control over the styling.</p>
99

1010
<h2 id="include-conversationalform-in-your-page">Include ConversationalForm in your page</h2>
11-
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@{{nextVersion}}/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
11+
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
1212

1313
<p>ConversationalForm will automatically look through the DOM for a form element with the attibute cf-form, and auto-instantiate.</p>
1414
<pre><code class="language-html" data-lang="html">&lt;form id="my-form-element" cf-form ...></code></pre>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "conversational-form",
3-
"version": "0.9.82",
3+
"version": "0.9.83",
44
"description": "Turning web forms into conversations",
55
"main": "dist/conversational-form.js",
66
"directories": {

src/scripts/cf/ConversationalForm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ namespace cf {
8484
}
8585

8686
export class ConversationalForm{
87-
public version: string = "0.9.81";
87+
public version: string = "0.9.83";
8888

8989
public static animationsEnabled: boolean = true;
9090
public static illustrateAppFlow: boolean = true;

0 commit comments

Comments
 (0)