@formio/js 5.0.0-rc.73 → 5.0.0-rc.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/formio.embed.js +1 -1
  2. package/dist/formio.embed.min.js +1 -1
  3. package/dist/formio.embed.min.js.LICENSE.txt +1 -1
  4. package/dist/formio.form.js +9 -9
  5. package/dist/formio.form.min.js +1 -1
  6. package/dist/formio.form.min.js.LICENSE.txt +1 -1
  7. package/dist/formio.full.js +10 -10
  8. package/dist/formio.full.min.js +1 -1
  9. package/dist/formio.full.min.js.LICENSE.txt +1 -1
  10. package/dist/formio.js +4 -4
  11. package/dist/formio.min.js +1 -1
  12. package/dist/formio.min.js.LICENSE.txt +1 -1
  13. package/dist/formio.utils.js +2 -2
  14. package/dist/formio.utils.min.js +1 -1
  15. package/dist/formio.utils.min.js.LICENSE.txt +1 -1
  16. package/lib/cjs/CDN.js +1 -2
  17. package/lib/cjs/Form.js +2 -2
  18. package/lib/cjs/Wizard.js +1 -1
  19. package/lib/cjs/components/day/Day.d.ts +2 -2
  20. package/lib/cjs/components/day/Day.js +3 -3
  21. package/lib/cjs/components/form/fixtures/index.d.ts +2 -1
  22. package/lib/cjs/components/form/fixtures/index.js +3 -1
  23. package/lib/cjs/components/form/fixtures/nestedWizardForm.d.ts +771 -0
  24. package/lib/cjs/components/form/fixtures/nestedWizardForm.js +765 -0
  25. package/lib/cjs/components/time/Time.form.js +2 -2
  26. package/lib/cjs/translations/en.d.ts +1 -0
  27. package/lib/cjs/translations/en.js +1 -0
  28. package/lib/mjs/CDN.js +1 -2
  29. package/lib/mjs/Form.js +2 -2
  30. package/lib/mjs/Wizard.js +1 -1
  31. package/lib/mjs/components/day/Day.d.ts +2 -2
  32. package/lib/mjs/components/day/Day.js +3 -3
  33. package/lib/mjs/components/form/fixtures/index.d.ts +2 -1
  34. package/lib/mjs/components/form/fixtures/index.js +2 -1
  35. package/lib/mjs/components/form/fixtures/nestedWizardForm.d.ts +771 -0
  36. package/lib/mjs/components/form/fixtures/nestedWizardForm.js +763 -0
  37. package/lib/mjs/components/time/Time.form.js +2 -2
  38. package/lib/mjs/translations/en.d.ts +1 -0
  39. package/lib/mjs/translations/en.js +1 -0
  40. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- import baseEditForm from '../_classes/component/Component.form';
1
+ import Components from '../Components';
2
2
  import TimeEditData from './editForm/Time.edit.data';
3
3
  import TimeEditDisplay from './editForm/Time.edit.display';
4
4
  /**
@@ -7,7 +7,7 @@ import TimeEditDisplay from './editForm/Time.edit.display';
7
7
  * @returns {import('@formio/core').Component[]} - The edit form components.
8
8
  */
9
9
  export default function (...extend) {
10
- return baseEditForm([
10
+ return Components.baseEditForm([
11
11
  {
12
12
  key: 'data',
13
13
  components: TimeEditData,
@@ -75,6 +75,7 @@ declare namespace _default {
75
75
  let typeRemaining: string;
76
76
  let typeCount: string;
77
77
  let requiredDayField: string;
78
+ let requiredDayEmpty: string;
78
79
  let requiredMonthField: string;
79
80
  let requiredYearField: string;
80
81
  }
@@ -75,6 +75,7 @@ export default {
75
75
  typeRemaining: '{{ remaining }} {{ type }} remaining.',
76
76
  typeCount: '{{ count }} {{ type }}',
77
77
  requiredDayField: '{{ field }} is required',
78
+ requiredDayEmpty: '{{ field }} is required',
78
79
  requiredMonthField: '{{ field }} is required',
79
80
  requiredYearField: '{{ field }} is required'
80
81
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formio/js",
3
- "version": "5.0.0-rc.73",
3
+ "version": "5.0.0-rc.75",
4
4
  "description": "JavaScript powered Forms with JSON Form Builder",
5
5
  "main": "lib/cjs/index.js",
6
6
  "exports": {
@@ -81,7 +81,7 @@
81
81
  "dependencies": {
82
82
  "@formio/bootstrap": "3.0.0-rc.37",
83
83
  "@formio/choices.js": "^10.2.1",
84
- "@formio/core": "2.2.2-rc.1",
84
+ "@formio/core": "2.2.2-rc.3",
85
85
  "@formio/text-mask-addons": "^3.8.0-formio.2",
86
86
  "@formio/vanilla-text-mask": "^5.1.1-formio.1",
87
87
  "abortcontroller-polyfill": "^1.7.5",