Skip to content

Commit 7555e4c

Browse files
authored
Merge branch 'master' into feature/html-attributes
2 parents 4f7f072 + f30b5c2 commit 7555e4c

Some content is hidden

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

45 files changed

+106784
-105441
lines changed

Changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
### Added
99
- Ability to provide HTML attributes for components inputs
1010

11+
## 3.22.15
12+
### Changed
13+
- FOR-2415: Set file component to image mode by default when added via PDF builder
14+
- FOR-2416: Increase default size of file component PDF overlay
15+
- FOR-2417: Fix CSS rule for white-space:pre-wrap
16+
17+
18+
### Fixed
19+
- Fix bugs with day component
20+
- FOR-2379: Update CKE to 12.2.0-formio.2, enable image support
21+
1122
## 3.22.14
1223
### Changed
1324
- Reverted https://github.com/formio/formio.js/pull/1428 because it was causing issues with TextArea wysiwyg with default submissions showing up.

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.22.14",
4+
"version": "3.22.15",
55
"main": "dist/formio.min.js",
66
"license": "MIT",
77
"homepage": "https://github.com/formio/formio.js",

dist/formio.builder.css

+4-2
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,12 @@ dialog.fixed {
118118
display: none; }
119119

120120
/* Force native + Ace textareas to use pre-wrap whitespace in readonly mode (preserves visual linebreaks) */
121-
.formio-disabled-input.formio-component-nativeTextArea > .well,
122-
.formio-disabled-input.formio-component-ace > .well {
121+
.formio-disabled-input.formio-component-textarea > .well {
123122
white-space: pre-wrap; }
124123

124+
.formio-disabled-input.formio-component-textarea > .well * {
125+
white-space: initial; }
126+
125127
/* Force all textareas to break long words when overflowing (if width is set) */
126128
.formio-disabled-input.formio-component-textarea .well {
127129
overflow-wrap: break-word; }

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

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

dist/formio.contrib.min.js

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

dist/formio.embed.js

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

dist/formio.embed.min.js

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

dist/formio.form.css

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ dialog.fixed {
9595
display: none; }
9696

9797
/* Force native + Ace textareas to use pre-wrap whitespace in readonly mode (preserves visual linebreaks) */
98-
.formio-disabled-input.formio-component-nativeTextArea > .well,
99-
.formio-disabled-input.formio-component-ace > .well {
98+
.formio-disabled-input.formio-component-textarea > .well {
10099
white-space: pre-wrap; }
101100

101+
.formio-disabled-input.formio-component-textarea > .well * {
102+
white-space: initial; }
103+
102104
/* Force all textareas to break long words when overflowing (if width is set) */
103105
.formio-disabled-input.formio-component-textarea .well {
104106
overflow-wrap: break-word; }

dist/formio.form.js

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -2456,10 +2456,12 @@ dialog.fixed {
24562456
display: none; }
24572457

24582458
/* Force native + Ace textareas to use pre-wrap whitespace in readonly mode (preserves visual linebreaks) */
2459-
.formio-disabled-input.formio-component-nativeTextArea > .well,
2460-
.formio-disabled-input.formio-component-ace > .well {
2459+
.formio-disabled-input.formio-component-textarea > .well {
24612460
white-space: pre-wrap; }
24622461

2462+
.formio-disabled-input.formio-component-textarea > .well * {
2463+
white-space: initial; }
2464+
24632465
/* Force all textareas to break long words when overflowing (if width is set) */
24642466
.formio-disabled-input.formio-component-textarea .well {
24652467
overflow-wrap: break-word; }

dist/formio.full.js

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

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

dist/formio.min.js

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

dist/formio.utils.min.js

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

0 commit comments

Comments
 (0)