@formio/js 5.0.0-rc.45 → 5.0.0-rc.47

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 (60) 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 +6 -476
  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 +6 -186
  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 +2 -2
  11. package/dist/formio.min.js +1 -1
  12. package/dist/formio.min.js.LICENSE.txt +1 -1
  13. package/dist/formio.utils.js +1897 -429
  14. package/dist/formio.utils.min.js +1 -1
  15. package/dist/formio.utils.min.js.LICENSE.txt +9 -1
  16. package/lib/cjs/Webform.d.ts +2 -2
  17. package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +2 -2
  18. package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.form.d.ts +2 -2
  19. package/lib/cjs/addons/index.d.ts +2 -2
  20. package/lib/cjs/components/Components.d.ts +3 -3
  21. package/lib/cjs/components/_classes/component/editForm/Component.edit.addons.d.ts +2 -2
  22. package/lib/cjs/components/_classes/component/editForm/Component.edit.conditional.d.ts +1 -1
  23. package/lib/cjs/components/_classes/component/editForm/Component.edit.data.d.ts +1 -1
  24. package/lib/cjs/components/_classes/component/editForm/Component.edit.validation.d.ts +1 -1
  25. package/lib/cjs/components/_classes/component/editForm/utils.d.ts +1 -1
  26. package/lib/cjs/components/datetime/editForm/DateTime.edit.date.d.ts +1 -1
  27. package/lib/cjs/components/editgrid/editForm/EditGrid.edit.templates.d.ts +1 -1
  28. package/lib/cjs/components/form/editForm/Form.edit.data.d.ts +1 -1
  29. package/lib/cjs/components/panel/editForm/Panel.edit.conditional.d.ts +1 -1
  30. package/lib/cjs/formio.form.d.ts +1 -0
  31. package/lib/cjs/formio.form.js +3 -1
  32. package/lib/cjs/utils/Evaluator.d.ts +7 -3
  33. package/lib/cjs/utils/Evaluator.js +12 -18
  34. package/lib/cjs/utils/formUtils.d.ts +38 -165
  35. package/lib/cjs/utils/formUtils.js +36 -566
  36. package/lib/cjs/utils/utils.d.ts +2 -2
  37. package/lib/cjs/utils/utils.js +9 -9
  38. package/lib/mjs/Webform.d.ts +2 -2
  39. package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +2 -2
  40. package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.form.d.ts +2 -2
  41. package/lib/mjs/addons/index.d.ts +2 -2
  42. package/lib/mjs/components/Components.d.ts +3 -3
  43. package/lib/mjs/components/_classes/component/editForm/Component.edit.addons.d.ts +2 -2
  44. package/lib/mjs/components/_classes/component/editForm/Component.edit.conditional.d.ts +1 -1
  45. package/lib/mjs/components/_classes/component/editForm/Component.edit.data.d.ts +1 -1
  46. package/lib/mjs/components/_classes/component/editForm/Component.edit.validation.d.ts +1 -1
  47. package/lib/mjs/components/_classes/component/editForm/utils.d.ts +1 -1
  48. package/lib/mjs/components/datetime/editForm/DateTime.edit.date.d.ts +1 -1
  49. package/lib/mjs/components/editgrid/editForm/EditGrid.edit.templates.d.ts +1 -1
  50. package/lib/mjs/components/form/editForm/Form.edit.data.d.ts +1 -1
  51. package/lib/mjs/components/panel/editForm/Panel.edit.conditional.d.ts +1 -1
  52. package/lib/mjs/formio.form.d.ts +1 -0
  53. package/lib/mjs/formio.form.js +1 -0
  54. package/lib/mjs/utils/Evaluator.d.ts +7 -3
  55. package/lib/mjs/utils/Evaluator.js +10 -18
  56. package/lib/mjs/utils/formUtils.d.ts +38 -165
  57. package/lib/mjs/utils/formUtils.js +3 -550
  58. package/lib/mjs/utils/utils.d.ts +2 -2
  59. package/lib/mjs/utils/utils.js +1 -1
  60. package/package.json +1 -1
@@ -578,7 +578,7 @@ export type FormOptions = {
578
578
  /**
579
579
  * - The render mode for this form.
580
580
  */
581
- renderMode?: "html" | "form" | "flat" | "builder" | "pdf" | undefined;
581
+ renderMode?: "flat" | "builder" | "form" | "html" | "pdf" | undefined;
582
582
  /**
583
583
  * - Highlight any errors on the form.
584
584
  */
@@ -648,7 +648,7 @@ export type FormOptions = {
648
648
  /**
649
649
  * - The display for this form.
650
650
  */
651
- display?: "form" | "wizard" | "pdf" | undefined;
651
+ display?: "wizard" | "form" | "pdf" | undefined;
652
652
  /**
653
653
  * - The CDN url for this form.
654
654
  */
@@ -23,7 +23,7 @@ export default class PasswordStrengthAddon extends FormioAddon {
23
23
  'margin-bottom': string;
24
24
  };
25
25
  key: string;
26
- customConditional(): boolean;
26
+ customConditional(): any;
27
27
  components: ({
28
28
  type: string;
29
29
  key: any;
@@ -321,7 +321,7 @@ export default class PasswordStrengthAddon extends FormioAddon {
321
321
  'margin-bottom': string;
322
322
  };
323
323
  key: string;
324
- customConditional(): boolean;
324
+ customConditional(): any;
325
325
  components: ({
326
326
  type: string;
327
327
  key: any;
@@ -19,7 +19,7 @@ declare const _default: ({
19
19
  'margin-bottom': string;
20
20
  };
21
21
  key: string;
22
- customConditional(): boolean;
22
+ customConditional(): any;
23
23
  components: ({
24
24
  type: string;
25
25
  key: any;
@@ -317,7 +317,7 @@ declare const _default: ({
317
317
  'margin-bottom': string;
318
318
  };
319
319
  key: string;
320
- customConditional(): boolean;
320
+ customConditional(): any;
321
321
  components: ({
322
322
  type: string;
323
323
  key: any;
@@ -24,7 +24,7 @@ export const editForms: {
24
24
  'margin-bottom': string;
25
25
  };
26
26
  key: string;
27
- customConditional(): boolean;
27
+ customConditional(): any;
28
28
  components: ({
29
29
  type: string;
30
30
  key: any;
@@ -322,7 +322,7 @@ export const editForms: {
322
322
  'margin-bottom': string;
323
323
  };
324
324
  key: string;
325
- customConditional(): boolean;
325
+ customConditional(): any;
326
326
  components: ({
327
327
  type: string;
328
328
  key: any;
@@ -28,7 +28,7 @@ export default class Components {
28
28
  'margin-bottom': string;
29
29
  };
30
30
  key: string;
31
- customConditional(): boolean;
31
+ customConditional(): any;
32
32
  components: ({
33
33
  type: string;
34
34
  key: any;
@@ -112,7 +112,7 @@ export default class Components {
112
112
  'margin-bottom': string;
113
113
  };
114
114
  key: string;
115
- customConditional(): boolean;
115
+ customConditional(): any;
116
116
  components: ({
117
117
  type: string;
118
118
  key: any;
@@ -195,7 +195,7 @@ export default class Components {
195
195
  'margin-bottom': string;
196
196
  };
197
197
  key: string;
198
- customConditional(): boolean;
198
+ customConditional(): any;
199
199
  components: ({
200
200
  type: string;
201
201
  key: any;
@@ -36,7 +36,7 @@ declare const _default: {
36
36
  'margin-bottom': string;
37
37
  };
38
38
  key: string;
39
- customConditional(): boolean;
39
+ customConditional(): any;
40
40
  components: ({
41
41
  type: string;
42
42
  key: any;
@@ -334,7 +334,7 @@ declare const _default: {
334
334
  'margin-bottom': string;
335
335
  };
336
336
  key: string;
337
- customConditional(): boolean;
337
+ customConditional(): any;
338
338
  components: ({
339
339
  type: string;
340
340
  key: any;
@@ -19,7 +19,7 @@ declare const _default: ({
19
19
  'margin-bottom': string;
20
20
  };
21
21
  key: string;
22
- customConditional(): boolean;
22
+ customConditional(): any;
23
23
  components: ({
24
24
  type: string;
25
25
  key: any;
@@ -19,7 +19,7 @@ declare const _default: ({
19
19
  'margin-bottom': string;
20
20
  };
21
21
  key: string;
22
- customConditional(): boolean;
22
+ customConditional(): any;
23
23
  components: ({
24
24
  type: string;
25
25
  key: any;
@@ -64,7 +64,7 @@ declare const _default: ({
64
64
  };
65
65
  key: string;
66
66
  weight: number;
67
- customConditional(): boolean;
67
+ customConditional(): any;
68
68
  components: ({
69
69
  type: string;
70
70
  tag: string;
@@ -28,7 +28,7 @@ declare namespace EditFormUtils {
28
28
  'margin-bottom': string;
29
29
  };
30
30
  key: string;
31
- customConditional(): boolean;
31
+ customConditional(): any;
32
32
  components: ({
33
33
  type: string;
34
34
  key: any;
@@ -39,7 +39,7 @@ declare const _default: ({
39
39
  'margin-bottom': string;
40
40
  };
41
41
  key: string;
42
- customConditional(): boolean;
42
+ customConditional(): any;
43
43
  components: ({
44
44
  type: string;
45
45
  tag: string;
@@ -25,7 +25,7 @@ declare const _default: ({
25
25
  placeholder: string;
26
26
  description: string;
27
27
  tooltip: string;
28
- customConditional(): boolean;
28
+ customConditional(): any;
29
29
  clearOnHide?: undefined;
30
30
  weight?: undefined;
31
31
  } | {
@@ -19,7 +19,7 @@ declare const _default: ({
19
19
  'margin-bottom': string;
20
20
  };
21
21
  key: string;
22
- customConditional(): boolean;
22
+ customConditional(): any;
23
23
  components: ({
24
24
  type: string;
25
25
  key: any;
@@ -20,7 +20,7 @@ declare const _default: {
20
20
  'margin-bottom': string;
21
21
  };
22
22
  key: string;
23
- customConditional(): boolean;
23
+ customConditional(): any;
24
24
  components: ({
25
25
  type: string;
26
26
  key: any;
@@ -5,6 +5,7 @@
5
5
  */
6
6
  export function registerModule(mod: any, defaultFn?: null, options?: {}): void;
7
7
  export function useModule(defaultFn?: null): (plugins: any, options?: {}) => void;
8
+ export { Formio as FormioCore } from "./Formio";
8
9
  import Components from './components/Components';
9
10
  import Displays from './displays/Displays';
10
11
  import Providers from './providers';
@@ -117,5 +117,6 @@ export function useModule(defaultFn = null) {
117
117
  * Formio.plugins([plugin1, plugin2, etc], options);
118
118
  */
119
119
  Formio.use = useModule();
120
+ export { Formio as FormioCore } from './Formio';
120
121
  // Export the components.
121
122
  export { Components, Displays, Providers, Widgets, Templates, Utils, Form, Formio, Licenses, EventEmitter, Webform };
@@ -1,4 +1,8 @@
1
- export default Evaluator;
2
- declare namespace Evaluator {
3
- function registerEvaluator(evaluator: any): void;
1
+ export class Evaluator {
2
+ static cache: {};
3
+ static protectedEval: boolean;
4
+ static noeval: boolean;
5
+ static template(template: any, hash: any): any;
6
+ static interpolate(rawTemplate: any, data: any, _options: any): any;
7
+ static evaluate(func: any, args: any): any;
4
8
  }
@@ -1,13 +1,11 @@
1
1
  import _ from 'lodash';
2
2
  import stringHash from 'string-hash';
3
3
  import { Evaluator as CoreEvaluator } from '@formio/core/utils';
4
- const Evaluator = {
5
- noeval: false,
6
- protectedEval: false, // This property can be customized only by plugins
7
- cache: {},
8
- templateSettings: CoreEvaluator.templateSettings,
9
- evaluator: CoreEvaluator.evaluator,
10
- template(template, hash) {
4
+ export class Evaluator extends CoreEvaluator {
5
+ static cache = {};
6
+ static protectedEval = false;
7
+ static noeval = false;
8
+ static template(template, hash) {
11
9
  hash = hash || stringHash(template);
12
10
  if (Evaluator.cache[hash]) {
13
11
  return Evaluator.cache[hash];
@@ -20,8 +18,8 @@ const Evaluator = {
20
18
  catch (err) {
21
19
  console.warn('Error while processing template', err, template);
22
20
  }
23
- },
24
- interpolate(rawTemplate, data, _options) {
21
+ }
22
+ static interpolate(rawTemplate, data, _options) {
25
23
  // Ensure reverse compatability.
26
24
  const options = _.isObject(_options) ? _options : { noeval: _options };
27
25
  if (typeof rawTemplate === 'function') {
@@ -51,14 +49,8 @@ const Evaluator = {
51
49
  }
52
50
  }
53
51
  return template;
54
- },
55
- evaluate(func, args) {
52
+ }
53
+ static evaluate(func, args) {
56
54
  return Array.isArray(args) ? func(...args) : func(args);
57
55
  }
58
- };
59
- Evaluator.registerEvaluator = (evaluator) => {
60
- Object.keys(evaluator).forEach((key) => {
61
- Evaluator[key] = evaluator[key];
62
- });
63
- };
64
- export default Evaluator;
56
+ }
@@ -1,56 +1,3 @@
1
- /**
2
- * Determine if a component is a layout component or not.
3
- *
4
- * @param {Object} component
5
- * The component to check.
6
- *
7
- * @returns {Boolean}
8
- * Whether or not the component is a layout component.
9
- */
10
- export function isLayoutComponent(component: Object): boolean;
11
- /**
12
- * Iterate through each component within a form.
13
- *
14
- * @param {Object} components
15
- * The components to iterate.
16
- * @param {Function} fn
17
- * The iteration function to invoke for each component.
18
- * @param {Boolean} includeAll
19
- * Whether or not to include layout components.
20
- * @param {String} path
21
- * The current data path of the element. Example: data.user.firstName
22
- * @param {Object} parent
23
- * The parent object.
24
- */
25
- export function eachComponent(components: Object, fn: Function, includeAll: boolean, path: string, parent: Object, inRecursion: any): void;
26
- /**
27
- * Matches if a component matches the query.
28
- *
29
- * @param component
30
- * @param query
31
- * @return {boolean}
32
- */
33
- export function matchComponent(component: any, query: any): boolean;
34
- /**
35
- * Get a component by its key
36
- *
37
- * @param {Object} components
38
- * The components to iterate.
39
- * @param {String|Object} key
40
- * The key of the component to get, or a query of the component to search.
41
- *
42
- * @returns {Object}
43
- * The component that matches the given key, or undefined if not found.
44
- */
45
- export function getComponent(components: Object, key: string | Object, includeAll: any): Object;
46
- /**
47
- * Finds a component provided a query of properties of that component.
48
- *
49
- * @param components
50
- * @param query
51
- * @return {*}
52
- */
53
- export function searchComponents(components: any, query: any): any;
54
1
  /**
55
2
  * Deprecated version of findComponents. Renamed to searchComponents.
56
3
  *
@@ -59,115 +6,41 @@ export function searchComponents(components: any, query: any): any;
59
6
  * @returns {*}
60
7
  */
61
8
  export function findComponents(components: any, query: any): any;
62
- /**
63
- * This function will find a component in a form and return the component AND THE PATH to the component in the form.
64
- * Path to the component is stored as an array of nested components and their indexes.The Path is being filled recursively
65
- * when you iterating through the nested structure.
66
- * If the component is not found the callback won't be called and function won't return anything.
67
- *
68
- * @param components
69
- * @param key
70
- * @param fn
71
- * @param path
72
- * @returns {*}
73
- */
74
- export function findComponent(components: any, key: any, path: any, fn: any): any;
75
- /**
76
- * Remove a component by path.
77
- *
78
- * @param components
79
- * @param path
80
- */
81
- export function removeComponent(components: any, path: any): void;
82
- export function generateFormChange(type: any, data: any): {
83
- op: string;
84
- key: any;
85
- container: any;
86
- path: any;
87
- index: any;
88
- component: any;
89
- patches?: undefined;
90
- } | {
91
- op: string;
92
- key: any;
93
- patches: import("fast-json-patch").Operation[];
94
- container?: undefined;
95
- path?: undefined;
96
- index?: undefined;
97
- component?: undefined;
98
- } | {
99
- op: string;
100
- key: any;
101
- container?: undefined;
102
- path?: undefined;
103
- index?: undefined;
104
- component?: undefined;
105
- patches?: undefined;
106
- } | null | undefined;
107
- export function applyFormChanges(form: any, changes: any): {
108
- form: any;
109
- failed: any[];
110
- };
111
- /**
112
- * Flatten the form components for data manipulation.
113
- *
114
- * @param {Object} components
115
- * The components to iterate.
116
- * @param {Boolean} includeAll
117
- * Whether or not to include layout components.
118
- *
119
- * @returns {Object}
120
- * The flattened components map.
121
- */
122
- export function flattenComponents(components: Object, includeAll?: boolean): Object;
123
- /**
124
- * Returns if this component has a conditional statement.
125
- *
126
- * @param component - The component JSON schema.
127
- *
128
- * @returns {boolean} - TRUE - This component has a conditional, FALSE - No conditional provided.
129
- */
130
- export function hasCondition(component: any): boolean;
131
- /**
132
- * Extension of standard #parseFloat(value) function, that also clears input string.
133
- *
134
- * @param {any} value
135
- * The value to parse.
136
- *
137
- * @returns {Number}
138
- * Parsed value.
139
- */
140
- export function parseFloatExt(value: any): number;
141
- /**
142
- * Formats provided value in way how Currency component uses it.
143
- *
144
- * @param {any} value
145
- * The value to format.
146
- *
147
- * @returns {String}
148
- * Value formatted for Currency component.
149
- */
150
- export function formatAsCurrency(value: any): string;
151
- /**
152
- * Escapes RegEx characters in provided String value.
153
- *
154
- * @param {String} value
155
- * String for escaping RegEx characters.
156
- * @returns {string}
157
- * String with escaped RegEx characters.
158
- */
159
- export function escapeRegExCharacters(value: string): string;
160
- /**
161
- * Get the value for a component key, in the given submission.
162
- *
163
- * @param {Object} submission
164
- * A submission object to search.
165
- * @param {String} key
166
- * A for components API key to search for.
167
- */
168
- export function getValue(submission: Object, key: string): any;
169
- /**
170
- * Iterate over all components in a form and get string values for translation.
171
- * @param form
172
- */
173
- export function getStrings(form: any): any[];
9
+ export const flattenComponents: typeof Utils.flattenComponents;
10
+ export const guid: typeof Utils.guid;
11
+ export const uniqueName: typeof Utils.uniqueName;
12
+ export const MODEL_TYPES: Record<string, string[]>;
13
+ export const getModelType: typeof Utils.getModelType;
14
+ export const getComponentAbsolutePath: typeof Utils.getComponentAbsolutePath;
15
+ export const getComponentPath: typeof Utils.getComponentPath;
16
+ export const isComponentModelType: typeof Utils.isComponentModelType;
17
+ export const isComponentNestedDataType: typeof Utils.isComponentNestedDataType;
18
+ export const componentPath: typeof Utils.componentPath;
19
+ export const componentChildPath: (component: any, parentPath?: string | undefined, path?: string | undefined) => string;
20
+ export const eachComponentDataAsync: (components: Component[], data: DataObject, fn: AsyncComponentDataCallback, path?: string | undefined, index?: number | undefined, parent?: any, includeAll?: boolean | undefined) => Promise<void>;
21
+ export const eachComponentData: (components: Component[], data: DataObject, fn: ComponentDataCallback, path?: string | undefined, index?: number | undefined, parent?: any, includeAll?: boolean | undefined) => void;
22
+ export const getComponentKey: typeof Utils.getComponentKey;
23
+ export const getContextualRowPath: typeof Utils.getContextualRowPath;
24
+ export const getContextualRowData: typeof Utils.getContextualRowData;
25
+ export const componentInfo: typeof Utils.componentInfo;
26
+ export const eachComponent: typeof Utils.eachComponent;
27
+ export const eachComponentAsync: typeof Utils.eachComponentAsync;
28
+ export const getComponentData: typeof Utils.getComponentData;
29
+ export const getComponentActualValue: typeof Utils.getComponentActualValue;
30
+ export const isLayoutComponent: typeof Utils.isLayoutComponent;
31
+ export const matchComponent: typeof Utils.matchComponent;
32
+ export const getComponent: typeof Utils.getComponent;
33
+ export const searchComponents: typeof Utils.searchComponents;
34
+ export const removeComponent: typeof Utils.removeComponent;
35
+ export const hasCondition: typeof Utils.hasCondition;
36
+ export const parseFloatExt: typeof Utils.parseFloatExt;
37
+ export const formatAsCurrency: typeof Utils.formatAsCurrency;
38
+ export const escapeRegExCharacters: typeof Utils.escapeRegExCharacters;
39
+ export const getValue: typeof Utils.getValue;
40
+ export const getStrings: typeof Utils.getStrings;
41
+ export const generateFormChange: typeof Utils.generateFormChange;
42
+ export const applyFormChanges: typeof Utils.applyFormChanges;
43
+ export const findComponent: typeof Utils.findComponent;
44
+ export const getEmptyValue: typeof Utils.getEmptyValue;
45
+ export const isComponentDataEmpty: typeof Utils.isComponentDataEmpty;
46
+ import { Utils } from '@formio/core';