react-survey-builder 1.0.9 → 1.0.10
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.
- package/README.md +8 -5
- package/dist/967.index.js +1 -1
- package/dist/app.css +1 -1
- package/dist/app.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +23 -0
- package/lib/form-fields.js +853 -0
- package/lib/form.js +35 -16
- package/lib/index.js +32 -3
- package/lib/language-provider/locales/en-us.json +2 -1
- package/lib/preview.js +1 -3
- package/lib/survey-elements/component-error-message.js +64 -0
- package/lib/survey-elements/index.js +709 -234
- package/lib/toolbar.js +138 -133
- package/package.json +12 -4
- package/types/index.d.ts +2 -0
@@ -36,6 +36,15 @@ object-assign
|
|
36
36
|
|
37
37
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
38
38
|
|
39
|
+
/**
|
40
|
+
* @license
|
41
|
+
* Lodash <https://lodash.com/>
|
42
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
43
|
+
* Released under MIT license <https://lodash.com/license>
|
44
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
45
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
46
|
+
*/
|
47
|
+
|
39
48
|
/**
|
40
49
|
* @license React
|
41
50
|
* react-jsx-runtime.production.min.js
|
@@ -54,3 +63,17 @@ object-assign
|
|
54
63
|
* This source code is licensed under the MIT license found in the
|
55
64
|
* LICENSE file in the root directory of this source tree.
|
56
65
|
*/
|
66
|
+
|
67
|
+
//! Copyright (c) JS Foundation and other contributors
|
68
|
+
|
69
|
+
//! github.com/moment/moment-timezone
|
70
|
+
|
71
|
+
//! license : MIT
|
72
|
+
|
73
|
+
//! moment-timezone.js
|
74
|
+
|
75
|
+
//! moment.js
|
76
|
+
|
77
|
+
//! moment.js locale configuration
|
78
|
+
|
79
|
+
//! version : 0.5.44
|