Skip to content

Commit 5edabd0

Browse files
authored
Merge branch 'master' into feature/focus-blur-events
2 parents 8eeb261 + acf7707 commit 5edabd0

34 files changed

+766
-274
lines changed

Changelog.md

+27
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4949
### Added
5050
- `focus` and `blur` events.
5151

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.
63+
64+
## 3.0.0-rc.12
65+
### Fixed
66+
- Problem with the PDF Builder where you would not see the builder elemements.
67+
- Fix default value on checkboxes.
68+
- Fix multiple required file fields not requiring uploading a file.
69+
70+
### Added
71+
- Make rowIndex available on editgrids and datagrids.
72+
- Add custom class name to table component.
73+
- Add the ability for events to trigger field logic.
74+
- Add option to trigger validations when button is pressed.
75+
76+
### Changed
77+
- Upgrade i18next@11.3.3
78+
5279
## 3.0.0-rc.11
5380
### Fixed
5481
- Some issues with the Formio constructor to determine the project, form, and submission paths for certain urls.

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.11",
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

+4-4
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

+9-9
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

+9-9
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

+13-13
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)