Skip to content

Commit 160f245

Browse files
committed
Updated build and version.
1 parent 8cdd76b commit 160f245

18 files changed

+30
-24
lines changed

Changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
### 4.13.4-rc.7
8+
#### Fixed
9+
- FIO-3561: Required field is showing as invalid and form can't be submitted
10+
- FIO-3500: fixed an issue where forms with nested forms inside components with incorrect custom conditions cannot be submitted
11+
- FIO-3476: Builder comp not dropped
12+
713
### 4.13.4-rc.6
814
#### Fixed
915
- FIO-3562: Separated timezone logic to be able to redefine it in typescript

dist/formio.contrib.js

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

dist/formio.contrib.min.js

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

dist/formio.contrib.min.js.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MIT License: http://getify.mit-license.org
1212
*/
1313

14-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
14+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */
1515

1616
/**
1717
* @license

dist/formio.embed.min.js.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
1+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */

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.js

+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.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
MIT License: http://getify.mit-license.org
4141
*/
4242

43-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
43+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */
4444

4545
/**
4646
* @license

dist/formio.full.js

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

dist/formio.full.min.js

+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.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
MIT License: http://getify.mit-license.org
4141
*/
4242

43-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
43+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */
4444

4545
/**
4646
* @license

dist/formio.js

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

dist/formio.min.js

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

dist/formio.min.js.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MIT License: http://getify.mit-license.org
1212
*/
1313

14-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
14+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */
1515

1616
/**
1717
* @license

dist/formio.utils.min.js.LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MIT License: http://getify.mit-license.org
1212
*/
1313

14-
/*! formiojs v4.13.5-rc.6 | https://unpkg.com/[email protected].6/LICENSE.txt */
14+
/*! formiojs v4.13.5-rc.7 | https://unpkg.com/[email protected].7/LICENSE.txt */
1515

1616
/**
1717
* @license

docs/index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31789,7 +31789,7 @@
3178931789
},
3179031790
{
3179131791
"kind": "packageJSON",
31792-
"content": "{\n \"name\": \"formiojs\",\n \"version\": \"4.13.5-rc.6\",\n \"description\": \"JavaScript powered Forms with JSON Form Builder\",\n \"main\": \"index.js\",\n \"types\": \"index.d.ts\",\n \"files\": [\n \"dist\",\n \"lib\",\n \"utils.js\",\n \"wizard.js\",\n \"form.js\",\n \"embed.js\",\n \"full.js\",\n \"types\",\n \"index.d.ts\"\n ],\n \"pre-commit\": [\n \"lint\"\n ],\n \"scripts\": {\n \"build\": \"esdoc;gulp build\",\n \"transpile\": \"babel ./src/ --out-dir ./lib/\",\n \"templates\": \"gulp templates\",\n \"watch\": \"babel -w ./src/ --out-dir ./lib/\",\n \"rebuild\": \"rm -rf node_modules;npm install;gulp build\",\n \"tag\": \"VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\\\",]//g' | tr -d '[[:space:]]');git add -A; git commit -m \\\"Build $Version\\\";git push origin master;git tag v$VERSION;git push origin --tags;\",\n \"dopublish\": \"npm test;gulp build;npm run tag;npm publish lib;\",\n \"lint\": \"gulp eslint\",\n \"serve\": \"jekyll serve --config _config.yml,_config.dev.yml\",\n \"test\": \"npm run transpile && npm run templates && npm run test:unit\",\n \"test:unit\": \"TZ=UTC mocha --require @babel/register --require jsdom-global/register 'lib/**/*.unit.js' -b -t 20000 --exit\",\n \"test:updateRenders\": \"TZ=UTC node --require @babel/register --require jsdom-global/register test/updateRenders.js\",\n \"test:e2e\": \"NODE_OPTIONS=\\\"--max-old-space-size=4096\\\" karma start --verbose --single-run\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/formio/formio.js.git\"\n },\n \"contributors\": [\n {\n \"name\": \"Form.io Open Source Community\",\n \"url\": \"https://github.com/formio/formio.js/graphs/contributors\"\n }\n ],\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/formio/formio.js/issues\"\n },\n \"browser\": {\n \"vm\": false\n },\n \"homepage\": \"https://github.com/formio/formio.js#readme\",\n \"dependencies\": {\n \"@formio/bootstrap3\": \"^2.11.4-rc.1\",\n \"@formio/choices.js\": \"^9.0.1\",\n \"@formio/semantic\": \"^2.5.3\",\n \"@formio/vanilla-text-mask\": \"^5.1.1\",\n \"autocompleter\": \"^6.1.2\",\n \"browser-cookies\": \"^1.2.0\",\n \"compare-versions\": \"^3.6.0\",\n \"core-js\": \"^3.16.0\",\n \"custom-event-polyfill\": \"^1.0.7\",\n \"dialog-polyfill\": \"^0.5.6\",\n \"dompurify\": \"^2.3.0\",\n \"downloadjs\": \"^1.4.7\",\n \"dragula\": \"^3.7.3\",\n \"eventemitter3\": \"^4.0.7\",\n \"fast-deep-equal\": \"^3.1.3\",\n \"fast-json-patch\": \"^2.2.1\",\n \"fetch-ponyfill\": \"^7.1.0\",\n \"i18next\": \"^20.3.5\",\n \"idb\": \"^6.1.2\",\n \"ismobilejs\": \"^1.1.1\",\n \"json-logic-js\": \"^2.0.0\",\n \"jstimezonedetect\": \"^1.0.7\",\n \"jwt-decode\": \"^3.1.2\",\n \"lodash\": \"^4.17.21\",\n \"moment\": \"^2.29.1\",\n \"moment-timezone\": \"^0.5.33\",\n \"native-promise-only\": \"^0.8.1\",\n \"quill\": \"^2.0.0-dev.3\",\n \"resize-observer-polyfill\": \"^1.5.1\",\n \"signature_pad\": \"^2.3.2\",\n \"string-hash\": \"^1.1.3\",\n \"text-mask-addons\": \"^3.8.0\",\n \"tooltip.js\": \"^1.3.3\",\n \"uuid\": \"^8.3.2\",\n \"vanilla-picker\": \"^2.11.2\"\n },\n \"devDependencies\": {\n \"@babel/cli\": \"^7.14.8\",\n \"@babel/core\": \"^7.14.8\",\n \"@babel/plugin-proposal-class-properties\": \"^7.14.5\",\n \"@babel/plugin-proposal-export-default-from\": \"^7.14.5\",\n \"@babel/plugin-proposal-optional-chaining\": \"^7.14.5\",\n \"@babel/polyfill\": \"^7.12.1\",\n \"@babel/preset-env\": \"^7.14.9\",\n \"@babel/register\": \"^7.14.5\",\n \"babel-eslint\": \"^10.1.0\",\n \"babel-loader\": \"^8.2.2\",\n \"bootstrap\": \"^4.6.0\",\n \"bootswatch\": \"^4.6.0\",\n \"browser-env\": \"^3.3.0\",\n \"chai\": \"^4.3.4\",\n \"chance\": \"^1.1.7\",\n \"del\": \"^6.0.0\",\n \"ejs-loader\": \"^0.5.0\",\n \"escape-string-regexp\": \"^5.0.0\",\n \"esdoc\": \"^1.0.4\",\n \"esdoc-ecmascript-proposal-plugin\": \"^1.0.0\",\n \"esdoc-standard-plugin\": \"^1.0.0\",\n \"eslint\": \"^7.32.0\",\n \"eslint-config-formio\": \"^1.1.4\",\n \"fetch-mock\": \"^9.11.0\",\n \"file-loader\": \"^6.2.0\",\n \"flatpickr\": \"4.6.6\",\n \"font-awesome\": \"^4.7.0\",\n \"gulp\": \"^4.0.2\",\n \"gulp-babel\": \"^8.0.0\",\n \"gulp-clean-css\": \"^4.3.0\",\n \"gulp-concat\": \"^2.6.1\",\n \"gulp-eslint\": \"^6.0.0\",\n \"gulp-filter\": \"^7.0.0\",\n \"gulp-insert\": \"^0.5.0\",\n \"gulp-rename\": \"^2.0.0\",\n \"gulp-replace\": \"^1.1.3\",\n \"gulp-sass\": \"^4.1.0\",\n \"gulp-sync\": \"^0.1.4\",\n \"gulp-template\": \"^5.0.0\",\n \"gulp-watch\": \"^5.0.1\",\n \"hoek\": \"^6.1.3\",\n \"jquery\": \"^3.5.1\",\n \"jsdom\": \"^16.6.0\",\n \"jsdom-global\": \"^3.0.2\",\n \"karma\": \"^6.3.4\",\n \"karma-chrome-launcher\": \"^3.1.0\",\n \"karma-mocha\": \"^2.0.1\",\n \"karma-mocha-reporter\": \"^2.2.5\",\n \"karma-phantomjs-launcher\": \"^1.0.4\",\n \"karma-webpack\": \"^5.0.0\",\n \"marked\": \"^2.1.3\",\n \"mocha\": \"^9.0.3\",\n \"natives\": \"^1.1.6\",\n \"power-assert\": \"^1.6.1\",\n \"pre-commit\": \"^1.2.2\",\n \"pretty\": \"^2.0.0\",\n \"pygments-css\": \"^1.0.0\",\n \"raw-loader\": \"^4.0.2\",\n \"shortcut-buttons-flatpickr\": \"^0.3.1\",\n \"sinon\": \"^11.1.2\",\n \"webpack\": \"^5.47.1\",\n \"webpack-stream\": \"^6.1.2\",\n \"written-number\": \"^0.11.1\"\n }\n}\n",
31792+
"content": "{\n \"name\": \"formiojs\",\n \"version\": \"4.13.5-rc.7\",\n \"description\": \"JavaScript powered Forms with JSON Form Builder\",\n \"main\": \"index.js\",\n \"types\": \"index.d.ts\",\n \"files\": [\n \"dist\",\n \"lib\",\n \"utils.js\",\n \"wizard.js\",\n \"form.js\",\n \"embed.js\",\n \"full.js\",\n \"types\",\n \"index.d.ts\"\n ],\n \"pre-commit\": [\n \"lint\"\n ],\n \"scripts\": {\n \"build\": \"esdoc;gulp build\",\n \"transpile\": \"babel ./src/ --out-dir ./lib/\",\n \"templates\": \"gulp templates\",\n \"watch\": \"babel -w ./src/ --out-dir ./lib/\",\n \"rebuild\": \"rm -rf node_modules;npm install;gulp build\",\n \"tag\": \"VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\\\",]//g' | tr -d '[[:space:]]');git add -A; git commit -m \\\"Build $Version\\\";git push origin master;git tag v$VERSION;git push origin --tags;\",\n \"dopublish\": \"npm test;gulp build;npm run tag;npm publish lib;\",\n \"lint\": \"gulp eslint\",\n \"serve\": \"jekyll serve --config _config.yml,_config.dev.yml\",\n \"test\": \"npm run transpile && npm run templates && npm run test:unit\",\n \"test:unit\": \"TZ=UTC mocha --require @babel/register --require jsdom-global/register 'lib/**/*.unit.js' -b -t 20000 --exit\",\n \"test:updateRenders\": \"TZ=UTC node --require @babel/register --require jsdom-global/register test/updateRenders.js\",\n \"test:e2e\": \"NODE_OPTIONS=\\\"--max-old-space-size=4096\\\" karma start --verbose --single-run\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/formio/formio.js.git\"\n },\n \"contributors\": [\n {\n \"name\": \"Form.io Open Source Community\",\n \"url\": \"https://github.com/formio/formio.js/graphs/contributors\"\n }\n ],\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/formio/formio.js/issues\"\n },\n \"browser\": {\n \"vm\": false\n },\n \"homepage\": \"https://github.com/formio/formio.js#readme\",\n \"dependencies\": {\n \"@formio/bootstrap3\": \"^2.11.4-rc.1\",\n \"@formio/choices.js\": \"^9.0.1\",\n \"@formio/semantic\": \"^2.5.3\",\n \"@formio/vanilla-text-mask\": \"^5.1.1\",\n \"autocompleter\": \"^6.1.2\",\n \"browser-cookies\": \"^1.2.0\",\n \"compare-versions\": \"^3.6.0\",\n \"core-js\": \"^3.16.0\",\n \"custom-event-polyfill\": \"^1.0.7\",\n \"dialog-polyfill\": \"^0.5.6\",\n \"dompurify\": \"^2.3.0\",\n \"downloadjs\": \"^1.4.7\",\n \"dragula\": \"^3.7.3\",\n \"eventemitter3\": \"^4.0.7\",\n \"fast-deep-equal\": \"^3.1.3\",\n \"fast-json-patch\": \"^2.2.1\",\n \"fetch-ponyfill\": \"^7.1.0\",\n \"i18next\": \"^20.3.5\",\n \"idb\": \"^6.1.2\",\n \"ismobilejs\": \"^1.1.1\",\n \"json-logic-js\": \"^2.0.0\",\n \"jstimezonedetect\": \"^1.0.7\",\n \"jwt-decode\": \"^3.1.2\",\n \"lodash\": \"^4.17.21\",\n \"moment\": \"^2.29.1\",\n \"moment-timezone\": \"^0.5.33\",\n \"native-promise-only\": \"^0.8.1\",\n \"quill\": \"^2.0.0-dev.3\",\n \"resize-observer-polyfill\": \"^1.5.1\",\n \"signature_pad\": \"^2.3.2\",\n \"string-hash\": \"^1.1.3\",\n \"text-mask-addons\": \"^3.8.0\",\n \"tooltip.js\": \"^1.3.3\",\n \"uuid\": \"^8.3.2\",\n \"vanilla-picker\": \"^2.11.2\"\n },\n \"devDependencies\": {\n \"@babel/cli\": \"^7.14.8\",\n \"@babel/core\": \"^7.14.8\",\n \"@babel/plugin-proposal-class-properties\": \"^7.14.5\",\n \"@babel/plugin-proposal-export-default-from\": \"^7.14.5\",\n \"@babel/plugin-proposal-optional-chaining\": \"^7.14.5\",\n \"@babel/polyfill\": \"^7.12.1\",\n \"@babel/preset-env\": \"^7.14.9\",\n \"@babel/register\": \"^7.14.5\",\n \"babel-eslint\": \"^10.1.0\",\n \"babel-loader\": \"^8.2.2\",\n \"bootstrap\": \"^4.6.0\",\n \"bootswatch\": \"^4.6.0\",\n \"browser-env\": \"^3.3.0\",\n \"chai\": \"^4.3.4\",\n \"chance\": \"^1.1.7\",\n \"del\": \"^6.0.0\",\n \"ejs-loader\": \"^0.5.0\",\n \"escape-string-regexp\": \"^5.0.0\",\n \"esdoc\": \"^1.0.4\",\n \"esdoc-ecmascript-proposal-plugin\": \"^1.0.0\",\n \"esdoc-standard-plugin\": \"^1.0.0\",\n \"eslint\": \"^7.32.0\",\n \"eslint-config-formio\": \"^1.1.4\",\n \"fetch-mock\": \"^9.11.0\",\n \"file-loader\": \"^6.2.0\",\n \"flatpickr\": \"4.6.6\",\n \"font-awesome\": \"^4.7.0\",\n \"gulp\": \"^4.0.2\",\n \"gulp-babel\": \"^8.0.0\",\n \"gulp-clean-css\": \"^4.3.0\",\n \"gulp-concat\": \"^2.6.1\",\n \"gulp-eslint\": \"^6.0.0\",\n \"gulp-filter\": \"^7.0.0\",\n \"gulp-insert\": \"^0.5.0\",\n \"gulp-rename\": \"^2.0.0\",\n \"gulp-replace\": \"^1.1.3\",\n \"gulp-sass\": \"^4.1.0\",\n \"gulp-sync\": \"^0.1.4\",\n \"gulp-template\": \"^5.0.0\",\n \"gulp-watch\": \"^5.0.1\",\n \"hoek\": \"^6.1.3\",\n \"jquery\": \"^3.5.1\",\n \"jsdom\": \"^16.6.0\",\n \"jsdom-global\": \"^3.0.2\",\n \"karma\": \"^6.3.4\",\n \"karma-chrome-launcher\": \"^3.1.0\",\n \"karma-mocha\": \"^2.0.1\",\n \"karma-mocha-reporter\": \"^2.2.5\",\n \"karma-phantomjs-launcher\": \"^1.0.4\",\n \"karma-webpack\": \"^5.0.0\",\n \"marked\": \"^2.1.3\",\n \"mocha\": \"^9.0.3\",\n \"natives\": \"^1.1.6\",\n \"power-assert\": \"^1.6.1\",\n \"pre-commit\": \"^1.2.2\",\n \"pretty\": \"^2.0.0\",\n \"pygments-css\": \"^1.0.0\",\n \"raw-loader\": \"^4.0.2\",\n \"shortcut-buttons-flatpickr\": \"^0.3.1\",\n \"sinon\": \"^11.1.2\",\n \"webpack\": \"^5.47.1\",\n \"webpack-stream\": \"^6.1.2\",\n \"written-number\": \"^0.11.1\"\n }\n}\n",
3179331793
"longname": "/Users/travistidwell/Documents/formio/modules/formio.js/package.json",
3179431794
"name": "package.json",
3179531795
"static": true,

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formiojs",
3-
"version": "4.13.5-rc.6",
3+
"version": "4.13.5-rc.7",
44
"description": "JavaScript powered Forms with JSON Form Builder",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)