Skip to content

Commit 0a9506e

Browse files
committed
Prepped docs and dist files for 0.9.80 release
1 parent 3f4c30d commit 0a9506e

File tree

82 files changed

+14323
-536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+14323
-536
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a href="https://medium.com/conversational-interfaces/introducing-the-conversational-form-c3166eb2ee2f#.yq5axcfcq"><strong>Learn why we did it</strong></a>
77
</p>
88
<p align="center">
9-
<a href="https://space10-community.github.io/conversational-form/docs/0.9.71/"><strong>Explore Conversational Form docs »</strong></a>
9+
<a href="https://space10-community.github.io/conversational-form/docs/0.9.80/"><strong>Explore Conversational Form docs »</strong></a>
1010
</p>
1111
<p align="center">
1212
<img src="https://raw.githubusercontent.com/space10-community/conversational-form/master/docs/0.9.70/assets/readme-cf.gif" />
@@ -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.71/dist/conversational-form.min.js" crossorigin></script>
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>
2121
```
2222
Or download the latest release:
2323
- Clone the repo: ````git clone https://github.com/space10-community/conversational-form.git````
@@ -33,7 +33,7 @@ ConversationalForm will automatically look through the DOM for a form element wi
3333

3434
[jsbin](https://jsbin.com/vopuxukaze/edit?html,js,output)
3535

36-
Read the [Getting started](https://space10-community.github.io/conversational-form/docs/0.9.71/getting-started/) page for information on the framework contents, options, templates and examples and more.
36+
Read the [Getting started](https://space10-community.github.io/conversational-form/docs/0.9.80/getting-started/) page for information on the framework contents, options, templates and examples and more.
3737

3838
## Status
3939
[![npm version](https://img.shields.io/npm/v/conversational-form.svg)](https://www.npmjs.com/package/conversational-form)

bower.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.6",
3+
"version": "0.9.80",
44
"authors": [
55
{
66
"name" : "Daniel Friis",

dist/conversational-form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5432,7 +5432,7 @@ var cf;
54325432
(function (cf_1) {
54335433
var ConversationalForm = /** @class */ (function () {
54345434
function ConversationalForm(options) {
5435-
this.version = "0.9.71";
5435+
this.version = "0.9.80";
54365436
this.cdnPath = "https://cdn.jsdelivr.net/gh/space10-community/conversational-form@{version}/dist/";
54375437
this.isDevelopment = false;
54385438
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/DOM-element-attributes/index.html

Lines changed: 224 additions & 0 deletions
Large diffs are not rendered by default.

docs/0.9.80/appearance/index.html

Lines changed: 151 additions & 0 deletions
Large diffs are not rendered by default.

docs/0.9.80/assets/favicon.ico

14.7 KB
Binary file not shown.

docs/0.9.80/assets/formless.json

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"options": {
3+
"preventAutoAppend": true,
4+
"preventAutoFocus": true,
5+
"submitCallback": "window.onFormlessSubmited"
6+
},
7+
"tags": [
8+
{
9+
"tag": "input",
10+
"type": "text",
11+
"id": "first-tag",
12+
"value": "Prefilled value here",
13+
"cf-questions": "Prefilled1&&with follow-up1&&with follow-up11||Prefilled2&&with follow-up2&&with follow-up22"
14+
},
15+
{
16+
"tag": "select",
17+
"cf-input-placeholder": "Choose one of the above",
18+
"multiple": "multiple",
19+
"cf-questions": "Choose multiple of the elements from the list",
20+
"children":[
21+
{
22+
"tag": "option",
23+
"name": "option-dropdown-1",
24+
"cf-label": "option-1",
25+
"value": "-1"
26+
},
27+
{
28+
"tag": "option",
29+
"name": "option-dropdown-1",
30+
"cf-label": "option-2",
31+
"value": "-2"
32+
}
33+
]
34+
},
35+
{
36+
"tag": "fieldset",
37+
"type": "Radio buttons",
38+
"cf-input-placeholder": "Choose one of the above",
39+
"cf-questions": "Choose one of the radioss",
40+
"children":[
41+
{
42+
"tag": "input",
43+
"type": "radio",
44+
"name": "radio-buttons-1",
45+
"cf-label": "radio-1",
46+
"checked": "checked"
47+
},
48+
{
49+
"tag": "input",
50+
"type": "radio",
51+
"name": "radio-buttons-1",
52+
"cf-label": "radio-2"
53+
}
54+
]
55+
},
56+
{
57+
"tag": "fieldset",
58+
"type": "Checkboxes",
59+
"cf-input-placeholder": "Choose above",
60+
"cf-questions": "Choose some checkboxes",
61+
"children":[
62+
{
63+
"tag": "input",
64+
"type": "checkbox",
65+
"name": "checkboxes-buttons-1",
66+
"cf-label": "checkbox-1",
67+
"checked": "checked"
68+
},
69+
{
70+
"tag": "input",
71+
"type": "checkbox",
72+
"name": "checkboxes-buttons-1",
73+
"cf-label": "checkbox-2"
74+
}
75+
]
76+
},
77+
{
78+
"tag": "input",
79+
"type": "password",
80+
"cf-input-placeholder": "Password field",
81+
"cf-questions": "Write a password"
82+
},
83+
{
84+
"tag": "input",
85+
"type": "text",
86+
"pattern": ".{5,10}",
87+
"cf-input-placeholder": "Input w. pattern attribute",
88+
"cf-error": "No less than 5 and no more than 10 characters",
89+
"cf-questions": "Keep between 5-10 characters"
90+
},
91+
{
92+
"tag": "input",
93+
"type": "text",
94+
"required": "required",
95+
"cf-questions": "This field is required (attribute)",
96+
"cf-error": "Please write something"
97+
},
98+
{
99+
"tag": "input",
100+
"type": "text",
101+
"required": "required",
102+
"cf-questions": "This field uses window.testValidation",
103+
"cf-validation": "window.testValidation",
104+
"cf-error": "Check the window.testValidation method"
105+
}
106+
]
107+
}

docs/0.9.80/assets/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)