Skip to content

Commit 6a6aaf6

Browse files
Merge branch 'master' into bugfix/for-1239-nested-forms-validation
2 parents 51efa15 + acf7707 commit 6a6aaf6

25 files changed

+627
-209
lines changed

Changelog.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4747

4848
## Unreleased
4949
### Fixed
50-
- Fix nested forms validation.
50+
- Nested forms validation.
51+
52+
## 3.0.0-rc.14
53+
### Fixed
54+
- Bad build from previous release.
55+
56+
## 3.0.0-rc.13
57+
### Added
58+
- Ability to not show any buttons in rendered form.
59+
- Better feedback on the submit buttons when form is submitting and errors occur.
60+
61+
### Fixed
62+
- Wrong data being passed to EditGrid and DataGrid for some evals.
5163

5264
## 3.0.0-rc.12
5365
### Fixed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "formiojs",
33
"description": "Common js library for client side interaction with <form.io>",
4-
"version": "3.0.0-rc.12",
4+
"version": "3.0.0-rc.14",
55
"main": "dist/formio.min.js",
66
"license": "MIT",
77
"homepage": "https://github.com/formio/formio.js",

dist/formio.builder.css

+22
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,28 @@ dialog.fixed {
171171
margin-left: 5px;
172172
}
173173

174+
.formio-component-submit .submit-success::after {
175+
font-family: 'Glyphicons Halflings';
176+
content: '\e013';
177+
position: relative;
178+
right: -4px;
179+
top: 1;
180+
line-height: 1;
181+
}
182+
183+
.formio-component-submit .submit-fail::after {
184+
font-family: 'Glyphicons Halflings';
185+
content: '\e014';
186+
position: relative;
187+
right: -4px;
188+
top: 1;
189+
line-height: 1;
190+
}
191+
192+
.formio-component-submit .submit-fail[disabled] {
193+
opacity: 1;
194+
}
195+
174196
.form-control.flatpickr-input {
175197
background-color: #fff;
176198
}

dist/formio.builder.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.contrib.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.contrib.min.js

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.embed.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.embed.min.js

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.css

+22
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,28 @@ dialog.fixed {
148148
margin-left: 5px;
149149
}
150150

151+
.formio-component-submit .submit-success::after {
152+
font-family: 'Glyphicons Halflings';
153+
content: '\e013';
154+
position: relative;
155+
right: -4px;
156+
top: 1;
157+
line-height: 1;
158+
}
159+
160+
.formio-component-submit .submit-fail::after {
161+
font-family: 'Glyphicons Halflings';
162+
content: '\e014';
163+
position: relative;
164+
right: -4px;
165+
top: 1;
166+
line-height: 1;
167+
}
168+
169+
.formio-component-submit .submit-fail[disabled] {
170+
opacity: 1;
171+
}
172+
151173
.form-control.flatpickr-input {
152174
background-color: #fff;
153175
}

dist/formio.form.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.min.js

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.css

+22
Original file line numberDiff line numberDiff line change
@@ -2509,6 +2509,28 @@ dialog.fixed {
25092509
margin-left: 5px;
25102510
}
25112511

2512+
.formio-component-submit .submit-success::after {
2513+
font-family: 'Glyphicons Halflings';
2514+
content: '\e013';
2515+
position: relative;
2516+
right: -4px;
2517+
top: 1;
2518+
line-height: 1;
2519+
}
2520+
2521+
.formio-component-submit .submit-fail::after {
2522+
font-family: 'Glyphicons Halflings';
2523+
content: '\e014';
2524+
position: relative;
2525+
right: -4px;
2526+
top: 1;
2527+
line-height: 1;
2528+
}
2529+
2530+
.formio-component-submit .submit-fail[disabled] {
2531+
opacity: 1;
2532+
}
2533+
25122534
.form-control.flatpickr-input {
25132535
background-color: #fff;
25142536
}

dist/formio.full.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.min.js

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.utils.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.utils.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)